From 20cff2ade4d686fb4f10c106dbc99b76c173102a Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sat, 1 Oct 2011 02:47:47 +0200 Subject: remove possibility of 63 bit overflow in ParseMoney --- src/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.cpp b/src/util.cpp index 76a2700271..d6a113095d 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -389,7 +389,7 @@ bool ParseMoney(const char* pszIn, int64& nRet) for (; *p; p++) if (!isspace(*p)) return false; - if (strWhole.size() > 14) + if (strWhole.size() > 10) // guard against 63 bit overflow return false; if (nUnits < 0 || nUnits > COIN) return false; -- cgit v1.2.3 From 600dc6255971bfe152767c67e7ca6866fb1541ea Mon Sep 17 00:00:00 2001 From: Victor Leschuk Date: Thu, 6 Oct 2011 19:53:42 +0400 Subject: Fix for 64bit build --- src/util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util.h b/src/util.h index 3d7ef108b4..6ecc92b2b6 100644 --- a/src/util.h +++ b/src/util.h @@ -662,8 +662,8 @@ inline bool AffinityBugWorkaround(void(*pfn)(void*)) { #ifdef __WXMSW__ // Sometimes after a few hours affinity gets stuck on one processor - DWORD dwProcessAffinityMask = -1; - DWORD dwSystemAffinityMask = -1; + DWORD_PTR dwProcessAffinityMask = -1; + DWORD_PTR dwSystemAffinityMask = -1; GetProcessAffinityMask(GetCurrentProcess(), &dwProcessAffinityMask, &dwSystemAffinityMask); DWORD dwPrev1 = SetThreadAffinityMask(GetCurrentThread(), dwProcessAffinityMask); DWORD dwPrev2 = SetThreadAffinityMask(GetCurrentThread(), dwProcessAffinityMask); -- cgit v1.2.3 From aec5c5fe26293452d3fe7acf1e4c20830613812c Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 10 Oct 2011 14:22:31 -0400 Subject: Bump version to 0.4.1 --- contrib/Bitcoin.app/Contents/Info.plist | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/contrib/Bitcoin.app/Contents/Info.plist b/contrib/Bitcoin.app/Contents/Info.plist index a5c7da1c8f..d5a278a570 100644 --- a/contrib/Bitcoin.app/Contents/Info.plist +++ b/contrib/Bitcoin.app/Contents/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.4.00 + 0.4.1 CFBundleSignature ???? CFBundleVersion diff --git a/doc/README b/doc/README index 772fd7f31e..789cc9fb87 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.4.0rc1 BETA +Bitcoin 0.4.1 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 8378ae50d8..7ff8834920 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.4.00rc1 BETA +Bitcoin 0.4.1 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 6cf477747c..4c837c974b 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.4.00 +!define VERSION 0.4.1 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.4.00-win32-setup.exe +OutFile bitcoin-0.4.1-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.4.00.0 +VIProductVersion 0.4.1.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index 698bdfe6a9..320ce9d2ae 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -59,7 +59,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 40000; +static const int VERSION = 40100; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From b526cbaa718a6c66bc6b5bc224d2717e0066ddb6 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Mon, 10 Oct 2011 16:03:14 -0400 Subject: bitcoind does not need to link with gthread-2.0 --- src/makefile.unix | 1 - 1 file changed, 1 deletion(-) diff --git a/src/makefile.unix b/src/makefile.unix index 43c3ea7f50..98c40771d2 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -30,7 +30,6 @@ endif LIBS+= \ -Wl,-Bdynamic \ - -l gthread-2.0 \ -l z \ -l dl \ -l pthread -- cgit v1.2.3 From 38a976d5bbfb1bdb304ae64aa3ca992d13ad3cde Mon Sep 17 00:00:00 2001 From: cjdelisle Date: Sun, 16 Oct 2011 20:38:23 -0400 Subject: Added a workaround for an Ubuntu bug which causes -fstack-protector-all to be disregarded. --- src/makefile.unix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/makefile.unix b/src/makefile.unix index 98c40771d2..9e0b3263d7 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -38,12 +38,17 @@ LIBS+= \ # Hardening # Make some classes of vulnerabilities unexploitable in case one is discovered. # + # This is a workaround for Ubuntu bug #691722, the default -fstack-protector causes + # -fstack-protector-all to be ignored unless -fno-stack-protector is used first. + # see: https://bugs.launchpad.net/ubuntu/+source/gcc-4.5/+bug/691722 + HARDENING=-fno-stack-protector + # Stack Canaries # Put numbers at the beginning of each stack frame and check that they are the same. # If a stack buffer if overflowed, it writes over the canary number and then on return # when that number is checked, it won't be the same and the program will exit with # a "Stack smashing detected" error instead of being exploited. - HARDENING=-fstack-protector-all -Wstack-protector + HARDENING+=-fstack-protector-all -Wstack-protector # Make some important things such as the global offset table read only as soon as # the dynamic linker is finished building it. This will prevent overwriting of addresses -- cgit v1.2.3 From ed176ba584ed9f05f5311743059e108ddbbb5d5b Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Mon, 10 Oct 2011 12:08:05 -0400 Subject: Only define __STDC_LIMIT_MACROS if not already defined. --- src/headers.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/headers.h b/src/headers.h index d0c7434820..ab318cbb43 100644 --- a/src/headers.h +++ b/src/headers.h @@ -18,7 +18,13 @@ #endif #define _WIN32_IE 0x0400 #define WIN32_LEAN_AND_MEAN 1 + +// Include boost/foreach here as it defines __STDC_LIMIT_MACROS on some systems. +#include +#ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS // to enable UINT64_MAX from stdint.h +#endif + #if (defined(__unix__) || defined(unix)) && !defined(USG) #include // to get BSD define #endif @@ -57,8 +63,6 @@ #include #include -#include - #ifdef __WXMSW__ #include #include -- cgit v1.2.3 From ef4280e08b217bf2512bb1878e1dd2a926e557c9 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Mon, 10 Oct 2011 15:51:07 -0400 Subject: Add returns to avoid annoying compile-time warnings. --- src/keystore.h | 1 + src/wallet.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/keystore.h b/src/keystore.h index bbfac83d1f..1f2c6aea3e 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -114,6 +114,7 @@ public: return CBasicKeyStore::HaveKey(address); return mapCryptedKeys.count(address) > 0; } + return false; } bool GetKey(const CBitcoinAddress &address, CKey& keyOut) const; bool GetPubKey(const CBitcoinAddress &address, std::vector& vchPubKeyOut) const; diff --git a/src/wallet.cpp b/src/wallet.cpp index 8bbb80cf25..298a2c6428 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -40,6 +40,7 @@ bool CWallet::AddCryptedKey(const vector &vchPubKey, const vector else return CWalletDB(strWalletFile).WriteCryptedKey(vchPubKey, vchCryptedSecret); } + return false; } bool CWallet::Unlock(const string& strWalletPassphrase) -- cgit v1.2.3 From 00eae584a26295dbf7b1aebf99c1b8a4c9a86c37 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Thu, 10 Nov 2011 21:29:23 +0100 Subject: Resilvering --- src/db.cpp | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/db.h | 5 +++- src/wallet.cpp | 10 +++++++ 3 files changed, 104 insertions(+), 1 deletion(-) diff --git a/src/db.cpp b/src/db.cpp index a22b17e34c..d41da68aba 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -165,6 +165,90 @@ void static CloseDb(const string& strFile) } } +bool Resilver(const string& strFile) +{ + while (!fShutdown) + { + CRITICAL_BLOCK(cs_db) + { + if (!mapFileUseCount.count(strFile) || mapFileUseCount[strFile] == 0) + { + // Flush log data to the dat file + CloseDb(strFile); + dbenv.txn_checkpoint(0, 0, 0); + dbenv.lsn_reset(strFile.c_str(), 0); + mapFileUseCount.erase(strFile); + + bool fSuccess = true; + printf("Resilvering %s...\n", strFile.c_str()); + string strFileRes = strFile + ".resilver"; + CDB db(strFile.c_str(), "r"); + Db* pdbCopy = new Db(&dbenv, 0); + + int ret = pdbCopy->open(NULL, // Txn pointer + strFileRes.c_str(), // Filename + "main", // Logical db name + DB_BTREE, // Database type + DB_CREATE, // Flags + 0); + if (ret > 0) + { + printf("Cannot create database file %s\n", strFileRes.c_str()); + fSuccess = false; + } + + Dbc* pcursor = db.GetCursor(); + if (pcursor) + while (fSuccess) + { + CDataStream ssKey; + CDataStream ssValue; + int ret = db.ReadAtCursor(pcursor, ssKey, ssValue, DB_NEXT); + if (ret == DB_NOTFOUND) + break; + else if (ret != 0) + { + pcursor->close(); + fSuccess = false; + break; + } + Dbt datKey(&ssKey[0], ssKey.size()); + Dbt datValue(&ssValue[0], ssValue.size()); + int ret2 = pdbCopy->put(NULL, &datKey, &datValue, DB_NOOVERWRITE); + if (ret2 > 0) + fSuccess = false; + } + if (fSuccess) + { + Db* pdb = mapDb[strFile]; + if (pdb->close(0)) + fSuccess = false; + if (pdbCopy->close(0)) + fSuccess = false; + delete pdb; + delete pdbCopy; + mapDb[strFile] = NULL; + } + if (fSuccess) + { + Db dbA(&dbenv, 0); + if (dbA.remove(strFile.c_str(), NULL, 0)) + fSuccess = false; + Db dbB(&dbenv, 0); + if (dbB.rename(strFileRes.c_str(), NULL, strFile.c_str(), 0)) + fSuccess = false; + } + if (!fSuccess) + printf("Resilvering of %s FAILED!\n", strFileRes.c_str()); + return fSuccess; + } + } + Sleep(100); + } + return false; +} + + void DBFlush(bool fShutdown) { // Flush log data to the actual data file @@ -674,6 +758,8 @@ int CWalletDB::LoadWallet(CWallet* pwallet) pwallet->vchDefaultKey.clear(); int nFileVersion = 0; vector vWalletUpgrade; + bool fIsResilvered = false; + bool fIsEncrypted = false; // Modify defaults #ifndef __WXMSW__ @@ -799,6 +885,7 @@ int CWalletDB::LoadWallet(CWallet* pwallet) ssValue >> vchPrivKey; if (!pwallet->LoadCryptedKey(vchPubKey, vchPrivKey)) return DB_CORRUPT; + fIsEncrypted = true; } else if (strType == "defaultkey") { @@ -832,6 +919,7 @@ int CWalletDB::LoadWallet(CWallet* pwallet) if (strKey == "fMinimizeOnClose") ssValue >> fMinimizeOnClose; if (strKey == "fUseProxy") ssValue >> fUseProxy; if (strKey == "addrProxy") ssValue >> addrProxy; + if (strKey == "fIsResilvered") ssValue >> fIsResilvered; if (fHaveUPnP && strKey == "fUseUPnP") ssValue >> fUseUPnP; } else if (strType == "minversion") @@ -869,6 +957,8 @@ int CWalletDB::LoadWallet(CWallet* pwallet) WriteVersion(VERSION); } + if (fIsEncrypted && !fIsResilvered) + return DB_NEED_RESILVER; return DB_LOAD_OK; } diff --git a/src/db.h b/src/db.h index 73ea1902cc..75748ace01 100644 --- a/src/db.h +++ b/src/db.h @@ -32,7 +32,7 @@ extern DbEnv dbenv; extern void DBFlush(bool fShutdown); void ThreadFlushWalletDB(void* parg); bool BackupWallet(const CWallet& wallet, const std::string& strDest); - +extern bool Resilver(const std::string& strFile); @@ -257,6 +257,8 @@ public: { return Write(std::string("version"), nVersion); } + + friend bool Resilver(const std::string&); }; @@ -349,6 +351,7 @@ enum DBErrors DB_CORRUPT, DB_TOO_NEW, DB_LOAD_FAIL, + DB_NEED_RESILVER }; class CWalletDB : public CDB diff --git a/src/wallet.cpp b/src/wallet.cpp index 298a2c6428..924700d027 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -190,6 +190,9 @@ bool CWallet::EncryptWallet(const string& strWalletPassphrase) Lock(); } + if (Resilver(strWalletFile)) + CWalletDB(strWalletFile, "r+").WriteSetting("fIsResilvered", true); + return true; } @@ -1122,6 +1125,13 @@ int CWallet::LoadWallet(bool& fFirstRunRet) return false; fFirstRunRet = false; int nLoadWalletRet = CWalletDB(strWalletFile,"cr+").LoadWallet(this); + if (nLoadWalletRet == DB_NEED_RESILVER) + { + if (Resilver(strWalletFile)) + CWalletDB(strWalletFile, "r+").WriteSetting("fIsResilvered", true); + nLoadWalletRet = DB_LOAD_OK; + } + if (nLoadWalletRet != DB_LOAD_OK) return nLoadWalletRet; fFirstRunRet = vchDefaultKey.empty(); -- cgit v1.2.3 From 2744ea8c1fbc2e1ef6b1824a21fd2a75e2b6dbc4 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 10 Nov 2011 21:12:46 -0500 Subject: Obsolete keypool and make sure database removes log files on shutdown. --- src/db.cpp | 70 +++++++++++++++++++++++++++++++++++++++++---------------- src/db.h | 7 +++--- src/init.cpp | 14 ++++++++---- src/rpc.cpp | 11 ++++++++- src/serialize.h | 2 +- src/wallet.cpp | 21 +++++++++++------ 6 files changed, 89 insertions(+), 36 deletions(-) diff --git a/src/db.cpp b/src/db.cpp index d41da68aba..1a1289f8d1 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -28,6 +28,34 @@ DbEnv dbenv(0); static map mapFileUseCount; static map mapDb; +static void EnvShutdown(bool fRemoveLogFiles) +{ + if (!fDbEnvInit) + return; + + fDbEnvInit = false; + dbenv.close(0); + DbEnv(0).remove(GetDataDir().c_str(), 0); + + if (fRemoveLogFiles) + { + filesystem::path datadir(GetDataDir()); + filesystem::directory_iterator it(datadir / "database"); + while (it != filesystem::directory_iterator()) + { + const filesystem::path& p = it->path(); +#if BOOST_FILESYSTEM_VERSION == 2 + std::string f = p.filename(); +#else + std::string f = p.filename().generic_string(); +#endif + if (f.find("log.") == 0) + filesystem::remove(p); + ++it; + } + } +} + class CDBInit { public: @@ -36,11 +64,7 @@ public: } ~CDBInit() { - if (fDbEnvInit) - { - dbenv.close(0); - fDbEnvInit = false; - } + EnvShutdown(false); } } instance_of_cdbinit; @@ -165,7 +189,7 @@ void static CloseDb(const string& strFile) } } -bool Resilver(const string& strFile) +bool CDB::Rewrite(const string& strFile, const char* pszSkip) { while (!fShutdown) { @@ -180,8 +204,8 @@ bool Resilver(const string& strFile) mapFileUseCount.erase(strFile); bool fSuccess = true; - printf("Resilvering %s...\n", strFile.c_str()); - string strFileRes = strFile + ".resilver"; + printf("Rewriting %s...\n", strFile.c_str()); + string strFileRes = strFile + ".rewrite"; CDB db(strFile.c_str(), "r"); Db* pdbCopy = new Db(&dbenv, 0); @@ -212,6 +236,15 @@ bool Resilver(const string& strFile) fSuccess = false; break; } + if (pszSkip && + strncmp(&ssKey[0], pszSkip, std::min(ssKey.size(), strlen(pszSkip))) == 0) + continue; + if (strncmp(&ssKey[0], "\x07version", 8) == 0) + { + // Update version: + ssValue.clear(); + ssValue << VERSION; + } Dbt datKey(&ssKey[0], ssKey.size()); Dbt datValue(&ssValue[0], ssValue.size()); int ret2 = pdbCopy->put(NULL, &datKey, &datValue, DB_NOOVERWRITE); @@ -239,7 +272,7 @@ bool Resilver(const string& strFile) fSuccess = false; } if (!fSuccess) - printf("Resilvering of %s FAILED!\n", strFileRes.c_str()); + printf("Rewriting of %s FAILED!\n", strFileRes.c_str()); return fSuccess; } } @@ -249,7 +282,7 @@ bool Resilver(const string& strFile) } -void DBFlush(bool fShutdown) +void DBFlush(bool fShutdown, bool fRemoveLogFiles) { // Flush log data to the actual data file // on all files that are not in use @@ -280,9 +313,10 @@ void DBFlush(bool fShutdown) { char** listp; if (mapFileUseCount.empty()) + { dbenv.log_archive(&listp, DB_ARCH_REMOVE); - dbenv.close(0); - fDbEnvInit = false; + EnvShutdown(fRemoveLogFiles); + } } } } @@ -758,7 +792,6 @@ int CWalletDB::LoadWallet(CWallet* pwallet) pwallet->vchDefaultKey.clear(); int nFileVersion = 0; vector vWalletUpgrade; - bool fIsResilvered = false; bool fIsEncrypted = false; // Modify defaults @@ -919,7 +952,6 @@ int CWalletDB::LoadWallet(CWallet* pwallet) if (strKey == "fMinimizeOnClose") ssValue >> fMinimizeOnClose; if (strKey == "fUseProxy") ssValue >> fUseProxy; if (strKey == "addrProxy") ssValue >> addrProxy; - if (strKey == "fIsResilvered") ssValue >> fIsResilvered; if (fHaveUPnP && strKey == "fUseUPnP") ssValue >> fUseUPnP; } else if (strType == "minversion") @@ -947,8 +979,11 @@ int CWalletDB::LoadWallet(CWallet* pwallet) printf("fUseUPnP = %d\n", fUseUPnP); - // Upgrade - if (nFileVersion < VERSION) + // Rewrite encrypted wallets of versions 0.4.0 and 0.5.0rc: + if (fIsEncrypted && (nFileVersion == 40000 || nFileVersion == 50000)) + return DB_NEED_REWRITE; + + if (nFileVersion < VERSION) // Update { // Get rid of old debug.log file in current directory if (nFileVersion <= 105 && !pszSetDataDir[0]) @@ -957,9 +992,6 @@ int CWalletDB::LoadWallet(CWallet* pwallet) WriteVersion(VERSION); } - if (fIsEncrypted && !fIsResilvered) - return DB_NEED_RESILVER; - return DB_LOAD_OK; } diff --git a/src/db.h b/src/db.h index 75748ace01..98af4be9a0 100644 --- a/src/db.h +++ b/src/db.h @@ -29,10 +29,9 @@ extern unsigned int nWalletDBUpdated; extern DbEnv dbenv; -extern void DBFlush(bool fShutdown); +extern void DBFlush(bool fShutdown, bool fRemoveLogFiles); void ThreadFlushWalletDB(void* parg); bool BackupWallet(const CWallet& wallet, const std::string& strDest); -extern bool Resilver(const std::string& strFile); @@ -258,7 +257,7 @@ public: return Write(std::string("version"), nVersion); } - friend bool Resilver(const std::string&); + bool static Rewrite(const std::string& strFile, const char* pszSkip = NULL); }; @@ -351,7 +350,7 @@ enum DBErrors DB_CORRUPT, DB_TOO_NEW, DB_LOAD_FAIL, - DB_NEED_RESILVER + DB_NEED_REWRITE }; class CWalletDB : public CDB diff --git a/src/init.cpp b/src/init.cpp index dbc2c41332..4a149b31bf 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -34,8 +34,8 @@ void Shutdown(void* parg) { static CCriticalSection cs_Shutdown; static bool fTaken; - bool fFirstThread; - CRITICAL_BLOCK(cs_Shutdown) + bool fFirstThread = false; + TRY_CRITICAL_BLOCK(cs_Shutdown) { fFirstThread = !fTaken; fTaken = true; @@ -45,9 +45,9 @@ void Shutdown(void* parg) { fShutdown = true; nTransactionsUpdated++; - DBFlush(false); + DBFlush(false, false); StopNode(); - DBFlush(true); + DBFlush(true, true); boost::filesystem::remove(GetPidFile()); UnregisterWallet(pwalletMain); delete pwalletMain; @@ -396,6 +396,12 @@ bool AppInit2(int argc, char* argv[]) strErrors += _("Error loading wallet.dat: Wallet corrupted \n"); else if (nLoadWalletRet == DB_TOO_NEW) strErrors += _("Error loading wallet.dat: Wallet requires newer version of Bitcoin \n"); + else if (nLoadWalletRet == DB_NEED_REWRITE) + { + strErrors += _("Wallet needed to be rewritten: restart Bitcoin to complete \n"); + wxMessageBox(strErrors, "Bitcoin", wxOK | wxICON_ERROR); + return false; + } else strErrors += _("Error loading wallet.dat \n"); } diff --git a/src/rpc.cpp b/src/rpc.cpp index 885ffd1f2b..a936edbbe4 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -1431,6 +1431,11 @@ Value encryptwallet(const Array& params, bool fHelp) if (pwalletMain->IsCrypted()) throw JSONRPCError(-15, "Error: running with an encrypted wallet, but encryptwallet was called."); +#ifdef GUI + // shutting down via RPC while the GUI is running does not work (yet): + throw runtime_error("Not Yet Implemented: use GUI to encrypt wallet, not RPC command"); +#endif + string strWalletPass; strWalletPass.reserve(100); mlock(&strWalletPass[0], strWalletPass.capacity()); @@ -1450,7 +1455,11 @@ Value encryptwallet(const Array& params, bool fHelp) fill(strWalletPass.begin(), strWalletPass.end(), '\0'); munlock(&strWalletPass[0], strWalletPass.capacity()); - return Value::null; + // BDB seems to have a bad habit of writing old data into + // slack space in .dat files; that is bad if the old data is + // unencrypted private keys. So: + CreateThread(Shutdown, NULL); + return "wallet encrypted; bitcoin server stopping, restart to run with encrypted wallet"; } diff --git a/src/serialize.h b/src/serialize.h index 320ce9d2ae..c531d2a198 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -59,7 +59,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 40100; +static const int VERSION = 40101; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; diff --git a/src/wallet.cpp b/src/wallet.cpp index 924700d027..c004d18360 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -188,10 +188,12 @@ bool CWallet::EncryptWallet(const string& strWalletPassphrase) } Lock(); - } - if (Resilver(strWalletFile)) - CWalletDB(strWalletFile, "r+").WriteSetting("fIsResilvered", true); + // Need to completely rewrite the wallet file; if we don't, bdb might keep + // bits of the unencrypted private key in slack space in the database file. + setKeyPool.clear(); + CDB::Rewrite(strWalletFile, "\x04pool"); + } return true; } @@ -1125,11 +1127,16 @@ int CWallet::LoadWallet(bool& fFirstRunRet) return false; fFirstRunRet = false; int nLoadWalletRet = CWalletDB(strWalletFile,"cr+").LoadWallet(this); - if (nLoadWalletRet == DB_NEED_RESILVER) + if (nLoadWalletRet == DB_NEED_REWRITE) { - if (Resilver(strWalletFile)) - CWalletDB(strWalletFile, "r+").WriteSetting("fIsResilvered", true); - nLoadWalletRet = DB_LOAD_OK; + if (CDB::Rewrite(strWalletFile, "\x04pool")) + { + setKeyPool.clear(); + // Note: can't top-up keypool here, because wallet is locked. + // User will be prompted to unlock wallet the next operation + // the requires a new key. + } + nLoadWalletRet = DB_NEED_REWRITE; } if (nLoadWalletRet != DB_LOAD_OK) -- cgit v1.2.3 From 0143c024af1e5b93dfc3a89e4e40be59a0f40f58 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 15 Nov 2011 09:47:29 -0500 Subject: Fix boost filesystem incompatibility problem --- src/db.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/db.cpp b/src/db.cpp index 1a1289f8d1..b2bd7e2899 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -44,10 +44,10 @@ static void EnvShutdown(bool fRemoveLogFiles) while (it != filesystem::directory_iterator()) { const filesystem::path& p = it->path(); -#if BOOST_FILESYSTEM_VERSION == 2 - std::string f = p.filename(); -#else +#if BOOST_FILESYSTEM_VERSION == 3 std::string f = p.filename().generic_string(); +#else + std::string f = p.filename(); #endif if (f.find("log.") == 0) filesystem::remove(p); -- cgit v1.2.3 From 1179f6373dfffdcb091576215cabe73c932df925 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 15 Nov 2011 10:33:26 -0500 Subject: Update gitian descriptors to point at stable git repo --- contrib/gitian-descriptors/gitian-win32.yml | 2 +- contrib/gitian-descriptors/gitian.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/gitian-descriptors/gitian-win32.yml b/contrib/gitian-descriptors/gitian-win32.yml index 52b10bc33f..252e62e236 100644 --- a/contrib/gitian-descriptors/gitian-win32.yml +++ b/contrib/gitian-descriptors/gitian-win32.yml @@ -13,7 +13,7 @@ packages: - "wine" reference_datetime: "2011-01-30 00:00:00" remotes: -- "url": "https://github.com/bitcoin/bitcoin.git" +- "url": "https://git.gitorious.org/+bitcoin-stable-developers/bitcoin/bitcoind-stable.git" "dir": "bitcoin" files: - "wxwidgets-win32-2.9.2-gitian.zip" diff --git a/contrib/gitian-descriptors/gitian.yml b/contrib/gitian-descriptors/gitian.yml index efa9cb8c10..c29224402a 100644 --- a/contrib/gitian-descriptors/gitian.yml +++ b/contrib/gitian-descriptors/gitian.yml @@ -15,7 +15,7 @@ packages: - "unzip" reference_datetime: "2011-01-30 00:00:00" remotes: -- "url": "https://github.com/bitcoin/bitcoin.git" +- "url": "https://git.gitorious.org/+bitcoin-stable-developers/bitcoin/bitcoind-stable.git" "dir": "bitcoin" files: - "wxWidgets-2.9.2-x64-gitian.zip" -- cgit v1.2.3 From 586ea168c2e29b9f96b07a3a5145356af11b4dce Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 15 Nov 2011 10:21:02 -0500 Subject: add message about restarting bitcoin after encrypting wallet succesfully --- src/ui.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ui.cpp b/src/ui.cpp index 6b7ecdbc8d..bfb708b3e9 100644 --- a/src/ui.cpp +++ b/src/ui.cpp @@ -1222,10 +1222,9 @@ void CMainFrame::OnMenuOptionsEncryptWallet(wxCommandEvent& event) fill(strWalletPassTest.begin(), strWalletPassTest.end(), '\0'); munlock(&strWalletPass[0], strWalletPass.capacity()); munlock(&strWalletPassTest[0], strWalletPassTest.capacity()); - wxMessageBox(_("Wallet Encrypted.\nRemember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer."), "Bitcoin"); + wxMessageBox(_("Wallet Encrypted.\nBitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer."), "Bitcoin"); - m_menuOptions->Remove(m_menuOptionsEncryptWallet); - m_menuOptions->Insert(m_menuOptions->GetMenuItemCount() - 1, m_menuOptionsChangeWalletPassphrase); + Close(true); } void CMainFrame::OnMenuOptionsChangeWalletPassphrase(wxCommandEvent& event) -- cgit v1.2.3 From 1aafd7464f67e0ba42b18a08070a86a427e28c72 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 15 Nov 2011 14:30:15 -0500 Subject: Fix crash-on-osx-on-shutdown bug. And cleanup CDB handling in Rewrite. --- src/db.cpp | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/src/db.cpp b/src/db.cpp index b2bd7e2899..023dc5947a 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -34,7 +34,14 @@ static void EnvShutdown(bool fRemoveLogFiles) return; fDbEnvInit = false; - dbenv.close(0); + try + { + dbenv.close(0); + } + catch (const DbException& e) + { + printf("EnvShutdown exception: %s (%d)\n", e.what(), e.get_errno()); + } DbEnv(0).remove(GetDataDir().c_str(), 0); if (fRemoveLogFiles) @@ -229,7 +236,10 @@ bool CDB::Rewrite(const string& strFile, const char* pszSkip) CDataStream ssValue; int ret = db.ReadAtCursor(pcursor, ssKey, ssValue, DB_NEXT); if (ret == DB_NOTFOUND) + { + pcursor->close(); break; + } else if (ret != 0) { pcursor->close(); @@ -253,14 +263,11 @@ bool CDB::Rewrite(const string& strFile, const char* pszSkip) } if (fSuccess) { - Db* pdb = mapDb[strFile]; - if (pdb->close(0)) - fSuccess = false; + db.Close(); + CloseDb(strFile); if (pdbCopy->close(0)) fSuccess = false; - delete pdb; delete pdbCopy; - mapDb[strFile] = NULL; } if (fSuccess) { -- cgit v1.2.3 From 831d24a19d6687edfcce54bc0be0dcad8899fc30 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 15 Nov 2011 14:28:51 -0500 Subject: Tweak handling of boost filesystem versions (partial cherry pick) --- src/db.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db.cpp b/src/db.cpp index 023dc5947a..b48be7ab75 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -51,7 +51,7 @@ static void EnvShutdown(bool fRemoveLogFiles) while (it != filesystem::directory_iterator()) { const filesystem::path& p = it->path(); -#if BOOST_FILESYSTEM_VERSION == 3 +#if BOOST_FILESYSTEM_VERSION >= 3 std::string f = p.filename().generic_string(); #else std::string f = p.filename(); -- cgit v1.2.3 From 2bf36b4e7dd06d44ee3c81391338ccb708edbbaa Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Mon, 31 Oct 2011 12:42:01 -0400 Subject: Remove vladimir's DNS seed, at his request. --- src/net.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/net.cpp b/src/net.cpp index f5e8b71c03..f8f6afde54 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1159,7 +1159,6 @@ void MapPort(bool /* unused fMapPort */) static const char *strDNSSeed[] = { "bitseed.xf2.org", - "bitseed.bitcoin.org.uk", "dnsseed.bluematt.me", }; -- cgit v1.2.3 From 90de05e88ecc879b75315eebacb488b44353f5d9 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 17 Nov 2011 14:01:25 -0500 Subject: Create new keypool for newly encrypted wallets. --- src/wallet.cpp | 33 ++++++++++++++++++++++++++++++++- src/wallet.h | 1 + 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/src/wallet.cpp b/src/wallet.cpp index c004d18360..9b9586face 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -187,12 +187,15 @@ bool CWallet::EncryptWallet(const string& strWalletPassphrase) pwalletdbEncryption = NULL; } + Lock(); + Unlock(strWalletPassphrase); + NewKeyPool(); Lock(); // Need to completely rewrite the wallet file; if we don't, bdb might keep // bits of the unencrypted private key in slack space in the database file. setKeyPool.clear(); - CDB::Rewrite(strWalletFile, "\x04pool"); + CDB::Rewrite(strWalletFile); } return true; @@ -1224,6 +1227,34 @@ bool GetWalletFile(CWallet* pwallet, string &strWalletFileOut) return true; } +// +// Mark old keypool keys as used, +// and generate all new keys +// +bool CWallet::NewKeyPool() +{ + CRITICAL_BLOCK(cs_wallet) + { + CWalletDB walletdb(strWalletFile); + BOOST_FOREACH(int64 nIndex, setKeyPool) + walletdb.ErasePool(nIndex); + setKeyPool.clear(); + + if (IsLocked()) + return false; + + int64 nKeys = max(GetArg("-keypool", 100), (int64)0); + for (int i = 0; i < nKeys; i++) + { + int64 nIndex = i+1; + walletdb.WritePool(nIndex, CKeyPool(GenerateNewKey())); + setKeyPool.insert(nIndex); + } + printf("CWallet::NewKeyPool wrote %"PRI64d" new keys\n", nKeys); + } + return true; +} + bool CWallet::TopUpKeyPool() { CRITICAL_BLOCK(cs_wallet) diff --git a/src/wallet.h b/src/wallet.h index 1dd2e51260..794139233d 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -81,6 +81,7 @@ public: std::string SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, bool fAskFee=false); std::string SendMoneyToBitcoinAddress(const CBitcoinAddress& address, int64 nValue, CWalletTx& wtxNew, bool fAskFee=false); + bool NewKeyPool(); bool TopUpKeyPool(); void ReserveKeyFromKeyPool(int64& nIndex, CKeyPool& keypool); void KeepKey(int64 nIndex); -- cgit v1.2.3 From c4a3bf9e552f25a5ad0efb8cf62d344a7dad53ed Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 17 Nov 2011 14:21:32 -0500 Subject: Only remove database log files on shutdown after wallet encryption/rewrite --- src/db.cpp | 13 +++++++++---- src/db.h | 3 ++- src/init.cpp | 4 ++-- src/wallet.cpp | 5 +++-- 4 files changed, 16 insertions(+), 9 deletions(-) diff --git a/src/db.cpp b/src/db.cpp index b48be7ab75..77000ab00e 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -28,7 +28,12 @@ DbEnv dbenv(0); static map mapFileUseCount; static map mapDb; -static void EnvShutdown(bool fRemoveLogFiles) +static bool fRemoveLogFiles = false; +void RemoveLogFilesOnShutdown(bool fIn) +{ + fRemoveLogFiles = fIn; +} +static void EnvShutdown() { if (!fDbEnvInit) return; @@ -71,7 +76,7 @@ public: } ~CDBInit() { - EnvShutdown(false); + EnvShutdown(); } } instance_of_cdbinit; @@ -289,7 +294,7 @@ bool CDB::Rewrite(const string& strFile, const char* pszSkip) } -void DBFlush(bool fShutdown, bool fRemoveLogFiles) +void DBFlush(bool fShutdown) { // Flush log data to the actual data file // on all files that are not in use @@ -322,7 +327,7 @@ void DBFlush(bool fShutdown, bool fRemoveLogFiles) if (mapFileUseCount.empty()) { dbenv.log_archive(&listp, DB_ARCH_REMOVE); - EnvShutdown(fRemoveLogFiles); + EnvShutdown(); } } } diff --git a/src/db.h b/src/db.h index 98af4be9a0..425dc2e57b 100644 --- a/src/db.h +++ b/src/db.h @@ -29,7 +29,8 @@ extern unsigned int nWalletDBUpdated; extern DbEnv dbenv; -extern void DBFlush(bool fShutdown, bool fRemoveLogFiles); +extern void RemoveLogFilesOnShutdown(bool fRemoveLogFiles); +extern void DBFlush(bool fShutdown); void ThreadFlushWalletDB(void* parg); bool BackupWallet(const CWallet& wallet, const std::string& strDest); diff --git a/src/init.cpp b/src/init.cpp index 4a149b31bf..2d21a26143 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -45,9 +45,9 @@ void Shutdown(void* parg) { fShutdown = true; nTransactionsUpdated++; - DBFlush(false, false); + DBFlush(false); StopNode(); - DBFlush(true, true); + DBFlush(true); boost::filesystem::remove(GetPidFile()); UnregisterWallet(pwalletMain); delete pwalletMain; diff --git a/src/wallet.cpp b/src/wallet.cpp index 9b9586face..737f0e6238 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -194,8 +194,8 @@ bool CWallet::EncryptWallet(const string& strWalletPassphrase) // Need to completely rewrite the wallet file; if we don't, bdb might keep // bits of the unencrypted private key in slack space in the database file. - setKeyPool.clear(); - CDB::Rewrite(strWalletFile); + if (CDB::Rewrite(strWalletFile)) + RemoveLogFilesOnShutdown(true); } return true; @@ -1134,6 +1134,7 @@ int CWallet::LoadWallet(bool& fFirstRunRet) { if (CDB::Rewrite(strWalletFile, "\x04pool")) { + RemoveLogFilesOnShutdown(true); setKeyPool.clear(); // Note: can't top-up keypool here, because wallet is locked. // User will be prompted to unlock wallet the next operation -- cgit v1.2.3 From 76ef6d89b98b57d2ee5c6db993cd1cc375dd3726 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Sun, 20 Nov 2011 10:39:01 -0500 Subject: Never remove database files on shutdown, it caused unreadable wallets on some testers' machines. --- src/db.cpp | 23 ----------------------- src/db.h | 2 -- src/wallet.cpp | 4 +--- 3 files changed, 1 insertion(+), 28 deletions(-) diff --git a/src/db.cpp b/src/db.cpp index 77000ab00e..5cacf19692 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -28,11 +28,6 @@ DbEnv dbenv(0); static map mapFileUseCount; static map mapDb; -static bool fRemoveLogFiles = false; -void RemoveLogFilesOnShutdown(bool fIn) -{ - fRemoveLogFiles = fIn; -} static void EnvShutdown() { if (!fDbEnvInit) @@ -48,24 +43,6 @@ static void EnvShutdown() printf("EnvShutdown exception: %s (%d)\n", e.what(), e.get_errno()); } DbEnv(0).remove(GetDataDir().c_str(), 0); - - if (fRemoveLogFiles) - { - filesystem::path datadir(GetDataDir()); - filesystem::directory_iterator it(datadir / "database"); - while (it != filesystem::directory_iterator()) - { - const filesystem::path& p = it->path(); -#if BOOST_FILESYSTEM_VERSION >= 3 - std::string f = p.filename().generic_string(); -#else - std::string f = p.filename(); -#endif - if (f.find("log.") == 0) - filesystem::remove(p); - ++it; - } - } } class CDBInit diff --git a/src/db.h b/src/db.h index 425dc2e57b..15bfb29c8e 100644 --- a/src/db.h +++ b/src/db.h @@ -28,8 +28,6 @@ class CBlockLocator; extern unsigned int nWalletDBUpdated; extern DbEnv dbenv; - -extern void RemoveLogFilesOnShutdown(bool fRemoveLogFiles); extern void DBFlush(bool fShutdown); void ThreadFlushWalletDB(void* parg); bool BackupWallet(const CWallet& wallet, const std::string& strDest); diff --git a/src/wallet.cpp b/src/wallet.cpp index 737f0e6238..43fb6b6da3 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -194,8 +194,7 @@ bool CWallet::EncryptWallet(const string& strWalletPassphrase) // Need to completely rewrite the wallet file; if we don't, bdb might keep // bits of the unencrypted private key in slack space in the database file. - if (CDB::Rewrite(strWalletFile)) - RemoveLogFilesOnShutdown(true); + CDB::Rewrite(strWalletFile); } return true; @@ -1134,7 +1133,6 @@ int CWallet::LoadWallet(bool& fFirstRunRet) { if (CDB::Rewrite(strWalletFile, "\x04pool")) { - RemoveLogFilesOnShutdown(true); setKeyPool.clear(); // Note: can't top-up keypool here, because wallet is locked. // User will be prompted to unlock wallet the next operation -- cgit v1.2.3 From 36b1eb763101299a4c4d4dad9d40b8ff70011d11 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sun, 20 Nov 2011 17:12:00 +0100 Subject: close old db when rewriting --- src/db.cpp | 102 +++++++++++++++++++++++++++++++------------------------------ 1 file changed, 52 insertions(+), 50 deletions(-) diff --git a/src/db.cpp b/src/db.cpp index 5cacf19692..f9a7d6c90a 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -195,61 +195,63 @@ bool CDB::Rewrite(const string& strFile, const char* pszSkip) bool fSuccess = true; printf("Rewriting %s...\n", strFile.c_str()); string strFileRes = strFile + ".rewrite"; - CDB db(strFile.c_str(), "r"); - Db* pdbCopy = new Db(&dbenv, 0); - - int ret = pdbCopy->open(NULL, // Txn pointer - strFileRes.c_str(), // Filename - "main", // Logical db name - DB_BTREE, // Database type - DB_CREATE, // Flags - 0); - if (ret > 0) - { - printf("Cannot create database file %s\n", strFileRes.c_str()); - fSuccess = false; - } - - Dbc* pcursor = db.GetCursor(); - if (pcursor) - while (fSuccess) + { // surround usage of db with extra {} + CDB db(strFile.c_str(), "r"); + Db* pdbCopy = new Db(&dbenv, 0); + + int ret = pdbCopy->open(NULL, // Txn pointer + strFileRes.c_str(), // Filename + "main", // Logical db name + DB_BTREE, // Database type + DB_CREATE, // Flags + 0); + if (ret > 0) { - CDataStream ssKey; - CDataStream ssValue; - int ret = db.ReadAtCursor(pcursor, ssKey, ssValue, DB_NEXT); - if (ret == DB_NOTFOUND) - { - pcursor->close(); - break; - } - else if (ret != 0) - { - pcursor->close(); - fSuccess = false; - break; - } - if (pszSkip && - strncmp(&ssKey[0], pszSkip, std::min(ssKey.size(), strlen(pszSkip))) == 0) - continue; - if (strncmp(&ssKey[0], "\x07version", 8) == 0) + printf("Cannot create database file %s\n", strFileRes.c_str()); + fSuccess = false; + } + + Dbc* pcursor = db.GetCursor(); + if (pcursor) + while (fSuccess) { - // Update version: - ssValue.clear(); - ssValue << VERSION; + CDataStream ssKey; + CDataStream ssValue; + int ret = db.ReadAtCursor(pcursor, ssKey, ssValue, DB_NEXT); + if (ret == DB_NOTFOUND) + { + pcursor->close(); + break; + } + else if (ret != 0) + { + pcursor->close(); + fSuccess = false; + break; + } + if (pszSkip && + strncmp(&ssKey[0], pszSkip, std::min(ssKey.size(), strlen(pszSkip))) == 0) + continue; + if (strncmp(&ssKey[0], "\x07version", 8) == 0) + { + // Update version: + ssValue.clear(); + ssValue << VERSION; + } + Dbt datKey(&ssKey[0], ssKey.size()); + Dbt datValue(&ssValue[0], ssValue.size()); + int ret2 = pdbCopy->put(NULL, &datKey, &datValue, DB_NOOVERWRITE); + if (ret2 > 0) + fSuccess = false; } - Dbt datKey(&ssKey[0], ssKey.size()); - Dbt datValue(&ssValue[0], ssValue.size()); - int ret2 = pdbCopy->put(NULL, &datKey, &datValue, DB_NOOVERWRITE); - if (ret2 > 0) + if (fSuccess) + { + db.Close(); + CloseDb(strFile); + if (pdbCopy->close(0)) fSuccess = false; + delete pdbCopy; } - if (fSuccess) - { - db.Close(); - CloseDb(strFile); - if (pdbCopy->close(0)) - fSuccess = false; - delete pdbCopy; } if (fSuccess) { -- cgit v1.2.3 From d885aba347c2c53f71fdd5aef588b7115d689183 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 21 Nov 2011 13:38:09 -0500 Subject: Bump version to 0.4.2 --- contrib/Bitcoin.app/Contents/Info.plist | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/contrib/Bitcoin.app/Contents/Info.plist b/contrib/Bitcoin.app/Contents/Info.plist index d5a278a570..9145db10f1 100644 --- a/contrib/Bitcoin.app/Contents/Info.plist +++ b/contrib/Bitcoin.app/Contents/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.4.1 + 0.4.2 CFBundleSignature ???? CFBundleVersion diff --git a/doc/README b/doc/README index 789cc9fb87..9c28f4c692 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.4.1 BETA +Bitcoin 0.4.2 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 7ff8834920..7a406d65a3 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.4.1 BETA +Bitcoin 0.4.2 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 4c837c974b..4500dc48e1 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.4.1 +!define VERSION 0.4.2 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.4.1-win32-setup.exe +OutFile bitcoin-0.4.2-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.4.1.0 +VIProductVersion 0.4.2.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index c531d2a198..64fae0367e 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -59,7 +59,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 40101; +static const int VERSION = 40200; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 45593c271a5a039d75fc136e46fac71fcb52e779 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Mon, 21 Nov 2011 14:38:47 -0500 Subject: Don't forget to bump release numbers in READMEs next time --- doc/release-process.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/release-process.txt b/doc/release-process.txt index bcda64dbed..953761b4a9 100644 --- a/doc/release-process.txt +++ b/doc/release-process.txt @@ -1,6 +1,7 @@ * update (commit) version in sources src/serialize.h share/setup.nsi + doc/README* * update (commit) version in OSX app bundle contrib/Bitcoin.app/Contents/Info.plist -- cgit v1.2.3 From 99fe0af2feaea626541fc14f479e6890202fb617 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Mon, 21 Nov 2011 14:37:59 -0500 Subject: Bump version numbers to 0.5.1 --- doc/README | 2 +- doc/README_windows.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/README b/doc/README index f45bf0c152..5e0f8ee1ed 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.5.0 BETA +Bitcoin 0.5.1 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index ea2f14c42a..d237615f57 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.5.0 BETA +Bitcoin 0.5.1 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying -- cgit v1.2.3 From adb9f7ddde0d31c7b70d37cd30ee8e5bd8a3b2f8 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Mon, 21 Nov 2011 14:38:47 -0500 Subject: Don't forget to bump release numbers in READMEs next time --- doc/release-process.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/release-process.txt b/doc/release-process.txt index ac388847c2..14d8efeb32 100644 --- a/doc/release-process.txt +++ b/doc/release-process.txt @@ -2,6 +2,7 @@ bitcoin-qt.pro src/serialize.h share/setup.nsi + doc/README* * tag version in git -- cgit v1.2.3 From 7597fcd92feb63f4ff2abf074ae70b3f575737e4 Mon Sep 17 00:00:00 2001 From: Alex B Date: Thu, 24 Nov 2011 12:32:19 +0100 Subject: Small fixes in both spanish translations --- src/qt/locale/bitcoin_es.ts | 63 ++++++++++++++++++++++++++++-------------- src/qt/locale/bitcoin_es_CL.ts | 63 ++++++++++++++++++++++++++++-------------- 2 files changed, 86 insertions(+), 40 deletions(-) diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index e2ec6bff54..49e0f0a2c7 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -321,7 +323,7 @@ Are you sure you wish to encrypt your wallet? E&xit - + &Salir @@ -331,7 +333,7 @@ Are you sure you wish to encrypt your wallet? &About %1 - + S&obre %1 @@ -426,7 +428,10 @@ Are you sure you wish to encrypt your wallet? %n active connection(s) to Bitcoin network - %n conexión activa hacia la red Bitcoin%n conexiones activas hacia la red Bitcoin + + %n conexión activa hacia la red Bitcoin + %n conexiones activas hacia la red Bitcoin + @@ -441,22 +446,34 @@ Are you sure you wish to encrypt your wallet? %n second(s) ago - Hace %n segundoHace %n segundos + + Hace %n segundo + Hace %n segundos + %n minute(s) ago - Hace %n minutoHace %n minutos + + Hace %n minuto + Hace %n minutos + %n hour(s) ago - Hace %n horaHace %n horas + + Hace %n hora + Hace %n horas + %n day(s) ago - Hace %n díaHace %n días + + Hace %n día + Hace %n días + @@ -750,12 +767,12 @@ Dirección: %4 <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Cartera</span></p></body></html> @@ -988,12 +1005,12 @@ p, li { white-space: pre-wrap; } , broadcast through %1 node - , emitido mediante %d nodo + , emitido mediante %1 nodo , broadcast through %1 nodes - , emitido mediante %d nodos + , emitido mediante %1 nodos @@ -1044,7 +1061,7 @@ p, li { white-space: pre-wrap; } (%1 matures in %2 more blocks) - (%s madura en %d bloques mas) + (%1 madura en %1 bloques mas) @@ -1122,7 +1139,10 @@ p, li { white-space: pre-wrap; } Open for %n block(s) - Abierto por %n bloqueAbierto por %n bloques + + Abierto por %n bloque + Abierto por %n bloques + @@ -1147,7 +1167,10 @@ p, li { white-space: pre-wrap; } Mined balance will be available in %n more blocks - El balance minado estará disponible en %n bloque masEl balance minado estará disponible en %n bloques mas + + El balance minado estará disponible en %n bloque mas + El balance minado estará disponible en %n bloques mas + @@ -1450,7 +1473,7 @@ p, li { white-space: pre-wrap; } - Don't generate coins + Don't generate coins No generar monedas @@ -1506,14 +1529,14 @@ p, li { white-space: pre-wrap; } - Don't accept connections from outside + Don't accept connections from outside No aceptar conexiones desde el exterior - Don't attempt to use UPnP to map the listening port + Don't attempt to use UPnP to map the listening port No intentar usar UPnP para mapear el puerto de entrada @@ -2336,7 +2359,7 @@ pero la información de los comentarios quedará en blanco. Bitcoin Qt - + Bitcoin Qt - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index b44c143446..bb9d299790 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -321,7 +323,7 @@ Are you sure you wish to encrypt your wallet? E&xit - + &Salir @@ -331,7 +333,7 @@ Are you sure you wish to encrypt your wallet? &About %1 - + S&obre %1 @@ -426,7 +428,10 @@ Are you sure you wish to encrypt your wallet? %n active connection(s) to Bitcoin network - %n conexión activa hacia la red Bitcoin%n conexiones activas hacia la red Bitcoin + + %n conexión activa hacia la red Bitcoin + %n conexiones activas hacia la red Bitcoin + @@ -441,22 +446,34 @@ Are you sure you wish to encrypt your wallet? %n second(s) ago - Hace %n segundoHace %n segundos + + Hace %n segundo + Hace %n segundos + %n minute(s) ago - Hace %n minutoHace %n minutos + + Hace %n minuto + Hace %n minutos + %n hour(s) ago - Hace %n horaHace %n horas + + Hace %n hora + Hace %n horas + %n day(s) ago - Hace %n díaHace %n días + + Hace %n día + Hace %n días + @@ -750,12 +767,12 @@ Dirección: %4 <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Cartera</span></p></body></html> @@ -988,12 +1005,12 @@ p, li { white-space: pre-wrap; } , broadcast through %1 node - , emitido mediante %d nodo + , emitido mediante %1 nodo , broadcast through %1 nodes - , emitido mediante %d nodos + , emitido mediante %1 nodos @@ -1044,7 +1061,7 @@ p, li { white-space: pre-wrap; } (%1 matures in %2 more blocks) - (%s madura en %d bloques mas) + (%1 madura en %2 bloques mas) @@ -1122,7 +1139,10 @@ p, li { white-space: pre-wrap; } Open for %n block(s) - Abierto por %n bloqueAbierto por %n bloques + + Abierto por %n bloque + Abierto por %n bloques + @@ -1147,7 +1167,10 @@ p, li { white-space: pre-wrap; } Mined balance will be available in %n more blocks - El balance minado estará disponible en %n bloque masEl balance minado estará disponible en %n bloques mas + + El balance minado estará disponible en %n bloque mas + El balance minado estará disponible en %n bloques mas + @@ -1450,7 +1473,7 @@ p, li { white-space: pre-wrap; } - Don't generate coins + Don't generate coins No generar monedas @@ -1506,14 +1529,14 @@ p, li { white-space: pre-wrap; } - Don't accept connections from outside + Don't accept connections from outside No aceptar conexiones desde el exterior - Don't attempt to use UPnP to map the listening port + Don't attempt to use UPnP to map the listening port No intentar usar UPnP para mapear el puerto de entrada @@ -2336,7 +2359,7 @@ pero la información de los comentarios quedará en blanco. Bitcoin Qt - + Bitcoin Qt - \ No newline at end of file + -- cgit v1.2.3 From 1c4be55a993bf77a5d44b9f468c12506e5b051ba Mon Sep 17 00:00:00 2001 From: Nils Schneider Date: Thu, 24 Nov 2011 13:40:32 +0100 Subject: update translation: de --- src/qt/locale/bitcoin_de.ts | 64 ++++++++++++++++++++++----------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index 97eb5cb642..f7b134a75d 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -328,7 +328,7 @@ Sind Sie sich sicher, dass Sie Ihre Brieftasche verschlüsseln möchten? &About %1 - + &Über %1 @@ -1885,7 +1885,7 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed. - + Verschlüsselung der Brieftasche fehlgeschlagen. @@ -1896,22 +1896,22 @@ Remember that encrypting your wallet cannot fully protect your bitcoins from bei Wallet is unencrypted, please encrypt it first. - + Brieftasche nicht verschlüsselt, bitte zuerst verschlüsseln. Enter the new passphrase for the wallet. - + Gib eine neue Passphrase für die Brieftasche eine. Re-enter the new passphrase for the wallet. - + Gib die neue Passphrase erneut ein. Wallet Passphrase Changed. - + Passphrase geändert. @@ -1948,7 +1948,7 @@ Label <b>Date:</b> - + <b>Datum:</b> @@ -1958,7 +1958,7 @@ Label <b>From:</b> - + <b>Von:</b> @@ -2003,7 +2003,7 @@ Label <b>Transaction fee:</b> - + <b>Transaktionsgebühr:</b> @@ -2048,7 +2048,7 @@ Label version %s - + Version %s @@ -2063,7 +2063,7 @@ Label Amount exceeds your balance - + Betrag übersteigt Ihr Guthaben @@ -2078,7 +2078,7 @@ Label Payment sent - + Zahlung gesendet @@ -2088,22 +2088,22 @@ Label Invalid address - + ungültige Adresse Sending %s to %s - + Sende %s an %s CANCELLED - + ABGEBROCHEN Cancelled - + Abgebrochen @@ -2113,7 +2113,7 @@ Label Error: - + Fehler: @@ -2123,12 +2123,12 @@ Label Connecting... - + Verbinde... Unable to connect - + Kann nicht verbinden @@ -2173,7 +2173,7 @@ Label Transaction aborted - + Transaktion abgebrochen @@ -2183,17 +2183,17 @@ Label Sending payment... - + Sende Zahlung... The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - + Fehler: Die Transaktion wurde abgelehnt. Dies kann passieren, wenn einige Ihrer Bitcoins aus Ihrer Brieftasche bereits ausgegeben wurden (z.B. aus einer Sicherungskopie Ihrer wallet.dat). Waiting for confirmation... - + Warte auf Bestätigung... @@ -2210,12 +2210,12 @@ but the comment information will be blank. Payment completed - + Die Zahlung wurde abgeschlossen Name - + Name @@ -2230,7 +2230,7 @@ but the comment information will be blank. Bitcoin Address - + Bitcoin Adresse @@ -2250,22 +2250,22 @@ but the comment information will be blank. Add Address - + Adresse hinzufügen Bitcoin - + Bitcoin Bitcoin - Generating - + Bitcoin - Generiere Bitcoin - (not connected) - + Bitcoin - (nicht verbunden) @@ -2300,7 +2300,7 @@ but the comment information will be blank. beta - + Beta @@ -2308,7 +2308,7 @@ but the comment information will be blank. Bitcoin Qt - + Bitcoin Qt \ No newline at end of file -- cgit v1.2.3 From 094c35cffc74cd6843cd858ca9afba7056db1ff3 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Thu, 24 Nov 2011 20:20:01 +0100 Subject: allow for filtering addresses and labels by searching for the typed string anywhere, not just at the beginning (#641) --- src/qt/transactionfilterproxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/transactionfilterproxy.cpp b/src/qt/transactionfilterproxy.cpp index a4c5b37171..16fb4dab92 100644 --- a/src/qt/transactionfilterproxy.cpp +++ b/src/qt/transactionfilterproxy.cpp @@ -35,7 +35,7 @@ bool TransactionFilterProxy::filterAcceptsRow(int sourceRow, const QModelIndex & return false; if(datetime < dateFrom || datetime > dateTo) return false; - if(!address.startsWith(addrPrefix) && !label.startsWith(addrPrefix)) + if (!address.contains(addrPrefix, Qt::CaseInsensitive) && !label.contains(addrPrefix, Qt::CaseInsensitive)) return false; if(amount < minAmount) return false; -- cgit v1.2.3 From a7d735dcc25c85ad883e6d619848ce0478ebe299 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Sun, 27 Nov 2011 14:53:30 -0500 Subject: Add missing command-line arguments to --help/-? output --- src/init.cpp | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index 2d21a26143..68303c19fa 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -162,10 +162,10 @@ bool AppInit2(int argc, char* argv[]) string strUsage = string() + _("Bitcoin version") + " " + FormatFullVersion() + "\n\n" + _("Usage:") + "\t\t\t\t\t\t\t\t\t\t\n" + - " bitcoin [options] \t " + "\n" + - " bitcoin [options] [params]\t " + _("Send command to -server or bitcoind\n") + - " bitcoin [options] help \t\t " + _("List commands\n") + - " bitcoin [options] help \t\t " + _("Get help for a command\n") + + " bitcoind [options] \t " + "\n" + + " bitcoind [options] [params]\t " + _("Send command to -server or bitcoind\n") + + " bitcoind [options] help \t\t " + _("List commands\n") + + " bitcoind [options] help \t\t " + _("Get help for a command\n") + _("Options:\n") + " -conf= \t\t " + _("Specify configuration file (default: bitcoin.conf)\n") + " -pid= \t\t " + _("Specify pid file (default: bitcoind.pid)\n") + @@ -176,9 +176,14 @@ bool AppInit2(int argc, char* argv[]) " -timeout= \t " + _("Specify connection timeout (in milliseconds)\n") + " -proxy= \t " + _("Connect through socks4 proxy\n") + " -dns \t " + _("Allow DNS lookups for addnode and connect\n") + + " -port= \t\t " + _("Listen for connections on (default: 8333 or testnet: 18333)\n") + + " -maxconnections=\t " + _("Maintain at most connections to peers (default: 125)\n") + " -addnode= \t " + _("Add a node to connect to\n") + " -connect= \t\t " + _("Connect only to the specified node\n") + " -nolisten \t " + _("Don't accept connections from outside\n") + + " -nodnsseed \t " + _("Don't bootstrap list of peers using DNS\n") + + " -maxreceivebuffer=\t " + _("Maximum per-connection receive buffer, *1000 bytes (default: 10000)\n") + + " -maxsendbuffer=\t " + _("Maximum per-connection send buffer, *1000 bytes (default: 10000)\n") + #ifdef USE_UPNP #if USE_UPNP " -noupnp \t " + _("Don't attempt to use UPnP to map the listening port\n") + @@ -194,6 +199,12 @@ bool AppInit2(int argc, char* argv[]) " -daemon \t\t " + _("Run in the background as a daemon and accept commands\n") + #endif " -testnet \t\t " + _("Use the test network\n") + + " -debug \t\t " + _("Output extra debugging information\n") + + " -logtimestamps \t " + _("Prepend debug output with timestamp\n") + + " -printtoconsole \t " + _("Send trace/debug info to console instead of debug.log file\n") + +#ifdef WIN32 + " -printtodebugger \t " + _("Send trace/debug info to debugger\n") + +#endif " -rpcuser= \t " + _("Username for JSON-RPC connections\n") + " -rpcpassword=\t " + _("Password for JSON-RPC connections\n") + " -rpcport= \t\t " + _("Listen for JSON-RPC connections on (default: 8332)\n") + -- cgit v1.2.3 From cba18514c0d5b364ee96a984c255dc9e29a00d68 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Sun, 27 Nov 2011 14:53:30 -0500 Subject: Add missing command-line arguments to --help/-? output --- src/init.cpp | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index a6d0ab56e3..367e75f39b 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -172,10 +172,10 @@ bool AppInit2(int argc, char* argv[]) string strUsage = string() + _("Bitcoin version") + " " + FormatFullVersion() + "\n\n" + _("Usage:") + "\t\t\t\t\t\t\t\t\t\t\n" + - " bitcoin [options] \t " + "\n" + - " bitcoin [options] [params]\t " + _("Send command to -server or bitcoind\n") + - " bitcoin [options] help \t\t " + _("List commands\n") + - " bitcoin [options] help \t\t " + _("Get help for a command\n") + + " bitcoind [options] \t " + "\n" + + " bitcoind [options] [params]\t " + _("Send command to -server or bitcoind\n") + + " bitcoind [options] help \t\t " + _("List commands\n") + + " bitcoind [options] help \t\t " + _("Get help for a command\n") + _("Options:\n") + " -conf= \t\t " + _("Specify configuration file (default: bitcoin.conf)\n") + " -pid= \t\t " + _("Specify pid file (default: bitcoind.pid)\n") + @@ -186,11 +186,16 @@ bool AppInit2(int argc, char* argv[]) " -timeout= \t " + _("Specify connection timeout (in milliseconds)\n") + " -proxy= \t " + _("Connect through socks4 proxy\n") + " -dns \t " + _("Allow DNS lookups for addnode and connect\n") + + " -port= \t\t " + _("Listen for connections on (default: 8333 or testnet: 18333)\n") + + " -maxconnections=\t " + _("Maintain at most connections to peers (default: 125)\n") + " -addnode= \t " + _("Add a node to connect to\n") + " -connect= \t\t " + _("Connect only to the specified node\n") + " -nolisten \t " + _("Don't accept connections from outside\n") + + " -nodnsseed \t " + _("Don't bootstrap list of peers using DNS\n") + " -banscore= \t " + _("Threshold for disconnecting misbehaving peers (default: 100)\n") + " -bantime= \t " + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)\n") + + " -maxreceivebuffer=\t " + _("Maximum per-connection receive buffer, *1000 bytes (default: 10000)\n") + + " -maxsendbuffer=\t " + _("Maximum per-connection send buffer, *1000 bytes (default: 10000)\n") + #ifdef USE_UPNP #if USE_UPNP " -noupnp \t " + _("Don't attempt to use UPnP to map the listening port\n") + @@ -206,6 +211,12 @@ bool AppInit2(int argc, char* argv[]) " -daemon \t\t " + _("Run in the background as a daemon and accept commands\n") + #endif " -testnet \t\t " + _("Use the test network\n") + + " -debug \t\t " + _("Output extra debugging information\n") + + " -logtimestamps \t " + _("Prepend debug output with timestamp\n") + + " -printtoconsole \t " + _("Send trace/debug info to console instead of debug.log file\n") + +#ifdef WIN32 + " -printtodebugger \t " + _("Send trace/debug info to debugger\n") + +#endif " -rpcuser= \t " + _("Username for JSON-RPC connections\n") + " -rpcpassword=\t " + _("Password for JSON-RPC connections\n") + " -rpcport= \t\t " + _("Listen for JSON-RPC connections on (default: 8332)\n") + -- cgit v1.2.3 From 3741185a51cada1adb17b1578a086544101ce7c7 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sat, 26 Nov 2011 09:55:12 +0100 Subject: Make home and addressbook icon more consistent with other toolbar icons (make it blue and flip light source direction) --- src/qt/res/icons/address-book.png | Bin 1851 -> 1916 bytes src/qt/res/icons/overview.png | Bin 7936 -> 7455 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/src/qt/res/icons/address-book.png b/src/qt/res/icons/address-book.png index dbfc28ab3d..d41dbe6539 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/overview.png b/src/qt/res/icons/overview.png index 3b90fe5569..ee2511f01d 100644 Binary files a/src/qt/res/icons/overview.png and b/src/qt/res/icons/overview.png differ -- cgit v1.2.3 From d27be1f55777bd502beb6b89513f1a03ed988f1a Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 8 Sep 2011 16:50:58 -0400 Subject: Moved checkpoints out of main, to prep for using them to help prevent DoS attacks --- bitcoin-qt.pro | 2 ++ src/checkpoints.cpp | 43 ++++++++++++++++++++++++++++++++++++++++++ src/checkpoints.h | 22 +++++++++++++++++++++ src/main.cpp | 32 +++++-------------------------- src/main.h | 1 - src/makefile.linux-mingw | 2 ++ src/makefile.mingw | 2 ++ src/makefile.osx | 2 ++ src/makefile.unix | 2 ++ src/makefile.vc | 6 ++++++ src/test/Checkpoints_tests.cpp | 34 +++++++++++++++++++++++++++++++++ src/test/DoS_tests.cpp | 1 - src/test/test_bitcoin.cpp | 1 + 13 files changed, 121 insertions(+), 29 deletions(-) create mode 100644 src/checkpoints.cpp create mode 100644 src/checkpoints.h create mode 100644 src/test/Checkpoints_tests.cpp diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 7444ff4ac1..8fc177f7f4 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -88,6 +88,7 @@ HEADERS += src/qt/bitcoingui.h \ src/qt/bitcoinaddressvalidator.h \ src/base58.h \ src/bignum.h \ + src/checkpoints.h \ src/util.h \ src/uint256.h \ src/serialize.h \ @@ -152,6 +153,7 @@ SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \ src/init.cpp \ src/net.cpp \ src/irc.cpp \ + src/checkpoints.cpp \ src/db.cpp \ src/json/json_spirit_writer.cpp \ src/json/json_spirit_value.cpp \ diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp new file mode 100644 index 0000000000..4419a06c83 --- /dev/null +++ b/src/checkpoints.cpp @@ -0,0 +1,43 @@ +// Copyright (c) 2011 The Bitcoin developers +// Distributed under the MIT/X11 software license, see the accompanying +// file license.txt or http://www.opensource.org/licenses/mit-license.php. + +#include "checkpoints.h" +#include "uint256.h" +#include "util.h" + +#include // for 'map_list_of()' + +namespace Checkpoints +{ + typedef std::map MapCheckpoints; + + static MapCheckpoints mapCheckpoints = + boost::assign::map_list_of + ( 11111, uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d")) + ( 33333, uint256("0x000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6")) + ( 68555, uint256("0x00000000001e1b4903550a0b96e9a9405c8a95f387162e4944e8d9fbe501cd6a")) + ( 70567, uint256("0x00000000006a49b14bcf27462068f1264c961f11fa2e0eddd2be0791e1d4124a")) + ( 74000, uint256("0x0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20")) + (105000, uint256("0x00000000000291ce28027faea320c8d2b054b2e0fe44a773f3eefb151d6bdc97")) + (118000, uint256("0x000000000000774a7f8a7a12dc906ddb9e17e75d684f15e00f8767f9e8f36553")) + (134444, uint256("0x00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe")) + (140700, uint256("0x000000000000033b512028abb90e1626d8b346fd0ed598ac0a3c371138dce2bd")) + ; + + bool CheckBlock(int nHeight, const uint256& hash) + { + if (fTestNet) return true; // Testnet has no checkpoints + + MapCheckpoints::const_iterator i = mapCheckpoints.find(nHeight); + if (i == mapCheckpoints.end()) return true; + return hash == i->second; + } + + int GetTotalBlocksEstimate() + { + if (fTestNet) return 0; // Testnet has no checkpoints + + return mapCheckpoints.rbegin()->first; + } +} diff --git a/src/checkpoints.h b/src/checkpoints.h new file mode 100644 index 0000000000..32094fdde6 --- /dev/null +++ b/src/checkpoints.h @@ -0,0 +1,22 @@ +// Copyright (c) 2011 The Bitcoin developers +// Distributed under the MIT/X11 software license, see the accompanying +// file license.txt or http://www.opensource.org/licenses/mit-license.php. +#ifndef BITCOIN_CHECKPOINT_H +#define BITCOIN_CHECKPOINT_H + +class uint256; + +// +// Block-chain checkpoints are compiled-in sanity checks. +// They are updated every release or three. +// +namespace Checkpoints +{ + // Returns true if block passes checkpoint checks + bool CheckBlock(int nHeight, const uint256& hash); + + // Return conservative estimate of total number of blocks, 0 if unknown + int GetTotalBlocksEstimate(); +} + +#endif diff --git a/src/main.cpp b/src/main.cpp index 47f1090727..832a0f9240 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3,6 +3,7 @@ // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" +#include "checkpoints.h" #include "db.h" #include "net.h" #include "init.h" @@ -29,7 +30,6 @@ map mapNextTx; map mapBlockIndex; uint256 hashGenesisBlock("0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f"); static CBigNum bnProofOfWorkLimit(~uint256(0) >> 32); -const int nTotalBlocksEstimate = 140700; // Conservative estimate of total nr of blocks on main chain const int nInitialBlockThreshold = 120; // Regard blocks up until N-threshold as "initial download" CBlockIndex* pindexGenesisBlock = NULL; int nBestHeight = -1; @@ -721,28 +721,15 @@ bool CheckProofOfWork(uint256 hash, unsigned int nBits) return true; } -// Return conservative estimate of total number of blocks, 0 if unknown -int GetTotalBlocksEstimate() -{ - if(fTestNet) - { - return 0; - } - else - { - return nTotalBlocksEstimate; - } -} - // Return maximum amount of blocks that other nodes claim to have int GetNumBlocksOfPeers() { - return std::max(cPeerBlockCounts.median(), GetTotalBlocksEstimate()); + return std::max(cPeerBlockCounts.median(), Checkpoints::GetTotalBlocksEstimate()); } bool IsInitialBlockDownload() { - if (pindexBest == NULL || nBestHeight < (GetTotalBlocksEstimate()-nInitialBlockThreshold)) + if (pindexBest == NULL || nBestHeight < (Checkpoints::GetTotalBlocksEstimate()-nInitialBlockThreshold)) return true; static int64 nLastUpdate; static CBlockIndex* pindexLastBest; @@ -1317,17 +1304,8 @@ bool CBlock::AcceptBlock() return DoS(10, error("AcceptBlock() : contains a non-final transaction")); // Check that the block chain matches the known block chain up to a checkpoint - if (!fTestNet) - if ((nHeight == 11111 && hash != uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d")) || - (nHeight == 33333 && hash != uint256("0x000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6")) || - (nHeight == 68555 && hash != uint256("0x00000000001e1b4903550a0b96e9a9405c8a95f387162e4944e8d9fbe501cd6a")) || - (nHeight == 70567 && hash != uint256("0x00000000006a49b14bcf27462068f1264c961f11fa2e0eddd2be0791e1d4124a")) || - (nHeight == 74000 && hash != uint256("0x0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20")) || - (nHeight == 105000 && hash != uint256("0x00000000000291ce28027faea320c8d2b054b2e0fe44a773f3eefb151d6bdc97")) || - (nHeight == 118000 && hash != uint256("0x000000000000774a7f8a7a12dc906ddb9e17e75d684f15e00f8767f9e8f36553")) || - (nHeight == 134444 && hash != uint256("0x00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe")) || - (nHeight == 140700 && hash != uint256("0x000000000000033b512028abb90e1626d8b346fd0ed598ac0a3c371138dce2bd"))) - return DoS(100, error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight)); + if (!Checkpoints::CheckBlock(nHeight, hash)) + return DoS(100, error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight)); // Write block to history file if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK))) diff --git a/src/main.h b/src/main.h index 60ca318381..f459d050ce 100644 --- a/src/main.h +++ b/src/main.h @@ -99,7 +99,6 @@ void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1); bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey); bool CheckProofOfWork(uint256 hash, unsigned int nBits); -int GetTotalBlocksEstimate(); int GetNumBlocksOfPeers(); bool IsInitialBlockDownload(); std::string GetWarnings(std::string strFor); diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 29b433f851..61f8d4881f 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -32,6 +32,7 @@ CFLAGS=-O2 -w -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATH HEADERS = \ base58.h \ bignum.h \ + checkpoints.h \ crypter.h \ db.h \ headers.h \ @@ -61,6 +62,7 @@ endif LIBS += -l mingwthrd -l kernel32 -l user32 -l gdi32 -l comdlg32 -l winspool -l winmm -l shell32 -l comctl32 -l ole32 -l oleaut32 -l uuid -l rpcrt4 -l advapi32 -l ws2_32 -l shlwapi OBJS= \ + obj/checkpoints.o \ obj/crypter.o \ obj/db.o \ obj/init.o \ diff --git a/src/makefile.mingw b/src/makefile.mingw index 95d09f8770..2cb78d97e6 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -29,6 +29,7 @@ CFLAGS=-mthreads -O2 -w -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(I HEADERS = \ base58.h \ bignum.h \ + checkpoints.h \ crypter.h \ db.h \ headers.h \ @@ -58,6 +59,7 @@ endif LIBS += -l kernel32 -l user32 -l gdi32 -l comdlg32 -l winspool -l winmm -l shell32 -l comctl32 -l ole32 -l oleaut32 -l uuid -l rpcrt4 -l advapi32 -l ws2_32 -l shlwapi OBJS= \ + obj/checkpoints.o \ obj/crypter.o \ obj/db.o \ obj/init.o \ diff --git a/src/makefile.osx b/src/makefile.osx index 7830f3bad5..de71887935 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -49,6 +49,7 @@ CFLAGS=-mmacosx-version-min=10.5 -arch i386 -O3 -Wno-invalid-offsetof -Wformat $ HEADERS = \ base58.h \ bignum.h \ + checkpoints.h \ crypter.h \ db.h \ headers.h \ @@ -69,6 +70,7 @@ HEADERS = \ wallet.h OBJS= \ + obj/checkpoints.o \ obj/crypter.o \ obj/db.o \ obj/init.o \ diff --git a/src/makefile.unix b/src/makefile.unix index 5f841ea0fe..6c48199546 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -87,6 +87,7 @@ xCXXFLAGS=-pthread -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(HARDEN HEADERS = \ base58.h \ bignum.h \ + checkpoints.h \ crypter.h \ db.h \ headers.h \ @@ -107,6 +108,7 @@ HEADERS = \ wallet.h OBJS= \ + obj/checkpoints.o \ obj/crypter.o \ obj/db.o \ obj/init.o \ diff --git a/src/makefile.vc b/src/makefile.vc index c7e8578a95..60f1e09633 100644 --- a/src/makefile.vc +++ b/src/makefile.vc @@ -43,6 +43,7 @@ CFLAGS=/MD /c /nologo /EHsc /GR /Zm300 $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS) HEADERS = \ base58.h \ bignum.h \ + checkpoints.h \ crypter.h \ db.h \ headers.h \ @@ -65,6 +66,7 @@ HEADERS = \ wallet.h OBJS= \ + obj\checkpoints.o \ obj\crypter.o \ obj\db.o \ obj\init.o \ @@ -87,6 +89,8 @@ all: bitcoind.exe .cpp{obj}.obj: cl $(CFLAGS) /DGUI /Fo$@ %s +obj\checkpoints.obj: $(HEADERS) + obj\util.obj: $(HEADERS) obj\script.obj: $(HEADERS) @@ -116,6 +120,8 @@ obj\uibase.obj: $(HEADERS) .cpp{obj\nogui}.obj: cl $(CFLAGS) /Fo$@ %s +obj\nogui\checkpoints.obj: $(HEADERS) + obj\nogui\util.obj: $(HEADERS) obj\nogui\script.obj: $(HEADERS) diff --git a/src/test/Checkpoints_tests.cpp b/src/test/Checkpoints_tests.cpp new file mode 100644 index 0000000000..0d8a366d7a --- /dev/null +++ b/src/test/Checkpoints_tests.cpp @@ -0,0 +1,34 @@ +// +// Unit tests for block-chain checkpoints +// +#include // for 'map_list_of()' +#include +#include + +#include "../checkpoints.h" +#include "../util.h" + +using namespace std; + +BOOST_AUTO_TEST_SUITE(Checkpoints_tests) + +BOOST_AUTO_TEST_CASE(sanity) +{ + uint256 p11111 = uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d"); + uint256 p140700 = uint256("0x000000000000033b512028abb90e1626d8b346fd0ed598ac0a3c371138dce2bd"); + BOOST_CHECK(Checkpoints::CheckBlock(11111, p11111)); + BOOST_CHECK(Checkpoints::CheckBlock(140700, p140700)); + + + // Wrong hashes at checkpoints should fail: + BOOST_CHECK(!Checkpoints::CheckBlock(11111, p140700)); + BOOST_CHECK(!Checkpoints::CheckBlock(140700, p11111)); + + // ... but any hash not at a checkpoint should succeed: + BOOST_CHECK(Checkpoints::CheckBlock(11111+1, p140700)); + BOOST_CHECK(Checkpoints::CheckBlock(140700+1, p11111)); + + BOOST_CHECK(Checkpoints::GetTotalBlocksEstimate() >= 140700); +} + +BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/DoS_tests.cpp b/src/test/DoS_tests.cpp index e60bb742dd..1093b73d80 100644 --- a/src/test/DoS_tests.cpp +++ b/src/test/DoS_tests.cpp @@ -64,5 +64,4 @@ BOOST_AUTO_TEST_CASE(DoS_bantime) BOOST_CHECK(!CNode::IsBanned(addr.ip)); } - BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index 8863aad478..39a7c88e13 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -13,6 +13,7 @@ #include "util_tests.cpp" #include "base58_tests.cpp" #include "miner_tests.cpp" +#include "Checkpoints_tests.cpp" CWallet* pwalletMain; -- cgit v1.2.3 From f8c3eb9568fcaff41afb257f6058d1f33ae14358 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 8 Sep 2011 12:51:43 -0400 Subject: Orphan block fill-up-memory attack prevention --- src/checkpoints.cpp | 32 ++++++++++++++++++++++++++----- src/checkpoints.h | 7 +++++++ src/main.cpp | 49 +++++++++++++++++++++++++++++++++++++++++++++--- src/main.h | 1 + src/test/DoS_tests.cpp | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 132 insertions(+), 8 deletions(-) diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index 4419a06c83..c7e054df37 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -2,16 +2,23 @@ // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. -#include "checkpoints.h" -#include "uint256.h" -#include "util.h" - #include // for 'map_list_of()' +#include + +#include "headers.h" +#include "checkpoints.h" namespace Checkpoints { typedef std::map MapCheckpoints; + // + // What makes a good checkpoint block? + // + Is surrounded by blocks with reasonable timestamps + // (no blocks before with a timestamp after, none after with + // timestamp before) + // + Contains no strange transactions + // static MapCheckpoints mapCheckpoints = boost::assign::map_list_of ( 11111, uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d")) @@ -36,8 +43,23 @@ namespace Checkpoints int GetTotalBlocksEstimate() { - if (fTestNet) return 0; // Testnet has no checkpoints + if (fTestNet) return 0; return mapCheckpoints.rbegin()->first; } + + CBlockIndex* GetLastCheckpoint(const std::map& mapBlockIndex) + { + if (fTestNet) return NULL; + + int64 nResult; + BOOST_REVERSE_FOREACH(const MapCheckpoints::value_type& i, mapCheckpoints) + { + const uint256& hash = i.second; + std::map::const_iterator t = mapBlockIndex.find(hash); + if (t != mapBlockIndex.end()) + return t->second; + } + return NULL; + } } diff --git a/src/checkpoints.h b/src/checkpoints.h index 32094fdde6..9d52da404f 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -4,7 +4,11 @@ #ifndef BITCOIN_CHECKPOINT_H #define BITCOIN_CHECKPOINT_H +#include +#include "util.h" + class uint256; +class CBlockIndex; // // Block-chain checkpoints are compiled-in sanity checks. @@ -17,6 +21,9 @@ namespace Checkpoints // Return conservative estimate of total number of blocks, 0 if unknown int GetTotalBlocksEstimate(); + + // Returns last CBlockIndex* in mapBlockIndex that is a checkpoint + CBlockIndex* GetLastCheckpoint(const std::map& mapBlockIndex); } #endif diff --git a/src/main.cpp b/src/main.cpp index 832a0f9240..a7871fcc16 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -659,11 +659,32 @@ int64 static GetBlockValue(int nHeight, int64 nFees) return nSubsidy + nFees; } +static const int64 nTargetTimespan = 14 * 24 * 60 * 60; // two weeks +static const int64 nTargetSpacing = 10 * 60; +static const int64 nInterval = nTargetTimespan / nTargetSpacing; + +// +// minimum amount of work that could possibly be required nTime after +// minimum work required was nBase +// +unsigned int ComputeMinWork(unsigned int nBase, int64 nTime) +{ + CBigNum bnResult; + bnResult.SetCompact(nBase); + while (nTime > 0 && bnResult < bnProofOfWorkLimit) + { + // Maximum 400% adjustment... + bnResult *= 4; + // ... in best-case exactly 4-times-normal target time + nTime -= nTargetTimespan*4; + } + if (bnResult > bnProofOfWorkLimit) + bnResult = bnProofOfWorkLimit; + return bnResult.GetCompact(); +} + unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast) { - const int64 nTargetTimespan = 14 * 24 * 60 * 60; // two weeks - const int64 nTargetSpacing = 10 * 60; - const int64 nInterval = nTargetTimespan / nTargetSpacing; // Genesis block if (pindexLast == NULL) @@ -1340,6 +1361,28 @@ bool ProcessBlock(CNode* pfrom, CBlock* pblock) if (!pblock->CheckBlock()) return error("ProcessBlock() : CheckBlock FAILED"); + CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(mapBlockIndex); + if (pcheckpoint && pblock->hashPrevBlock != hashBestChain) + { + // Extra checks to prevent "fill up memory by spamming with bogus blocks" + int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime; + if (deltaTime < 0) + { + pfrom->Misbehaving(100); + return error("ProcessBlock() : block with timestamp before last checkpoint"); + } + CBigNum bnNewBlock; + bnNewBlock.SetCompact(pblock->nBits); + CBigNum bnRequired; + bnRequired.SetCompact(ComputeMinWork(pcheckpoint->nBits, deltaTime)); + if (bnNewBlock > bnRequired) + { + pfrom->Misbehaving(100); + return error("ProcessBlock() : block with too little proof-of-work"); + } + } + + // If don't already have its previous block, shunt it off to holding area until we get it if (!mapBlockIndex.count(pblock->hashPrevBlock)) { diff --git a/src/main.h b/src/main.h index f459d050ce..3870cee864 100644 --- a/src/main.h +++ b/src/main.h @@ -99,6 +99,7 @@ void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1); bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey); bool CheckProofOfWork(uint256 hash, unsigned int nBits); +unsigned int ComputeMinWork(unsigned int nBase, int64 nTime); int GetNumBlocksOfPeers(); bool IsInitialBlockDownload(); std::string GetWarnings(std::string strFor); diff --git a/src/test/DoS_tests.cpp b/src/test/DoS_tests.cpp index 1093b73d80..01e6691254 100644 --- a/src/test/DoS_tests.cpp +++ b/src/test/DoS_tests.cpp @@ -1,6 +1,7 @@ // // Unit tests for denial-of-service detection/prevention code // +#include // for 'map_list_of()' #include #include @@ -64,4 +65,54 @@ BOOST_AUTO_TEST_CASE(DoS_bantime) BOOST_CHECK(!CNode::IsBanned(addr.ip)); } +static bool CheckNBits(unsigned int nbits1, int64 time1, unsigned int nbits2, int64 time2) +{ + if (time1 > time2) + return CheckNBits(nbits2, time2, nbits1, time1); + int64 deltaTime = time2-time1; + + CBigNum required; + required.SetCompact(ComputeMinWork(nbits1, deltaTime)); + CBigNum have; + have.SetCompact(nbits2); + return (have <= required); +} + +BOOST_AUTO_TEST_CASE(DoS_checknbits) +{ + using namespace boost::assign; // for 'map_list_of()' + + // Timestamps,nBits from the bitcoin blockchain. + // These are the block-chain checkpoint blocks + typedef std::map BlockData; + BlockData chainData = + map_list_of(1239852051,486604799)(1262749024,486594666) + (1279305360,469854461)(1280200847,469830746)(1281678674,469809688) + (1296207707,453179945)(1302624061,453036989)(1309640330,437004818) + (1313172719,436789733); + + // Make sure CheckNBits considers every combination of block-chain-lock-in-points + // "sane": + BOOST_FOREACH(const BlockData::value_type& i, chainData) + { + BOOST_FOREACH(const BlockData::value_type& j, chainData) + { + BOOST_CHECK(CheckNBits(i.second, i.first, j.second, j.first)); + } + } + + // Test a couple of insane combinations: + BlockData::value_type firstcheck = *(chainData.begin()); + BlockData::value_type lastcheck = *(chainData.rbegin()); + + // First checkpoint difficulty at or a while after the last checkpoint time should fail when + // compared to last checkpoint + BOOST_CHECK(!CheckNBits(firstcheck.second, lastcheck.first+60*10, lastcheck.second, lastcheck.first)); + BOOST_CHECK(!CheckNBits(firstcheck.second, lastcheck.first+60*60*24*14, lastcheck.second, lastcheck.first)); + + // ... but OK if enough time passed for difficulty to adjust downward: + BOOST_CHECK(CheckNBits(firstcheck.second, lastcheck.first+60*60*24*365*4, lastcheck.second, lastcheck.first)); + +} + BOOST_AUTO_TEST_SUITE_END() -- cgit v1.2.3 From 0e6425da4a29d6944e7edce85535725e1f963e2c Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 8 Sep 2011 16:50:58 -0400 Subject: Moved checkpoints out of main, to prep for using them to help prevent DoS attacks --- src/checkpoints.cpp | 43 ++++++++++++++++++++++++++++++++++++++++++ src/checkpoints.h | 22 +++++++++++++++++++++ src/main.cpp | 30 ++++------------------------- src/main.h | 1 - src/makefile.linux-mingw | 2 ++ src/makefile.mingw | 2 ++ src/makefile.osx | 2 ++ src/makefile.unix | 2 ++ src/makefile.vc | 6 ++++++ src/test/Checkpoints_tests.cpp | 34 +++++++++++++++++++++++++++++++++ src/test/test_bitcoin.cpp | 1 + 11 files changed, 118 insertions(+), 27 deletions(-) create mode 100644 src/checkpoints.cpp create mode 100644 src/checkpoints.h create mode 100644 src/test/Checkpoints_tests.cpp diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp new file mode 100644 index 0000000000..4419a06c83 --- /dev/null +++ b/src/checkpoints.cpp @@ -0,0 +1,43 @@ +// Copyright (c) 2011 The Bitcoin developers +// Distributed under the MIT/X11 software license, see the accompanying +// file license.txt or http://www.opensource.org/licenses/mit-license.php. + +#include "checkpoints.h" +#include "uint256.h" +#include "util.h" + +#include // for 'map_list_of()' + +namespace Checkpoints +{ + typedef std::map MapCheckpoints; + + static MapCheckpoints mapCheckpoints = + boost::assign::map_list_of + ( 11111, uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d")) + ( 33333, uint256("0x000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6")) + ( 68555, uint256("0x00000000001e1b4903550a0b96e9a9405c8a95f387162e4944e8d9fbe501cd6a")) + ( 70567, uint256("0x00000000006a49b14bcf27462068f1264c961f11fa2e0eddd2be0791e1d4124a")) + ( 74000, uint256("0x0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20")) + (105000, uint256("0x00000000000291ce28027faea320c8d2b054b2e0fe44a773f3eefb151d6bdc97")) + (118000, uint256("0x000000000000774a7f8a7a12dc906ddb9e17e75d684f15e00f8767f9e8f36553")) + (134444, uint256("0x00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe")) + (140700, uint256("0x000000000000033b512028abb90e1626d8b346fd0ed598ac0a3c371138dce2bd")) + ; + + bool CheckBlock(int nHeight, const uint256& hash) + { + if (fTestNet) return true; // Testnet has no checkpoints + + MapCheckpoints::const_iterator i = mapCheckpoints.find(nHeight); + if (i == mapCheckpoints.end()) return true; + return hash == i->second; + } + + int GetTotalBlocksEstimate() + { + if (fTestNet) return 0; // Testnet has no checkpoints + + return mapCheckpoints.rbegin()->first; + } +} diff --git a/src/checkpoints.h b/src/checkpoints.h new file mode 100644 index 0000000000..32094fdde6 --- /dev/null +++ b/src/checkpoints.h @@ -0,0 +1,22 @@ +// Copyright (c) 2011 The Bitcoin developers +// Distributed under the MIT/X11 software license, see the accompanying +// file license.txt or http://www.opensource.org/licenses/mit-license.php. +#ifndef BITCOIN_CHECKPOINT_H +#define BITCOIN_CHECKPOINT_H + +class uint256; + +// +// Block-chain checkpoints are compiled-in sanity checks. +// They are updated every release or three. +// +namespace Checkpoints +{ + // Returns true if block passes checkpoint checks + bool CheckBlock(int nHeight, const uint256& hash); + + // Return conservative estimate of total number of blocks, 0 if unknown + int GetTotalBlocksEstimate(); +} + +#endif diff --git a/src/main.cpp b/src/main.cpp index 6a3bacc78e..dad7d144e7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3,6 +3,7 @@ // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" +#include "checkpoints.h" #include "db.h" #include "net.h" #include "init.h" @@ -30,7 +31,6 @@ map mapNextTx; map mapBlockIndex; uint256 hashGenesisBlock("0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f"); static CBigNum bnProofOfWorkLimit(~uint256(0) >> 32); -const int nTotalBlocksEstimate = 140700; // Conservative estimate of total nr of blocks on main chain const int nInitialBlockThreshold = 120; // Regard blocks up until N-threshold as "initial download" CBlockIndex* pindexGenesisBlock = NULL; int nBestHeight = -1; @@ -713,22 +713,9 @@ bool CheckProofOfWork(uint256 hash, unsigned int nBits) return true; } -// Return conservative estimate of total number of blocks, 0 if unknown -int GetTotalBlocksEstimate() -{ - if(fTestNet) - { - return 0; - } - else - { - return nTotalBlocksEstimate; - } -} - bool IsInitialBlockDownload() { - if (pindexBest == NULL || nBestHeight < (GetTotalBlocksEstimate()-nInitialBlockThreshold)) + if (pindexBest == NULL || nBestHeight < (Checkpoints::GetTotalBlocksEstimate()-nInitialBlockThreshold)) return true; static int64 nLastUpdate; static CBlockIndex* pindexLastBest; @@ -1294,17 +1281,8 @@ bool CBlock::AcceptBlock() return error("AcceptBlock() : contains a non-final transaction"); // Check that the block chain matches the known block chain up to a checkpoint - if (!fTestNet) - if ((nHeight == 11111 && hash != uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d")) || - (nHeight == 33333 && hash != uint256("0x000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6")) || - (nHeight == 68555 && hash != uint256("0x00000000001e1b4903550a0b96e9a9405c8a95f387162e4944e8d9fbe501cd6a")) || - (nHeight == 70567 && hash != uint256("0x00000000006a49b14bcf27462068f1264c961f11fa2e0eddd2be0791e1d4124a")) || - (nHeight == 74000 && hash != uint256("0x0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20")) || - (nHeight == 105000 && hash != uint256("0x00000000000291ce28027faea320c8d2b054b2e0fe44a773f3eefb151d6bdc97")) || - (nHeight == 118000 && hash != uint256("0x000000000000774a7f8a7a12dc906ddb9e17e75d684f15e00f8767f9e8f36553")) || - (nHeight == 134444 && hash != uint256("0x00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe")) || - (nHeight == 140700 && hash != uint256("0x000000000000033b512028abb90e1626d8b346fd0ed598ac0a3c371138dce2bd"))) - return error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight); + if (!Checkpoints::CheckBlock(nHeight, hash)) + return error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight); // Write block to history file if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK))) diff --git a/src/main.h b/src/main.h index c400145d01..f5e7f6c3e3 100644 --- a/src/main.h +++ b/src/main.h @@ -98,7 +98,6 @@ void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1); bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey); bool CheckProofOfWork(uint256 hash, unsigned int nBits); -int GetTotalBlocksEstimate(); bool IsInitialBlockDownload(); std::string GetWarnings(std::string strFor); diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 24cc127c2d..23b417cad1 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -38,6 +38,7 @@ CFLAGS=-O2 -w -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATH HEADERS = \ base58.h \ bignum.h \ + checkpoints.h \ crypter.h \ db.h \ headers.h \ @@ -68,6 +69,7 @@ endif LIBS += -l mingwthrd -l kernel32 -l user32 -l gdi32 -l comdlg32 -l winspool -l winmm -l shell32 -l comctl32 -l ole32 -l oleaut32 -l uuid -l rpcrt4 -l advapi32 -l ws2_32 -l shlwapi OBJS= \ + obj/checkpoints.o \ obj/crypter.o \ obj/db.o \ obj/init.o \ diff --git a/src/makefile.mingw b/src/makefile.mingw index 1ca1a7bbe2..ef7eebf430 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -35,6 +35,7 @@ CFLAGS=-mthreads -O2 -w -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(I HEADERS = \ base58.h \ bignum.h \ + checkpoints.h \ crypter.h \ db.h \ headers.h \ @@ -66,6 +67,7 @@ endif LIBS += -l kernel32 -l user32 -l gdi32 -l comdlg32 -l winspool -l winmm -l shell32 -l comctl32 -l ole32 -l oleaut32 -l uuid -l rpcrt4 -l advapi32 -l ws2_32 -l shlwapi OBJS= \ + obj/checkpoints.o \ obj/crypter.o \ obj/db.o \ obj/init.o \ diff --git a/src/makefile.osx b/src/makefile.osx index 97264c7eb4..af52636919 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -35,6 +35,7 @@ CFLAGS=-mmacosx-version-min=10.5 -arch i386 -arch x86_64 -O3 -Wno-invalid-offset HEADERS = \ base58.h \ bignum.h \ + checkpoints.h \ crypter.h \ db.h \ headers.h \ @@ -57,6 +58,7 @@ HEADERS = \ wallet.h OBJS= \ + obj/checkpoints.o \ obj/crypter.o \ obj/db.o \ obj/init.o \ diff --git a/src/makefile.unix b/src/makefile.unix index 9e0b3263d7..a2cbc7c77e 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -73,6 +73,7 @@ CXXFLAGS=-O2 -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(HARDENING) HEADERS = \ base58.h \ bignum.h \ + checkpoints.h \ crypter.h \ db.h \ headers.h \ @@ -95,6 +96,7 @@ HEADERS = \ wallet.h OBJS= \ + obj/checkpoints.o \ obj/crypter.o \ obj/db.o \ obj/init.o \ diff --git a/src/makefile.vc b/src/makefile.vc index a5437bcf5c..4c81cc400f 100644 --- a/src/makefile.vc +++ b/src/makefile.vc @@ -48,6 +48,7 @@ CFLAGS=/MD /c /nologo /EHsc /GR /Zm300 $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS) HEADERS = \ base58.h \ bignum.h \ + checkpoints.h \ crypter.h \ db.h \ headers.h \ @@ -70,6 +71,7 @@ HEADERS = \ wallet.h OBJS= \ + obj\checkpoints.o \ obj\crypter.o \ obj\db.o \ obj\init.o \ @@ -98,6 +100,8 @@ all: bitcoin.exe .cpp{obj}.obj: cl $(CFLAGS) /DGUI /Fo$@ %s +obj\checkpoints.obj: $(HEADERS) + obj\util.obj: $(HEADERS) obj\script.obj: $(HEADERS) @@ -140,6 +144,8 @@ bitcoin.exe: $(OBJS) $(CRYPTOPP_OBJS) obj\ui.obj obj\uibase.obj obj\ui.res .cpp{obj\nogui}.obj: cl $(CFLAGS) /Fo$@ %s +obj\nogui\checkpoints.obj: $(HEADERS) + obj\nogui\util.obj: $(HEADERS) obj\nogui\script.obj: $(HEADERS) diff --git a/src/test/Checkpoints_tests.cpp b/src/test/Checkpoints_tests.cpp new file mode 100644 index 0000000000..0d8a366d7a --- /dev/null +++ b/src/test/Checkpoints_tests.cpp @@ -0,0 +1,34 @@ +// +// Unit tests for block-chain checkpoints +// +#include // for 'map_list_of()' +#include +#include + +#include "../checkpoints.h" +#include "../util.h" + +using namespace std; + +BOOST_AUTO_TEST_SUITE(Checkpoints_tests) + +BOOST_AUTO_TEST_CASE(sanity) +{ + uint256 p11111 = uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d"); + uint256 p140700 = uint256("0x000000000000033b512028abb90e1626d8b346fd0ed598ac0a3c371138dce2bd"); + BOOST_CHECK(Checkpoints::CheckBlock(11111, p11111)); + BOOST_CHECK(Checkpoints::CheckBlock(140700, p140700)); + + + // Wrong hashes at checkpoints should fail: + BOOST_CHECK(!Checkpoints::CheckBlock(11111, p140700)); + BOOST_CHECK(!Checkpoints::CheckBlock(140700, p11111)); + + // ... but any hash not at a checkpoint should succeed: + BOOST_CHECK(Checkpoints::CheckBlock(11111+1, p140700)); + BOOST_CHECK(Checkpoints::CheckBlock(140700+1, p11111)); + + BOOST_CHECK(Checkpoints::GetTotalBlocksEstimate() >= 140700); +} + +BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index 0230bb6eca..645d8a2bdf 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -8,6 +8,7 @@ #include "uint256_tests.cpp" #include "script_tests.cpp" #include "transaction_tests.cpp" +#include "Checkpoints_tests.cpp" CWallet* pwalletMain; -- cgit v1.2.3 From 5d901f1ba0b2f4444e484b9cb3db8d86c428af3f Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 8 Sep 2011 12:51:43 -0400 Subject: Orphan block fill-up-memory attack prevention --- src/checkpoints.cpp | 32 +++++++++++++++++++++++++++----- src/checkpoints.h | 7 +++++++ src/main.cpp | 47 ++++++++++++++++++++++++++++++++++++++++++++--- src/main.h | 1 + 4 files changed, 79 insertions(+), 8 deletions(-) diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index 4419a06c83..c7e054df37 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -2,16 +2,23 @@ // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. -#include "checkpoints.h" -#include "uint256.h" -#include "util.h" - #include // for 'map_list_of()' +#include + +#include "headers.h" +#include "checkpoints.h" namespace Checkpoints { typedef std::map MapCheckpoints; + // + // What makes a good checkpoint block? + // + Is surrounded by blocks with reasonable timestamps + // (no blocks before with a timestamp after, none after with + // timestamp before) + // + Contains no strange transactions + // static MapCheckpoints mapCheckpoints = boost::assign::map_list_of ( 11111, uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d")) @@ -36,8 +43,23 @@ namespace Checkpoints int GetTotalBlocksEstimate() { - if (fTestNet) return 0; // Testnet has no checkpoints + if (fTestNet) return 0; return mapCheckpoints.rbegin()->first; } + + CBlockIndex* GetLastCheckpoint(const std::map& mapBlockIndex) + { + if (fTestNet) return NULL; + + int64 nResult; + BOOST_REVERSE_FOREACH(const MapCheckpoints::value_type& i, mapCheckpoints) + { + const uint256& hash = i.second; + std::map::const_iterator t = mapBlockIndex.find(hash); + if (t != mapBlockIndex.end()) + return t->second; + } + return NULL; + } } diff --git a/src/checkpoints.h b/src/checkpoints.h index 32094fdde6..9d52da404f 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -4,7 +4,11 @@ #ifndef BITCOIN_CHECKPOINT_H #define BITCOIN_CHECKPOINT_H +#include +#include "util.h" + class uint256; +class CBlockIndex; // // Block-chain checkpoints are compiled-in sanity checks. @@ -17,6 +21,9 @@ namespace Checkpoints // Return conservative estimate of total number of blocks, 0 if unknown int GetTotalBlocksEstimate(); + + // Returns last CBlockIndex* in mapBlockIndex that is a checkpoint + CBlockIndex* GetLastCheckpoint(const std::map& mapBlockIndex); } #endif diff --git a/src/main.cpp b/src/main.cpp index dad7d144e7..af00069d66 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -651,11 +651,32 @@ int64 static GetBlockValue(int nHeight, int64 nFees) return nSubsidy + nFees; } +static const int64 nTargetTimespan = 14 * 24 * 60 * 60; // two weeks +static const int64 nTargetSpacing = 10 * 60; +static const int64 nInterval = nTargetTimespan / nTargetSpacing; + +// +// minimum amount of work that could possibly be required nTime after +// minimum work required was nBase +// +unsigned int ComputeMinWork(unsigned int nBase, int64 nTime) +{ + CBigNum bnResult; + bnResult.SetCompact(nBase); + while (nTime > 0 && bnResult < bnProofOfWorkLimit) + { + // Maximum 400% adjustment... + bnResult *= 4; + // ... in best-case exactly 4-times-normal target time + nTime -= nTargetTimespan*4; + } + if (bnResult > bnProofOfWorkLimit) + bnResult = bnProofOfWorkLimit; + return bnResult.GetCompact(); +} + unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast) { - const int64 nTargetTimespan = 14 * 24 * 60 * 60; // two weeks - const int64 nTargetSpacing = 10 * 60; - const int64 nInterval = nTargetTimespan / nTargetSpacing; // Genesis block if (pindexLast == NULL) @@ -1317,6 +1338,26 @@ bool static ProcessBlock(CNode* pfrom, CBlock* pblock) if (!pblock->CheckBlock()) return error("ProcessBlock() : CheckBlock FAILED"); + CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(mapBlockIndex); + if (pcheckpoint && pblock->hashPrevBlock != hashBestChain) + { + // Extra checks to prevent "fill up memory by spamming with bogus blocks" + int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime; + if (deltaTime < 0) + { + return error("ProcessBlock() : block with timestamp before last checkpoint"); + } + CBigNum bnNewBlock; + bnNewBlock.SetCompact(pblock->nBits); + CBigNum bnRequired; + bnRequired.SetCompact(ComputeMinWork(pcheckpoint->nBits, deltaTime)); + if (bnNewBlock > bnRequired) + { + return error("ProcessBlock() : block with too little proof-of-work"); + } + } + + // If don't already have its previous block, shunt it off to holding area until we get it if (!mapBlockIndex.count(pblock->hashPrevBlock)) { diff --git a/src/main.h b/src/main.h index f5e7f6c3e3..876a35d9cc 100644 --- a/src/main.h +++ b/src/main.h @@ -98,6 +98,7 @@ void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1); bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey); bool CheckProofOfWork(uint256 hash, unsigned int nBits); +unsigned int ComputeMinWork(unsigned int nBase, int64 nTime); bool IsInitialBlockDownload(); std::string GetWarnings(std::string strFor); -- cgit v1.2.3 From ba56a88ca5fae52ce5690553d97e4e8ac1338dfd Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Mon, 21 Nov 2011 12:25:00 -0500 Subject: Move DNS Seed lookup to a new thread. --- src/init.cpp | 5 ----- src/net.cpp | 39 ++++++++++++++++++++++++++++++++++++++- src/net.h | 1 - 3 files changed, 38 insertions(+), 7 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index 68303c19fa..75ecfc574e 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -519,11 +519,6 @@ bool AppInit2(int argc, char* argv[]) } } - if (GetBoolArg("-nodnsseed")) - printf("DNS seeding disabled\n"); - else - DNSAddressSeed(); - if (mapArgs.count("-paytxfee")) { if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee)) diff --git a/src/net.cpp b/src/net.cpp index f8f6afde54..1907397fad 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -32,6 +32,7 @@ void ThreadOpenConnections2(void* parg); #ifdef USE_UPNP void ThreadMapPort2(void* parg); #endif +void ThreadDNSAddressSeed2(void* parg); bool OpenNetworkConnection(const CAddress& addrConnect); @@ -1162,8 +1163,28 @@ static const char *strDNSSeed[] = { "dnsseed.bluematt.me", }; -void DNSAddressSeed() +void ThreadDNSAddressSeed(void* parg) { + IMPLEMENT_RANDOMIZE_STACK(ThreadDNSAddressSeed(parg)); + try + { + vnThreadsRunning[6]++; + ThreadDNSAddressSeed2(parg); + vnThreadsRunning[6]--; + } + catch (std::exception& e) { + vnThreadsRunning[6]--; + PrintException(&e, "ThreadDNSAddressSeed()"); + } catch (...) { + vnThreadsRunning[6]--; + throw; // support pthread_cancel() + } + printf("ThreadDNSAddressSeed exiting\n"); +} + +void ThreadDNSAddressSeed2(void* parg) +{ + printf("ThreadDNSAddressSeed started\n"); int found = 0; if (!fTestNet) @@ -1196,6 +1217,15 @@ void DNSAddressSeed() + + + + + + + + + unsigned int pnSeed[] = { 0x6884ac63, 0x3ffecead, 0x2919b953, 0x0942fe50, 0x7a1d922e, 0xcdd6734a, 0x953a5bb6, 0x2c46922e, @@ -1703,6 +1733,12 @@ void StartNode(void* parg) // Start threads // + if (GetBoolArg("-nodnsseed")) + printf("DNS seeding disabled\n"); + else + if (!CreateThread(ThreadDNSAddressSeed, NULL)) + printf("Error: CreateThread(ThreadDNSAddressSeed) failed\n"); + // Map ports with UPnP if (fHaveUPnP) MapPort(fUseUPnP); @@ -1749,6 +1785,7 @@ bool StopNode() if (vnThreadsRunning[3] > 0) printf("ThreadBitcoinMiner still running\n"); if (vnThreadsRunning[4] > 0) printf("ThreadRPCServer still running\n"); if (fHaveUPnP && vnThreadsRunning[5] > 0) printf("ThreadMapPort still running\n"); + if (vnThreadsRunning[6] > 0) printf("ThreadDNSAddressSeed still running\n"); while (vnThreadsRunning[2] > 0 || vnThreadsRunning[4] > 0) Sleep(20); Sleep(50); diff --git a/src/net.h b/src/net.h index 0026e402c2..741e2a812e 100644 --- a/src/net.h +++ b/src/net.h @@ -40,7 +40,6 @@ CNode* ConnectNode(CAddress addrConnect, int64 nTimeout=0); void AbandonRequests(void (*fn)(void*, CDataStream&), void* param1); bool AnySubscribed(unsigned int nChannel); void MapPort(bool fMapPort); -void DNSAddressSeed(); bool BindListenPort(std::string& strError=REF(std::string())); void StartNode(void* parg); bool StopNode(); -- cgit v1.2.3 From 16e7c05de71a2c215e3b74522bf34d8e0da3381e Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sat, 3 Dec 2011 21:48:32 -0500 Subject: Move -lgdi32 after -lcrypto (fixes #681). --- bitcoin-qt.pro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 8fc177f7f4..66b53c2367 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -251,7 +251,7 @@ isEmpty(BOOST_INCLUDE_PATH) { macx:BOOST_INCLUDE_PATH = /opt/local/include } -windows:LIBS += -lws2_32 -lgdi32 +windows:LIBS += -lws2_32 windows:DEFINES += WIN32 windows:RC_FILE = src/qt/res/bitcoin-qt.rc @@ -266,6 +266,8 @@ macx:TARGET = "Bitcoin-Qt" INCLUDEPATH += $$BOOST_INCLUDE_PATH $$BDB_INCLUDE_PATH $$OPENSSL_INCLUDE_PATH LIBS += $$join(BOOST_LIB_PATH,,-L,) $$join(BDB_LIB_PATH,,-L,) $$join(OPENSSL_LIB_PATH,,-L,) LIBS += -lssl -lcrypto -ldb_cxx$$BDB_LIB_SUFFIX +# -lgdi32 has to happen after -lcrypto (see #681) +windows:LIBS += -lgdi32 LIBS += -lboost_system$$BOOST_LIB_SUFFIX -lboost_filesystem$$BOOST_LIB_SUFFIX -lboost_program_options$$BOOST_LIB_SUFFIX -lboost_thread$$BOOST_THREAD_LIB_SUFFIX contains(RELEASE, 1) { -- cgit v1.2.3 From 9a7f4948c6e63e9470b14b0f8b61c8ecbf21f00f Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 7 Dec 2011 10:26:55 -0500 Subject: Re-enable RPCSSL in gitian builds. --- contrib/gitian-descriptors/gitian-win32.yml | 4 ++-- contrib/gitian-descriptors/gitian.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/gitian-descriptors/gitian-win32.yml b/contrib/gitian-descriptors/gitian-win32.yml index 37dcb8d0b5..0f4670979e 100644 --- a/contrib/gitian-descriptors/gitian-win32.yml +++ b/contrib/gitian-descriptors/gitian-win32.yml @@ -71,7 +71,7 @@ script: | export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1 export FAKETIME=$REFERENCE_DATETIME export TZ=UTC - $HOME/qt/src/bin/qmake -spec unsupported/win32-g++-cross MINIUPNPC_LIB_PATH=$HOME/build/miniupnpc MINIUPNPC_INCLUDE_PATH=$HOME/build/ BDB_LIB_PATH=$HOME/build/db-4.8.30.NC/build_unix BDB_INCLUDE_PATH=$HOME/build/db-4.8.30.NC/build_unix BOOST_LIB_PATH=$HOME/build/boost_1_47_0/stage/lib BOOST_INCLUDE_PATH=$HOME/build/boost_1_47_0 BOOST_LIB_SUFFIX=-mt-s BOOST_THREAD_LIB_SUFFIX=_win32-mt-s OPENSSL_LIB_PATH=$HOME/build/openssl-1.0.0e OPENSSL_INCLUDE_PATH=$HOME/build/openssl-1.0.0e/include INCLUDEPATH=$HOME/build DEFINES=BOOST_THREAD_USE_LIB BITCOIN_NEED_QT_PLUGINS=1 QMAKE_LRELEASE=lrelease QMAKE_CXXFLAGS=-frandom-seed=bitcoin QMAKE_LFLAGS=-frandom-seed=bitcoin + $HOME/qt/src/bin/qmake -spec unsupported/win32-g++-cross USE_SSL=1 MINIUPNPC_LIB_PATH=$HOME/build/miniupnpc MINIUPNPC_INCLUDE_PATH=$HOME/build/ BDB_LIB_PATH=$HOME/build/db-4.8.30.NC/build_unix BDB_INCLUDE_PATH=$HOME/build/db-4.8.30.NC/build_unix BOOST_LIB_PATH=$HOME/build/boost_1_47_0/stage/lib BOOST_INCLUDE_PATH=$HOME/build/boost_1_47_0 BOOST_LIB_SUFFIX=-mt-s BOOST_THREAD_LIB_SUFFIX=_win32-mt-s OPENSSL_LIB_PATH=$HOME/build/openssl-1.0.0e OPENSSL_INCLUDE_PATH=$HOME/build/openssl-1.0.0e/include INCLUDEPATH=$HOME/build DEFINES=BOOST_THREAD_USE_LIB BITCOIN_NEED_QT_PLUGINS=1 QMAKE_LRELEASE=lrelease QMAKE_CXXFLAGS=-frandom-seed=bitcoin QMAKE_LFLAGS=-frandom-seed=bitcoin make $MAKEOPTS cp release/bitcoin-qt.exe $OUTDIR/ # @@ -80,7 +80,7 @@ script: | export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1 export FAKETIME=$REFERENCE_DATETIME export TZ=UTC - make -f makefile.linux-mingw $MAKEOPTS DEPSDIR=$HOME/build bitcoind.exe USE_UPNP=0 + make -f makefile.linux-mingw $MAKEOPTS DEPSDIR=$HOME/build bitcoind.exe USE_SSL=1 USE_UPNP=0 i586-mingw32msvc-strip bitcoind.exe makensis ../share/setup.nsi cp ../share/bitcoin-*-win32-setup.exe $OUTDIR/ diff --git a/contrib/gitian-descriptors/gitian.yml b/contrib/gitian-descriptors/gitian.yml index 84ecac6ff4..47164b0afd 100644 --- a/contrib/gitian-descriptors/gitian.yml +++ b/contrib/gitian-descriptors/gitian.yml @@ -39,10 +39,10 @@ script: | cp $OUTDIR/src/COPYING $OUTDIR cd src sed 's/$(DEBUGFLAGS)//' -i makefile.unix - make -f makefile.unix STATIC=1 DEFS="-I$INSTDIR/include -L$INSTDIR/lib" $MAKEOPTS bitcoind USE_UPNP=0 + make -f makefile.unix STATIC=1 DEFS="-I$INSTDIR/include -L$INSTDIR/lib" $MAKEOPTS bitcoind USE_UPNP=0 USE_SSL=1 mkdir -p $OUTDIR/bin/$GBUILD_BITS install -s bitcoind $OUTDIR/bin/$GBUILD_BITS cd .. - qmake INCLUDEPATH="$INSTDIR/include" LIBS="-L$INSTDIR/lib" RELEASE=1 + qmake INCLUDEPATH="$INSTDIR/include" LIBS="-L$INSTDIR/lib" RELEASE=1 USE_SSL=1 make $MAKEOPTS install bitcoin-qt $OUTDIR/bin/$GBUILD_BITS -- cgit v1.2.3 From 142e5056cd8a62df838e9a3afee0f718faffd72b Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Tue, 13 Dec 2011 16:28:56 +0100 Subject: Enable wordwrap for long message in passphrase dialog - Remove explicit resizing from constructor to prevent potential hang --- src/qt/askpassphrasedialog.cpp | 1 - src/qt/forms/askpassphrasedialog.ui | 20 +++++--------------- 2 files changed, 5 insertions(+), 16 deletions(-) diff --git a/src/qt/askpassphrasedialog.cpp b/src/qt/askpassphrasedialog.cpp index a574ef925b..b52acf4545 100644 --- a/src/qt/askpassphrasedialog.cpp +++ b/src/qt/askpassphrasedialog.cpp @@ -47,7 +47,6 @@ AskPassphraseDialog::AskPassphraseDialog(Mode mode, QWidget *parent) : ui->warningLabel->setText(tr("Enter the old and new passphrase to the wallet.")); break; } - resize(minimumSize()); // Get rid of extra space in dialog textChanged(); connect(ui->passEdit1, SIGNAL(textChanged(QString)), this, SLOT(textChanged())); diff --git a/src/qt/forms/askpassphrasedialog.ui b/src/qt/forms/askpassphrasedialog.ui index 70d9180e75..3c7dac5f8d 100644 --- a/src/qt/forms/askpassphrasedialog.ui +++ b/src/qt/forms/askpassphrasedialog.ui @@ -6,8 +6,8 @@ 0 0 - 589 - 228 + 598 + 187 @@ -34,6 +34,9 @@ Qt::RichText + + true + @@ -85,19 +88,6 @@ - - - - Qt::Vertical - - - - 20 - 40 - - - - -- cgit v1.2.3 From 181b863d224b5236b53309e7cb12b3927b240d70 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 13 Dec 2011 14:00:21 -0500 Subject: Fix status bar not displaying Alerts. --- src/qt/bitcoin.cpp | 2 ++ src/qt/bitcoingui.cpp | 40 +++++++++++++++++++++++++++++++++++----- src/qt/bitcoingui.h | 2 ++ src/qt/clientmodel.cpp | 5 +++++ src/qt/clientmodel.h | 2 ++ 5 files changed, 46 insertions(+), 5 deletions(-) diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 6afa9671d0..2142db5a36 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -91,6 +91,8 @@ void UIThreadCall(boost::function0 fn) void MainFrameRepaint() { + if(guiref) + QMetaObject::invokeMethod(guiref, "refreshStatusBar", Qt::QueuedConnection); } void InitMessage(const std::string &message) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 8641c723b0..5968aab6c4 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -2,6 +2,7 @@ * Qt4 bitcoin GUI. * * W.J. van der Laan 2011 + * The Bitcoin Developers 2011 */ #include "bitcoingui.h" #include "transactiontablemodel.h" @@ -412,15 +413,31 @@ void BitcoinGUI::setNumBlocks(int count) if(count < total) { - progressBarLabel->setVisible(true); - progressBar->setVisible(true); - progressBar->setMaximum(total - initTotal); - progressBar->setValue(count - initTotal); + if (clientModel->getStatusBarWarnings() == "") + { + progressBarLabel->setVisible(true); + progressBarLabel->setText(tr("Synchronizing with network...")); + progressBar->setVisible(true); + progressBar->setMaximum(total - initTotal); + progressBar->setValue(count - initTotal); + } + else + { + progressBarLabel->setText(clientModel->getStatusBarWarnings()); + progressBarLabel->setVisible(true); + progressBar->setVisible(false); + } tooltip = tr("Downloaded %1 of %2 blocks of transaction history.").arg(count).arg(total); } else { - progressBarLabel->setVisible(false); + if (clientModel->getStatusBarWarnings() == "") + progressBarLabel->setVisible(false); + else + { + progressBarLabel->setText(clientModel->getStatusBarWarnings()); + progressBarLabel->setVisible(true); + } progressBar->setVisible(false); tooltip = tr("Downloaded %1 blocks of transaction history.").arg(count); } @@ -469,6 +486,19 @@ void BitcoinGUI::setNumBlocks(int count) progressBar->setToolTip(tooltip); } +void BitcoinGUI::refreshStatusBar() +{ + /* Might display multiple times in the case of multiple alerts + static QString prevStatusBar; + QString newStatusBar = clientModel->getStatusBarWarnings(); + if (prevStatusBar != newStatusBar) + { + prevStatusBar = newStatusBar; + error(tr("Network Alert"), newStatusBar); + }*/ + setNumBlocks(clientModel->getNumBlocks()); +} + void BitcoinGUI::error(const QString &title, const QString &message) { // Report errors from network/worker thread diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index a912192196..581d393749 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -96,6 +96,8 @@ public slots: void setNumConnections(int count); void setNumBlocks(int count); void setEncryptionStatus(int status); + /** Set the status bar text if there are any warnings (removes sync progress bar if applicable) */ + void refreshStatusBar(); void error(const QString &title, const QString &message); /* It is currently not possible to pass a return value to another thread through diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp index 2ed3ce51df..5a0b4aa83c 100644 --- a/src/qt/clientmodel.cpp +++ b/src/qt/clientmodel.cpp @@ -72,6 +72,11 @@ int ClientModel::getNumBlocksOfPeers() const return GetNumBlocksOfPeers(); } +QString ClientModel::getStatusBarWarnings() const +{ + return QString::fromStdString(GetWarnings("statusbar")); +} + OptionsModel *ClientModel::getOptionsModel() { return optionsModel; diff --git a/src/qt/clientmodel.h b/src/qt/clientmodel.h index c68fb0f035..0b7c16d7a9 100644 --- a/src/qt/clientmodel.h +++ b/src/qt/clientmodel.h @@ -33,6 +33,8 @@ public: bool inInitialBlockDownload() const; // Return conservative estimate of total number of blocks, or 0 if unknown int getNumBlocksOfPeers() const; + //! Return warnings to be displayed in status bar + QString getStatusBarWarnings() const; QString formatFullVersion() const; -- cgit v1.2.3 From 1f53204045313eb0243c7b2372d241105c257ca2 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 15 Dec 2011 19:25:29 -0500 Subject: Bump version to 0.4.3 --- contrib/Bitcoin.app/Contents/Info.plist | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/contrib/Bitcoin.app/Contents/Info.plist b/contrib/Bitcoin.app/Contents/Info.plist index 9145db10f1..1d520c93cf 100644 --- a/contrib/Bitcoin.app/Contents/Info.plist +++ b/contrib/Bitcoin.app/Contents/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.4.2 + 0.4.3 CFBundleSignature ???? CFBundleVersion diff --git a/doc/README b/doc/README index 9c28f4c692..d91509bd90 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.4.2 BETA +Bitcoin 0.4.3 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 7a406d65a3..2f5761645a 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.4.2 BETA +Bitcoin 0.4.3 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 4500dc48e1..3455f7681c 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.4.2 +!define VERSION 0.4.3 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.4.2-win32-setup.exe +OutFile bitcoin-0.4.3-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.4.2.0 +VIProductVersion 0.4.3.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index 64fae0367e..7876990d04 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -59,7 +59,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 40200; +static const int VERSION = 40300; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From ace5ce05bef68722a060d6ec6e7d1fbf307d9835 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 15 Dec 2011 19:34:37 -0500 Subject: Bump version to 0.5.0.3 --- bitcoin-qt.pro | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 65a31f6d68..1eddcd542b 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.5.0.2 +VERSION = 0.5.0.3 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/doc/README b/doc/README index ab19734d1d..c3ed9c4b7e 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.5.0.2 BETA +Bitcoin 0.5.0.3 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index d54f18ec62..8a8f82b846 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.5.0.2 BETA +Bitcoin 0.5.0.3 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 2674597ee1..76efe57d27 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.5.0.2 +!define VERSION 0.5.0.3 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.5.0.2-win32-setup.exe +OutFile bitcoin-0.5.0.3-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.5.0.2 +VIProductVersion 0.5.0.3 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index d1296ed68f..fdfd6346e9 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -60,7 +60,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 50002; +static const int VERSION = 50003; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 5fe2dbd7b6a182b90128371f8e8d679d70133d6b Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 16 Dec 2011 17:47:50 -0500 Subject: Update debian changelog to 0.5.0.3. --- contrib/debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/contrib/debian/changelog b/contrib/debian/changelog index 6355141036..bef58c982f 100644 --- a/contrib/debian/changelog +++ b/contrib/debian/changelog @@ -1,3 +1,9 @@ +bitcoin (0.5.0.3-natty0) natty; urgency=low + + * New upstream release. + + -- Matt Corallo Fri, 16 Dec 2011 13:27:00 -0500 + bitcoin (0.5.0-natty0) natty; urgency=low * New upstream release. -- cgit v1.2.3 From 9ea06992789a0072c167a9a8063e867bb4c43c00 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 16 Dec 2011 13:27:52 -0500 Subject: Update debian changelog to 0.5.1. --- contrib/debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/contrib/debian/changelog b/contrib/debian/changelog index 6355141036..b7992f729f 100644 --- a/contrib/debian/changelog +++ b/contrib/debian/changelog @@ -1,3 +1,9 @@ +bitcoin (0.5.1-natty0) natty; urgency=low + + * New upstream release. + + -- Matt Corallo Fri, 16 Dec 2011 13:27:00 -0500 + bitcoin (0.5.0-natty0) natty; urgency=low * New upstream release. -- cgit v1.2.3 From 7aa253d3ec746c3d4ddbd55fab55d0eff28294f8 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 16 Dec 2011 17:58:40 -0500 Subject: Bump version to 0.5.2 --- bitcoin-qt.pro | 2 +- contrib/debian/changelog | 6 ++++++ doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 6 files changed, 13 insertions(+), 7 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 66b53c2367..d7ac62e90a 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.5.1 +VERSION = 0.5.2 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/contrib/debian/changelog b/contrib/debian/changelog index b7992f729f..4510641825 100644 --- a/contrib/debian/changelog +++ b/contrib/debian/changelog @@ -1,3 +1,9 @@ +bitcoin (0.5.2-natty0) natty; urgency=low + + * New upstream release. + + -- Luke Dashjr Fri, 16 Dec 2011 17:57:00 -0500 + bitcoin (0.5.1-natty0) natty; urgency=low * New upstream release. diff --git a/doc/README b/doc/README index 5e0f8ee1ed..07785655f2 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.5.1 BETA +Bitcoin 0.5.2 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index d237615f57..b98f878b27 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.5.1 BETA +Bitcoin 0.5.2 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 0c0fa048af..abf5c566b5 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.5.1 +!define VERSION 0.5.2 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.5.1-win32-setup.exe +OutFile bitcoin-0.5.2-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.5.1.0 +VIProductVersion 0.5.2.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index 78cff43d53..388e655970 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -60,7 +60,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 50100; +static const int VERSION = 50200; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 6be2c9b5b4568e38fd61298b0f64c32f78631cbd Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 16 Dec 2011 11:30:36 -0500 Subject: Add sipa's new dnsseed. --- src/net.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/net.cpp b/src/net.cpp index a4687731f7..4fab7a7ed6 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1174,6 +1174,7 @@ void MapPort(bool /* unused fMapPort */) static const char *strDNSSeed[] = { "bitseed.xf2.org", "dnsseed.bluematt.me", + "seed.bitcoin.sipa.be", }; void ThreadDNSAddressSeed(void* parg) -- cgit v1.2.3 From 987f26aa1aeb2b3c546ada41ae4eab6bdee7099c Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 16 Dec 2011 18:34:47 -0500 Subject: Add my DNS seed domain --- src/net.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/net.cpp b/src/net.cpp index 4fab7a7ed6..af59cee696 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1175,6 +1175,7 @@ static const char *strDNSSeed[] = { "bitseed.xf2.org", "dnsseed.bluematt.me", "seed.bitcoin.sipa.be", + "dnsseed.bitcoin.dashjr.org", }; void ThreadDNSAddressSeed(void* parg) -- cgit v1.2.3 From 027d149352bc25f0f37363da95a0b4c723100f63 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Wed, 14 Dec 2011 01:03:55 -0500 Subject: Bugfix: fForRelay should be false when deciding required fee to include in blocks During the rushed transition from 0.01 BTC to 0.0005 BTC fees, we took the approach of dropping the relay and block-inclusion fee to 0.0005 BTC immediately, and only delayed adjusting the sending fee for the next release. Afterward, the relay fee was lowered to 0.0001 BTC to avoid having the same problem in the future. However, the block inclusion code was left setting fForRelay to true! This fixes that, so the lower 0.0001 BTC allowance is (as intended) only permitted for real relaying. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index af00069d66..03e133b63c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2776,7 +2776,7 @@ CBlock* CreateNewBlock(CReserveKey& reservekey) // Transaction fee required depends on block size bool fAllowFree = (nBlockSize + nTxSize < 4000 || CTransaction::AllowFree(dPriority)); - int64 nMinFee = tx.GetMinFee(nBlockSize, fAllowFree, true); + int64 nMinFee = tx.GetMinFee(nBlockSize, fAllowFree); // Connecting shouldn't fail due to dependency on other memory pool transactions // because we're already processing them in order of dependency -- cgit v1.2.3 From 96f1723bb1f4155357b4e33988a2b99ee674c549 Mon Sep 17 00:00:00 2001 From: Dylan Noblesmith Date: Sat, 26 Nov 2011 06:02:04 +0000 Subject: Implement an mlock()'d string class for storing passphrases SecureString is identical to std::string except with secure_allocator substituting for std::allocator. This makes casting between them impossible, so converting between the two at API boundaries requires calling ::c_str() for now. --- src/bitcoinrpc.cpp | 48 ++++++++++++------------------------------ src/crypter.cpp | 2 +- src/crypter.h | 2 +- src/qt/askpassphrasedialog.cpp | 11 +++++----- src/qt/walletmodel.cpp | 6 +++--- src/qt/walletmodel.h | 9 ++++---- src/util.h | 4 ++++ src/wallet.cpp | 6 +++--- src/wallet.h | 6 +++--- 9 files changed, 40 insertions(+), 54 deletions(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 31ef725d79..889dd7a1b1 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1451,21 +1451,16 @@ Value walletpassphrase(const Array& params, bool fHelp) throw JSONRPCError(-17, "Error: Wallet is already unlocked."); // Note that the walletpassphrase is stored in params[0] which is not mlock()ed - string strWalletPass; + SecureString strWalletPass; strWalletPass.reserve(100); - mlock(&strWalletPass[0], strWalletPass.capacity()); - strWalletPass = params[0].get_str(); + // TODO: get rid of this .c_str() by implementing SecureString::operator=(std::string) + // Alternately, find a way to make params[0] mlock()'d to begin with. + strWalletPass = params[0].get_str().c_str(); if (strWalletPass.length() > 0) { if (!pwalletMain->Unlock(strWalletPass)) - { - fill(strWalletPass.begin(), strWalletPass.end(), '\0'); - munlock(&strWalletPass[0], strWalletPass.capacity()); throw JSONRPCError(-14, "Error: The wallet passphrase entered was incorrect."); - } - fill(strWalletPass.begin(), strWalletPass.end(), '\0'); - munlock(&strWalletPass[0], strWalletPass.capacity()); } else throw runtime_error( @@ -1491,15 +1486,15 @@ Value walletpassphrasechange(const Array& params, bool fHelp) if (!pwalletMain->IsCrypted()) throw JSONRPCError(-15, "Error: running with an unencrypted wallet, but walletpassphrasechange was called."); - string strOldWalletPass; + // TODO: get rid of these .c_str() calls by implementing SecureString::operator=(std::string) + // Alternately, find a way to make params[0] mlock()'d to begin with. + SecureString strOldWalletPass; strOldWalletPass.reserve(100); - mlock(&strOldWalletPass[0], strOldWalletPass.capacity()); - strOldWalletPass = params[0].get_str(); + strOldWalletPass = params[0].get_str().c_str(); - string strNewWalletPass; + SecureString strNewWalletPass; strNewWalletPass.reserve(100); - mlock(&strNewWalletPass[0], strNewWalletPass.capacity()); - strNewWalletPass = params[1].get_str(); + strNewWalletPass = params[1].get_str().c_str(); if (strOldWalletPass.length() < 1 || strNewWalletPass.length() < 1) throw runtime_error( @@ -1507,17 +1502,7 @@ Value walletpassphrasechange(const Array& params, bool fHelp) "Changes the wallet passphrase from to ."); if (!pwalletMain->ChangeWalletPassphrase(strOldWalletPass, strNewWalletPass)) - { - fill(strOldWalletPass.begin(), strOldWalletPass.end(), '\0'); - fill(strNewWalletPass.begin(), strNewWalletPass.end(), '\0'); - munlock(&strOldWalletPass[0], strOldWalletPass.capacity()); - munlock(&strNewWalletPass[0], strNewWalletPass.capacity()); throw JSONRPCError(-14, "Error: The wallet passphrase entered was incorrect."); - } - fill(strNewWalletPass.begin(), strNewWalletPass.end(), '\0'); - fill(strOldWalletPass.begin(), strOldWalletPass.end(), '\0'); - munlock(&strOldWalletPass[0], strOldWalletPass.capacity()); - munlock(&strNewWalletPass[0], strNewWalletPass.capacity()); return Value::null; } @@ -1562,10 +1547,11 @@ Value encryptwallet(const Array& params, bool fHelp) throw runtime_error("Not Yet Implemented: use GUI to encrypt wallet, not RPC command"); #endif - string strWalletPass; + // TODO: get rid of this .c_str() by implementing SecureString::operator=(std::string) + // Alternately, find a way to make params[0] mlock()'d to begin with. + SecureString strWalletPass; strWalletPass.reserve(100); - mlock(&strWalletPass[0], strWalletPass.capacity()); - strWalletPass = params[0].get_str(); + strWalletPass = params[0].get_str().c_str(); if (strWalletPass.length() < 1) throw runtime_error( @@ -1573,13 +1559,7 @@ Value encryptwallet(const Array& params, bool fHelp) "Encrypts the wallet with ."); if (!pwalletMain->EncryptWallet(strWalletPass)) - { - fill(strWalletPass.begin(), strWalletPass.end(), '\0'); - munlock(&strWalletPass[0], strWalletPass.capacity()); throw JSONRPCError(-16, "Error: Failed to encrypt the wallet."); - } - fill(strWalletPass.begin(), strWalletPass.end(), '\0'); - munlock(&strWalletPass[0], strWalletPass.capacity()); // BDB seems to have a bad habit of writing old data into // slack space in .dat files; that is bad if the old data is diff --git a/src/crypter.cpp b/src/crypter.cpp index bee7a3624b..7f53e22f1e 100644 --- a/src/crypter.cpp +++ b/src/crypter.cpp @@ -15,7 +15,7 @@ #include "main.h" #include "util.h" -bool CCrypter::SetKeyFromPassphrase(const std::string& strKeyData, const std::vector& chSalt, const unsigned int nRounds, const unsigned int nDerivationMethod) +bool CCrypter::SetKeyFromPassphrase(const SecureString& strKeyData, const std::vector& chSalt, const unsigned int nRounds, const unsigned int nDerivationMethod) { if (nRounds < 1 || chSalt.size() != WALLET_CRYPTO_SALT_SIZE) return false; diff --git a/src/crypter.h b/src/crypter.h index e8ca30a8cc..d7f8a39d83 100644 --- a/src/crypter.h +++ b/src/crypter.h @@ -65,7 +65,7 @@ private: bool fKeySet; public: - bool SetKeyFromPassphrase(const std::string &strKeyData, const std::vector& chSalt, const unsigned int nRounds, const unsigned int nDerivationMethod); + bool SetKeyFromPassphrase(const SecureString &strKeyData, const std::vector& chSalt, const unsigned int nRounds, const unsigned int nDerivationMethod); bool Encrypt(const CKeyingMaterial& vchPlaintext, std::vector &vchCiphertext); bool Decrypt(const std::vector& vchCiphertext, CKeyingMaterial& vchPlaintext); bool SetKey(const CKeyingMaterial& chNewKey, const std::vector& chNewIV); diff --git a/src/qt/askpassphrasedialog.cpp b/src/qt/askpassphrasedialog.cpp index b52acf4545..4ee67e7c87 100644 --- a/src/qt/askpassphrasedialog.cpp +++ b/src/qt/askpassphrasedialog.cpp @@ -70,16 +70,17 @@ void AskPassphraseDialog::setModel(WalletModel *model) void AskPassphraseDialog::accept() { - std::string oldpass, newpass1, newpass2; + SecureString oldpass, newpass1, newpass2; if(!model) return; - // TODO: mlock memory / munlock on return so they will not be swapped out, really need "mlockedstring" wrapper class to do this safely oldpass.reserve(MAX_PASSPHRASE_SIZE); newpass1.reserve(MAX_PASSPHRASE_SIZE); newpass2.reserve(MAX_PASSPHRASE_SIZE); - oldpass.assign(ui->passEdit1->text().toStdString()); - newpass1.assign(ui->passEdit2->text().toStdString()); - newpass2.assign(ui->passEdit3->text().toStdString()); + // TODO: get rid of this .c_str() by implementing SecureString::operator=(std::string) + // Alternately, find a way to make this input mlock()'d to begin with. + oldpass.assign(ui->passEdit1->text().toStdString().c_str()); + newpass1.assign(ui->passEdit2->text().toStdString().c_str()); + newpass2.assign(ui->passEdit3->text().toStdString().c_str()); switch(mode) { diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 2f989661f0..f028f10f6c 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -200,7 +200,7 @@ WalletModel::EncryptionStatus WalletModel::getEncryptionStatus() const } } -bool WalletModel::setWalletEncrypted(bool encrypted, const std::string &passphrase) +bool WalletModel::setWalletEncrypted(bool encrypted, const SecureString &passphrase) { if(encrypted) { @@ -214,7 +214,7 @@ bool WalletModel::setWalletEncrypted(bool encrypted, const std::string &passphra } } -bool WalletModel::setWalletLocked(bool locked, const std::string &passPhrase) +bool WalletModel::setWalletLocked(bool locked, const SecureString &passPhrase) { if(locked) { @@ -228,7 +228,7 @@ bool WalletModel::setWalletLocked(bool locked, const std::string &passPhrase) } } -bool WalletModel::changePassphrase(const std::string &oldPass, const std::string &newPass) +bool WalletModel::changePassphrase(const SecureString &oldPass, const SecureString &newPass) { bool retval; CRITICAL_BLOCK(wallet->cs_wallet) diff --git a/src/qt/walletmodel.h b/src/qt/walletmodel.h index b7b6973b3b..055ba184b0 100644 --- a/src/qt/walletmodel.h +++ b/src/qt/walletmodel.h @@ -2,7 +2,8 @@ #define WALLETMODEL_H #include -#include + +#include "util.h" class OptionsModel; class AddressTableModel; @@ -72,10 +73,10 @@ public: SendCoinsReturn sendCoins(const QList &recipients); // Wallet encryption - bool setWalletEncrypted(bool encrypted, const std::string &passphrase); + bool setWalletEncrypted(bool encrypted, const SecureString &passphrase); // Passphrase only needed when unlocking - bool setWalletLocked(bool locked, const std::string &passPhrase=std::string()); - bool changePassphrase(const std::string &oldPass, const std::string &newPass); + bool setWalletLocked(bool locked, const SecureString &passPhrase=SecureString()); + bool changePassphrase(const SecureString &oldPass, const SecureString &newPass); // RAI object for unlocking wallet, returned by requestUnlock() class UnlockContext diff --git a/src/util.h b/src/util.h index 178923727a..bcb9027148 100644 --- a/src/util.h +++ b/src/util.h @@ -286,6 +286,10 @@ public: +// This is exactly like std::string, but with a custom allocator. +// (secure_allocator<> is defined in serialize.h) +typedef std::basic_string, secure_allocator > SecureString; + diff --git a/src/wallet.cpp b/src/wallet.cpp index af80cc16d5..28babdb3e2 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -42,7 +42,7 @@ bool CWallet::AddCryptedKey(const vector &vchPubKey, const vector return false; } -bool CWallet::Unlock(const string& strWalletPassphrase) +bool CWallet::Unlock(const SecureString& strWalletPassphrase) { if (!IsLocked()) return false; @@ -63,7 +63,7 @@ bool CWallet::Unlock(const string& strWalletPassphrase) return false; } -bool CWallet::ChangeWalletPassphrase(const string& strOldWalletPassphrase, const string& strNewWalletPassphrase) +bool CWallet::ChangeWalletPassphrase(const SecureString& strOldWalletPassphrase, const SecureString& strNewWalletPassphrase) { bool fWasLocked = IsLocked(); @@ -122,7 +122,7 @@ public: ) }; -bool CWallet::EncryptWallet(const string& strWalletPassphrase) +bool CWallet::EncryptWallet(const SecureString& strWalletPassphrase) { if (IsCrypted()) return false; diff --git a/src/wallet.h b/src/wallet.h index 19de803390..ca7cf67317 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -70,9 +70,9 @@ public: // Adds an encrypted key to the store, without saving it to disk (used by LoadWallet) bool LoadCryptedKey(const std::vector &vchPubKey, const std::vector &vchCryptedSecret) { return CCryptoKeyStore::AddCryptedKey(vchPubKey, vchCryptedSecret); } - bool Unlock(const std::string& strWalletPassphrase); - bool ChangeWalletPassphrase(const std::string& strOldWalletPassphrase, const std::string& strNewWalletPassphrase); - bool EncryptWallet(const std::string& strWalletPassphrase); + bool Unlock(const SecureString& strWalletPassphrase); + bool ChangeWalletPassphrase(const SecureString& strOldWalletPassphrase, const SecureString& strNewWalletPassphrase); + bool EncryptWallet(const SecureString& strWalletPassphrase); bool AddToWallet(const CWalletTx& wtxIn); bool AddToWalletIfInvolvingMe(const CTransaction& tx, const CBlock* pblock, bool fUpdate = false); -- cgit v1.2.3 From 863238316144b0ae8d0208ed60d86d932475cfaa Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 23 Dec 2011 02:24:46 -0800 Subject: Fix #722. --- contrib/gitian-descriptors/gitian.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/gitian-descriptors/gitian.yml b/contrib/gitian-descriptors/gitian.yml index 47164b0afd..11ee4dc580 100644 --- a/contrib/gitian-descriptors/gitian.yml +++ b/contrib/gitian-descriptors/gitian.yml @@ -39,7 +39,7 @@ script: | cp $OUTDIR/src/COPYING $OUTDIR cd src sed 's/$(DEBUGFLAGS)//' -i makefile.unix - make -f makefile.unix STATIC=1 DEFS="-I$INSTDIR/include -L$INSTDIR/lib" $MAKEOPTS bitcoind USE_UPNP=0 USE_SSL=1 + make -f makefile.unix STATIC=1 OPENSSL_INCLUDE_PATH="$INSTDIR/include" OPENSSL_LIB_PATH="$INSTDIR/lib" $MAKEOPTS bitcoind USE_UPNP=0 USE_SSL=1 mkdir -p $OUTDIR/bin/$GBUILD_BITS install -s bitcoind $OUTDIR/bin/$GBUILD_BITS cd .. -- cgit v1.2.3 From 3b8051864b98eb5a9df6327f314a45af9205a09c Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 25 Dec 2011 09:26:12 -0500 Subject: Be more conservative: check all transactions in blocks after last checkpoint. --- src/main.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index f21af90473..1f23844573 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -30,7 +30,6 @@ map mapNextTx; map mapBlockIndex; uint256 hashGenesisBlock("0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f"); static CBigNum bnProofOfWorkLimit(~uint256(0) >> 32); -const int nInitialBlockThreshold = 120; // Regard blocks up until N-threshold as "initial download" CBlockIndex* pindexGenesisBlock = NULL; int nBestHeight = -1; CBigNum bnBestChainWork = 0; @@ -750,7 +749,7 @@ int GetNumBlocksOfPeers() bool IsInitialBlockDownload() { - if (pindexBest == NULL || nBestHeight < (Checkpoints::GetTotalBlocksEstimate()-nInitialBlockThreshold)) + if (pindexBest == NULL || nBestHeight < Checkpoints::GetTotalBlocksEstimate()) return true; static int64 nLastUpdate; static CBlockIndex* pindexLastBest; @@ -881,10 +880,10 @@ bool CTransaction::ConnectInputs(CTxDB& txdb, map& mapTestPoo if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile) return error("ConnectInputs() : tried to spend coinbase at depth %d", pindexBlock->nHeight - pindex->nHeight); - // Skip ECDSA signature verification when connecting blocks (fBlock=true) during initial download - // (before the last blockchain checkpoint). This is safe because block merkle hashes are + // Skip ECDSA signature verification when connecting blocks (fBlock=true) + // before the last blockchain checkpoint. This is safe because block merkle hashes are // still computed and checked, and any change will be caught at the next checkpoint. - if (!(fBlock && IsInitialBlockDownload())) + if (!(fBlock && (nBestHeight < Checkpoints::GetTotalBlocksEstimate()))) // Verify signature if (!VerifySignature(txPrev, *this, i)) return DoS(100,error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str())); -- cgit v1.2.3 From b52b6f2e3801fe14e09d646415cb798c565063d5 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Tue, 3 Jan 2012 01:28:15 +0100 Subject: Fix some address-handling deadlocks Made three critical blocks for cs_mapAddresses smaller, and moved writing to the database out of them. This should also improve the concurrency of the code. --- src/net.cpp | 59 +++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 33 insertions(+), 26 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index af59cee696..0f3b7cc863 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -496,21 +496,25 @@ bool AddAddress(CAddress addr, int64 nTimePenalty, CAddrDB *pAddrDB) void AddressCurrentlyConnected(const CAddress& addr) { + CAddress *paddrFound = NULL; + CRITICAL_BLOCK(cs_mapAddresses) { // Only if it's been published already map, CAddress>::iterator it = mapAddresses.find(addr.GetKey()); if (it != mapAddresses.end()) + paddrFound = &(*it).second; + } + + if (paddrFound) + { + int64 nUpdateInterval = 20 * 60; + if (paddrFound->nTime < GetAdjustedTime() - nUpdateInterval) { - CAddress& addrFound = (*it).second; - int64 nUpdateInterval = 20 * 60; - if (addrFound.nTime < GetAdjustedTime() - nUpdateInterval) - { - // Periodically update most recently seen time - addrFound.nTime = GetAdjustedTime(); - CAddrDB addrdb; - addrdb.WriteAddress(addrFound); - } + // Periodically update most recently seen time + paddrFound->nTime = GetAdjustedTime(); + CAddrDB addrdb; + addrdb.WriteAddress(*paddrFound); } } } @@ -1205,13 +1209,13 @@ void ThreadDNSAddressSeed2(void* parg) if (!fTestNet) { printf("Loading addresses from DNS seeds (could take a while)\n"); - CAddrDB addrDB; - addrDB.TxnBegin(); for (int seed_idx = 0; seed_idx < ARRAYLEN(strDNSSeed); seed_idx++) { vector vaddr; if (Lookup(strDNSSeed[seed_idx], vaddr, NODE_NETWORK, -1, true)) { + CAddrDB addrDB; + addrDB.TxnBegin(); BOOST_FOREACH (CAddress& addr, vaddr) { if (addr.GetByte(3) != 127) @@ -1221,10 +1225,9 @@ void ThreadDNSAddressSeed2(void* parg) found++; } } + addrDB.TxnCommit(); // Save addresses (it's ok if this fails) } } - - addrDB.TxnCommit(); // Save addresses (it's ok if this fails) } printf("%d addresses found from DNS seeds\n", found); @@ -1396,28 +1399,32 @@ void ThreadOpenConnections2(void* parg) if (fShutdown) return; + bool fAddSeeds = false; + CRITICAL_BLOCK(cs_mapAddresses) { // Add seed nodes if IRC isn't working bool fTOR = (fUseProxy && addrProxy.port == htons(9050)); if (mapAddresses.empty() && (GetTime() - nStart > 60 || fTOR) && !fTestNet) + fAddSeeds = true; + } + + if (fAddSeeds) + { + for (int i = 0; i < ARRAYLEN(pnSeed); i++) { - for (int i = 0; i < ARRAYLEN(pnSeed); i++) - { - // It'll only connect to one or two seed nodes because once it connects, - // it'll get a pile of addresses with newer timestamps. - // Seed nodes are given a random 'last seen time' of between one and two - // weeks ago. - const int64 nOneWeek = 7*24*60*60; - CAddress addr; - addr.ip = pnSeed[i]; - addr.nTime = GetTime()-GetRand(nOneWeek)-nOneWeek; - AddAddress(addr); - } + // It'll only connect to one or two seed nodes because once it connects, + // it'll get a pile of addresses with newer timestamps. + // Seed nodes are given a random 'last seen time' of between one and two + // weeks ago. + const int64 nOneWeek = 7*24*60*60; + CAddress addr; + addr.ip = pnSeed[i]; + addr.nTime = GetTime()-GetRand(nOneWeek)-nOneWeek; + AddAddress(addr); } } - // // Choose an address to connect to based on most recently seen // -- cgit v1.2.3 From 84393f15b60ff5392da69b7cc208ffb5e8d209f0 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 3 Jan 2012 10:14:22 -0500 Subject: Fix issue #659, and cleanup wallet/command-line argument handling a bit Conflicts: src/init.cpp src/util.cpp --- src/init.cpp | 67 +++++++++++++++++++++++++++++++++++++----------------------- src/irc.cpp | 17 ++++----------- src/net.cpp | 2 +- src/util.cpp | 17 +++++++++++++++ src/util.h | 25 +++++++++++++++++++---- 5 files changed, 85 insertions(+), 43 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index 75ecfc574e..292424fb1d 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -180,6 +180,7 @@ bool AppInit2(int argc, char* argv[]) " -maxconnections=\t " + _("Maintain at most connections to peers (default: 125)\n") + " -addnode= \t " + _("Add a node to connect to\n") + " -connect= \t\t " + _("Connect only to the specified node\n") + + " -noirc \t " + _("Don't find peers using internet relay chat\n") + " -nolisten \t " + _("Don't accept connections from outside\n") + " -nodnsseed \t " + _("Don't bootstrap list of peers using DNS\n") + " -maxreceivebuffer=\t " + _("Maximum per-connection receive buffer, *1000 bytes (default: 10000)\n") + @@ -237,7 +238,6 @@ bool AppInit2(int argc, char* argv[]) } fDebug = GetBoolArg("-debug"); - fAllowDNS = GetBoolArg("-dns"); #ifndef __WXMSW__ fDaemon = GetBoolArg("-daemon"); @@ -257,10 +257,6 @@ bool AppInit2(int argc, char* argv[]) fPrintToConsole = GetBoolArg("-printtoconsole"); fPrintToDebugger = GetBoolArg("-printtodebugger"); - - fTestNet = GetBoolArg("-testnet"); - bool fTOR = (fUseProxy && addrProxy.port == htons(9050)); - fNoListen = GetBoolArg("-nolisten") || fTOR; fLogTimestamps = GetBoolArg("-logtimestamps"); for (int i = 1; i < argc; i++) @@ -365,16 +361,7 @@ bool AppInit2(int argc, char* argv[]) return false; } - // Bind to the port early so we can tell if another instance is already running. string strErrors; - if (!fNoListen) - { - if (!BindListenPort(strErrors)) - { - wxMessageBox(strErrors, "Bitcoin"); - return false; - } - } // // Load data files @@ -456,6 +443,10 @@ bool AppInit2(int argc, char* argv[]) // Add wallet transactions that aren't already in a block to mapTransactions pwalletMain->ReacceptWalletTransactions(); + // Note: Bitcoin-QT stores several settings in the wallet, so we want + // to load the wallet BEFORE parsing command-line arguments, so + // the command-line/bitcoin.conf settings override GUI setting. + // // Parameters // @@ -508,6 +499,43 @@ bool AppInit2(int argc, char* argv[]) } } + fTestNet = GetBoolArg("-testnet"); + bool fTor = (fUseProxy && addrProxy.port == htons(9050)); + if (fTor) + { + // Use SoftSetArg here so user can override any of these if they wish. + // Note: the GetBoolArg() calls for all of these must happen later. + SoftSetArg("-nolisten", true); + SoftSetArg("-noirc", true); + SoftSetArg("-nodnsseed", true); + SoftSetArg("-noupnp", true); + SoftSetArg("-upnp", false); + SoftSetArg("-dns", false); + } + + fAllowDNS = GetBoolArg("-dns"); + fNoListen = GetBoolArg("-nolisten"); + + if (fHaveUPnP) + { +#if USE_UPNP + if (GetBoolArg("-noupnp")) + fUseUPnP = false; +#else + if (GetBoolArg("-upnp")) + fUseUPnP = true; +#endif + } + + if (!fNoListen) + { + if (!BindListenPort(strErrors)) + { + wxMessageBox(strErrors, "Bitcoin"); + return false; + } + } + if (mapArgs.count("-addnode")) { BOOST_FOREACH(string strAddr, mapMultiArgs["-addnode"]) @@ -530,17 +558,6 @@ bool AppInit2(int argc, char* argv[]) wxMessageBox(_("Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction."), "Bitcoin", wxOK | wxICON_EXCLAMATION); } - if (fHaveUPnP) - { -#if USE_UPNP - if (GetBoolArg("-noupnp")) - fUseUPnP = false; -#else - if (GetBoolArg("-upnp")) - fUseUPnP = true; -#endif - } - // // Create the main window and start the node // diff --git a/src/irc.cpp b/src/irc.cpp index 5278488dcd..fe96a90a1c 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -264,19 +264,14 @@ void ThreadIRCSeed2(void* parg) int nErrorWait = 10; int nRetryWait = 10; bool fNameInUse = false; - bool fTOR = (fUseProxy && addrProxy.port == htons(9050)); while (!fShutdown) { - //CAddress addrConnect("216.155.130.130:6667"); // chat.freenode.net CAddress addrConnect("92.243.23.21", 6667); // irc.lfnet.org - if (!fTOR) - { - //struct hostent* phostent = gethostbyname("chat.freenode.net"); - CAddress addrIRC("irc.lfnet.org", 6667, true); - if (addrIRC.IsValid()) - addrConnect = addrIRC; - } + + CAddress addrIRC("irc.lfnet.org", 6667, true); + if (addrIRC.IsValid()) + addrConnect = addrIRC; SOCKET hSocket; if (!ConnectSocket(addrConnect, hSocket)) @@ -406,10 +401,6 @@ void ThreadIRCSeed2(void* parg) closesocket(hSocket); hSocket = INVALID_SOCKET; - // IRC usually blocks TOR, so only try once - if (fTOR) - return; - if (GetTime() - nStart > 20 * 60) { nErrorWait /= 3; diff --git a/src/net.cpp b/src/net.cpp index 0f3b7cc863..c7475b118c 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1405,7 +1405,7 @@ void ThreadOpenConnections2(void* parg) { // Add seed nodes if IRC isn't working bool fTOR = (fUseProxy && addrProxy.port == htons(9050)); - if (mapAddresses.empty() && (GetTime() - nStart > 60 || fTOR) && !fTestNet) + if (mapAddresses.empty() && (GetTime() - nStart > 60 || fUseProxy) && !fTestNet) fAddSeeds = true; } diff --git a/src/util.cpp b/src/util.cpp index d6a113095d..a3f1c9507d 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -472,6 +472,23 @@ void ParseParameters(int argc, char* argv[]) } } +bool SoftSetArg(const std::string& strArg, const std::string& strValue) +{ + if (mapArgs.count(strArg)) + return false; + mapArgs[strArg] = strValue; + return true; +} + +bool SoftSetArg(const std::string& strArg, bool fValue) +{ + if (fValue) + return SoftSetArg(strArg, std::string("1")); + else + return SoftSetArg(strArg, std::string("0")); +} + + const char* wxGetTranslation(const char* pszEnglish) { diff --git a/src/util.h b/src/util.h index 6ecc92b2b6..9f9001e06e 100644 --- a/src/util.h +++ b/src/util.h @@ -442,7 +442,7 @@ inline int64 GetArg(const std::string& strArg, int64 nDefault) return nDefault; } -inline bool GetBoolArg(const std::string& strArg) +inline bool GetBoolArg(const std::string& strArg, bool fDefault=false) { if (mapArgs.count(strArg)) { @@ -450,9 +450,26 @@ inline bool GetBoolArg(const std::string& strArg) return true; return (atoi(mapArgs[strArg]) != 0); } - return false; -} - + return fDefault; +} + +/** + * Set an argument if it doesn't already have a value + * + * @param strArg Argument to set (e.g. "-foo") + * @param strValue Value (e.g. "1") + * @return true if argument gets set, false if it already had a value + */ +bool SoftSetArg(const std::string& strArg, const std::string& strValue); + +/** + * Set a boolean argument if it doesn't already have a value + * + * @param strArg Argument to set (e.g. "-foo") + * @param fValue Value (e.g. false) + * @return true if argument gets set, false if it already had a value + */ +bool SoftSetArg(const std::string& strArg, bool fValue); -- cgit v1.2.3 From cc6bd19660461091903568803014b39d571fd458 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 3 Jan 2012 11:17:04 -0500 Subject: I broke -testnet with my TOR option-parsing fixes. --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index 292424fb1d..d1332e0610 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -237,6 +237,7 @@ bool AppInit2(int argc, char* argv[]) return false; } + fTestNet = GetBoolArg("-testnet"); fDebug = GetBoolArg("-debug"); #ifndef __WXMSW__ @@ -499,7 +500,6 @@ bool AppInit2(int argc, char* argv[]) } } - fTestNet = GetBoolArg("-testnet"); bool fTor = (fUseProxy && addrProxy.port == htons(9050)); if (fTor) { -- cgit v1.2.3 From fb88f1cc97d52d8cd5bc49169a1bcd4df735fc52 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 3 Jan 2012 12:21:04 -0500 Subject: Fix typo (#734) Conflicts: src/qt/locale/bitcoin_hu.ts src/qt/locale/bitcoin_it.ts src/qt/locale/bitcoin_pt_BR.ts src/qt/locale/bitcoin_uk.ts src/qt/locale/bitcoin_zh_CN.ts --- src/qt/forms/sendcoinsentry.ui | 2 +- src/qt/locale/bitcoin_da.ts | 2 +- src/qt/locale/bitcoin_de.ts | 2 +- src/qt/locale/bitcoin_en.ts | 2 +- src/qt/locale/bitcoin_es.ts | 2 +- src/qt/locale/bitcoin_es_CL.ts | 2 +- src/qt/locale/bitcoin_nb.ts | 2 +- src/qt/locale/bitcoin_nl.ts | 2 +- src/qt/locale/bitcoin_ru.ts | 2 +- src/qt/locale/bitcoin_zh_TW.ts | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/qt/forms/sendcoinsentry.ui b/src/qt/forms/sendcoinsentry.ui index 0297d17f15..22a3f8fdc6 100644 --- a/src/qt/forms/sendcoinsentry.ui +++ b/src/qt/forms/sendcoinsentry.ui @@ -100,7 +100,7 @@ - Choose adress from address book + Choose address from address book diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index 74928d32c5..b6c148f05a 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -917,7 +917,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Vælg adresse fra adressebog diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index f7b134a75d..27db47528c 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -916,7 +916,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Adresse aus dem Adressbuch auswählen diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index df964c91e6..0d57d9b154 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -919,7 +919,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index 49e0f0a2c7..8c6966bfad 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -936,7 +936,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Elije dirección de la guia diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index bb9d299790..107b90bb55 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -936,7 +936,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Elije dirección de la guia diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index 018bc62910..ef09e6baf7 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -917,7 +917,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Velg adresse fra adresseboken diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index d26e016b8b..2b36237d2e 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -918,7 +918,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Kies adres uit adresboek diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts index 804781b01a..8bce04ed97 100644 --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -912,7 +912,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Выбрать адрес из адресной книги diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index 48b5e599ba..b0c4bd12d8 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -916,7 +916,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book 從位址簿中選一個位址 -- cgit v1.2.3 From 20e3f2aefc6071af1d4e0754053f2fb88061ee9a Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Tue, 3 Jan 2012 11:55:58 +0100 Subject: Fix typo (#734) --- src/qt/forms/sendcoinsentry.ui | 2 +- src/qt/locale/bitcoin_da.ts | 2 +- src/qt/locale/bitcoin_de.ts | 2 +- src/qt/locale/bitcoin_en.ts | 2 +- src/qt/locale/bitcoin_es.ts | 2 +- src/qt/locale/bitcoin_es_CL.ts | 2 +- src/qt/locale/bitcoin_hu.ts | 2 +- src/qt/locale/bitcoin_it.ts | 2 +- src/qt/locale/bitcoin_nb.ts | 2 +- src/qt/locale/bitcoin_nl.ts | 2 +- src/qt/locale/bitcoin_pt_BR.ts | 4 ++-- src/qt/locale/bitcoin_ru.ts | 2 +- src/qt/locale/bitcoin_uk.ts | 2 +- src/qt/locale/bitcoin_zh_CN.ts | 2 +- src/qt/locale/bitcoin_zh_TW.ts | 2 +- 15 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/qt/forms/sendcoinsentry.ui b/src/qt/forms/sendcoinsentry.ui index 0297d17f15..22a3f8fdc6 100644 --- a/src/qt/forms/sendcoinsentry.ui +++ b/src/qt/forms/sendcoinsentry.ui @@ -100,7 +100,7 @@ - Choose adress from address book + Choose address from address book diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index 19dde6a5d7..2b6d605767 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -917,7 +917,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Vælg adresse fra adressebog diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index 394565e998..1aba0d58df 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -916,7 +916,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Adresse aus dem Adressbuch auswählen diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index df964c91e6..0d57d9b154 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -919,7 +919,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index 4c1fc1aaf6..df62780c4f 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -919,7 +919,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Elije dirección de la guia diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index c9e18a0b56..d7e110cb13 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -919,7 +919,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Elije dirección de la guia diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index 0c460022ff..25a0a24a18 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -917,7 +917,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Válassz egy címet a címjegyzékből diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts index c9aa980a4d..95d76005fd 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -918,7 +918,7 @@ p, li { white-space: pre-wrap; }⏎ - Choose adress from address book + Choose address from address book Scegli l'indirizzo dalla rubrica diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index 6a3a4107a7..f43ba2fd39 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -917,7 +917,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Velg adresse fra adresseboken diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index 0651775e0b..91b39ce998 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -918,7 +918,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Kies adres uit adresboek diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index eb6c18c9e2..a9555c3dc4 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -910,8 +910,8 @@ p, li { white-space: pre-wrap; } - Choose adress from address book - Choose adress from address book + Choose address from address book + Choose address from address book diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts index 358c4f1470..9f782205be 100644 --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -917,7 +917,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Выбрать адрес из адресной книги diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts index 3ea0bcc736..57313b7a52 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -917,7 +917,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book Вибрати адресу з адресної книги diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index acd8fa9d5f..3faaac3c97 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -917,7 +917,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book 从地址薄选择地址 diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index b150620648..56dd548f6d 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -916,7 +916,7 @@ p, li { white-space: pre-wrap; } - Choose adress from address book + Choose address from address book 從位址簿中選一個位址 -- cgit v1.2.3 From 45099b19daea9b78bf9823fab8d930211f738d7d Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Wed, 28 Dec 2011 11:14:05 +0100 Subject: Fix transaction type in UI: not all tx'es with "from"/"to" field are necessarily IP tx'es - Also, prepare for OP_EVAL by calling all transactions without bitcoin address "SendToOther"/"RecvFromOther", (IP tx'es are so rare they can be put together with funky EV_EVAL scripts) --- src/qt/transactionrecord.cpp | 39 +++++++++++++++++++-------------------- src/qt/transactionrecord.h | 4 ++-- src/qt/transactiontablemodel.cpp | 17 ++++++++--------- src/qt/transactionview.cpp | 4 ++-- 4 files changed, 31 insertions(+), 33 deletions(-) diff --git a/src/qt/transactionrecord.cpp b/src/qt/transactionrecord.cpp index 77c5a01260..52a3080e97 100644 --- a/src/qt/transactionrecord.cpp +++ b/src/qt/transactionrecord.cpp @@ -64,17 +64,10 @@ QList TransactionRecord::decomposeTransaction(const CWallet * sub.credit = nUnmatured; } } - else if (!mapValue["from"].empty() || !mapValue["message"].empty()) - { - // Received by IP connection - sub.type = TransactionRecord::RecvFromIP; - if (!mapValue["from"].empty()) - sub.address = mapValue["from"]; - } else { + bool foundAddress = false; // Received by Bitcoin Address - sub.type = TransactionRecord::RecvWithAddress; BOOST_FOREACH(const CTxOut& txout, wtx.vout) { if(wallet->IsMine(txout)) @@ -82,11 +75,19 @@ QList TransactionRecord::decomposeTransaction(const CWallet * CBitcoinAddress address; if (ExtractAddress(txout.scriptPubKey, wallet, address)) { + sub.type = TransactionRecord::RecvWithAddress; sub.address = address.ToString(); + foundAddress = true; + break; } - break; } } + if(!foundAddress) + { + // Received by IP connection, or other non-address transaction like OP_EVAL + sub.type = TransactionRecord::RecvFromOther; + sub.address = mapValue["from"]; + } } parts.append(sub); } @@ -127,21 +128,19 @@ QList TransactionRecord::decomposeTransaction(const CWallet * // from a transaction sent back to our own address. continue; } - else if(!mapValue["to"].empty()) + + CBitcoinAddress address; + if (ExtractAddress(txout.scriptPubKey, 0, address)) { - // Sent to IP - sub.type = TransactionRecord::SendToIP; - sub.address = mapValue["to"]; + // Sent to Bitcoin Address + sub.type = TransactionRecord::SendToAddress; + sub.address = address.ToString(); } else { - // Sent to Bitcoin Address - sub.type = TransactionRecord::SendToAddress; - CBitcoinAddress address; - if (ExtractAddress(txout.scriptPubKey, 0, address)) - { - sub.address = address.ToString(); - } + // Sent to IP, or other non-address transaction like OP_EVAL + sub.type = TransactionRecord::SendToOther; + sub.address = mapValue["to"]; } int64 nValue = txout.nValue; diff --git a/src/qt/transactionrecord.h b/src/qt/transactionrecord.h index 0050c878ee..84bf959b17 100644 --- a/src/qt/transactionrecord.h +++ b/src/qt/transactionrecord.h @@ -56,9 +56,9 @@ public: Other, Generated, SendToAddress, - SendToIP, + SendToOther, RecvWithAddress, - RecvFromIP, + RecvFromOther, SendToSelf }; diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index 0e1733f156..b863546691 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -345,12 +345,11 @@ QString TransactionTableModel::formatTxType(const TransactionRecord *wtx) const { case TransactionRecord::RecvWithAddress: return tr("Received with"); - case TransactionRecord::RecvFromIP: - return tr("Received from IP"); + case TransactionRecord::RecvFromOther: + return tr("Received from"); case TransactionRecord::SendToAddress: + case TransactionRecord::SendToOther: return tr("Sent to"); - case TransactionRecord::SendToIP: - return tr("Sent to IP"); case TransactionRecord::SendToSelf: return tr("Payment to yourself"); case TransactionRecord::Generated: @@ -367,10 +366,10 @@ QVariant TransactionTableModel::txAddressDecoration(const TransactionRecord *wtx case TransactionRecord::Generated: return QIcon(":/icons/tx_mined"); case TransactionRecord::RecvWithAddress: - case TransactionRecord::RecvFromIP: + case TransactionRecord::RecvFromOther: return QIcon(":/icons/tx_input"); case TransactionRecord::SendToAddress: - case TransactionRecord::SendToIP: + case TransactionRecord::SendToOther: return QIcon(":/icons/tx_output"); default: return QIcon(":/icons/tx_inout"); @@ -382,12 +381,12 @@ QString TransactionTableModel::formatTxToAddress(const TransactionRecord *wtx, b { switch(wtx->type) { - case TransactionRecord::RecvFromIP: + case TransactionRecord::RecvFromOther: return QString::fromStdString(wtx->address); case TransactionRecord::RecvWithAddress: case TransactionRecord::SendToAddress: return lookupAddress(wtx->address, tooltip); - case TransactionRecord::SendToIP: + case TransactionRecord::SendToOther: return QString::fromStdString(wtx->address); case TransactionRecord::SendToSelf: case TransactionRecord::Generated: @@ -478,7 +477,7 @@ QVariant TransactionTableModel::txStatusDecoration(const TransactionRecord *wtx) QString TransactionTableModel::formatTooltip(const TransactionRecord *rec) const { QString tooltip = formatTxStatus(rec) + QString("\n") + formatTxType(rec); - if(rec->type==TransactionRecord::RecvFromIP || rec->type==TransactionRecord::SendToIP || + if(rec->type==TransactionRecord::RecvFromOther || rec->type==TransactionRecord::SendToOther || rec->type==TransactionRecord::SendToAddress || rec->type==TransactionRecord::RecvWithAddress) { tooltip += QString(" ") + formatTxToAddress(rec, true); diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index 2dcbf1ea8a..3ef31854fb 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -70,9 +70,9 @@ TransactionView::TransactionView(QWidget *parent) : typeWidget->addItem(tr("All"), TransactionFilterProxy::ALL_TYPES); typeWidget->addItem(tr("Received with"), TransactionFilterProxy::TYPE(TransactionRecord::RecvWithAddress) | - TransactionFilterProxy::TYPE(TransactionRecord::RecvFromIP)); + TransactionFilterProxy::TYPE(TransactionRecord::RecvFromOther)); typeWidget->addItem(tr("Sent to"), TransactionFilterProxy::TYPE(TransactionRecord::SendToAddress) | - TransactionFilterProxy::TYPE(TransactionRecord::SendToIP)); + TransactionFilterProxy::TYPE(TransactionRecord::SendToOther)); typeWidget->addItem(tr("To yourself"), TransactionFilterProxy::TYPE(TransactionRecord::SendToSelf)); typeWidget->addItem(tr("Mined"), TransactionFilterProxy::TYPE(TransactionRecord::Generated)); typeWidget->addItem(tr("Other"), TransactionFilterProxy::TYPE(TransactionRecord::Other)); -- cgit v1.2.3 From 99e9601e805c009b301c7cb29d541858507ae095 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 3 Jan 2012 00:03:07 -0800 Subject: Fix horrific performance found by gmaxwell. --- src/serialize.h | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/src/serialize.h b/src/serialize.h index 7876990d04..b0ce065297 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -828,6 +828,38 @@ struct secure_allocator : public std::allocator }; +// +// Allocator that clears its contents before deletion. +// +template +struct zero_after_free_allocator : public std::allocator +{ + // MSVC8 default copy constructor is broken + typedef std::allocator base; + typedef typename base::size_type size_type; + typedef typename base::difference_type difference_type; + typedef typename base::pointer pointer; + typedef typename base::const_pointer const_pointer; + typedef typename base::reference reference; + typedef typename base::const_reference const_reference; + typedef typename base::value_type value_type; + zero_after_free_allocator() throw() {} + zero_after_free_allocator(const zero_after_free_allocator& a) throw() : base(a) {} + template + zero_after_free_allocator(const zero_after_free_allocator& a) throw() : base(a) {} + ~zero_after_free_allocator() throw() {} + template struct rebind + { typedef zero_after_free_allocator<_Other> other; }; + + void deallocate(T* p, std::size_t n) + { + if (p != NULL) + memset(p, 0, sizeof(T) * n); + std::allocator::deallocate(p, n); + } +}; + + // // Double ended buffer combining vector and stream-like interfaces. @@ -837,7 +869,7 @@ struct secure_allocator : public std::allocator class CDataStream { protected: - typedef std::vector > vector_type; + typedef std::vector > vector_type; vector_type vch; unsigned int nReadPos; short state; -- cgit v1.2.3 From 09308a3882552b5b3bab67064514499532121b44 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sat, 7 Jan 2012 13:35:25 -0500 Subject: Remove mentions on anonymity in debian folder. These should never have been there, bitcoin isnt anonymous without a ton of work that virtually no users will ever be willing and capable of doing. --- contrib/debian/changelog | 9 +++++++++ contrib/debian/control | 4 ++-- contrib/debian/manpages/bitcoind.1 | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/contrib/debian/changelog b/contrib/debian/changelog index bef58c982f..0c67487fc1 100644 --- a/contrib/debian/changelog +++ b/contrib/debian/changelog @@ -1,3 +1,12 @@ +bitcoin (0.5.0.3-natty1) natty; urgency=low + + * Remove mentions on anonymity in package descriptions and manpage. + These should never have been there, bitcoin isnt anonymous without + a ton of work that virtually no users will ever be willing and + capable of doing + + -- Matt Corallo Sat, 7 Jan 2012 13:37:00 -0500 + bitcoin (0.5.0.3-natty0) natty; urgency=low * New upstream release. diff --git a/contrib/debian/control b/contrib/debian/control index 13fde5948c..c41664ca6f 100644 --- a/contrib/debian/control +++ b/contrib/debian/control @@ -24,7 +24,7 @@ Vcs-Browser: http://github.com/bitcoin/bitcoin Package: bitcoind Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Description: peer-to-peer network based anonymous digital currency - daemon +Description: peer-to-peer network based digital currency - daemon Bitcoin is a free open source peer-to-peer electronic cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and @@ -42,7 +42,7 @@ Description: peer-to-peer network based anonymous digital currency - daemon Package: bitcoin-qt Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Description: peer-to-peer network based anonymous digital currency - QT GUI +Description: peer-to-peer network based digital currency - QT GUI Bitcoin is a free open source peer-to-peer electronic cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and diff --git a/contrib/debian/manpages/bitcoind.1 b/contrib/debian/manpages/bitcoind.1 index 0179406a16..bf46a6609c 100644 --- a/contrib/debian/manpages/bitcoind.1 +++ b/contrib/debian/manpages/bitcoind.1 @@ -1,6 +1,6 @@ .TH BITCOIND "1" "January 2011" "bitcoind 3.19" .SH NAME -bitcoind \- peer-to-peer network based anonymous digital currency +bitcoind \- peer-to-peer network based digital currency .SH SYNOPSIS bitcoin [options] [params] .TP -- cgit v1.2.3 From 21aa161453f7ee2505684885ee60cd146bc37b65 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 6 Jan 2012 06:55:48 +0100 Subject: make transaction description read-only (UI fix) --- src/qt/forms/transactiondescdialog.ui | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/qt/forms/transactiondescdialog.ui b/src/qt/forms/transactiondescdialog.ui index 2f70a38214..9a9f6db158 100644 --- a/src/qt/forms/transactiondescdialog.ui +++ b/src/qt/forms/transactiondescdialog.ui @@ -19,6 +19,9 @@ This pane shows a detailed description of the transaction + + true + -- cgit v1.2.3 From 2d8bc0e6da2203ba2ae62bb167110529e5b6f7d4 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Tue, 13 Dec 2011 17:30:13 +0100 Subject: Add "About Qt" menu option to show built-in Qt About dialog - Most Qt programs do this, and it can be useful to find out what version of Qt was built against. --- src/qt/bitcoingui.cpp | 8 +++++++- src/qt/bitcoingui.h | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 5968aab6c4..75d2a50a25 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -57,6 +57,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): walletModel(0), encryptWalletAction(0), changePassphraseAction(0), + aboutQtAction(0), trayIcon(0), notificator(0) { @@ -204,7 +205,10 @@ void BitcoinGUI::createActions() quitAction->setMenuRole(QAction::QuitRole); aboutAction = new QAction(QIcon(":/icons/bitcoin"), tr("&About %1").arg(qApp->applicationName()), this); aboutAction->setToolTip(tr("Show information about Bitcoin")); - aboutAction->setMenuRole(QAction::AboutQtRole); + aboutAction->setMenuRole(QAction::AboutRole); + aboutQtAction = new QAction(tr("About &Qt"), this); + aboutQtAction->setToolTip(tr("Show information about Qt")); + aboutQtAction->setMenuRole(QAction::AboutQtRole); optionsAction = new QAction(QIcon(":/icons/options"), tr("&Options..."), this); optionsAction->setToolTip(tr("Modify configuration options for bitcoin")); optionsAction->setMenuRole(QAction::PreferencesRole); @@ -221,6 +225,7 @@ void BitcoinGUI::createActions() connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit())); connect(optionsAction, SIGNAL(triggered()), this, SLOT(optionsClicked())); connect(aboutAction, SIGNAL(triggered()), this, SLOT(aboutClicked())); + connect(aboutQtAction, SIGNAL(triggered()), qApp, SLOT(aboutQt())); connect(openBitcoinAction, SIGNAL(triggered()), this, SLOT(showNormal())); connect(encryptWalletAction, SIGNAL(triggered(bool)), this, SLOT(encryptWallet(bool))); connect(changePassphraseAction, SIGNAL(triggered()), this, SLOT(changePassphrase())); @@ -248,6 +253,7 @@ void BitcoinGUI::createMenuBar() QMenu *help = appMenuBar->addMenu(tr("&Help")); help->addAction(aboutAction); + help->addAction(aboutQtAction); } void BitcoinGUI::createToolBars() diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 581d393749..9b672ee809 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -79,6 +79,7 @@ private: QAction *exportAction; QAction *encryptWalletAction; QAction *changePassphraseAction; + QAction *aboutQtAction; QSystemTrayIcon *trayIcon; Notificator *notificator; -- cgit v1.2.3 From 6e1e62a04c79a93d124371fa102d7881449b3673 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 10 Jan 2012 15:50:37 -0500 Subject: Bump version to 0.4.4 --- contrib/Bitcoin.app/Contents/Info.plist | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/contrib/Bitcoin.app/Contents/Info.plist b/contrib/Bitcoin.app/Contents/Info.plist index 1d520c93cf..bef67460c8 100644 --- a/contrib/Bitcoin.app/Contents/Info.plist +++ b/contrib/Bitcoin.app/Contents/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.4.3 + 0.4.4 CFBundleSignature ???? CFBundleVersion diff --git a/doc/README b/doc/README index d91509bd90..40bda47d9c 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.4.3 BETA +Bitcoin 0.4.4 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 2f5761645a..f8f1c34188 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.4.3 BETA +Bitcoin 0.4.4 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 3455f7681c..0598311790 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.4.3 +!define VERSION 0.4.4 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.4.3-win32-setup.exe +OutFile bitcoin-0.4.4-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.4.3.0 +VIProductVersion 0.4.4.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index b0ce065297..d7b5ec80d5 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -59,7 +59,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 40300; +static const int VERSION = 40400; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 507848b63d980d32798689db408ce980d77a5483 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 10 Jan 2012 15:54:38 -0500 Subject: Bump version to 0.5.0.4 --- bitcoin-qt.pro | 2 +- contrib/debian/changelog | 6 ++++++ doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 6 files changed, 13 insertions(+), 7 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 1eddcd542b..19349c708d 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.5.0.3 +VERSION = 0.5.0.4 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/contrib/debian/changelog b/contrib/debian/changelog index 0c67487fc1..24d6f710b6 100644 --- a/contrib/debian/changelog +++ b/contrib/debian/changelog @@ -1,3 +1,9 @@ +bitcoin (0.5.0.4-natty0) natty; urgency=low + + * New upstream release. + + -- Matt Corallo Tue, 10 Jan 2012 15:53:00 -0500 + bitcoin (0.5.0.3-natty1) natty; urgency=low * Remove mentions on anonymity in package descriptions and manpage. diff --git a/doc/README b/doc/README index c3ed9c4b7e..e3b8ffb3b9 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.5.0.3 BETA +Bitcoin 0.5.0.4 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 8a8f82b846..b117f51208 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.5.0.3 BETA +Bitcoin 0.5.0.4 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 76efe57d27..76ae81762d 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.5.0.3 +!define VERSION 0.5.0.4 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.5.0.3-win32-setup.exe +OutFile bitcoin-0.5.0.4-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.5.0.3 +VIProductVersion 0.5.0.4 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index 0f075a5bf1..5bee071e1c 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -60,7 +60,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 50003; +static const int VERSION = 50004; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 98811f6ad4764f63e510d703d1659589c083fa05 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 10 Jan 2012 15:58:29 -0500 Subject: Bump version to 0.5.3 --- bitcoin-qt.pro | 2 +- contrib/debian/changelog | 6 ++++++ doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 6 files changed, 13 insertions(+), 7 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index d7ac62e90a..f98379904c 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.5.2 +VERSION = 0.5.3 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/contrib/debian/changelog b/contrib/debian/changelog index 5e38c7bd20..0720acc35c 100644 --- a/contrib/debian/changelog +++ b/contrib/debian/changelog @@ -1,3 +1,9 @@ +bitcoin (0.5.3-natty0) natty; urgency=low + + * New upstream release. + + -- Luke Dashjr Tue, 10 Jan 2012 15:57:00 -0500 + bitcoin (0.5.2-natty1) natty; urgency=low * Remove mentions on anonymity in package descriptions and manpage. diff --git a/doc/README b/doc/README index 07785655f2..6c6c70a342 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.5.2 BETA +Bitcoin 0.5.3 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index b98f878b27..4fdf4a5493 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.5.2 BETA +Bitcoin 0.5.3 BETA Copyright (c) 2009-2011 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index abf5c566b5..12a1a532da 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.5.2 +!define VERSION 0.5.3 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.5.2-win32-setup.exe +OutFile bitcoin-0.5.3-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.5.2.0 +VIProductVersion 0.5.3.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index 37748e4cdf..eacf51bc39 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -60,7 +60,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 50200; +static const int VERSION = 50300; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 880c47863587ef4f464c4d681713e1f24cbf1cb7 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Mon, 9 Jan 2012 23:39:26 +0100 Subject: Remove unused definition --- src/wallet.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wallet.h b/src/wallet.h index 794139233d..3560a72580 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -77,7 +77,6 @@ public: bool CreateTransaction(const std::vector >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet); bool CreateTransaction(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet); bool CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey); - bool BroadcastTransaction(CWalletTx& wtxNew); std::string SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, bool fAskFee=false); std::string SendMoneyToBitcoinAddress(const CBitcoinAddress& address, int64 nValue, CWalletTx& wtxNew, bool fAskFee=false); -- cgit v1.2.3 From 948072c39f913d1ebe43b3b46234f9d7a0d00427 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 16 Jan 2012 22:17:48 -0500 Subject: Code tidyups, fixing various warnings. Partial cherry pick of: Compile with extra warnings turned on. And more makefile/code tidying up. This turns on most gcc warnings, and removes some unused variables and other code that triggers warnings. Exceptions are: -Wno-sign-compare : triggered by lots of comparisons of signed integer to foo.size(), which is unsigned. -Wno-char-subscripts : triggered by the convert-to-hex functions (I may fix this in a future commit). Conflicts: src/makefile.osx src/makefile.unix src/netbase.cpp src/rpc.cpp --- src/checkpoints.cpp | 1 - src/headers.h | 2 -- src/net.cpp | 3 --- src/net.h | 4 +++- src/serialize.h | 3 +++ 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index c7e054df37..508f72b376 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -52,7 +52,6 @@ namespace Checkpoints { if (fTestNet) return NULL; - int64 nResult; BOOST_REVERSE_FOREACH(const MapCheckpoints::value_type& i, mapCheckpoints) { const uint256& hash = i.second; diff --git a/src/headers.h b/src/headers.h index ab318cbb43..96db87db1b 100644 --- a/src/headers.h +++ b/src/headers.h @@ -91,8 +91,6 @@ #endif -#pragma hdrstop - #include "serialize.h" #include "uint256.h" #include "util.h" diff --git a/src/net.cpp b/src/net.cpp index c7475b118c..e3c0f8c3d1 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1082,7 +1082,6 @@ void ThreadMapPort2(void* parg) char port[6]; sprintf(port, "%d", GetListenPort()); - const char * rootdescurl = 0; const char * multicastif = 0; const char * minissdpdpath = 0; struct UPNPDev * devlist = 0; @@ -1104,8 +1103,6 @@ void ThreadMapPort2(void* parg) r = UPNP_GetValidIGD(devlist, &urls, &data, lanaddr, sizeof(lanaddr)); if (r == 1) { - char intClient[16]; - char intPort[6]; string strDesc = "Bitcoin " + FormatFullVersion(); #ifndef UPNPDISCOVER_SUCCESS /* miniupnpc 1.5 */ diff --git a/src/net.h b/src/net.h index 741e2a812e..03d514ca90 100644 --- a/src/net.h +++ b/src/net.h @@ -264,7 +264,9 @@ public: // Make sure not to reuse time indexes to keep things in the same order int64 nNow = (GetTime() - 1) * 1000000; static int64 nLastTime; - nLastTime = nNow = std::max(nNow, ++nLastTime); + ++nLastTime; + nNow = std::max(nNow, nLastTime); + nLastTime = nNow; // Each retry is 2 minutes after the last nRequestTime = std::max(nRequestTime + 2 * 60 * 1000000, nNow); diff --git a/src/serialize.h b/src/serialize.h index d7b5ec80d5..385c9ab8e9 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -98,6 +98,7 @@ enum const bool fRead = false; \ unsigned int nSerSize = 0; \ ser_streamplaceholder s; \ + assert(fGetSize||fWrite||fRead); /* suppress warning */ \ s.nType = nType; \ s.nVersion = nVersion; \ {statements} \ @@ -111,6 +112,7 @@ enum const bool fWrite = true; \ const bool fRead = false; \ unsigned int nSerSize = 0; \ + assert(fGetSize||fWrite||fRead); /* suppress warning */ \ {statements} \ } \ template \ @@ -121,6 +123,7 @@ enum const bool fWrite = false; \ const bool fRead = true; \ unsigned int nSerSize = 0; \ + assert(fGetSize||fWrite||fRead); /* suppress warning */ \ {statements} \ } -- cgit v1.2.3 From 5df96269d30ec57e69676e6937b45b3608df98ac Mon Sep 17 00:00:00 2001 From: Janne Pulkkinen Date: Sat, 14 Jan 2012 21:31:49 +0200 Subject: *Clear all has a tooltip now *About dialog updated --- src/qt/forms/aboutdialog.ui | 2 +- src/qt/forms/sendcoinsdialog.ui | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/qt/forms/aboutdialog.ui b/src/qt/forms/aboutdialog.ui index cf7997326c..127b90965a 100644 --- a/src/qt/forms/aboutdialog.ui +++ b/src/qt/forms/aboutdialog.ui @@ -82,7 +82,7 @@ - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. diff --git a/src/qt/forms/sendcoinsdialog.ui b/src/qt/forms/sendcoinsdialog.ui index e5e19e1015..04cf404ae3 100644 --- a/src/qt/forms/sendcoinsdialog.ui +++ b/src/qt/forms/sendcoinsdialog.ui @@ -80,6 +80,9 @@ 0 + + Remove all transaction fields + Clear all -- cgit v1.2.3 From c144672045e69d82e4e48479f2f1ed9956186bfb Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 16 Jan 2012 22:16:48 -0500 Subject: Code tidyups, fixing various warnings. Partial cherry pick of: Compile with extra warnings turned on. And more makefile/code tidying up. This turns on most gcc warnings, and removes some unused variables and other code that triggers warnings. Exceptions are: -Wno-sign-compare : triggered by lots of comparisons of signed integer to foo.size(), which is unsigned. -Wno-char-subscripts : triggered by the convert-to-hex functions (I may fix this in a future commit). Conflicts: src/makefile.osx src/makefile.unix src/netbase.cpp --- src/bitcoinrpc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 889dd7a1b1..4031d0cbc3 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1312,7 +1312,7 @@ Value listsinceblock(const Array& params, bool fHelp) CBlockIndex *block; for (block = pindexBest; block && block->nHeight > target_height; - block = block->pprev); + block = block->pprev) { } lastblock = block ? block->GetBlockHash() : 0; } -- cgit v1.2.3 From 1181bf86d14e202849a7de5e839b93a2faeb1ce0 Mon Sep 17 00:00:00 2001 From: Lars Rasmusson Date: Sat, 14 Jan 2012 12:14:36 +0100 Subject: Replace tabs with four spaces to comply with coding standard in doc/coding.txt --- src/net.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index e3c0f8c3d1..c353473a7e 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1107,11 +1107,11 @@ void ThreadMapPort2(void* parg) #ifndef UPNPDISCOVER_SUCCESS /* miniupnpc 1.5 */ r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, - port, port, lanaddr, strDesc.c_str(), "TCP", 0); + port, port, lanaddr, strDesc.c_str(), "TCP", 0); #else /* miniupnpc 1.6 */ r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, - port, port, lanaddr, strDesc.c_str(), "TCP", 0, "0"); + port, port, lanaddr, strDesc.c_str(), "TCP", 0, "0"); #endif if(r!=UPNPCOMMAND_SUCCESS) -- cgit v1.2.3 From b0870346f268d4c7f2d461c921ff63b6d967242d Mon Sep 17 00:00:00 2001 From: Lars Rasmusson Date: Sat, 14 Jan 2012 12:14:36 +0100 Subject: Replace tabs with four spaces to comply with coding standard in doc/coding.txt --- src/net.cpp | 4 ++-- src/qt/transactionfilterproxy.h | 2 +- src/util.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index 18bafd02e7..d99c73f959 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1158,11 +1158,11 @@ void ThreadMapPort2(void* parg) #ifndef UPNPDISCOVER_SUCCESS /* miniupnpc 1.5 */ r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, - port, port, lanaddr, strDesc.c_str(), "TCP", 0); + port, port, lanaddr, strDesc.c_str(), "TCP", 0); #else /* miniupnpc 1.6 */ r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, - port, port, lanaddr, strDesc.c_str(), "TCP", 0, "0"); + port, port, lanaddr, strDesc.c_str(), "TCP", 0, "0"); #endif if(r!=UPNPCOMMAND_SUCCESS) diff --git a/src/qt/transactionfilterproxy.h b/src/qt/transactionfilterproxy.h index 4dd2a8e5c6..17c1b482e0 100644 --- a/src/qt/transactionfilterproxy.h +++ b/src/qt/transactionfilterproxy.h @@ -29,7 +29,7 @@ public: // Set maximum number of rows returned, -1 if unlimited void setLimit(int limit); - int rowCount(const QModelIndex &parent = QModelIndex()) const; + int rowCount(const QModelIndex &parent = QModelIndex()) const; protected: bool filterAcceptsRow(int source_row, const QModelIndex & source_parent) const; diff --git a/src/util.h b/src/util.h index 78caff683d..c57e82bab0 100644 --- a/src/util.h +++ b/src/util.h @@ -749,8 +749,8 @@ inline bool AffinityBugWorkaround(void(*pfn)(void*)) inline uint32_t ByteReverse(uint32_t value) { - value = ((value & 0xFF00FF00) >> 8) | ((value & 0x00FF00FF) << 8); - return (value<<16) | (value>>16); + value = ((value & 0xFF00FF00) >> 8) | ((value & 0x00FF00FF) << 8); + return (value<<16) | (value>>16); } #endif -- cgit v1.2.3 From 54ed0a0432a3e02e41e81de63c65a871b8756178 Mon Sep 17 00:00:00 2001 From: Daniel Folkinshteyn Date: Thu, 19 Jan 2012 01:54:14 -0500 Subject: Update seednodes, pick long-uptime nodes with version >= 0.4.0 --- src/net.cpp | 141 +++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 77 insertions(+), 64 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index c353473a7e..b35a79deae 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1243,70 +1243,83 @@ void ThreadDNSAddressSeed2(void* parg) unsigned int pnSeed[] = { - 0x6884ac63, 0x3ffecead, 0x2919b953, 0x0942fe50, 0x7a1d922e, 0xcdd6734a, 0x953a5bb6, 0x2c46922e, - 0xe2a5f143, 0xaa39103a, 0xa06afa5c, 0x135ffd59, 0xe8e82863, 0xf61ef029, 0xf75f042e, 0x2b363532, - 0x29b2df42, 0x16b1f64e, 0xd46e281b, 0x5280bf58, 0x60372229, 0x1be58e4f, 0xa8496f45, 0x1fb1a057, - 0x756b3844, 0x3bb79445, 0x0b375518, 0xcccb0102, 0xb682bf2e, 0x46431c02, 0x3a81073a, 0xa3771f1f, - 0x213a121f, 0x85dc2c1b, 0x56b4323b, 0xb34e8945, 0x3c40b33d, 0xfa276418, 0x1f818d29, 0xebe1e344, - 0xf6160a18, 0xf4fa384a, 0x34b09558, 0xb882b543, 0xe3ce2253, 0x6abf56d8, 0xe91b1155, 0x688ee6ad, - 0x2efc6058, 0x4792cd47, 0x0c32f757, 0x4c813a46, 0x8c93644a, 0x37507444, 0x813ad218, 0xdac06d4a, - 0xe4c63e4b, 0x21a1ea3c, 0x8d88556f, 0x30e9173a, 0x041f681b, 0xdc77ba50, 0xc0072753, 0xceddd44f, - 0x052d1743, 0xe3c77a4a, 0x13981c3a, 0x5685d918, 0x3c0e4e70, 0x3e56fb54, 0xb676ae0c, 0xac93c859, - 0x22279f43, 0x975a4542, 0xe527f071, 0xea162f2e, 0x3c65a32e, 0x5be5713b, 0x961ec418, 0xb202922e, - 0x5ef7be50, 0xce49f53e, 0x05803b47, 0x8463b055, 0x78576153, 0x3ec2ae3a, 0x4bbd7118, 0xafcee043, - 0x56a3e8ba, 0x6174de4d, 0x8d01ba4b, 0xc9af564e, 0xdbc9c547, 0xa627474d, 0xdada9244, 0xd3b3083a, - 0x523e071f, 0xd6b96f18, 0xbd527c46, 0xdf2bbb4d, 0xd37b4a4b, 0x3a6a2158, 0xc064b055, 0x18a8e055, - 0xec4dae3b, 0x0540416c, 0x475b4fbe, 0x064803b2, 0x48e9f062, 0x2898524b, 0xd315ff43, 0xf786d247, - 0xc7ea2f3e, 0xc087f043, 0xc163354b, 0x8250284d, 0xed300029, 0xbf36e05c, 0x8eb3ae4c, 0xe7aa623e, - 0x7ced0274, 0xdd362c1b, 0x362b995a, 0xca26b629, 0x3fc41618, 0xb97b364e, 0xa05b8729, 0x0f5e3c43, - 0xdf942618, 0x6aeb9b5b, 0xbf04762e, 0xfaaeb118, 0x87579958, 0x76520044, 0xc2660c5b, 0x628b201b, - 0xf193932e, 0x1c0ad045, 0xff908346, 0x8da9d4da, 0xed201c1f, 0xa47a2b1b, 0x330007d4, 0x8ba1ed47, - 0xb2f02d44, 0x7db62c1b, 0x781c454b, 0xc0300029, 0xb7062a45, 0x88b52e3a, 0x78dd6b63, 0x1cb9b718, - 0x5d358e47, 0x59912c3b, 0x79607544, 0x5197f759, 0xc023be48, 0xd1013743, 0x0f354057, 0x8e3aac3b, - 0x4114693e, 0x22316318, 0xe27dda50, 0x878eac3b, 0x4948a21f, 0x5db7f24c, 0x8ccb6157, 0x26a5de18, - 0x0a11bd43, 0x27bb1e41, 0x60a7a951, 0x3e16b35e, 0x07888b53, 0x5648a853, 0x0149fe50, 0xd070a34f, - 0x6454c96d, 0xd6e54758, 0xa96dc152, 0x65447861, 0xf6bdf95e, 0x10400202, 0x2c29d483, 0x18174732, - 0x1d840618, 0x12e61818, 0x089d3f3c, 0x917e931f, 0xd1b0c90e, 0x25bd3c42, 0xeb05775b, 0x7d550c59, - 0x6cfacb01, 0xe4224444, 0xa41dd943, 0x0f5aa643, 0x5e33731b, 0x81036d50, 0x6f46a0d1, 0x7731be43, - 0x14840e18, 0xf1e8d059, 0x661d2b1f, 0x40a3201b, 0x9407b843, 0xedf0254d, 0x7bd1a5bc, 0x073dbe51, - 0xe864a97b, 0x2efd947b, 0xb9ca0e45, 0x4e2113ad, 0xcc305731, 0xd39ca63c, 0x733df918, 0xda172b1f, - 0xaa03b34d, 0x7230fd4d, 0xf1ce6e3a, 0x2e9fab43, 0xa4010750, 0xa928bd18, 0x6809be42, 0xb19de348, - 0xff956270, 0x0d795f51, 0xd2dec247, 0x6df5774b, 0xbac11f79, 0xdfb05c75, 0x887683d8, 0xa1e83632, - 0x2c0f7671, 0x28bcb65d, 0xac2a7545, 0x3eebfc60, 0x304ad7c4, 0xa215a462, 0xc86f0f58, 0xcfb92ebe, - 0x5e23ed82, 0xf506184b, 0xec0f19b7, 0x060c59ad, 0x86ee3174, 0x85380774, 0xa199a562, 0x02b507ae, - 0x33eb2163, 0xf2112b1f, 0xb702ba50, 0x131b9618, 0x90ccd04a, 0x08f3273b, 0xecb61718, 0x64b8b44d, - 0x182bf4dc, 0xc7b68286, 0x6e318d5f, 0xfdb03654, 0xb3272e54, 0xe014ad4b, 0x274e4a31, 0x7806375c, - 0xbc34a748, 0x1b5ad94a, 0x6b54d10e, 0x73e2ae6e, 0x5529d483, 0x8455a76d, 0x99c13f47, 0x1d811741, - 0xa9782a78, 0x0b00464d, 0x7266ea50, 0x532dab46, 0x33e1413e, 0x780d0c18, 0x0fb0854e, 0x03370155, - 0x2693042e, 0xfa3d824a, 0x2bb1681b, 0x37ea2a18, 0x7fb8414b, 0x32e0713b, 0xacf38d3f, 0xa282716f, - 0xb1a09d7b, 0xa04b764b, 0x83c94d18, 0x05ee4c6d, 0x0e795f51, 0x46984352, 0xf80fc247, 0x3fccb946, - 0xd7ae244b, 0x0a8e0a4c, 0x57b141bc, 0x3647bed1, 0x1431b052, 0x803a8bbb, 0xfc69056b, 0xf5991862, - 0x14963b2e, 0xd35d5dda, 0xc6c73574, 0xc8f1405b, 0x0ca4224d, 0xecd36071, 0xa9461754, 0xe7a0ed72, - 0x559e8346, 0x1c9beec1, 0xc786ea4a, 0x9561b44d, 0x9788074d, 0x1a69934f, 0x23c5614c, 0x07c79d4b, - 0xc7ee52db, 0xc72df351, 0xcb135e44, 0xa0988346, 0xc211fc4c, 0x87dec34b, 0x1381074d, 0x04a65cb7, - 0x4409083a, 0x4a407a4c, 0x92b8d37d, 0xacf50b4d, 0xa58aa5bc, 0x448f801f, 0x9c83762e, 0x6fd5734a, - 0xfe2d454b, 0x84144c55, 0x05190e4c, 0xb2151448, 0x63867a3e, 0x16099018, 0x9c010d3c, 0x962d8f3d, - 0xd51ee453, 0x9d86801f, 0x68e87b47, 0x6bf7bb73, 0x5fc7910e, 0x10d90118, 0x3db04442, 0x729d3e4b, - 0xc397d842, 0x57bb15ad, 0x72f31f4e, 0xc9380043, 0x2bb24e18, 0xd9b8ab50, 0xb786801f, 0xf4dc4847, - 0x85f4bb51, 0x4435995b, 0x5ba07e40, 0x2c57392e, 0x3628124b, 0x9839b64b, 0x6fe8b24d, 0xaddce847, - 0x75260e45, 0x0c572a43, 0xfea21902, 0xb9f9742e, 0x5a70d443, 0x8fc5910e, 0x868d4744, 0x56245e02, - 0xd7eb5f02, 0x35c12c1b, 0x4373034b, 0x8786554c, 0xa6facf18, 0x4b11a31f, 0x3570664e, 0x5a64bc42, - 0x0b03983f, 0x8f457e4c, 0x0fd874c3, 0xb6cf31b2, 0x2bbc2d4e, 0x146ca5b2, 0x9d00b150, 0x048a4153, - 0xca4dcd43, 0xc1607cca, 0x8234cf57, 0x9c7daead, 0x3dc07658, 0xea5c6e4c, 0xf1a0084e, 0x16d2ee53, - 0x1b849418, 0xfe913a47, 0x1e988f62, 0x208b644c, 0xc55ee980, 0xbdbce747, 0xf59a384e, 0x0f56091b, - 0x7417b745, 0x0c37344e, 0x2c62ab47, 0xf8533a4d, 0x8030084d, 0x76b93c4b, 0xda6ea0ad, 0x3c54f618, - 0x63b0de1f, 0x7370d858, 0x1a70bb4c, 0xdda63b2e, 0x60b2ba50, 0x1ba7d048, 0xbe1b2c1b, 0xabea5747, - 0x29ad2e4d, 0xe8cd7642, 0x66c80e18, 0x138bf34a, 0xc6145e44, 0x2586794c, 0x07bc5478, 0x0da0b14d, - 0x8f95354e, 0x9eb11c62, 0xa1545e46, 0x2e7a2602, 0x408c9c3d, 0x59065d55, 0xf51d1a4c, 0x3bbc6a4e, - 0xc71b2a2e, 0xcdaaa545, 0x17d659d0, 0x5202e7ad, 0xf1b68445, 0x93375961, 0xbd88a043, 0x066ad655, - 0x890f6318, 0x7b7dca47, 0x99bdd662, 0x3bb4fc53, 0x1231efdc, 0xc0a99444, 0x96bbea47, 0x61ed8748, - 0x27dfa73b, 0x8d4d1754, 0x3460042e, 0x551f0c4c, 0x8d0e0718, 0x162ddc53, 0x53231718, 0x1ecd65d0, - 0x944d28bc, 0x3b79d058, 0xaff97fbc, 0x4860006c, 0xc101c90e, 0xace41743, 0xa5975d4c, 0x5cc2703e, - 0xb55a4450, 0x02d18840, 0xee2765ae, 0xd6012fd5, 0x24c94d7d, 0x8c6eec47, 0x7520ba5d, 0x9e15e460, - 0x8510b04c, 0x75ec3847, 0x1dfa6661, 0xe172b3ad, 0x5744c90e, 0x52a0a152, 0x8d6fad18, 0x67b74b6d, - 0x93a089b2, 0x0f3ac5d5, 0xe5de1855, 0x43d25747, 0x4bad804a, 0x55b408d8, 0x60a36441, 0xf553e860, - 0xdb2fa2c8, 0x03152b32, 0xdd27a7d5, 0x3116a8b8, 0x0a1d708c, 0xeee2f13c, 0x6acf436f, 0xce6eb4ca, - 0x101cd3d9, 0x1c48a6b8, 0xe57d6f44, 0x93dcf562, + 0x959bd347, 0xf8de42b2, 0x73bc0518, 0xea6edc50, 0x21b00a4d, 0xc725b43d, 0xd665464d, 0x1a2a770e, + 0x27c93946, 0x65b2fa46, 0xb80ae255, 0x66b3b446, 0xb1877a3e, 0x6ee89e3e, 0xc3175b40, 0x2a01a83c, + 0x95b1363a, 0xa079ad3d, 0xe6ca801f, 0x027f4f4a, 0x34f7f03a, 0xf790f04a, 0x16ca801f, 0x2f4d5e40, + 0x3a4d5e40, 0xc43a322e, 0xc8159753, 0x14d4724c, 0x7919a118, 0xe0bdb34e, 0x68a16b2e, 0xff64b44d, + 0x6099115b, 0x9b57b05b, 0x7bd1b4ad, 0xdf95944f, 0x29d2b73d, 0xafa8db79, 0xe247ba41, 0x24078348, + 0xf722f03c, 0x33567ebc, 0xace64ed4, 0x984d3932, 0xb5f34e55, 0x27b7024d, 0x94579247, 0x8894042e, + 0x9357d34c, 0x1063c24b, 0xcaa228b1, 0xa3c5a8b2, 0x5dc64857, 0xa2c23643, 0xa8369a54, 0x31203077, + 0x00707c5c, 0x09fc0b3a, 0x272e9e2e, 0xf80f043e, 0x9449ca3e, 0x5512c33e, 0xd106b555, 0xe8024157, + 0xe288ec29, 0xc79c5461, 0xafb63932, 0xdb02ab4b, 0x0e512777, 0x8a145a4c, 0xb201ff4f, 0x5e09314b, + 0xcd9bfbcd, 0x1c023765, 0x4394e75c, 0xa728bd4d, 0x65331552, 0xa98420b1, 0x89ecf559, 0x6e80801f, + 0xf404f118, 0xefd62b51, 0x05918346, 0x9b186d5f, 0xacabab46, 0xf912e255, 0xc188ea62, 0xcc55734e, + 0xc668064d, 0xd77a4558, 0x46201c55, 0xf17dfc80, 0xf7142f2e, 0x87bfb718, 0x8aa54fb2, 0xc451d518, + 0xc4ae8831, 0x8dd44d55, 0x5bbd206c, 0x64536b5d, 0x5c667e60, 0x3b064242, 0xfe963a42, 0xa28e6dc8, + 0xe8a9604a, 0xc989464e, 0xd124a659, 0x50065140, 0xa44dfe5e, 0x1079e655, 0x3fb986d5, 0x47895b18, + 0x7d3ce4ad, 0x4561ba50, 0x296eec62, 0x255b41ad, 0xaed35ec9, 0x55556f12, 0xc7d3154d, 0x3297b65d, + 0x8930121f, 0xabf42e4e, 0x4a29e044, 0x1212685d, 0x676c1e40, 0xce009744, 0x383a8948, 0xa2dbd0ad, + 0xecc2564d, 0x07dbc252, 0x887ee24b, 0x5171644c, 0x6bb798c1, 0x847f495d, 0x4cbb7145, 0x3bb81c32, + 0x45eb262e, 0xc8015a4e, 0x250a361b, 0xf694f946, 0xd64a183e, 0xd4f1dd59, 0x8f20ffd4, 0x51d9e55c, + 0x09521763, 0x5e02002e, 0x32c8074d, 0xe685762e, 0x8290b0bc, 0x762a922e, 0xfc5ee754, 0x83a24829, + 0x775b224d, 0x6295bb4d, 0x38ec0555, 0xbffbba50, 0xe5560260, 0x86b16a7c, 0xd372234e, 0x49a3c24b, + 0x2f6a171f, 0x4d75ed60, 0xae94115b, 0xcb543744, 0x63080c59, 0x3f9c724c, 0xc977ce18, 0x532efb18, + 0x69dc3b2e, 0x5f94d929, 0x1732bb4d, 0x9c814b4d, 0xe6b3762e, 0xc024f662, 0x8face35b, 0x6b5b044d, + 0x798c7b57, 0x79a6b44c, 0x067d3057, 0xf9e94e5f, 0x91cbe15b, 0x71405eb2, 0x2662234e, 0xcbcc4a6d, + 0xbf69d54b, 0xa79b4e55, 0xec6d3e51, 0x7c0b3c02, 0x60f83653, 0x24c1e15c, 0x1110b62e, 0x10350f59, + 0xa56f1d55, 0x3509e7a9, 0xeb128354, 0x14268e2e, 0x934e28bc, 0x8e32692e, 0x8331a21f, 0x3e633932, + 0xc812b12e, 0xc684bf2e, 0x80112d2e, 0xe0ddc96c, 0xc630ca4a, 0x5c09b3b2, 0x0b580518, 0xc8e9d54b, + 0xd169aa43, 0x17d0d655, 0x1d029963, 0x7ff87559, 0xcb701f1f, 0x6fa3e85d, 0xe45e9a54, 0xf05d1802, + 0x44d03b2e, 0x837b692e, 0xccd4354e, 0x3d6da13c, 0x3423084d, 0xf707c34a, 0x55f6db3a, 0xad26e442, + 0x6233a21f, 0x09e80e59, 0x8caeb54d, 0xbe870941, 0xb407d20e, 0x20b51018, 0x56fb152e, 0x460d2a4e, + 0xbb9a2946, 0x560eb12e, 0xed83dd29, 0xd6724f53, 0xa50aafb8, 0x451346d9, 0x88348e2e, 0x7312fead, + 0x8ecaf96f, 0x1bda4e5f, 0xf1671e40, 0x3c8c3e3b, 0x4716324d, 0xdde24ede, 0xf98cd17d, 0xa91d4644, + 0x28124eb2, 0x147d5129, 0xd022042e, 0x61733d3b, 0xad0d5e02, 0x8ce2932e, 0xe5c18502, 0x549c1e32, + 0x9685801f, 0x86e217ad, 0xd948214b, 0x4110f462, 0x3a2e894e, 0xbd35492e, 0x87e0d558, 0x64b8ef7d, + 0x7c3eb962, 0x72a84b3e, 0x7cd667c9, 0x28370a2e, 0x4bc60e7b, 0x6fc1ec60, 0x14a6983f, 0x86739a4b, + 0x46954e5f, 0x32e2e15c, 0x2e9326cf, 0xe5801c5e, 0x379607b2, 0x32151145, 0xf0e39744, 0xacb54c55, + 0xa37dfb60, 0x83b55cc9, 0x388f7ca5, 0x15034f5f, 0x3e94965b, 0x68e0ffad, 0x35280f59, 0x8fe190cf, + 0x7c6ba5b2, 0xa5e9db43, 0x4ee1fc60, 0xd9d94e5f, 0x04040677, 0x0ea9b35e, 0x5961f14f, 0x67fda063, + 0xa48a5a31, 0xc6524e55, 0x283d325e, 0x3f37515f, 0x96b94b3e, 0xacce620e, 0x6481cc5b, 0xa4a06d4b, + 0x9e95d2d9, 0xe40c03d5, 0xc2f4514b, 0xb79aad44, 0xf64be843, 0xb2064070, 0xfca00455, 0x429dfa4e, + 0x2323f173, 0xeda4185e, 0xabd5227d, 0x9efd4d58, 0xb1104758, 0x4811e955, 0xbd9ab355, 0xe921f44b, + 0x9f166dce, 0x09e279b2, 0xe0c9ac7b, 0x7901a5ad, 0xa145d4b0, 0x79104671, 0xec31e35a, 0x4fe0b555, + 0xc7d9cbad, 0xad057f55, 0xe94cc759, 0x7fe0b043, 0xe4529f2e, 0x0d4dd4b2, 0x9f11a54d, 0x031e2e4e, + 0xe6014f5f, 0x11d1ca6c, 0x26bd7f61, 0xeb86854f, 0x4d347b57, 0x116bbe2e, 0xdba7234e, 0x7bcbfd2e, + 0x174dd4b2, 0x6686762e, 0xb089ba50, 0xc6258246, 0x087e767b, 0xc4a8cb4a, 0x595dba50, 0x7f0ae502, + 0x7b1dbd5a, 0xa0603492, 0x57d1af4b, 0x9e21ffd4, 0x6393064d, 0x7407376e, 0xe484762e, 0x122a4e53, + 0x4a37aa43, 0x3888a6be, 0xee77864e, 0x039c8dd5, 0x688d89af, 0x0e988f62, 0x08218246, 0xfc2f8246, + 0xd1d97040, 0xd64cd4b2, 0x5ae4a6b8, 0x7d0de9bc, 0x8d304d61, 0x06c5c672, 0xa4c8bd4d, 0xe0fd373b, + 0x575ebe4d, 0x72d26277, 0x55570f55, 0x77b154d9, 0xe214293a, 0xfc740f4b, 0xfe3f6a57, 0xa9c55f02, + 0xae4054db, 0x2394d918, 0xb511b24a, 0xb8741ab2, 0x0758e65e, 0xc7b5795b, 0xb0a30a4c, 0xaf7f170c, + 0xf3b4762e, 0x8179576d, 0x738a1581, 0x4b95b64c, 0x9829b618, 0x1bea932e, 0x7bdeaa4b, 0xcb5e0281, + 0x65618f54, 0x0658474b, 0x27066acf, 0x40556d65, 0x7d204d53, 0xf28bc244, 0xdce23455, 0xadc0ff54, + 0x3863c948, 0xcee34e5f, 0xdeb85e02, 0x2ed17a61, 0x6a7b094d, 0x7f0cfc40, 0x59603f54, 0x3220afbc, + 0xb5dfd962, 0x125d21c0, 0x13f8d243, 0xacfefb4e, 0x86c2c147, 0x3d8bbd59, 0xbd02a21f, 0x2593042e, + 0xc6a17a7c, 0x28925861, 0xb487ed44, 0xb5f4fd6d, 0x90c28a45, 0x5a14f74d, 0x43d71b4c, 0x728ebb5d, + 0x885bf950, 0x08134dd0, 0x38ec046e, 0xc575684b, 0x50082d2e, 0xa2f47757, 0x270f86ae, 0xf3ff6462, + 0x10ed3f4e, 0x4b58d462, 0xe01ce23e, 0x8c5b092e, 0x63e52f4e, 0x22c1e85d, 0xa908f54e, 0x8591624f, + 0x2c0fb94e, 0xa280ba3c, 0xb6f41b4c, 0x24f9aa47, 0x27201647, 0x3a3ea6dc, 0xa14fc3be, 0x3c34bdd5, + 0x5b8d4f5b, 0xaadeaf4b, 0xc71cab50, 0x15697a4c, 0x9a1a734c, 0x2a037d81, 0x2590bd59, 0x48ec2741, + 0x53489c5b, 0x7f00314b, 0x2170d362, 0xf2e92542, 0x42c10b44, 0x98f0f118, 0x883a3456, 0x099a932e, + 0xea38f7bc, 0x644e9247, 0xbb61b62e, 0x30e0863d, 0x5f51be54, 0x207215c7, 0x5f306c45, 0xaa7f3932, + 0x98da7d45, 0x4e339b59, 0x2e411581, 0xa808f618, 0xad2c0c59, 0x54476741, 0x09e99fd1, 0x5db8f752, + 0xc16df8bd, 0x1dd4b44f, 0x106edf2e, 0x9e15c180, 0x2ad6b56f, 0x633a5332, 0xff33787c, 0x077cb545, + 0x6610be6d, 0x75aad2c4, 0x72fb4d5b, 0xe81e0f59, 0x576f6332, 0x47333373, 0x351ed783, 0x2d90fb50, + 0x8d5e0f6c, 0x5b27a552, 0xdb293ebb, 0xe55ef950, 0x4b133ad8, 0x75df975a, 0x7b6a8740, 0xa899464b, + 0xfab15161, 0x10f8b64d, 0xd055ea4d, 0xee8e146b, 0x4b14afb8, 0x4bc1c44a, 0x9b961dcc, 0xd111ff43, + 0xfca0b745, 0xc800e412, 0x0afad9d1, 0xf751c350, 0xf9f0cccf, 0xa290a545, 0x8ef13763, 0x7ec70d59, + 0x2b066acf, 0x65496c45, 0xade02c1b, 0xae6eb077, 0x92c1e65b, 0xc064e6a9, 0xc649e56d, 0x5287a243, + 0x36de4f5b, 0x5b1df6ad, 0x65c39a59, 0xdba805b2, 0x20067aa8, 0x6457e56d, 0x3cee26cf, 0xfd3ff26d, + 0x04f86d4a, 0x06b8e048, 0xa93bcd5c, 0x91135852, 0xbe90a643, 0x8fa0094d, 0x06d8215f, 0x2677094d, + 0xd735685c, 0x164a00c9, 0x5209ac5f, 0xa9564c5c, 0x3b504f5f, 0xcc826bd0, 0x4615042e, 0x5fe13b4a, + 0x8c81b86d, 0x879ab68c, 0x1de564b8, 0x434487d8, 0x2dcb1b63, 0x82ab524a, 0xb0676abb, 0xa13d9c62, + 0xdbb5b86d, 0x5b7f4b59, 0xaddfb44d, 0xad773532, 0x3997054c, 0x72cebd89, 0xb194544c, 0xc5b8046e, + 0x6e1adeb2, 0xaa5abb51, 0xefb54b44, 0x15efc54f, 0xe9f1bc4d, 0x5f401b6c, 0x97f018ad, 0xc82f9252, + 0x2cdc762e, 0x8e52e56d, 0x1827175e, 0x9b7d7d80, 0xb2ad6845, 0x51065140, 0x71180a18, 0x5b27006c, + 0x0621e255, 0x721cbe58, 0x670c0cb8, 0xf8bd715d, 0xe0bdc5d9, 0xed843501, 0x4b84554d, 0x7f1a18bc, + 0x53bcaf47, 0x5729d35f, 0xf0dda246, 0x22382bd0, 0x4d641fb0, 0x316afcde, 0x50a22f1f, 0x73608046, + 0xc461d84a, 0xb2dbe247, }; -- cgit v1.2.3 From 5df1a22c2e626a767a356265616f1f28e4346137 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 17 Jan 2012 21:50:08 -0500 Subject: Various updates to the release process --- doc/release-process.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/release-process.txt b/doc/release-process.txt index 953761b4a9..8bf944a29e 100644 --- a/doc/release-process.txt +++ b/doc/release-process.txt @@ -1,3 +1,5 @@ +* update translations (ping tcatm on IRC for now) + * update (commit) version in sources src/serialize.h share/setup.nsi @@ -34,9 +36,9 @@ 2. windows 32-bit binary + source 3. windows installer -* upload source and builds to SF +* upload builds to SF -* create SHA1SUMS for builds, and PGP-sign it +* create SHA256SUMS for builds, and PGP-sign it * update bitcoin.org version -- cgit v1.2.3 From 3d3f9cd120e3761aa14dcb1550d977b40fafdf8c Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 17 Jan 2012 21:50:08 -0500 Subject: Various updates to the release process --- doc/release-process.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/release-process.txt b/doc/release-process.txt index 14d8efeb32..9be6b782a4 100644 --- a/doc/release-process.txt +++ b/doc/release-process.txt @@ -1,3 +1,5 @@ +* update translations (ping tcatm on IRC for now) + * update (commit) version in sources bitcoin-qt.pro src/serialize.h @@ -77,9 +79,9 @@ Build output expected: Bitcoin-Qt.dmg -* upload source and builds to SourceForge +* upload builds to SourceForge -* create SHA1SUMS for builds, and PGP-sign it +* create SHA256SUMS for builds, and PGP-sign it * update bitcoin.org version -- cgit v1.2.3 From d1e56838dc067568cfce7bc85bdc228da58f2597 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 2 Feb 2012 17:27:44 -0500 Subject: Bugfix: Support building test_bitcoin with shared-object boost test framework Conflicts: src/makefile.unix --- src/makefile.unix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/makefile.unix b/src/makefile.unix index 6c48199546..9d97ae50ca 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -16,6 +16,8 @@ ifdef STATIC ifeq (${STATIC}, all) LMODE2 = static endif +else + TESTDEFS += -DBOOST_TEST_DYN_LINK endif # for boost 1.37, add -mt to the boost libraries @@ -140,14 +142,14 @@ bitcoind: $(OBJS:obj/%=obj/nogui/%) $(CXX) $(xCXXFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS) obj/test/%.o: test/%.cpp - $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $< + $(CXX) -c $(TESTDEFS) $(xCXXFLAGS) -MMD -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) test_bitcoin: obj/test/test_bitcoin.o $(filter-out obj/nogui/init.o,$(OBJS:obj/%=obj/nogui/%)) - $(CXX) $(xCXXFLAGS) -o $@ $(LIBPATHS) $^ -Wl,-Bstatic -lboost_unit_test_framework $(LDFLAGS) $(LIBS) + $(CXX) $(xCXXFLAGS) -o $@ $(LIBPATHS) $^ -Wl,-B$(LMODE) -lboost_unit_test_framework $(LDFLAGS) $(LIBS) clean: -rm -f bitcoind test_bitcoin -- cgit v1.2.3 From 1677743fca631f8fb970fe917866dd982c6ddd40 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 23 Jan 2012 14:27:08 -0500 Subject: Rename src/obj/test to src/obj-test to workaround bug in older GNU Make --- src/makefile.unix | 10 +++++----- src/obj-test/.gitignore | 2 ++ 2 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 src/obj-test/.gitignore diff --git a/src/makefile.unix b/src/makefile.unix index 9d97ae50ca..53948bcba6 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -129,7 +129,7 @@ all: bitcoind # auto-generated dependencies: -include obj/nogui/*.P --include obj/test/*.P +-include obj-test/*.P obj/nogui/%.o: %.cpp $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $< @@ -141,21 +141,21 @@ obj/nogui/%.o: %.cpp bitcoind: $(OBJS:obj/%=obj/nogui/%) $(CXX) $(xCXXFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS) -obj/test/%.o: test/%.cpp +obj-test/%.o: test/%.cpp $(CXX) -c $(TESTDEFS) $(xCXXFLAGS) -MMD -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) -test_bitcoin: obj/test/test_bitcoin.o $(filter-out obj/nogui/init.o,$(OBJS:obj/%=obj/nogui/%)) +test_bitcoin: obj-test/test_bitcoin.o $(filter-out obj/nogui/init.o,$(OBJS:obj/%=obj/nogui/%)) $(CXX) $(xCXXFLAGS) -o $@ $(LIBPATHS) $^ -Wl,-B$(LMODE) -lboost_unit_test_framework $(LDFLAGS) $(LIBS) clean: -rm -f bitcoind test_bitcoin -rm -f obj/*.o -rm -f obj/nogui/*.o - -rm -f obj/test/*.o + -rm -f obj-test/*.o -rm -f obj/*.P -rm -f obj/nogui/*.P - -rm -f obj/test/*.P + -rm -f obj-test/*.P diff --git a/src/obj-test/.gitignore b/src/obj-test/.gitignore new file mode 100644 index 0000000000..d6b7ef32c8 --- /dev/null +++ b/src/obj-test/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore -- cgit v1.2.3 From 22388eac08a4a543686c5402ca7ec22336e53468 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Mon, 23 Jan 2012 15:58:06 -0500 Subject: Support makefile.osx building test_bitcoin with dynamic boost --- src/makefile.osx | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/src/makefile.osx b/src/makefile.osx index de71887935..cbd51b049f 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -22,6 +22,8 @@ USE_UPNP:=1 LIBS= -dead_strip ifdef STATIC # Build STATIC if you are redistributing the bitcoind binary +TESTLIBS += \ + $(DEPSDIR)/lib/libboost_unit_test_framework-mt.a LIBS += \ $(DEPSDIR)/lib/db48/libdb_cxx-4.8.a \ $(DEPSDIR)/lib/libboost_system-mt.a \ @@ -29,8 +31,11 @@ LIBS += \ $(DEPSDIR)/lib/libboost_program_options-mt.a \ $(DEPSDIR)/lib/libboost_thread-mt.a \ $(DEPSDIR)/lib/libssl.a \ - $(DEPSDIR)/lib/libcrypto.a + $(DEPSDIR)/lib/libcrypto.a \ + -lz else +TESTLIBS += \ + -lboost_unit_test_framework-mt LIBS += \ -ldb_cxx-4.8 \ -lboost_system-mt \ @@ -38,7 +43,9 @@ LIBS += \ -lboost_program_options-mt \ -lboost_thread-mt \ -lssl \ - -lcrypto + -lcrypto \ + -lz +TESTDEFS += -DBOOST_TEST_DYN_LINK endif DEFS=-DMAC_OSX -DMSG_NOSIGNAL=0 -DUSE_SSL @@ -98,7 +105,7 @@ all: bitcoind # auto-generated dependencies: -include obj/nogui/*.P --include obj/test/*.P +-include obj-test/*.P obj/nogui/%.o: %.cpp $(CXX) -c $(CFLAGS) -MMD -o $@ $< @@ -111,20 +118,20 @@ bitcoind: $(OBJS:obj/%=obj/nogui/%) $(CXX) $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS) obj/test/%.o: test/%.cpp - $(CXX) -c $(CFLAGS) -MMD -o $@ $< + $(CXX) -c $(TESTDEFS) $(CFLAGS) -MMD -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) test_bitcoin: obj/test/test_bitcoin.o $(filter-out obj/nogui/init.o,$(OBJS:obj/%=obj/nogui/%)) - $(CXX) $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS) $(DEPSDIR)/lib/libboost_unit_test_framework-mt.a + $(CXX) $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS) $(TESTLIBS) clean: -rm -f bitcoind test_bitcoin -rm -f obj/*.o -rm -f obj/nogui/*.o - -rm -f obj/test/*.o + -rm -f obj-test/*.o -rm -f obj/*.P -rm -f obj/nogui/*.P - -rm -f obj/test/*.P + -rm -f obj-test/*.P -- cgit v1.2.3 From bccbc5f4c363692d3598c16614a875dc4cd6d389 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 7 Dec 2011 00:00:04 -0500 Subject: Automatically refocus on new SendCoinsEntrys and scroll to them. --- src/qt/sendcoinsdialog.cpp | 7 +++++++ src/qt/sendcoinsentry.cpp | 5 +++++ src/qt/sendcoinsentry.h | 2 ++ 3 files changed, 14 insertions(+) diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 762f27dfa6..6d32891172 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -11,6 +11,7 @@ #include #include #include +#include SendCoinsDialog::SendCoinsDialog(QWidget *parent) : QDialog(parent), @@ -188,6 +189,12 @@ SendCoinsEntry *SendCoinsDialog::addEntry() // Focus the field, so that entry can start immediately entry->clear(); + entry->setFocus(); + ui->scrollAreaWidgetContents->resize(ui->scrollAreaWidgetContents->sizeHint()); + QCoreApplication::instance()->processEvents(); + QScrollBar* bar = ui->scrollArea->verticalScrollBar(); + if (bar) + bar->setSliderPosition(bar->maximum()); return entry; } diff --git a/src/qt/sendcoinsentry.cpp b/src/qt/sendcoinsentry.cpp index 23b11ccdde..ab5460f8c2 100644 --- a/src/qt/sendcoinsentry.cpp +++ b/src/qt/sendcoinsentry.cpp @@ -151,3 +151,8 @@ bool SendCoinsEntry::isClear() return ui->payTo->text().isEmpty(); } +void SendCoinsEntry::setFocus() +{ + ui->payTo->setFocus(); +} + diff --git a/src/qt/sendcoinsentry.h b/src/qt/sendcoinsentry.h index ccc223b5f5..2258706d59 100644 --- a/src/qt/sendcoinsentry.h +++ b/src/qt/sendcoinsentry.h @@ -30,6 +30,8 @@ public: // Hence we have to set it up manually QWidget *setupTabChain(QWidget *prev); + void setFocus(); + public slots: void setRemoveEnabled(bool enabled); void clear(); -- cgit v1.2.3 From edb563e8a5e6145cef6684e6e179b428a115ec62 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Mon, 5 Dec 2011 15:50:22 -0500 Subject: Testnet difficulty calculation changes, to take effect Feb 15 2012 Allow mining of min-difficulty blocks if 20 minutes have gone by without mining a regular-difficulty block. Normal rules apply every 2016 blocks, though, so there may be a very-slow-to-confirm block at the difficulty-adjustment blocks. --- src/main.cpp | 33 +++++++++++++++++++++++++++++---- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 03e133b63c..1c94090190 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -661,6 +661,11 @@ static const int64 nInterval = nTargetTimespan / nTargetSpacing; // unsigned int ComputeMinWork(unsigned int nBase, int64 nTime) { + // Testnet has min-difficulty blocks + // after nTargetSpacing*2 time between blocks: + if (fTestNet && nTime > nTargetSpacing*2) + return bnProofOfWorkLimit.GetCompact(); + CBigNum bnResult; bnResult.SetCompact(nBase); while (nTime > 0 && bnResult < bnProofOfWorkLimit) @@ -675,16 +680,36 @@ unsigned int ComputeMinWork(unsigned int nBase, int64 nTime) return bnResult.GetCompact(); } -unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast) +unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlock *pblock) { + unsigned int nProofOfWorkLimit = bnProofOfWorkLimit.GetCompact(); // Genesis block if (pindexLast == NULL) - return bnProofOfWorkLimit.GetCompact(); + return nProofOfWorkLimit; // Only change once per interval if ((pindexLast->nHeight+1) % nInterval != 0) + { + // Special rules for testnet after 15 Feb 2012: + if (fTestNet && pblock->nTime > 1329264000) + { + // If the new block's timestamp is more than 2* 10 minutes + // then allow mining of a min-difficulty block. + if (pblock->nTime - pindexLast->nTime > nTargetSpacing*2) + return nProofOfWorkLimit; + else + { + // Return the last non-special-min-difficulty-rules-block + const CBlockIndex* pindex = pindexLast; + while (pindex->pprev && pindex->nHeight % nInterval != 0 && pindex->nBits == nProofOfWorkLimit) + pindex = pindex->pprev; + return pindex->nBits; + } + } + return pindexLast->nBits; + } // Go back by what we want to be 14 days worth of blocks const CBlockIndex* pindexFirst = pindexLast; @@ -1289,7 +1314,7 @@ bool CBlock::AcceptBlock() int nHeight = pindexPrev->nHeight+1; // Check proof of work - if (nBits != GetNextWorkRequired(pindexPrev)) + if (nBits != GetNextWorkRequired(pindexPrev, this)) return error("AcceptBlock() : incorrect proof of work"); // Check timestamp against prev @@ -2812,7 +2837,7 @@ CBlock* CreateNewBlock(CReserveKey& reservekey) pblock->hashPrevBlock = pindexPrev->GetBlockHash(); pblock->hashMerkleRoot = pblock->BuildMerkleTree(); pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime()); - pblock->nBits = GetNextWorkRequired(pindexPrev); + pblock->nBits = GetNextWorkRequired(pindexPrev, pblock.get()); pblock->nNonce = 0; return pblock.release(); -- cgit v1.2.3 From e5b031f5d2a467fa28fbf7667101909a28e430bb Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 31 Jan 2012 17:36:25 -0500 Subject: Fix UPnP by reannouncing every 20 minutes. --- src/net.cpp | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index b35a79deae..f995ea9c2a 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1105,11 +1105,11 @@ void ThreadMapPort2(void* parg) { string strDesc = "Bitcoin " + FormatFullVersion(); #ifndef UPNPDISCOVER_SUCCESS - /* miniupnpc 1.5 */ + /* miniupnpc 1.5 */ r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, port, port, lanaddr, strDesc.c_str(), "TCP", 0); #else - /* miniupnpc 1.6 */ + /* miniupnpc 1.6 */ r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, port, port, lanaddr, strDesc.c_str(), "TCP", 0, "0"); #endif @@ -1119,6 +1119,7 @@ void ThreadMapPort2(void* parg) port, port, lanaddr, r, strupnperror(r)); else printf("UPnP Port Mapping successful.\n"); + int i = 1; loop { if (fShutdown || !fUseUPnP) { @@ -1128,7 +1129,26 @@ void ThreadMapPort2(void* parg) FreeUPNPUrls(&urls); return; } + if (i % 600 == 0) // Refresh every 20 minutes + { +#ifndef UPNPDISCOVER_SUCCESS + /* miniupnpc 1.5 */ + r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, + port, port, lanaddr, strDesc.c_str(), "TCP", 0); +#else + /* miniupnpc 1.6 */ + r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, + port, port, lanaddr, strDesc.c_str(), "TCP", 0, "0"); +#endif + + if(r!=UPNPCOMMAND_SUCCESS) + printf("AddPortMapping(%s, %s, %s) failed with code %d (%s)\n", + port, port, lanaddr, r, strupnperror(r)); + else + printf("UPnP Port Mapping successful.\n");; + } Sleep(2000); + i++; } } else { printf("No valid UPnP IGDs found\n"); -- cgit v1.2.3 From 1b6d8f3fca6aef79ea0ccb26303d982d6da78cd1 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 1 Feb 2012 13:24:15 -0500 Subject: Allow -upnp to override setting in wallet (and simplify logic a bit) --- src/init.cpp | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index d1332e0610..12e890cbb4 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -516,16 +516,11 @@ bool AppInit2(int argc, char* argv[]) fAllowDNS = GetBoolArg("-dns"); fNoListen = GetBoolArg("-nolisten"); - if (fHaveUPnP) - { -#if USE_UPNP - if (GetBoolArg("-noupnp")) - fUseUPnP = false; -#else - if (GetBoolArg("-upnp")) - fUseUPnP = true; -#endif - } + // Command-line args override in-wallet settings: + if (mapArgs.count("-upnp")) + fUseUPnP = GetBoolArg("-upnp"); + else if (mapArgs.count("-noupnp")) + fUseUPnP = !GetBoolArg("-noupnp"); if (!fNoListen) { -- cgit v1.2.3 From 71208749839962c41b02101f27a2dd61fb1a7e73 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Wed, 1 Feb 2012 20:14:13 +0100 Subject: Remove loose amp; from Portugese translation (issue #701) --- src/qt/locale/bitcoin_pt_BR.ts | 71 ++++++++++++++++++++++++++++-------------- 1 file changed, 47 insertions(+), 24 deletions(-) diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index a9555c3dc4..2c2f7f1ae4 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -49,7 +51,7 @@ This product includes software developed by the OpenSSL Project for use in the O &New Address... - &amp; Novo endereço ... + &Novo endereço ... @@ -59,7 +61,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - &amp; Copie para a área de transferência do sistema + &Copie para a área de transferência do sistema @@ -69,7 +71,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Delete - &amp; Excluir + &Excluir @@ -89,7 +91,7 @@ This product includes software developed by the OpenSSL Project for use in the O Could not write to file %1. - + @@ -381,7 +383,7 @@ Are you sure you wish to encrypt your wallet? &File - &amp; Arquivo + &Arquivo @@ -391,7 +393,7 @@ Are you sure you wish to encrypt your wallet? &Help - &amp; Ajuda + &Ajuda @@ -416,7 +418,10 @@ Are you sure you wish to encrypt your wallet? %n active connection(s) to Bitcoin network - %n conexão ativa na rede Bitcoin%n conexões ativas na rede Bitcoin + + %n conexão ativa na rede Bitcoin + %n conexões ativas na rede Bitcoin + @@ -431,22 +436,34 @@ Are you sure you wish to encrypt your wallet? %n second(s) ago - %n segundo atrás%n segundos atrás + + %n segundo atrás + %n segundos atrás + %n minute(s) ago - %n minutos atrás%n minutos atrás + + %n minutos atrás + %n minutos atrás + %n hour(s) ago - %n hora atrás%n horas atrás + + %n hora atrás + %n horas atrás + %n day(s) ago - %n dia atrás%n dias atrás + + %n dia atrás + %n dias atrás + @@ -741,12 +758,12 @@ Address: %4 <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> @@ -1113,7 +1130,10 @@ p, li { white-space: pre-wrap; } Open for %n block(s) - Open for %n blockOpen for %n blocks + + Open for %n block + Open for %n blocks + @@ -1138,7 +1158,10 @@ p, li { white-space: pre-wrap; } Mined balance will be available in %n more blocks - Mined balance will be available in %n more blockMined balance will be available in %n more blocks + + Mined balance will be available in %n more block + Mined balance will be available in %n more blocks + @@ -1441,9 +1464,9 @@ p, li { white-space: pre-wrap; } - Don't generate coins + Don't generate coins - Don't generate coins + Don't generate coins @@ -1497,16 +1520,16 @@ p, li { white-space: pre-wrap; } - Don't accept connections from outside + Don't accept connections from outside - Don't accept connections from outside + Don't accept connections from outside - Don't attempt to use UPnP to map the listening port + Don't attempt to use UPnP to map the listening port - Don't attempt to use UPnP to map the listening port + Don't attempt to use UPnP to map the listening port @@ -2330,4 +2353,4 @@ but the comment information will be blank. Bitcoin Qt - \ No newline at end of file + -- cgit v1.2.3 From c1c6de6ad4f92c6628dccc271fe4c661e450d130 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Wed, 25 Jan 2012 03:05:16 +0100 Subject: Check consistency of private keys Reported by onlineproof on IRC: Bitcoin does not verify whether private keys and public keys correspond, when loading a wallet. --- src/db.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/db.cpp b/src/db.cpp index f9a7d6c90a..bd31bd7943 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -879,6 +879,8 @@ int CWalletDB::LoadWallet(CWallet* pwallet) CPrivKey pkey; ssValue >> pkey; key.SetPrivKey(pkey); + if (key.GetPubKey() != vchPubKey) + return DB_CORRUPT; } else { -- cgit v1.2.3 From c13d50d8617678c8696b1f33549ed9cc3a0b554e Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Tue, 17 Jan 2012 09:19:23 +0100 Subject: Revert to global progress indication (see #753) --- src/qt/bitcoingui.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 75d2a50a25..f80038c3fb 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -413,7 +413,6 @@ void BitcoinGUI::setNumBlocks(int count) { if(!clientModel) return; - int initTotal = clientModel->getNumBlocksAtStartup(); int total = clientModel->getNumBlocksOfPeers(); QString tooltip; @@ -424,8 +423,8 @@ void BitcoinGUI::setNumBlocks(int count) progressBarLabel->setVisible(true); progressBarLabel->setText(tr("Synchronizing with network...")); progressBar->setVisible(true); - progressBar->setMaximum(total - initTotal); - progressBar->setValue(count - initTotal); + progressBar->setMaximum(total); + progressBar->setValue(count); } else { -- cgit v1.2.3 From d841fc969a3a300ebeaa4279320235f2ff2b0533 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Thu, 26 Jan 2012 19:26:34 +0100 Subject: Full checking of all loaded keys --- src/db.cpp | 4 +++- src/key.h | 11 +++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/src/db.cpp b/src/db.cpp index bd31bd7943..600afe383d 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -879,7 +879,7 @@ int CWalletDB::LoadWallet(CWallet* pwallet) CPrivKey pkey; ssValue >> pkey; key.SetPrivKey(pkey); - if (key.GetPubKey() != vchPubKey) + if (key.GetPubKey() != vchPubKey || !key.IsValid()) return DB_CORRUPT; } else @@ -887,6 +887,8 @@ int CWalletDB::LoadWallet(CWallet* pwallet) CWalletKey wkey; ssValue >> wkey; key.SetPrivKey(wkey.vchPrivKey); + if (key.GetPubKey() != vchPubKey || !key.IsValid()) + return DB_CORRUPT; } if (!pwallet->LoadKey(key)) return DB_CORRUPT; diff --git a/src/key.h b/src/key.h index d2e6689456..0d0b6d8bb4 100644 --- a/src/key.h +++ b/src/key.h @@ -233,6 +233,17 @@ public: { return CBitcoinAddress(GetPubKey()); } + + bool IsValid() + { + if (!fSet) + return false; + + CSecret secret = GetSecret(); + CKey key2; + key2.SetSecret(secret); + return GetPubKey() == key2.GetPubKey(); + } }; #endif -- cgit v1.2.3 From c11e2b8679e13f739a58faf2a3439d4aaed24364 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 18 Jan 2012 13:36:44 -0500 Subject: Only store transactions with missing inputs in the orphan pool. All previous versions of bitcoin could store some types of invalid transactions in the orphan-transaction list. --- src/main.cpp | 27 +++++++++++++++++++++------ src/main.h | 3 ++- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 1c94090190..dc8503d38f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -411,10 +411,11 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi // Check against previous transactions map mapUnused; int64 nFees = 0; - if (!ConnectInputs(txdb, mapUnused, CDiskTxPos(1,1,1), pindexBest, nFees, false, false)) + bool fInvalid = false; + if (!ConnectInputs(txdb, mapUnused, CDiskTxPos(1,1,1), pindexBest, nFees, false, false, 0, fInvalid)) { - if (pfMissingInputs) - *pfMissingInputs = true; + if (fInvalid) + return error("AcceptToMemoryPool() : FetchInputs found invalid tx %s", hash.ToString().substr(0,10).c_str()); return error("AcceptToMemoryPool() : ConnectInputs failed %s", hash.ToString().substr(0,10).c_str()); } @@ -833,8 +834,15 @@ bool CTransaction::DisconnectInputs(CTxDB& txdb) bool CTransaction::ConnectInputs(CTxDB& txdb, map& mapTestPool, CDiskTxPos posThisTx, - CBlockIndex* pindexBlock, int64& nFees, bool fBlock, bool fMiner, int64 nMinFee) + CBlockIndex* pindexBlock, int64& nFees, bool fBlock, bool fMiner, int64 nMinFee, + bool& fInvalid) { + // FetchInputs can return false either because we just haven't seen some inputs + // (in which case the transaction should be stored as an orphan) + // or because the transaction is malformed (in which case the transaction should + // be dropped). If tx is definitely invalid, fInvalid will be set to true. + fInvalid = false; + // Take over previous transactions' spent pointers if (!IsCoinBase()) { @@ -881,7 +889,12 @@ bool CTransaction::ConnectInputs(CTxDB& txdb, map& mapTestPoo } if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size()) + { + // Revisit this if/when transaction replacement is implemented and allows + // adding inputs: + fInvalid = true; return error("ConnectInputs() : %s prevout.n out of range %d %d %d 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, check that it's matured if (txPrev.IsCoinBase()) @@ -1025,7 +1038,8 @@ bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex) CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos); nTxPos += ::GetSerializeSize(tx, SER_DISK); - if (!tx.ConnectInputs(txdb, mapQueuedChanges, posThisTx, pindex, nFees, true, false)) + bool fInvalid; + if (!tx.ConnectInputs(txdb, mapQueuedChanges, posThisTx, pindex, nFees, true, false, 0, fInvalid)) return false; } // Write queued txindex changes @@ -2806,7 +2820,8 @@ CBlock* CreateNewBlock(CReserveKey& reservekey) // Connecting shouldn't fail due to dependency on other memory pool transactions // because we're already processing them in order of dependency map mapTestPoolTmp(mapTestPool); - if (!tx.ConnectInputs(txdb, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, nFees, false, true, nMinFee)) + bool fInvalid; + if (!tx.ConnectInputs(txdb, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, nFees, false, true, nMinFee, fInvalid)) continue; swap(mapTestPool, mapTestPoolTmp); diff --git a/src/main.h b/src/main.h index 876a35d9cc..8a8b3870ec 100644 --- a/src/main.h +++ b/src/main.h @@ -631,7 +631,8 @@ public: bool ReadFromDisk(COutPoint prevout); bool DisconnectInputs(CTxDB& txdb); bool ConnectInputs(CTxDB& txdb, std::map& mapTestPool, CDiskTxPos posThisTx, - CBlockIndex* pindexBlock, int64& nFees, bool fBlock, bool fMiner, int64 nMinFee=0); + CBlockIndex* pindexBlock, int64& nFees, bool fBlock, bool fMiner, int64 nMinFee, + bool& fInvalid); bool ClientConnectInputs(); bool CheckTransaction() const; bool AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs=true, bool* pfMissingInputs=NULL); -- cgit v1.2.3 From cac23a5a0b7dc993ea1fb1513159db0af994d0ff Mon Sep 17 00:00:00 2001 From: Gregory Maxwell Date: Sun, 5 Feb 2012 02:30:43 -0500 Subject: Have bitcoind recommend a secure RPC password. Increase invalid password delay. Help users avoid insecure configurations a bit by recommending a secure RPC password and increasing the incorrect password delay. This may open up a RPC DOS for users with exposed RPC ports and short passwords. Since users shouldn't have exposed RPC ports OR short passwords, the DOS risk is preferable to the compromise risk. Also logs the client IP address for incorrect attempts. --- src/rpc.cpp | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/rpc.cpp b/src/rpc.cpp index a936edbbe4..a703334d6b 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -2008,16 +2008,23 @@ void ThreadRPCServer2(void* parg) if (mapArgs["-rpcuser"] == "" && mapArgs["-rpcpassword"] == "") { + unsigned char rand_pwd[32]; + RAND_bytes(rand_pwd, 32); string strWhatAmI = "To use bitcoind"; if (mapArgs.count("-server")) strWhatAmI = strprintf(_("To use the %s option"), "\"-server\""); else if (mapArgs.count("-daemon")) strWhatAmI = strprintf(_("To use the %s option"), "\"-daemon\""); PrintConsole( - _("Warning: %s, you must set rpcpassword=\nin the configuration file: %s\n" + _("Warning: %s, you must set a rpcpassword in the configuration file:\n %s\n" + "It is recommended you use the following random password:\n" + "rpcuser=bitcoinrpc\n" + "rpcpassword=%s\n" + "(you do not need to remember this password)\n" "If the file does not exist, create it with owner-readable-only file permissions.\n"), strWhatAmI.c_str(), - GetConfigFile().c_str()); + GetConfigFile().c_str(), + EncodeBase58(&rand_pwd[0],&rand_pwd[0]+32).c_str()); CreateThread(Shutdown, NULL); return; } @@ -2104,12 +2111,14 @@ void ThreadRPCServer2(void* parg) } if (!HTTPAuthorized(mapHeaders)) { - // Deter brute-forcing short passwords - if (mapArgs["-rpcpassword"].size() < 15) - Sleep(50); + printf("ThreadRPCServer incorrect password attempt from %s\n",peer.address().to_string().c_str()); + /* Deter brute-forcing short passwords. + If this results in a DOS the user really + shouldn't have their RPC port exposed.*/ + if (mapArgs["-rpcpassword"].size() < 20) + Sleep(250); stream << HTTPReply(401, "") << std::flush; - printf("ThreadRPCServer incorrect password attempt\n"); continue; } -- cgit v1.2.3 From 4664aae3fe2eba4eec84d20f1e7e701ceeeb49bd Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 7 Feb 2012 22:30:21 -0500 Subject: Update copyrights to 2012 for files modified this year --- COPYING | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- src/checkpoints.cpp | 2 +- src/db.cpp | 2 +- src/headers.h | 2 +- src/init.cpp | 2 +- src/irc.cpp | 2 +- src/key.h | 2 +- src/main.cpp | 2 +- src/main.h | 2 +- src/net.cpp | 2 +- src/net.h | 2 +- src/rpc.cpp | 2 +- src/serialize.h | 2 +- src/util.cpp | 2 +- src/util.h | 2 +- src/wallet.h | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/COPYING b/COPYING index ab042014e8..0f9223ba6b 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright (c) 2009-2011 Bitcoin Developers +Copyright (c) 2009-2012 Bitcoin Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/doc/README b/doc/README index 40bda47d9c..197f03dd56 100644 --- a/doc/README +++ b/doc/README @@ -1,6 +1,6 @@ Bitcoin 0.4.4 BETA -Copyright (c) 2009-2011 Bitcoin Developers +Copyright (c) 2009-2012 Bitcoin Developers 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 diff --git a/doc/README_windows.txt b/doc/README_windows.txt index f8f1c34188..ad357130c2 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,6 +1,6 @@ Bitcoin 0.4.4 BETA -Copyright (c) 2009-2011 Bitcoin Developers +Copyright (c) 2009-2012 Bitcoin Developers 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 diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index 508f72b376..f78712ef4b 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/db.cpp b/src/db.cpp index 600afe383d..783b079963 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/headers.h b/src/headers.h index 96db87db1b..88a16d96d7 100644 --- a/src/headers.h +++ b/src/headers.h @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/init.cpp b/src/init.cpp index 12e890cbb4..079e67b936 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" diff --git a/src/irc.cpp b/src/irc.cpp index fe96a90a1c..b632b96546 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/key.h b/src/key.h index 0d0b6d8bb4..8b033a029f 100644 --- a/src/key.h +++ b/src/key.h @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_KEY_H diff --git a/src/main.cpp b/src/main.cpp index dc8503d38f..9f12829042 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" diff --git a/src/main.h b/src/main.h index 8a8b3870ec..25cf079013 100644 --- a/src/main.h +++ b/src/main.h @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_MAIN_H diff --git a/src/net.cpp b/src/net.cpp index f995ea9c2a..764246520b 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/net.h b/src/net.h index 03d514ca90..52df06f1be 100644 --- a/src/net.h +++ b/src/net.h @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NET_H diff --git a/src/rpc.cpp b/src/rpc.cpp index a703334d6b..a67f7fc947 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/serialize.h b/src/serialize.h index 385c9ab8e9..2bc3a071d7 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_SERIALIZE_H diff --git a/src/util.cpp b/src/util.cpp index a3f1c9507d..85ca02f0aa 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" diff --git a/src/util.h b/src/util.h index 9f9001e06e..a48979c0ef 100644 --- a/src/util.h +++ b/src/util.h @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UTIL_H diff --git a/src/wallet.h b/src/wallet.h index 3560a72580..4387e1a01f 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_WALLET_H -- cgit v1.2.3 From ccd69c7d2219a4a72ad1b6ea01838c3388130ea7 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 7 Feb 2012 18:20:01 -0500 Subject: Bugfix: Capitalize kB correctly (upstream: 9d4b05c) --- src/init.cpp | 2 +- src/qt/bitcoinstrings.cpp | 2 +- src/qt/locale/bitcoin_da.ts | 12 ++++++------ src/qt/locale/bitcoin_de.ts | 12 ++++++------ src/qt/locale/bitcoin_en.ts | 6 +++--- src/qt/locale/bitcoin_es.ts | 12 ++++++------ src/qt/locale/bitcoin_es_CL.ts | 12 ++++++------ src/qt/locale/bitcoin_nb.ts | 12 ++++++------ src/qt/locale/bitcoin_nl.ts | 12 ++++++------ src/qt/locale/bitcoin_ru.ts | 12 ++++++------ src/qt/locale/bitcoin_zh_TW.ts | 12 ++++++------ src/qt/optionsdialog.cpp | 4 ++-- 12 files changed, 55 insertions(+), 55 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index f8a63d26de..e158e15da4 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -204,7 +204,7 @@ bool AppInit2(int argc, char* argv[]) " -upnp \t " + _("Attempt to use UPnP to map the listening port\n") + #endif #endif - " -paytxfee= \t " + _("Fee per KB to add to transactions you send\n") + + " -paytxfee= \t " + _("Fee per kB to add to transactions you send\n") + #ifdef GUI " -server \t\t " + _("Accept command line and JSON-RPC commands\n") + #endif diff --git a/src/qt/bitcoinstrings.cpp b/src/qt/bitcoinstrings.cpp index 647adb9c53..1b0a6767d7 100644 --- a/src/qt/bitcoinstrings.cpp +++ b/src/qt/bitcoinstrings.cpp @@ -24,7 +24,7 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" "86400)\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Don't attempt to use UPnP to map the listening port\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Attempt to use UPnP to map the listening port\n"), -QT_TRANSLATE_NOOP("bitcoin-core", "Fee per KB to add to transactions you send\n"), +QT_TRANSLATE_NOOP("bitcoin-core", "Fee per kB to add to transactions you send\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Accept command line and JSON-RPC commands\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Run in the background as a daemon and accept commands\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Use the test network\n"), diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index b6c148f05a..ae1c84a447 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -674,8 +674,8 @@ Adresse: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Valgfri transaktionsgebyr pr. KB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1KB. Gebyr på 0.01 anbefales. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1kB. Gebyr på 0.01 anbefales. @@ -684,8 +684,8 @@ Adresse: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Valgfri transaktionsgebyr pr. KB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1KB. Gebyr på 0.01 anbefales. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1kB. Gebyr på 0.01 anbefales. @@ -1523,9 +1523,9 @@ p, li { white-space: pre-wrap; } - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send - Gebyr pr. KB, som skal tilføjes til transaktioner du sender + Gebyr pr. kB, som skal tilføjes til transaktioner du sender diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index 27db47528c..242343b1e1 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -673,8 +673,8 @@ Adresse: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Zusätzliche Transaktionsgebühr pro KB, welche sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 KB groß. Eine Gebühr von 0.01 wird empfohlen. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Zusätzliche Transaktionsgebühr pro kB, welche sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 wird empfohlen. @@ -683,8 +683,8 @@ Adresse: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Zusätzliche Transaktionsgebühr pro KB, welche sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 KB groß. Eine Gebühr von 0.01 wird empfohlen. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Zusätzliche Transaktionsgebühr pro kB, welche sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 wird empfohlen. @@ -1512,9 +1512,9 @@ p, li { white-space: pre-wrap; } - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send - Gebühr pro KB, die gesendeten Transaktionen hinzugefügt wird + Gebühr pro kB, die gesendeten Transaktionen hinzugefügt wird diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index 0d57d9b154..122f6d56a5 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -680,7 +680,7 @@ Address: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. @@ -690,7 +690,7 @@ Address: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. @@ -1515,7 +1515,7 @@ p, li { white-space: pre-wrap; } - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index 8c6966bfad..815ba80ab6 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -693,8 +693,8 @@ Dirección: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Comisión opcional a las transacciones por KB que ayuda a asegurar que tus transacciones son procesadas rápidamente. La mayoría de las transacciones son de 1KB. Se recomienda una comisión de 0.01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Comisión opcional a las transacciones por kB que ayuda a asegurar que tus transacciones son procesadas rápidamente. La mayoría de las transacciones son de 1kB. Se recomienda una comisión de 0.01. @@ -703,8 +703,8 @@ Dirección: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Comisión opcional a las transacciones por KB que ayuda a asegurar que tus transacciones son procesadas rápidamente. La mayoría de las transacciones son de 1KB. Se recomienda una comisión de 0.01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Comisión opcional a las transacciones por kB que ayuda a asegurar que tus transacciones son procesadas rápidamente. La mayoría de las transacciones son de 1kB. Se recomienda una comisión de 0.01. @@ -1550,9 +1550,9 @@ p, li { white-space: pre-wrap; } - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send - Comisión por KB para agregar a las transacciones que envias + Comisión por kB para agregar a las transacciones que envias diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index 107b90bb55..80df5ba450 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -693,8 +693,8 @@ Dirección: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Comisión de operación opcional por KB que ayuda a asegurar que tus transacciones sean procesadas rápidamente. La mayoría de las transacciones son de 1KB. Se recomienda una comisión de 0.01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Comisión de operación opcional por kB que ayuda a asegurar que tus transacciones sean procesadas rápidamente. La mayoría de las transacciones son de 1kB. Se recomienda una comisión de 0.01. @@ -703,8 +703,8 @@ Dirección: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Comisión de operación opcional por KB que ayuda a asegurar que tus transacciones sean procesadas rápidamente. La mayoría de las transacciones son de 1KB. Se recomienda una comisión de 0.01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Comisión de operación opcional por kB que ayuda a asegurar que tus transacciones sean procesadas rápidamente. La mayoría de las transacciones son de 1kB. Se recomienda una comisión de 0.01. @@ -1550,9 +1550,9 @@ p, li { white-space: pre-wrap; } - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send - Comisión por KB para agregar a las transacciones que envias + Comisión por kB para agregar a las transacciones que envias diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index ef09e6baf7..9166af300f 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -674,8 +674,8 @@ Adresse: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Valgfritt transaksjonsgebyr per KB som hjelper for å sikre at transaksjonene dine blir raskt prosessert. De fleste transaksjoner er 1KB. Et gebyr på 0.01 anbefales. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Valgfritt transaksjonsgebyr per kB som hjelper for å sikre at transaksjonene dine blir raskt prosessert. De fleste transaksjoner er 1kB. Et gebyr på 0.01 anbefales. @@ -684,8 +684,8 @@ Adresse: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Valgfritt transaksjonsgebyr per KB som hjelper for å sikre at transaksjonene dine blir raskt prosessert. De fleste transaksjoner er 1KB. Et gebyr på 0.01 anbefales. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Valgfritt transaksjonsgebyr per kB som hjelper for å sikre at transaksjonene dine blir raskt prosessert. De fleste transaksjoner er 1kB. Et gebyr på 0.01 anbefales. @@ -1524,9 +1524,9 @@ p, li { white-space: pre-wrap; } - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send - Gebyr per KB som skal legges til transaksjoner du sender + Gebyr per kB som skal legges til transaksjoner du sender diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index 2b36237d2e..4a28cac21d 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -675,8 +675,8 @@ Adres: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Optionele transactiekosten per KB die helpen ervoor te zorgen dat uw transacties snel verwerkt worden. De meeste transacties zijn 1KB. Transactiekosten van 0.01 wordt aangeraden. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Optionele transactiekosten per kB die helpen ervoor te zorgen dat uw transacties snel verwerkt worden. De meeste transacties zijn 1kB. Transactiekosten van 0.01 wordt aangeraden. @@ -685,8 +685,8 @@ Adres: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Optionele transactiekosten per KB die helpen ervoor te zorgen dat uw transacties snel verwerkt worden. De meeste transacties zijn 1KB. Transactiekosten van 0.01 wordt aangeraden. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Optionele transactiekosten per kB die helpen ervoor te zorgen dat uw transacties snel verwerkt worden. De meeste transacties zijn 1kB. Transactiekosten van 0.01 wordt aangeraden. @@ -1526,9 +1526,9 @@ p, li { white-space: pre-wrap; } - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send - Kosten per KB om aan transacties toe te voegen die u verstuurt + Kosten per kB om aan transacties toe te voegen die u verstuurt diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts index 8bce04ed97..648caabcc3 100644 --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -669,8 +669,8 @@ Address: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Опциональная комиссия за кадый KB транзакции, которое позволяет быть уверенным, что Ваша транзакция будет обработана быстро. Большинство транщакций занимают 1 KB. Рекомендованная комиссия: 0.01 BTC. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Опциональная комиссия за кадый kB транзакции, которое позволяет быть уверенным, что Ваша транзакция будет обработана быстро. Большинство транщакций занимают 1 kB. Рекомендованная комиссия: 0.01 BTC. @@ -679,8 +679,8 @@ Address: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Опциональная комиссия за кадый KB транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработана быстро. Большинство транзакций занимают 1 KB. Рекомендованная комиссия: 0.01 BTC. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Опциональная комиссия за кадый kB транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработана быстро. Большинство транзакций занимают 1 kB. Рекомендованная комиссия: 0.01 BTC. @@ -1519,9 +1519,9 @@ p, li { white-space: pre-wrap; } - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send - Комиссия (за каждый KB транзакции) + Комиссия (за каждый kB транзакции) diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index b0c4bd12d8..562ddb3230 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -673,8 +673,8 @@ Address: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - 非必要的交易手續費, 有助於縮短你的交易處理時間. 以 KB 為計費單位, 而大部份交易的大小是 1KB. 建議設定為 0.01 位元幣. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + 非必要的交易手續費, 有助於縮短你的交易處理時間. 以 kB 為計費單位, 而大部份交易的大小是 1kB. 建議設定為 0.01 位元幣. @@ -683,8 +683,8 @@ Address: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - 非必要的交易手續費, 有助於縮短你的交易處理時間. 以 KB 為計費單位, 而大部份交易的大小是 1KB. 建議設定為 0.01 位元幣. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + 非必要的交易手續費, 有助於縮短你的交易處理時間. 以 kB 為計費單位, 而大部份交易的大小是 1kB. 建議設定為 0.01 位元幣. @@ -1524,9 +1524,9 @@ p, li { white-space: pre-wrap; } - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send - 交易付款時每 KB 的交易手續費 + 交易付款時每 kB 的交易手續費 diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index ea3164e3d7..75fd4ccf18 100644 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -214,7 +214,7 @@ MainOptionsPage::MainOptionsPage(QWidget *parent): proxy_hbox->addStretch(1); layout->addLayout(proxy_hbox); - QLabel *fee_help = new QLabel(tr("Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended.")); + QLabel *fee_help = new QLabel(tr("Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended.")); fee_help->setWordWrap(true); layout->addWidget(fee_help); @@ -223,7 +223,7 @@ MainOptionsPage::MainOptionsPage(QWidget *parent): QLabel *fee_label = new QLabel(tr("Pay transaction &fee")); fee_hbox->addWidget(fee_label); fee_edit = new BitcoinAmountField(); - fee_edit->setToolTip(tr("Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended.")); + fee_edit->setToolTip(tr("Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended.")); fee_label->setBuddy(fee_edit); fee_hbox->addWidget(fee_edit); -- cgit v1.2.3 From e7c3e6e4b4bbfaf6772f0c8bd6b4278d0120e6e4 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sun, 5 Feb 2012 11:53:52 +0100 Subject: Restructure credit transaction decomposition (solves issue #689) When a transaction has multiple outputs that go to the wallet, list these as multiple transactions in the UI. This is also applied to generated (coinbase) transactions. Also makes the code shorter and easier to understand. --- src/qt/transactionrecord.cpp | 60 +++++++++++++++++--------------------------- 1 file changed, 23 insertions(+), 37 deletions(-) diff --git a/src/qt/transactionrecord.cpp b/src/qt/transactionrecord.cpp index 52a3080e97..4059207b96 100644 --- a/src/qt/transactionrecord.cpp +++ b/src/qt/transactionrecord.cpp @@ -47,49 +47,35 @@ QList TransactionRecord::decomposeTransaction(const CWallet * // // Credit // - TransactionRecord sub(hash, nTime); - - sub.credit = nNet; - - if (wtx.IsCoinBase()) - { - // Generated - sub.type = TransactionRecord::Generated; - - if (nCredit == 0) - { - int64 nUnmatured = 0; - BOOST_FOREACH(const CTxOut& txout, wtx.vout) - nUnmatured += wallet->GetCredit(txout); - sub.credit = nUnmatured; - } - } - else + BOOST_FOREACH(const CTxOut& txout, wtx.vout) { - bool foundAddress = false; - // Received by Bitcoin Address - BOOST_FOREACH(const CTxOut& txout, wtx.vout) + if(wallet->IsMine(txout)) { - if(wallet->IsMine(txout)) + TransactionRecord sub(hash, nTime); + CBitcoinAddress address; + sub.idx = parts.size(); // sequence number + sub.credit = txout.nValue; + if (wtx.IsCoinBase()) { - CBitcoinAddress address; - if (ExtractAddress(txout.scriptPubKey, wallet, address)) - { - sub.type = TransactionRecord::RecvWithAddress; - sub.address = address.ToString(); - foundAddress = true; - break; - } + // Generated + sub.type = TransactionRecord::Generated; } - } - if(!foundAddress) - { - // Received by IP connection, or other non-address transaction like OP_EVAL - sub.type = TransactionRecord::RecvFromOther; - sub.address = mapValue["from"]; + else if (ExtractAddress(txout.scriptPubKey, wallet, address)) + { + // Received by Bitcoin Address + sub.type = TransactionRecord::RecvWithAddress; + sub.address = address.ToString(); + } + else + { + // Received by IP connection (deprecated features), or a multisignature or other non-simple transaction + sub.type = TransactionRecord::RecvFromOther; + sub.address = mapValue["from"]; + } + + parts.append(sub); } } - parts.append(sub); } else { -- cgit v1.2.3 From da6a3919a96b6070a1facc8ae8c8946bd74838e1 Mon Sep 17 00:00:00 2001 From: Gregory Maxwell Date: Sun, 5 Feb 2012 02:30:43 -0500 Subject: Have bitcoind recommend a secure RPC password. Increase invalid password delay. Help users avoid insecure configurations a bit by recommending a secure RPC password and increasing the incorrect password delay. This may open up a RPC DOS for users with exposed RPC ports and short passwords. Since users shouldn't have exposed RPC ports OR short passwords, the DOS risk is preferable to the compromise risk. Also logs the client IP address for incorrect attempts. --- src/bitcoinrpc.cpp | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 4031d0cbc3..821574a2ff 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -2161,16 +2161,23 @@ void ThreadRPCServer2(void* parg) if (mapArgs["-rpcuser"] == "" && mapArgs["-rpcpassword"] == "") { + unsigned char rand_pwd[32]; + RAND_bytes(rand_pwd, 32); string strWhatAmI = "To use bitcoind"; if (mapArgs.count("-server")) strWhatAmI = strprintf(_("To use the %s option"), "\"-server\""); else if (mapArgs.count("-daemon")) strWhatAmI = strprintf(_("To use the %s option"), "\"-daemon\""); PrintConsole( - _("Error: %s, you must set rpcpassword=\nin the configuration file: %s\n" + _("Error: %s, you must set a rpcpassword in the configuration file:\n %s\n" + "It is recommended you use the following random password:\n" + "rpcuser=bitcoinrpc\n" + "rpcpassword=%s\n" + "(you do not need to remember this password)\n" "If the file does not exist, create it with owner-readable-only file permissions.\n"), strWhatAmI.c_str(), - GetConfigFile().c_str()); + GetConfigFile().c_str(), + EncodeBase58(&rand_pwd[0],&rand_pwd[0]+32).c_str()); #ifndef QT_GUI CreateThread(Shutdown, NULL); #endif @@ -2259,12 +2266,14 @@ void ThreadRPCServer2(void* parg) } if (!HTTPAuthorized(mapHeaders)) { - // Deter brute-forcing short passwords - if (mapArgs["-rpcpassword"].size() < 15) - Sleep(50); + printf("ThreadRPCServer incorrect password attempt from %s\n",peer.address().to_string().c_str()); + /* Deter brute-forcing short passwords. + If this results in a DOS the user really + shouldn't have their RPC port exposed.*/ + if (mapArgs["-rpcpassword"].size() < 20) + Sleep(250); stream << HTTPReply(401, "") << std::flush; - printf("ThreadRPCServer incorrect password attempt\n"); continue; } -- cgit v1.2.3 From 4bbd72cca108042cdffee74d10fcc7a540da2b51 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 7 Feb 2012 22:30:21 -0500 Subject: Update copyrights to 2012 for files modified this year --- COPYING | 2 +- src/bitcoinrpc.cpp | 2 +- src/db.cpp | 2 +- src/init.cpp | 2 +- src/key.h | 2 +- src/main.cpp | 2 +- src/main.h | 2 +- src/net.cpp | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/COPYING b/COPYING index ab042014e8..0f9223ba6b 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright (c) 2009-2011 Bitcoin Developers +Copyright (c) 2009-2012 Bitcoin Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 821574a2ff..b1d8514649 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/db.cpp b/src/db.cpp index c2d18279da..e681d98f1a 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/init.cpp b/src/init.cpp index e158e15da4..3ca0dcf251 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" diff --git a/src/key.h b/src/key.h index 010591632e..6da0dc288d 100644 --- a/src/key.h +++ b/src/key.h @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_KEY_H diff --git a/src/main.cpp b/src/main.cpp index 07b07447c1..1f8abc04a2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" diff --git a/src/main.h b/src/main.h index 47394ff8e9..4232d2a0f7 100644 --- a/src/main.h +++ b/src/main.h @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_MAIN_H diff --git a/src/net.cpp b/src/net.cpp index 7b92e874ac..ad7007d1c2 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. -- cgit v1.2.3 From 84d228ed839e527f8638db5f451e05bd58905f52 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 7 Feb 2012 18:20:01 -0500 Subject: Bugfix: Capitalize kB correctly (upstream: 9d4b05c) --- src/qt/locale/bitcoin_hu.ts | 12 ++++++------ src/qt/locale/bitcoin_it.ts | 12 ++++++------ src/qt/locale/bitcoin_pt_BR.ts | 12 ++++++------ src/qt/locale/bitcoin_uk.ts | 6 +++--- src/qt/locale/bitcoin_zh_CN.ts | 12 ++++++------ 5 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index 25a0a24a18..bc48ed889a 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -673,8 +673,8 @@ Cím: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Opcionális, KB-onkénti tranzakciós díj a tranzakcióid minél gyorsabb feldolgozásának elősegítésére. A legtöbb tranzakció 1 KB-os. 0,01 BTC ajánlott. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Opcionális, kB-onkénti tranzakciós díj a tranzakcióid minél gyorsabb feldolgozásának elősegítésére. A legtöbb tranzakció 1 kB-os. 0,01 BTC ajánlott. @@ -683,8 +683,8 @@ Cím: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Opcionális, KB-onkénti tranzakciós díj a tranzakcióid minél gyorsabb feldolgozásának elősegítésére. A legtöbb tranzakció 1 KB-os. 0,01 BTC ajánlott. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Opcionális, kB-onkénti tranzakciós díj a tranzakcióid minél gyorsabb feldolgozásának elősegítésére. A legtöbb tranzakció 1 kB-os. 0,01 BTC ajánlott. @@ -1525,9 +1525,9 @@ p, li { white-space: pre-wrap; } - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send - KB-onként felajánlandó díj az általad küldött tranzakciókhoz + kB-onként felajánlandó díj az általad küldött tranzakciókhoz diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts index 95d76005fd..02d0baa120 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -675,8 +675,8 @@ Indirizzo: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Commissione di transazione per ogni KB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. La maggior parte delle transazioni è 1KB. Commissione raccomandata 0,01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Commissione di transazione per ogni kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. La maggior parte delle transazioni è 1kB. Commissione raccomandata 0,01. @@ -685,8 +685,8 @@ Indirizzo: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Commissione di transazione per ogni KB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. La maggior parte delle transazioni è 1KB. Commissione raccomandata 0,01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Commissione di transazione per ogni kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. La maggior parte delle transazioni è 1kB. Commissione raccomandata 0,01. @@ -1526,9 +1526,9 @@ p, li { white-space: pre-wrap; }⏎ - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send - Commissione al KB da aggiungere alle transazioni in uscita + Commissione al kB da aggiungere alle transazioni in uscita diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index 2c2f7f1ae4..68bd057fe2 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -684,8 +684,8 @@ Address: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. @@ -694,8 +694,8 @@ Address: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. @@ -1541,9 +1541,9 @@ p, li { white-space: pre-wrap; } - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts index 57313b7a52..6cbb51633b 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -674,7 +674,7 @@ Address: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. Опціональна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. @@ -684,7 +684,7 @@ Address: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. Опціональна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. @@ -1525,7 +1525,7 @@ p, li { white-space: pre-wrap; } - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send Комісія за Кб diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index 3faaac3c97..832a86ed07 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -674,8 +674,8 @@ Address: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - 为每1KB交易数据支付交易费将保证您的交易尽快被处理.大部分交易数据都小于1KB. 建议支付0.01个比特币的交易费. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + 为每1kB交易数据支付交易费将保证您的交易尽快被处理.大部分交易数据都小于1kB. 建议支付0.01个比特币的交易费. @@ -684,8 +684,8 @@ Address: %4 - Optional transaction fee per KB that helps make sure your transactions are processed quickly. Most transactions are 1KB. Fee 0.01 recommended. - 为每1KB交易数据支付交易费将保证您的交易尽快被处理.大部分交易数据都小于1KB. 建议支付0.01个比特币的交易费. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + 为每1kB交易数据支付交易费将保证您的交易尽快被处理.大部分交易数据都小于1kB. 建议支付0.01个比特币的交易费. @@ -1524,9 +1524,9 @@ p, li { white-space: pre-wrap; } - Fee per KB to add to transactions you send + Fee per kB to add to transactions you send - 每发送1KB交易所需的费用 + 每发送1kB交易所需的费用 -- cgit v1.2.3 From 76e707a44e280e2b0e6df776d16a86df1002ff3b Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 11 Feb 2012 15:25:42 +0100 Subject: Fix #822 --- src/rpc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc.cpp b/src/rpc.cpp index a67f7fc947..33108948d3 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -1301,7 +1301,7 @@ void ThreadCleanWalletPassphrase(void* parg) if (nWalletUnlockTime < nMyWakeTime) nWalletUnlockTime = nMyWakeTime; } - free(parg); + delete (int*)parg; return; } -- cgit v1.2.3 From 888ac4e7a326986945ca91668c47a3d8fa981d49 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Thu, 9 Feb 2012 22:41:42 -0500 Subject: Get ext. IP from UPnP, make sure addrMe IsRoutable() in version. This fixes a potential bug where some NATs may replace the node's interal IP with its external IP in version messages, causing incorrect checksums when version messages begin being checksummed on February 14, 2012. --- src/net.cpp | 20 ++++++++++++++++++++ src/net.h | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/src/net.cpp b/src/net.cpp index 764246520b..83e7f28c6b 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1103,6 +1103,26 @@ void ThreadMapPort2(void* parg) r = UPNP_GetValidIGD(devlist, &urls, &data, lanaddr, sizeof(lanaddr)); if (r == 1) { + if (!addrLocalHost.IsRoutable()) + { + char externalIPAddress[40]; + r = UPNP_GetExternalIPAddress(urls.controlURL, data.first.servicetype, externalIPAddress); + if(r != UPNPCOMMAND_SUCCESS) + printf("UPnP: GetExternalIPAddress() returned %d\n", r); + else + { + if(externalIPAddress[0]) + { + printf("UPnP: ExternalIPAddress = %s\n", externalIPAddress); + CAddress addrExternalFromUPnP(externalIPAddress, 0, false, nLocalServices); + if (addrExternalFromUPnP.IsRoutable()) + addrLocalHost = addrExternalFromUPnP; + } + else + printf("UPnP: GetExternalIPAddress failed.\n"); + } + } + string strDesc = "Bitcoin " + FormatFullVersion(); #ifndef UPNPDISCOVER_SUCCESS /* miniupnpc 1.5 */ diff --git a/src/net.h b/src/net.h index 52df06f1be..d8b9022276 100644 --- a/src/net.h +++ b/src/net.h @@ -355,7 +355,7 @@ public: /// when NTP implemented, change to just nTime = GetAdjustedTime() int64 nTime = (fInbound ? GetAdjustedTime() : GetTime()); CAddress addrYou = (fUseProxy ? CAddress("0.0.0.0") : addr); - CAddress addrMe = (fUseProxy ? CAddress("0.0.0.0") : addrLocalHost); + CAddress addrMe = (fUseProxy || !addrLocalHost.IsRoutable() ? CAddress("0.0.0.0") : addrLocalHost); RAND_bytes((unsigned char*)&nLocalHostNonce, sizeof(nLocalHostNonce)); PushMessage("version", VERSION, nLocalServices, nTime, addrYou, addrMe, nLocalHostNonce, std::string(pszSubVer), nBestHeight); -- cgit v1.2.3 From 4c38fbae959c69e524e2f7453a221b5f29a5d12f Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 10 Feb 2012 08:28:32 +0100 Subject: Enable accessible widgets Qt module on win32, so that people with screen readers such as NVDA can make sense of it. --- bitcoin-qt.pro | 2 +- src/init.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 19349c708d..790c0751ca 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -62,7 +62,7 @@ contains(USE_SSL, 1) { contains(BITCOIN_NEED_QT_PLUGINS, 1) { DEFINES += BITCOIN_NEED_QT_PLUGINS - QTPLUGIN += qcncodecs qjpcodecs qtwcodecs qkrcodecs + QTPLUGIN += qcncodecs qjpcodecs qtwcodecs qkrcodecs qtaccessiblewidgets } !windows { diff --git a/src/init.cpp b/src/init.cpp index 3ca0dcf251..51e9ed604e 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -20,6 +20,7 @@ Q_IMPORT_PLUGIN(qcncodecs) Q_IMPORT_PLUGIN(qjpcodecs) Q_IMPORT_PLUGIN(qtwcodecs) Q_IMPORT_PLUGIN(qkrcodecs) +Q_IMPORT_PLUGIN(qtaccessiblewidgets) #endif using namespace std; -- cgit v1.2.3 From 6ebb141bf941183aefc652b525c07430b35863ad Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 9 Dec 2011 22:35:57 +0100 Subject: Prevent window from being shown momentarily when using -min - In a previous patch, show() was added to all the page switcher functions. As the contructor calls showOverviewPage(), this means the window is shown in the constructor. - This change prevents this by connecting show() to the signal instead. --- src/qt/bitcoingui.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index f80038c3fb..5d9c0d9f00 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -193,10 +193,15 @@ void BitcoinGUI::createActions() sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2)); tabGroup->addAction(sendCoinsAction); + connect(overviewAction, SIGNAL(triggered()), this, SLOT(show())); connect(overviewAction, SIGNAL(triggered()), this, SLOT(gotoOverviewPage())); + connect(historyAction, SIGNAL(triggered()), this, SLOT(show())); connect(historyAction, SIGNAL(triggered()), this, SLOT(gotoHistoryPage())); + connect(addressBookAction, SIGNAL(triggered()), this, SLOT(show())); connect(addressBookAction, SIGNAL(triggered()), this, SLOT(gotoAddressBookPage())); + connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(show())); connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(gotoReceiveCoinsPage())); + connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(show())); connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(gotoSendCoinsPage())); quitAction = new QAction(QIcon(":/icons/quit"), tr("E&xit"), this); @@ -598,7 +603,6 @@ void BitcoinGUI::incomingTransaction(const QModelIndex & parent, int start, int void BitcoinGUI::gotoOverviewPage() { - show(); overviewAction->setChecked(true); centralWidget->setCurrentWidget(overviewPage); @@ -608,7 +612,6 @@ void BitcoinGUI::gotoOverviewPage() void BitcoinGUI::gotoHistoryPage() { - show(); historyAction->setChecked(true); centralWidget->setCurrentWidget(transactionsPage); @@ -619,7 +622,6 @@ void BitcoinGUI::gotoHistoryPage() void BitcoinGUI::gotoAddressBookPage() { - show(); addressBookAction->setChecked(true); centralWidget->setCurrentWidget(addressBookPage); @@ -630,7 +632,6 @@ void BitcoinGUI::gotoAddressBookPage() void BitcoinGUI::gotoReceiveCoinsPage() { - show(); receiveCoinsAction->setChecked(true); centralWidget->setCurrentWidget(receiveCoinsPage); @@ -641,7 +642,6 @@ void BitcoinGUI::gotoReceiveCoinsPage() void BitcoinGUI::gotoSendCoinsPage() { - show(); sendCoinsAction->setChecked(true); centralWidget->setCurrentWidget(sendCoinsPage); -- cgit v1.2.3 From 41cde5bbdcf76bda63cb7c55675340726c73b7fc Mon Sep 17 00:00:00 2001 From: Janne Pulkkinen Date: Fri, 3 Feb 2012 20:08:50 +0200 Subject: Fix Minimize to the tray instead of the taskbar --- src/qt/bitcoingui.cpp | 32 ++++++++++++++++++++++---------- src/qt/bitcoingui.h | 4 ++++ 2 files changed, 26 insertions(+), 10 deletions(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 5d9c0d9f00..cfcff136e0 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -55,6 +55,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): QMainWindow(parent), clientModel(0), walletModel(0), + dummyWidget(0), encryptWalletAction(0), changePassphraseAction(0), aboutQtAction(0), @@ -84,6 +85,9 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): // Create the tray icon (or setup the dock icon) createTrayIcon(); + // Dummy widget used when restoring window state after minimization + dummyWidget = new QWidget(); + // Create tabs overviewPage = new OverviewPage(); @@ -157,6 +161,7 @@ BitcoinGUI::~BitcoinGUI() #ifdef Q_WS_MAC delete appMenuBar; #endif + delete dummyWidget; } void BitcoinGUI::createActions() @@ -193,15 +198,15 @@ void BitcoinGUI::createActions() sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2)); tabGroup->addAction(sendCoinsAction); - connect(overviewAction, SIGNAL(triggered()), this, SLOT(show())); + connect(overviewAction, SIGNAL(triggered()), this, SLOT(showNormal())); connect(overviewAction, SIGNAL(triggered()), this, SLOT(gotoOverviewPage())); - connect(historyAction, SIGNAL(triggered()), this, SLOT(show())); + connect(historyAction, SIGNAL(triggered()), this, SLOT(showNormal())); connect(historyAction, SIGNAL(triggered()), this, SLOT(gotoHistoryPage())); - connect(addressBookAction, SIGNAL(triggered()), this, SLOT(show())); + connect(addressBookAction, SIGNAL(triggered()), this, SLOT(showNormal())); connect(addressBookAction, SIGNAL(triggered()), this, SLOT(gotoAddressBookPage())); - connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(show())); + connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(showNormal())); connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(gotoReceiveCoinsPage())); - connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(show())); + connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(showNormal())); connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(gotoSendCoinsPage())); quitAction = new QAction(QIcon(":/icons/quit"), tr("E&xit"), this); @@ -379,10 +384,17 @@ void BitcoinGUI::trayIconActivated(QSystemTrayIcon::ActivationReason reason) // Click on system tray icon triggers "open bitcoin" openBitcoinAction->trigger(); } - } #endif +void BitcoinGUI::showNormal() +{ + // Reparent window to the desktop (in case it was hidden on minimize) + if(parent() != NULL) + setParent(NULL, Qt::Window); + QMainWindow::showNormal(); +} + void BitcoinGUI::optionsClicked() { if(!clientModel || !clientModel->getOptionsModel()) @@ -524,13 +536,13 @@ void BitcoinGUI::changeEvent(QEvent *e) { if(isMinimized()) { - hide(); - e->ignore(); + // Hiding the window from taskbar + setParent(dummyWidget, Qt::SubWindow); + return; } else { - show(); - e->accept(); + showNormal(); } } } diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 9b672ee809..1338998a98 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -54,6 +54,8 @@ private: QStackedWidget *centralWidget; + QWidget *dummyWidget; + OverviewPage *overviewPage; QWidget *transactionsPage; AddressBookPage *addressBookPage; @@ -107,6 +109,8 @@ public slots: */ void askFee(qint64 nFeeRequired, bool *payFee); + void showNormal(); + private slots: // UI pages void gotoOverviewPage(); -- cgit v1.2.3 From 622f1438dec6f2fc5565597ac1f88c3873549f33 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Wed, 15 Feb 2012 20:56:29 +0100 Subject: Bugfix: do not create CAddress for invalid accepts --- src/net.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/net.cpp b/src/net.cpp index 83e7f28c6b..423b754390 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -885,13 +885,17 @@ void ThreadSocketHandler2(void* parg) struct sockaddr_in sockaddr; socklen_t len = sizeof(sockaddr); SOCKET hSocket = accept(hListenSocket, (struct sockaddr*)&sockaddr, &len); - CAddress addr(sockaddr); + CAddress addr; int nInbound = 0; + if (hSocket != INVALID_SOCKET) + addr = CAddress(sockaddr); + CRITICAL_BLOCK(cs_vNodes) BOOST_FOREACH(CNode* pnode, vNodes) if (pnode->fInbound) nInbound++; + if (hSocket == INVALID_SOCKET) { if (WSAGetLastError() != WSAEWOULDBLOCK) -- cgit v1.2.3 From d52397b3c02330d17cde6952e8bbc1c492c06007 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Wed, 15 Feb 2012 21:17:15 +0100 Subject: Several shutdown-related fixes * do not let vnThreadsRunning[1] go negative * do not perform locking operations while vnThreadsRunning[1] is decreased * check vnThreadsRunning[1] at exit --- src/net.cpp | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index 423b754390..a8d3d0b171 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1431,9 +1431,13 @@ void ThreadOpenConnections2(void* parg) int64 nStart = GetTime(); loop { - // Limit outbound connections vnThreadsRunning[1]--; Sleep(500); + vnThreadsRunning[1]++; + if (fShutdown) + return; + + // Limit outbound connections loop { int nOutbound = 0; @@ -1445,13 +1449,12 @@ void ThreadOpenConnections2(void* parg) nMaxOutboundConnections = min(nMaxOutboundConnections, (int)GetArg("-maxconnections", 125)); if (nOutbound < nMaxOutboundConnections) break; + vnThreadsRunning[1]--; Sleep(2000); + vnThreadsRunning[1]++; if (fShutdown) return; } - vnThreadsRunning[1]++; - if (fShutdown) - return; bool fAddSeeds = false; @@ -1845,7 +1848,7 @@ bool StopNode() fShutdown = true; nTransactionsUpdated++; int64 nStart = GetTime(); - while (vnThreadsRunning[0] > 0 || vnThreadsRunning[2] > 0 || vnThreadsRunning[3] > 0 || vnThreadsRunning[4] > 0 + while (vnThreadsRunning[0] > 0 || vnThreadsRunning[1] > 0 || vnThreadsRunning[2] > 0 || vnThreadsRunning[3] > 0 || vnThreadsRunning[4] > 0 #ifdef USE_UPNP || vnThreadsRunning[5] > 0 #endif -- cgit v1.2.3 From 6928794f56738c002fd1e129cb64ffad0533b64f Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 15 Feb 2012 16:05:55 -0500 Subject: Properly include $*_LIB_PATH in makefile.unix --- src/makefile.unix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/makefile.unix b/src/makefile.unix index 53948bcba6..e75dda514f 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -7,7 +7,7 @@ USE_UPNP:=0 DEFS=-DNOPCH DEFS += $(addprefix -I,$(BOOST_INCLUDE_PATH) $(BDB_INCLUDE_PATH) $(OPENSSL_INCLUDE_PATH)) -LIBS += $(addprefix -l,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH)) +LIBS = $(addprefix -L,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH)) LMODE = dynamic LMODE2 = dynamic @@ -21,7 +21,7 @@ else endif # for boost 1.37, add -mt to the boost libraries -LIBS= \ +LIBS += \ -Wl,-B$(LMODE) \ -l boost_system$(BOOST_LIB_SUFFIX) \ -l boost_filesystem$(BOOST_LIB_SUFFIX) \ -- cgit v1.2.3 From 25be0597caebe00f5d47199404574d93d8f76995 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 17 Feb 2012 14:46:06 +0100 Subject: don't allow -daemon in bitcoin-qt (changes only #defines) --- src/init.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index 51e9ed604e..bb549ec42b 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -209,7 +209,7 @@ bool AppInit2(int argc, char* argv[]) #ifdef GUI " -server \t\t " + _("Accept command line and JSON-RPC commands\n") + #endif -#ifndef WIN32 +#if !defined(WIN32) && !defined(GUI) " -daemon \t\t " + _("Run in the background as a daemon and accept commands\n") + #endif " -testnet \t\t " + _("Use the test network\n") + @@ -248,7 +248,7 @@ bool AppInit2(int argc, char* argv[]) fTestNet = GetBoolArg("-testnet"); fDebug = GetBoolArg("-debug"); -#ifndef WIN32 +#if !defined(WIN32) && !defined(GUI) fDaemon = GetBoolArg("-daemon"); #else fDaemon = false; @@ -279,7 +279,7 @@ bool AppInit2(int argc, char* argv[]) } #endif -#ifndef WIN32 +#if !defined(WIN32) && !defined(GUI) if (fDaemon) { // Daemonize -- cgit v1.2.3 From 43163a5a4d0fd3c849dbb2e7070b7ba4f7a70d27 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 11 Feb 2012 20:02:55 +0100 Subject: Macros for manual critical sections --- src/net.h | 6 +++--- src/util.h | 6 ++++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/net.h b/src/net.h index d8b9022276..53e13fd095 100644 --- a/src/net.h +++ b/src/net.h @@ -277,7 +277,7 @@ public: void BeginMessage(const char* pszCommand) { - cs_vSend.Enter("cs_vSend", __FILE__, __LINE__); + ENTER_CRITICAL_SECTION(cs_vSend); if (nHeaderStart != -1) AbortMessage(); nHeaderStart = vSend.size(); @@ -296,7 +296,7 @@ public: vSend.resize(nHeaderStart); nHeaderStart = -1; nMessageStart = -1; - cs_vSend.Leave(); + LEAVE_CRITICAL_SECTION(cs_vSend); if (fDebug) printf("(aborted)\n"); @@ -334,7 +334,7 @@ public: nHeaderStart = -1; nMessageStart = -1; - cs_vSend.Leave(); + LEAVE_CRITICAL_SECTION(cs_vSend); } void EndMessageAbortIfEmpty() diff --git a/src/util.h b/src/util.h index a48979c0ef..c4ee19fe01 100644 --- a/src/util.h +++ b/src/util.h @@ -254,6 +254,12 @@ public: for (bool fcriticalblockonce=true; fcriticalblockonce; assert(("break caught by CRITICAL_BLOCK!" && !fcriticalblockonce)), fcriticalblockonce=false) \ for (CCriticalBlock criticalblock(cs, #cs, __FILE__, __LINE__); fcriticalblockonce; fcriticalblockonce=false) +#define ENTER_CRITICAL_SECTION(cs) \ + (cs).Enter(#cs, __FILE__, __LINE__) + +#define LEAVE_CRITICAL_SECTION(cs) \ + (cs).Leave() + class CTryCriticalBlock { protected: -- cgit v1.2.3 From 8960f2fc3353d5d7f8b9babd1aaef0e9869e39f4 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 11 Feb 2012 16:35:40 +0100 Subject: Fix wallet locking locking --- src/rpc.cpp | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/src/rpc.cpp b/src/rpc.cpp index 33108948d3..5326cdc2b7 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -1279,33 +1279,31 @@ void ThreadCleanWalletPassphrase(void* parg) { int64 nMyWakeTime = GetTime() + *((int*)parg); + ENTER_CRITICAL_SECTION(cs_nWalletUnlockTime); + if (nWalletUnlockTime == 0) { - CRITICAL_BLOCK(cs_nWalletUnlockTime) - { - nWalletUnlockTime = nMyWakeTime; - } + nWalletUnlockTime = nMyWakeTime; while (GetTime() < nWalletUnlockTime) - Sleep(GetTime() - nWalletUnlockTime); - - CRITICAL_BLOCK(cs_nWalletUnlockTime) { - nWalletUnlockTime = 0; + int64 nToSleep = GetTime() - nWalletUnlockTime; + + LEAVE_CRITICAL_SECTION(cs_nWalletUnlockTime); + Sleep(nToSleep); + ENTER_CRITICAL_SECTION(cs_nWalletUnlockTime); } + + nWalletUnlockTime = 0; + pwalletMain->Lock(); } else { - CRITICAL_BLOCK(cs_nWalletUnlockTime) - { - if (nWalletUnlockTime < nMyWakeTime) - nWalletUnlockTime = nMyWakeTime; - } - delete (int*)parg; - return; + if (nWalletUnlockTime < nMyWakeTime) + nWalletUnlockTime = nMyWakeTime; } - pwalletMain->Lock(); + LEAVE_CRITICAL_SECTION(cs_nWalletUnlockTime); delete (int*)parg; } -- cgit v1.2.3 From 69ce70866d7498eb6efadca0cf57785c5cefd386 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 11 Feb 2012 18:01:24 +0100 Subject: Extra wallet locking fixes * Fix sign error in calculation of seconds to sleep * Do not mix GetTime() (seconds) and Sleep() (milliseconds) * Do not sleep forever if walletlock() is called * Do locking within critical section --- src/rpc.cpp | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/src/rpc.cpp b/src/rpc.cpp index 5326cdc2b7..da3384e398 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -316,7 +316,7 @@ Value getinfo(const Array& params, bool fHelp) obj.push_back(Pair("keypoolsize", pwalletMain->GetKeyPoolSize())); obj.push_back(Pair("paytxfee", ValueFromAmount(nTransactionFee))); if (pwalletMain->IsCrypted()) - obj.push_back(Pair("unlocked_until", (boost::int64_t)nWalletUnlockTime)); + obj.push_back(Pair("unlocked_until", (boost::int64_t)nWalletUnlockTime / 1000)); obj.push_back(Pair("errors", GetWarnings("statusbar"))); return obj; } @@ -1277,7 +1277,7 @@ void ThreadTopUpKeyPool(void* parg) void ThreadCleanWalletPassphrase(void* parg) { - int64 nMyWakeTime = GetTime() + *((int*)parg); + int64 nMyWakeTime = GetTimeMillis() + *((int*)parg) * 1000; ENTER_CRITICAL_SECTION(cs_nWalletUnlockTime); @@ -1285,17 +1285,25 @@ void ThreadCleanWalletPassphrase(void* parg) { nWalletUnlockTime = nMyWakeTime; - while (GetTime() < nWalletUnlockTime) + do { - int64 nToSleep = GetTime() - nWalletUnlockTime; + if (nWalletUnlockTime==0) + break; + int64 nToSleep = nWalletUnlockTime - GetTimeMillis(); + if (nToSleep <= 0) + break; LEAVE_CRITICAL_SECTION(cs_nWalletUnlockTime); Sleep(nToSleep); ENTER_CRITICAL_SECTION(cs_nWalletUnlockTime); - } - nWalletUnlockTime = 0; - pwalletMain->Lock(); + } while(1); + + if (nWalletUnlockTime) + { + nWalletUnlockTime = 0; + pwalletMain->Lock(); + } } else { @@ -1408,9 +1416,9 @@ Value walletlock(const Array& params, bool fHelp) if (!pwalletMain->IsCrypted()) throw JSONRPCError(-15, "Error: running with an unencrypted wallet, but walletlock was called."); - pwalletMain->Lock(); CRITICAL_BLOCK(cs_nWalletUnlockTime) { + pwalletMain->Lock(); nWalletUnlockTime = 0; } -- cgit v1.2.3 From 82705af1eb521beefd63f81e3c5e39616fcf2076 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 17 Feb 2012 18:00:41 +0100 Subject: Change #ifdef GUI to #ifdef QT_GUI, GUI is not defined anymore... --- src/init.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index bb549ec42b..0d042f0cfb 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -206,10 +206,10 @@ bool AppInit2(int argc, char* argv[]) #endif #endif " -paytxfee= \t " + _("Fee per kB to add to transactions you send\n") + -#ifdef GUI +#ifdef QT_GUI " -server \t\t " + _("Accept command line and JSON-RPC commands\n") + #endif -#if !defined(WIN32) && !defined(GUI) +#if !defined(WIN32) && !defined(QT_GUI) " -daemon \t\t " + _("Run in the background as a daemon and accept commands\n") + #endif " -testnet \t\t " + _("Use the test network\n") + @@ -248,7 +248,7 @@ bool AppInit2(int argc, char* argv[]) fTestNet = GetBoolArg("-testnet"); fDebug = GetBoolArg("-debug"); -#if !defined(WIN32) && !defined(GUI) +#if !defined(WIN32) && !defined(QT_GUI) fDaemon = GetBoolArg("-daemon"); #else fDaemon = false; @@ -279,7 +279,7 @@ bool AppInit2(int argc, char* argv[]) } #endif -#if !defined(WIN32) && !defined(GUI) +#if !defined(WIN32) && !defined(QT_GUI) if (fDaemon) { // Daemonize -- cgit v1.2.3 From 33e0c3a8662a11566cbb7bd382b7f6737f8c96a2 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 17 Feb 2012 15:26:20 +0100 Subject: Restructure IPC URL handling (fixes #851) --- src/qt/guiutil.cpp | 14 ++++++++++++++ src/qt/guiutil.h | 1 + src/qt/sendcoinsdialog.cpp | 10 ++++++++++ src/qt/sendcoinsdialog.h | 1 + 4 files changed, 26 insertions(+) diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 158b84a285..bc443ceeb6 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -72,3 +72,17 @@ bool GUIUtil::parseBitcoinURL(const QUrl *url, SendCoinsRecipient *out) } return true; } + +bool GUIUtil::parseBitcoinURL(QString url, SendCoinsRecipient *out) +{ + // Convert bitcoin:// to bitcoin: + // + // Cannot handle this later, because bitcoin:// will cause Qt to see the part after // as host, + // which will lowercase it (and thus invalidate the address). + if(url.startsWith("bitcoin://")) + { + url.replace(0, 10, "bitcoin:"); + } + QUrl urlInstance(url); + return parseBitcoinURL(&urlInstance, out); +} diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index bc4ddb8aae..129ab73038 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -29,6 +29,7 @@ public: // Parse "bitcoin:" URL into recipient object, return true on succesful parsing // See Bitcoin URL definition discussion here: https://bitcointalk.org/index.php?topic=33490.0 static bool parseBitcoinURL(const QUrl *url, SendCoinsRecipient *out); + static bool parseBitcoinURL(QString url, SendCoinsRecipient *out); }; #endif // GUIUTIL_H diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 6d32891172..e465b4141a 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -265,6 +265,16 @@ void SendCoinsDialog::handleURL(const QUrl *url) pasteEntry(rv); } +void SendCoinsDialog::handleURL(const QString &url) +{ + SendCoinsRecipient rv; + if(!GUIUtil::parseBitcoinURL(url, &rv)) + { + return; + } + pasteEntry(rv); +} + void SendCoinsDialog::setBalance(qint64 balance, qint64 unconfirmedBalance) { Q_UNUSED(unconfirmedBalance); diff --git a/src/qt/sendcoinsdialog.h b/src/qt/sendcoinsdialog.h index a14f99e8b2..fdff05783e 100644 --- a/src/qt/sendcoinsdialog.h +++ b/src/qt/sendcoinsdialog.h @@ -30,6 +30,7 @@ public: void pasteEntry(const SendCoinsRecipient &rv); void handleURL(const QUrl *url); + void handleURL(const QString &url); public slots: void clear(); -- cgit v1.2.3 From caad1add4f383960ca09bb466ddd16652245befe Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 18 Feb 2012 15:36:40 +0100 Subject: Free pwalletdbEncryption after encryping wallet Fixes a memory leak. --- src/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet.cpp b/src/wallet.cpp index 43fb6b6da3..9f7422d1fb 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -183,7 +183,7 @@ bool CWallet::EncryptWallet(const string& strWalletPassphrase) if (!pwalletdbEncryption->TxnCommit()) exit(1); //We now have keys encrypted in memory, but no on disk...die to avoid confusion and let the user reload their unencrypted wallet. - pwalletdbEncryption->Close(); + delete pwalletdbEncryption; pwalletdbEncryption = NULL; } -- cgit v1.2.3 From 471e0bdc7cc79a993230672dadbd193218b6103c Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sun, 19 Feb 2012 18:44:51 +0100 Subject: Fix #650: CKey::SetSecret BIGNUM leak --- src/key.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/key.h b/src/key.h index 8b033a029f..89d82fc803 100644 --- a/src/key.h +++ b/src/key.h @@ -153,10 +153,13 @@ public: if (vchSecret.size() != 32) throw key_error("CKey::SetSecret() : secret must be 32 bytes"); BIGNUM *bn = BN_bin2bn(&vchSecret[0],32,BN_new()); - if (bn == NULL) + if (bn == NULL) throw key_error("CKey::SetSecret() : BN_bin2bn failed"); if (!EC_KEY_regenerate_key(pkey,bn)) + { + BN_clear_free(bn); throw key_error("CKey::SetSecret() : EC_KEY_regenerate_key failed"); + } BN_clear_free(bn); fSet = true; return true; -- cgit v1.2.3 From b085138f89e93eac900a863e0d1aa14472aa32d3 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 17 Feb 2012 18:25:14 +0100 Subject: Only fill in label from address book, if no label is filled in yet, fixes #840 --- src/qt/sendcoinsentry.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/qt/sendcoinsentry.cpp b/src/qt/sendcoinsentry.cpp index ab5460f8c2..d98400c260 100644 --- a/src/qt/sendcoinsentry.cpp +++ b/src/qt/sendcoinsentry.cpp @@ -59,8 +59,9 @@ void SendCoinsEntry::on_payTo_textChanged(const QString &address) { if(!model) return; - ui->addAsLabel->setText(model->getAddressTableModel()->labelForAddress(address)); -} + // Fill in label from address book, if no label is filled in yet + if(ui->addAsLabel->text().isEmpty()) + ui->addAsLabel->setText(model->getAddressTableModel()->labelForAddress(address));} void SendCoinsEntry::setModel(WalletModel *model) { -- cgit v1.2.3 From 001a64c71cb7f4090e953f49c32a6258e0d58767 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 17 Feb 2012 17:53:41 +0100 Subject: On windows, show message box with help, as there is no stderr (fixes #702) (partial) --- src/init.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/init.cpp b/src/init.cpp index 0d042f0cfb..c8141f2c91 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -241,7 +241,12 @@ bool AppInit2(int argc, char* argv[]) // Remove tabs strUsage.erase(std::remove(strUsage.begin(), strUsage.end(), '\t'), strUsage.end()); +#if defined(QT_GUI) && defined(WIN32) + // On windows, show a message box, as there is no stderr + wxMessageBox(strUsage, "Usage"); +#else fprintf(stderr, "%s", strUsage.c_str()); +#endif return false; } -- cgit v1.2.3 From 54fee2d0ce1e4b389700cd9d043f9475d567cc25 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sun, 19 Feb 2012 19:05:41 +0100 Subject: Fix #626: RecvLine wrong error message --- src/irc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/irc.cpp b/src/irc.cpp index b632b96546..5dfab06bac 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -110,14 +110,14 @@ bool RecvLine(SOCKET hSocket, string& strLine) if (nBytes == 0) { // socket closed - printf("IRC socket closed\n"); + printf("socket closed\n"); return false; } else { // socket error int nErr = WSAGetLastError(); - printf("IRC recv failed: %d\n", nErr); + printf("recv failed: %d\n", nErr); return false; } } -- cgit v1.2.3 From ab2be34059126d2eff11dd2bd20d740aea33f67d Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sun, 19 Feb 2012 19:12:41 +0100 Subject: Fix #616: remove base_uint::operator&=(uint64 b) --- src/uint256.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/uint256.h b/src/uint256.h index 3e20201387..ae263346a8 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -100,13 +100,6 @@ public: return *this; } - base_uint& operator&=(uint64 b) - { - pn[0] &= (unsigned int)b; - pn[1] &= (unsigned int)(b >> 32); - return *this; - } - base_uint& operator|=(uint64 b) { pn[0] |= (unsigned int)b; -- cgit v1.2.3 From 1be5779124680ad6f411377f0a052f691855d2ec Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Mon, 20 Feb 2012 22:35:08 +0100 Subject: ProcessBlock is sometimes called with pfrom==NULL --- src/main.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 1f8abc04a2..e94c872fbe 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1406,7 +1406,8 @@ bool ProcessBlock(CNode* pfrom, CBlock* pblock) int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime; if (deltaTime < 0) { - pfrom->Misbehaving(100); + if (pfrom) + pfrom->Misbehaving(100); return error("ProcessBlock() : block with timestamp before last checkpoint"); } CBigNum bnNewBlock; @@ -1415,7 +1416,8 @@ bool ProcessBlock(CNode* pfrom, CBlock* pblock) bnRequired.SetCompact(ComputeMinWork(pcheckpoint->nBits, deltaTime)); if (bnNewBlock > bnRequired) { - pfrom->Misbehaving(100); + if (pfrom) + pfrom->Misbehaving(100); return error("ProcessBlock() : block with too little proof-of-work"); } } -- cgit v1.2.3 From feb3c15335d5279931c1e0f713400fb616459d0b Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 23 Feb 2012 13:33:30 -0500 Subject: Checkpoint block 168,000 --- src/checkpoints.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index f78712ef4b..f5ce053870 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -30,6 +30,7 @@ namespace Checkpoints (118000, uint256("0x000000000000774a7f8a7a12dc906ddb9e17e75d684f15e00f8767f9e8f36553")) (134444, uint256("0x00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe")) (140700, uint256("0x000000000000033b512028abb90e1626d8b346fd0ed598ac0a3c371138dce2bd")) + (168000, uint256("0x000000000000099e61ea72015e79632f216fe6cb33d7899acb35b75c8303b763")) ; bool CheckBlock(int nHeight, const uint256& hash) -- cgit v1.2.3 From 0b11082d361ec08bca5025dbbc7f0b78c0fb8e13 Mon Sep 17 00:00:00 2001 From: Chris Moore Date: Fri, 24 Feb 2012 18:54:18 -0800 Subject: Don't show splash screen when -min is specified on the command line. --- src/qt/bitcoin.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 2142db5a36..54e6bb34c2 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -147,9 +147,12 @@ int main(int argc, char *argv[]) app.setApplicationName(QApplication::translate("main", "Bitcoin-Qt")); QSplashScreen splash(QPixmap(":/images/splash"), 0); - splash.show(); - splash.setAutoFillBackground(true); - splashref = &splash; + if (!GetBoolArg("-min")) + { + splash.show(); + splash.setAutoFillBackground(true); + splashref = &splash; + } app.processEvents(); @@ -163,7 +166,8 @@ int main(int argc, char *argv[]) // Put this in a block, so that BitcoinGUI is cleaned up properly before // calling Shutdown(). BitcoinGUI window; - splash.finish(&window); + if (splashref) + splash.finish(&window); OptionsModel optionsModel(pwalletMain); ClientModel clientModel(&optionsModel); WalletModel walletModel(pwalletMain, &optionsModel); -- cgit v1.2.3 From ef48e9b7dfde66368c27ed34f5f42de1b8e781f9 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sat, 25 Feb 2012 19:07:53 +0100 Subject: In UI, handle cases in which the last received block was generated in the future (secs<0) Fixes #874. --- src/qt/bitcoingui.cpp | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index cfcff136e0..3c9a773f4e 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -470,7 +470,11 @@ void BitcoinGUI::setNumBlocks(int count) QString text; // Represent time from last generated block in human readable text - if(secs < 60) + if(secs <= 0) + { + // Fully up to date. Leave text empty. + } + else if(secs < 60) { text = tr("%n second(s) ago","",secs); } @@ -490,7 +494,7 @@ void BitcoinGUI::setNumBlocks(int count) // Set icon state: spinning if catching up, tick otherwise if(secs < 30*60) { - tooltip = tr("Up to date") + QString("\n") + tooltip; + tooltip = tr("Up to date") + QString(".\n") + tooltip; labelBlocksIcon->setPixmap(QIcon(":/icons/synced").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); } else @@ -500,8 +504,11 @@ void BitcoinGUI::setNumBlocks(int count) syncIconMovie->start(); } - tooltip += QString("\n"); - tooltip += tr("Last received block was generated %1.").arg(text); + if(!text.isEmpty()) + { + tooltip += QString("\n"); + tooltip += tr("Last received block was generated %1.").arg(text); + } labelBlocksIcon->setToolTip(tooltip); progressBarLabel->setToolTip(tooltip); -- cgit v1.2.3 From 3108aed0f210fe6cb698237c7eeac8715fb95e31 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 29 Feb 2012 10:14:18 -0500 Subject: DoS fix for mapOrphanTransactions --- src/main.cpp | 25 ++++++++++++++++++++++++- src/main.h | 1 + 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 9f12829042..8b11c2bbf0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -159,13 +159,14 @@ void static ResendWalletTransactions() // mapOrphanTransactions // -void static AddOrphanTx(const CDataStream& vMsg) +void AddOrphanTx(const CDataStream& vMsg) { CTransaction tx; CDataStream(vMsg) >> tx; uint256 hash = tx.GetHash(); if (mapOrphanTransactions.count(hash)) return; + CDataStream* pvMsg = mapOrphanTransactions[hash] = new CDataStream(vMsg); BOOST_FOREACH(const CTxIn& txin, tx.vin) mapOrphanTransactionsByPrev.insert(make_pair(txin.prevout.hash, pvMsg)); @@ -193,6 +194,23 @@ void static EraseOrphanTx(uint256 hash) mapOrphanTransactions.erase(hash); } +int LimitOrphanTxSize(int nMaxOrphans) +{ + int nEvicted = 0; + while (mapOrphanTransactions.size() > nMaxOrphans) + { + // Evict a random orphan: + std::vector randbytes(32); + RAND_bytes(&randbytes[0], 32); + uint256 randomhash(randbytes); + map::iterator it = mapOrphanTransactions.lower_bound(randomhash); + if (it == mapOrphanTransactions.end()) + it = mapOrphanTransactions.begin(); + EraseOrphanTx(it->first); + ++nEvicted; + } + return nEvicted; +} @@ -2183,6 +2201,11 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) { printf("storing orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str()); AddOrphanTx(vMsg); + + // DoS prevention: do not allow mapOrphanTransactions to grow unbounded + int nEvicted = LimitOrphanTxSize(MAX_ORPHAN_TRANSACTIONS); + if (nEvicted > 0) + printf("mapOrphan overflow, removed %d tx\n", nEvicted); } } diff --git a/src/main.h b/src/main.h index 25cf079013..3e381b060b 100644 --- a/src/main.h +++ b/src/main.h @@ -30,6 +30,7 @@ class CBlockIndex; static const unsigned int MAX_BLOCK_SIZE = 1000000; static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/2; static const int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50; +static const int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100; static const int64 COIN = 100000000; static const int64 CENT = 1000000; static const int64 MIN_TX_FEE = 50000; -- cgit v1.2.3 From d7962747c4bfe90f9991d121fd22ac625ae2de30 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Fri, 17 Feb 2012 17:58:02 +0100 Subject: Do not allow overwriting unspent transactions (BIP 30) Introduce the following network rule: * a block is not valid if it contains a transaction whose hash already exists in the block chain, unless all that transaction's outputs were already spent before said block. Warning: this is effectively a network rule change, with potential risk for forking the block chain. Leaving this unfixed carries the same risk however, for attackers that can cause a reorganisation in part of the network. Thanks to Russell O'Connor and Ben Reeves. --- src/main.cpp | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 6a3bacc78e..812a55110f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -792,8 +792,10 @@ bool CTransaction::DisconnectInputs(CTxDB& txdb) } // Remove transaction from index - if (!txdb.EraseTxIndex(*this)) - return error("DisconnectInputs() : EraseTxPos failed"); + // This can fail if a duplicate of this transaction was in a chain that got + // reorganized away. This is only possible if this transaction was completely + // spent, so erasing it would be a no-op anway. + txdb.EraseTxIndex(*this); return true; } @@ -982,6 +984,26 @@ bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex) if (!CheckBlock()) return false; + // Do not allow blocks that contain transactions which 'overwrite' older transactions, + // unless those are already completely spent. + // If such overwrites are allowed, coinbases and transactions depending upon those + // can be duplicated to remove the ability to spend the first instance -- even after + // being sent to another address. + // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information. + // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool + // already refuses previously-known transaction id's entirely. + // This rule applies to all blocks whose timestamp is after March 15, 2012, 0:00 UTC. + // On testnet it is enabled as of februari 20, 2012, 0:00 UTC. + if (pindex->nTime > 1331769600 || (fTestNet && pindex->nTime > 1329696000)) + BOOST_FOREACH(CTransaction& tx, vtx) + { + CTxIndex txindexOld; + if (txdb.ReadTxIndex(tx.GetHash(), txindexOld)) + BOOST_FOREACH(CDiskTxPos &pos, txindexOld.vSpent) + if (pos.IsNull()) + return false; + } + //// issue here: it doesn't know the version unsigned int nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK) - 1 + GetSizeOfCompactSize(vtx.size()); -- cgit v1.2.3 From 4fc8c042a2f80ce0a1a277a2dcc1240c015ed400 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sat, 3 Mar 2012 13:44:42 -0500 Subject: Bugfix: Check return value of SHGetSpecialFolderPath in MyGetSpecialFolderPath Upstream commit: 21ae37d (partial) --- src/util.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/util.cpp b/src/util.cpp index 85ca02f0aa..e2e104cc88 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -643,13 +643,17 @@ string MyGetSpecialFolderPath(int nFolder, bool fCreate) { PSHGETSPECIALFOLDERPATHA pSHGetSpecialFolderPath = (PSHGETSPECIALFOLDERPATHA)GetProcAddress(hShell32, "SHGetSpecialFolderPathA"); + bool fSuccess = false; if (pSHGetSpecialFolderPath) + fSuccess = (*pSHGetSpecialFolderPath)(NULL, pszPath, nFolder, fCreate); FreeModule(hShell32); + if (fSuccess) + return pszPath; } // Backup option - if (pszPath[0] == '\0') + pszPath[0] = '\0'; { if (nFolder == CSIDL_STARTUP) { -- cgit v1.2.3 From 88aa771536014919e955c4f7b2cada9a0dcf8561 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sat, 3 Mar 2012 13:51:10 -0500 Subject: Bugfix: Fix possible buffer overflow (#901) Upstream commit: 21ae37d (partial) --- src/util.cpp | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/util.cpp b/src/util.cpp index e2e104cc88..0f496bc455 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -653,20 +653,25 @@ string MyGetSpecialFolderPath(int nFolder, bool fCreate) } // Backup option - pszPath[0] = '\0'; + std::string strPath; { + const char *pszEnv; if (nFolder == CSIDL_STARTUP) { - strcpy(pszPath, getenv("USERPROFILE")); - strcat(pszPath, "\\Start Menu\\Programs\\Startup"); + pszEnv = getenv("USERPROFILE"); + if (pszEnv) + strPath = pszEnv; + strPath += "\\Start Menu\\Programs\\Startup"; } else if (nFolder == CSIDL_APPDATA) { - strcpy(pszPath, getenv("APPDATA")); + pszEnv = getenv("APPDATA"); + if (pszEnv) + strPath = pszEnv; } } - return pszPath; + return strPath; } #endif -- cgit v1.2.3 From b3b4b008e39ed77e5c579fa0ca179fe785ee5e79 Mon Sep 17 00:00:00 2001 From: nomnombtc Date: Mon, 5 Mar 2012 19:33:24 +0100 Subject: fix typo src/net.cpp --- src/net.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net.cpp b/src/net.cpp index b314405efc..f37c675ff9 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -953,7 +953,7 @@ void ThreadSocketHandler2(void* parg) } else if (CNode::IsBanned(addr.ip)) { - printf("connetion from %s dropped (banned)\n", addr.ToString().c_str()); + printf("connection from %s dropped (banned)\n", addr.ToString().c_str()); closesocket(hSocket); } else -- cgit v1.2.3 From 11c34e0f6cf9cb2715c28b85a1ec8f47bf5ca8dd Mon Sep 17 00:00:00 2001 From: Gregory Maxwell Date: Sat, 10 Mar 2012 16:05:28 -0500 Subject: Resolves issue #922 - "wallet passphrase timeout of several years doesn't work" 2^31 milliseconds is only about 25 days. Also clamps Sleep() to 10 years, because it currently sleeps for 0 seconds when the sleep time would cross 2^31 seconds since the epoch. Hopefully boost will be fixed by 2028. --- src/rpc.cpp | 6 +++--- src/util.h | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/rpc.cpp b/src/rpc.cpp index da3384e398..8967b2c996 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -1277,7 +1277,7 @@ void ThreadTopUpKeyPool(void* parg) void ThreadCleanWalletPassphrase(void* parg) { - int64 nMyWakeTime = GetTimeMillis() + *((int*)parg) * 1000; + int64 nMyWakeTime = GetTimeMillis() + *((int64*)parg) * 1000; ENTER_CRITICAL_SECTION(cs_nWalletUnlockTime); @@ -1313,7 +1313,7 @@ void ThreadCleanWalletPassphrase(void* parg) LEAVE_CRITICAL_SECTION(cs_nWalletUnlockTime); - delete (int*)parg; + delete (int64*)parg; } Value walletpassphrase(const Array& params, bool fHelp) @@ -1353,7 +1353,7 @@ Value walletpassphrase(const Array& params, bool fHelp) "Stores the wallet decryption key in memory for seconds."); CreateThread(ThreadTopUpKeyPool, NULL); - int* pnSleepTime = new int(params[1].get_int()); + int64* pnSleepTime = new int64(params[1].get_int64()); CreateThread(ThreadCleanWalletPassphrase, pnSleepTime); return Value::null; diff --git a/src/util.h b/src/util.h index c4ee19fe01..4e4cbb9f60 100644 --- a/src/util.h +++ b/src/util.h @@ -115,7 +115,9 @@ typedef u_int SOCKET; #define Beep(n1,n2) (0) inline void Sleep(int64 n) { - boost::thread::sleep(boost::get_system_time() + boost::posix_time::milliseconds(n)); + /*Boost has a year 2038 problem— if the request sleep time is past epoch+2^31 seconds the sleep returns instantly. + So we clamp our sleeps here to 10 years and hope that boost is fixed by 2028.*/ + boost::thread::sleep(boost::get_system_time() + boost::posix_time::milliseconds(n>315576000000LL?315576000000LL:n)); } #endif -- cgit v1.2.3 From 4986c35d74afd6fc313d7637eb0220f3df500009 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Mon, 19 Dec 2011 19:04:47 -0500 Subject: Code cleanup: use ECDSA_size() instead of fixed 10,000 byte sig buffer, and explicity init static var --- src/key.h | 13 +++++++------ src/main.cpp | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/key.h b/src/key.h index 89d82fc803..477f550bcf 100644 --- a/src/key.h +++ b/src/key.h @@ -214,13 +214,14 @@ public: bool Sign(uint256 hash, std::vector& vchSig) { - vchSig.clear(); - unsigned char pchSig[10000]; - unsigned int nSize = 0; - if (!ECDSA_sign(0, (unsigned char*)&hash, sizeof(hash), pchSig, &nSize, pkey)) + unsigned int nSize = ECDSA_size(pkey); + vchSig.resize(nSize); // Make sure it is big enough + if (!ECDSA_sign(0, (unsigned char*)&hash, sizeof(hash), &vchSig[0], &nSize, pkey)) + { + vchSig.clear(); return false; - vchSig.resize(nSize); - memcpy(&vchSig[0], pchSig, nSize); + } + vchSig.resize(nSize); // Shrink to fit actual size return true; } diff --git a/src/main.cpp b/src/main.cpp index 652d4c1f98..cd02652660 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1921,7 +1921,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) } // Ask the first connected node for block updates - static int nAskedForBlocks; + static int nAskedForBlocks = 0; if (!pfrom->fClient && (pfrom->nVersion < 32000 || pfrom->nVersion >= 32400) && (nAskedForBlocks < 1 || vNodes.size() <= 1)) -- cgit v1.2.3 From 76a3bfa17c65481088df5713c0619f67cd856a83 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Thu, 15 Mar 2012 22:55:12 -0400 Subject: Fix Win32 RPC Crashes. --- bitcoin-qt.pro | 4 ++-- contrib/gitian-descriptors/qt-win32.yml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 790c0751ca..7fcb5079ad 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -251,8 +251,8 @@ isEmpty(BOOST_INCLUDE_PATH) { macx:BOOST_INCLUDE_PATH = /opt/local/include } -windows:LIBS += -lws2_32 -windows:DEFINES += WIN32 +windows:LIBS += -lmingwthrd -lws2_32 +windows:DEFINES += _MT WIN32 windows:RC_FILE = src/qt/res/bitcoin-qt.rc macx:HEADERS += src/qt/macdockiconhandler.h diff --git a/contrib/gitian-descriptors/qt-win32.yml b/contrib/gitian-descriptors/qt-win32.yml index 6eb76b2170..adccebbb91 100644 --- a/contrib/gitian-descriptors/qt-win32.yml +++ b/contrib/gitian-descriptors/qt-win32.yml @@ -47,6 +47,7 @@ script: | cp -a bin $SRCDIR/ cd $INSTDIR find . -name *.prl | xargs -l sed 's|/$||' -i + sed 's/QMAKE_LIBS_QT_ENTRY = -lmingw32 -lqtmain/QMAKE_LIBS_QT_ENTRY = -lqtmain/' -i mkspecs/unsupported/win32-g++-cross/qmake.conf #sed 's|QMAKE_PRL_LIBS.*|QMAKE_PRL_LIBS = -lQtDeclarative -lQtScript -lQtSvg -lQtSql -lQtXmlPatterns -lQtGui -lgdi32 -lcomdlg32 -loleaut32 -limm32 -lwinmm -lwinspool -lmsimg32 -lQtNetwork -lQtCore -lole32 -luuid -lws2_32 -ladvapi32 -lshell32 -luser32 -lkernel32|' -i imports/Qt/labs/particles/qmlparticlesplugin.prl # as zip stores file timestamps, use faketime to intercept stat calls to set dates for all files to reference date -- cgit v1.2.3 From ffef16404d16678d54e767dda6c301ad51fb82a7 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 16 Mar 2012 16:04:26 -0400 Subject: Bump version to 0.4.5 --- contrib/Bitcoin.app/Contents/Info.plist | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/contrib/Bitcoin.app/Contents/Info.plist b/contrib/Bitcoin.app/Contents/Info.plist index bef67460c8..b34827e3ca 100644 --- a/contrib/Bitcoin.app/Contents/Info.plist +++ b/contrib/Bitcoin.app/Contents/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.4.4 + 0.4.5 CFBundleSignature ???? CFBundleVersion diff --git a/doc/README b/doc/README index 197f03dd56..e572b2dd53 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.4.4 BETA +Bitcoin 0.4.5 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index ad357130c2..6a551a0b97 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.4.4 BETA +Bitcoin 0.4.5 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 0598311790..643b0ffef8 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.4.4 +!define VERSION 0.4.5 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.4.4-win32-setup.exe +OutFile bitcoin-0.4.5-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.4.4.0 +VIProductVersion 0.4.5.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index 2bc3a071d7..491169ff58 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -59,7 +59,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 40400; +static const int VERSION = 40500; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From f322aa4d600f64eea8395811900dc98d562f1dac Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 16 Mar 2012 16:11:11 -0400 Subject: Bump version to 0.5.0.5 --- bitcoin-qt.pro | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 7fcb5079ad..64b9670bfd 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.5.0.4 +VERSION = 0.5.0.5 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/doc/README b/doc/README index 6af11c3497..9b3c561cbe 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.5.0.4 BETA +Bitcoin 0.5.0.5 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 25cb069266..c23b0ea84d 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.5.0.4 BETA +Bitcoin 0.5.0.5 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 76ae81762d..4f764153e1 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.5.0.4 +!define VERSION 0.5.0.5 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.5.0.4-win32-setup.exe +OutFile bitcoin-0.5.0.5-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.5.0.4 +VIProductVersion 0.5.0.5 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index f577202443..f10f933b16 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -60,7 +60,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 50004; +static const int VERSION = 50005; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 7f23df06d7126e32bb2b80df355855bc9c8b242a Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 16 Mar 2012 16:12:16 -0400 Subject: Bump version to 0.5.4 --- bitcoin-qt.pro | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 34ce109fe2..ea9b52acf8 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.5.3 +VERSION = 0.5.4 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/doc/README b/doc/README index 1323814932..3d8c63a3e1 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.5.3 BETA +Bitcoin 0.5.4 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index f52c1d1799..b4ad595419 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.5.3 BETA +Bitcoin 0.5.4 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 12a1a532da..38f0a3a00a 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.5.3 +!define VERSION 0.5.4 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.5.3-win32-setup.exe +OutFile bitcoin-0.5.4-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.5.3.0 +VIProductVersion 0.5.4.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index 71f24f81d5..396e1727eb 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -60,7 +60,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 50300; +static const int VERSION = 50400; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 458b6e64368b06f8951e2fe5849272c11923dca8 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Wed, 15 Feb 2012 14:47:08 +0100 Subject: fix default suffixes in save dialog in GNOME, make it more clear that PNG is used (solves #833) --- src/qt/addressbookpage.cpp | 6 ++---- src/qt/guiutil.cpp | 49 ++++++++++++++++++++++++++++++++++++++++++++++ src/qt/guiutil.h | 15 ++++++++++++++ src/qt/transactionview.cpp | 6 ++---- 4 files changed, 68 insertions(+), 8 deletions(-) diff --git a/src/qt/addressbookpage.cpp b/src/qt/addressbookpage.cpp index 0a147c9e10..76061233fc 100644 --- a/src/qt/addressbookpage.cpp +++ b/src/qt/addressbookpage.cpp @@ -7,7 +7,6 @@ #include #include -#include #include AddressBookPage::AddressBookPage(Mode mode, Tabs tab, QWidget *parent) : @@ -206,10 +205,9 @@ void AddressBookPage::done(int retval) void AddressBookPage::exportClicked() { // CSV is currently the only supported format - QString filename = QFileDialog::getSaveFileName( + QString filename = GUIUtil::getSaveFileName( this, - tr("Export Address Book Data"), - QDir::currentPath(), + tr("Export Address Book Data"), QString(), tr("Comma separated file (*.csv)")); if (filename.isNull()) return; diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index bc443ceeb6..d1490c8f70 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -11,6 +11,8 @@ #include #include #include +#include +#include QString GUIUtil::dateTimeStr(qint64 nTime) { @@ -86,3 +88,50 @@ bool GUIUtil::parseBitcoinURL(QString url, SendCoinsRecipient *out) QUrl urlInstance(url); return parseBitcoinURL(&urlInstance, out); } + +QString GUIUtil::getSaveFileName(QWidget *parent, const QString &caption, + const QString &dir, + const QString &filter, + QString *selectedSuffixOut) +{ + QString selectedFilter; + QString myDir; + if(dir.isEmpty()) // Default to user documents location + { + myDir = QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation); + } + else + { + myDir = dir; + } + QString result = QFileDialog::getSaveFileName(parent, caption, myDir, filter, &selectedFilter); + + /* Extract first suffix from filter pattern "Description (*.foo)" or "Description (*.foo *.bar ...) */ + QRegExp filter_re(".* \\(\\*\\.(.*)[ \\)]"); + QString selectedSuffix; + if(filter_re.exactMatch(selectedFilter)) + { + selectedSuffix = filter_re.cap(1); + } + + /* Add suffix if needed */ + QFileInfo info(result); + if(!result.isEmpty()) + { + if(info.suffix().isEmpty() && !selectedSuffix.isEmpty()) + { + /* No suffix specified, add selected suffix */ + if(!result.endsWith(".")) + result.append("."); + result.append(selectedSuffix); + } + } + + /* Return selected suffix if asked to */ + if(selectedSuffixOut) + { + *selectedSuffixOut = selectedSuffix; + } + return result; +} + diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index 129ab73038..d7523aa15c 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -30,6 +30,21 @@ public: // See Bitcoin URL definition discussion here: https://bitcointalk.org/index.php?topic=33490.0 static bool parseBitcoinURL(const QUrl *url, SendCoinsRecipient *out); static bool parseBitcoinURL(QString url, SendCoinsRecipient *out); + + /** Get save file name, mimics QFileDialog::getSaveFileName, except that it appends a default suffix + when no suffix is provided by the user. + + @param[in] parent Parent window (or 0) + @param[in] caption Window caption (or empty, for default) + @param[in] dir Starting directory (or empty, to default to documents directory) + @param[in] filter Filter specification such as "Comma Separated Files (*.csv)" + @param[out] selectedSuffixOut Pointer to return the suffix (file type) that was selected (or 0). + Can be useful when choosing the save file format based on suffix. + */ + static QString getSaveFileName(QWidget *parent=0, const QString &caption=QString(), + const QString &dir=QString(), const QString &filter=QString(), + QString *selectedSuffixOut=0); + }; #endif // GUIUTIL_H diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index 3ef31854fb..0bfce351a4 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -20,7 +20,6 @@ #include #include #include -#include #include #include #include @@ -265,10 +264,9 @@ void TransactionView::changedAmount(const QString &amount) void TransactionView::exportClicked() { // CSV is currently the only supported format - QString filename = QFileDialog::getSaveFileName( + QString filename = GUIUtil::getSaveFileName( this, - tr("Export Transaction Data"), - QDir::currentPath(), + tr("Export Transaction Data"), QString(), tr("Comma separated file (*.csv)")); if (filename.isNull()) return; -- cgit v1.2.3 From 91aadbdacf9a3111da76eb831ea36d6827e1d6fc Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 16 Feb 2012 10:22:31 -0500 Subject: Fix issue #848 : broken mining on testnet --- src/main.cpp | 20 ++++++++++++++++++-- src/main.h | 2 ++ src/rpc.cpp | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index cd02652660..ebf51ae146 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -807,6 +807,15 @@ void static InvalidChainFound(CBlockIndex* pindexNew) printf("InvalidChainFound: WARNING: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade.\n"); } +void CBlock::UpdateTime(const CBlockIndex* pindexPrev) +{ + nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime()); + + // Updating time can change work required on testnet: + if (fTestNet) + nBits = GetNextWorkRequired(pindexPrev, this); +} + @@ -2896,7 +2905,7 @@ CBlock* CreateNewBlock(CReserveKey& reservekey) // Fill in header pblock->hashPrevBlock = pindexPrev->GetBlockHash(); pblock->hashMerkleRoot = pblock->BuildMerkleTree(); - pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime()); + pblock->UpdateTime(pindexPrev); pblock->nBits = GetNextWorkRequired(pindexPrev, pblock.get()); pblock->nNonce = 0; @@ -3053,6 +3062,7 @@ void static BitcoinMiner(CWallet *pwallet) FormatHashBuffers(pblock.get(), pmidstate, pdata, phash1); unsigned int& nBlockTime = *(unsigned int*)(pdata + 64 + 4); + unsigned int& nBlockBits = *(unsigned int*)(pdata + 64 + 8); unsigned int& nBlockNonce = *(unsigned int*)(pdata + 64 + 12); @@ -3140,8 +3150,14 @@ void static BitcoinMiner(CWallet *pwallet) break; // Update nTime every few seconds - pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime()); + pblock->UpdateTime(pindexPrev); nBlockTime = ByteReverse(pblock->nTime); + if (fTestNet) + { + // Changing pblock->nTime can change work required on testnet: + nBlockBits = ByteReverse(pblock->nBits); + hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256(); + } } } } diff --git a/src/main.h b/src/main.h index 3e381b060b..278f4f01c0 100644 --- a/src/main.h +++ b/src/main.h @@ -846,6 +846,8 @@ public: return n; } + void UpdateTime(const CBlockIndex* pindexPrev); + uint256 BuildMerkleTree() const { diff --git a/src/rpc.cpp b/src/rpc.cpp index 8967b2c996..aade32ac1d 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -1548,7 +1548,7 @@ Value getwork(const Array& params, bool fHelp) } // Update nTime - pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime()); + pblock->UpdateTime(pindexPrev); pblock->nNonce = 0; // Update nExtraNonce -- cgit v1.2.3 From 27960a36de879634ee8c491d0f4fe8160e8a4f75 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 16 Feb 2012 10:22:31 -0500 Subject: Fix issue #848 : broken mining on testnet --- src/bitcoinrpc.cpp | 4 ++-- src/main.cpp | 20 ++++++++++++++++++-- src/main.h | 2 ++ 3 files changed, 22 insertions(+), 4 deletions(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 36490e94f7..1f57bf9cd0 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1654,7 +1654,7 @@ Value getwork(const Array& params, bool fHelp) } // Update nTime - pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime()); + pblock->UpdateTime(pindexPrev); pblock->nNonce = 0; // Update nExtraNonce @@ -1751,7 +1751,7 @@ Value getmemorypool(const Array& params, bool fHelp) } // Update nTime - pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime()); + pblock->UpdateTime(pindexPrev); pblock->nNonce = 0; Array transactions; diff --git a/src/main.cpp b/src/main.cpp index 747805450a..78a7ec3d27 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -820,6 +820,15 @@ void static InvalidChainFound(CBlockIndex* pindexNew) printf("InvalidChainFound: WARNING: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade.\n"); } +void CBlock::UpdateTime(const CBlockIndex* pindexPrev) +{ + nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime()); + + // Updating time can change work required on testnet: + if (fTestNet) + nBits = GetNextWorkRequired(pindexPrev, this); +} + @@ -2949,7 +2958,7 @@ CBlock* CreateNewBlock(CReserveKey& reservekey) // Fill in header pblock->hashPrevBlock = pindexPrev->GetBlockHash(); pblock->hashMerkleRoot = pblock->BuildMerkleTree(); - pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime()); + pblock->UpdateTime(pindexPrev); pblock->nBits = GetNextWorkRequired(pindexPrev, pblock.get()); pblock->nNonce = 0; @@ -3105,6 +3114,7 @@ void static BitcoinMiner(CWallet *pwallet) FormatHashBuffers(pblock.get(), pmidstate, pdata, phash1); unsigned int& nBlockTime = *(unsigned int*)(pdata + 64 + 4); + unsigned int& nBlockBits = *(unsigned int*)(pdata + 64 + 8); unsigned int& nBlockNonce = *(unsigned int*)(pdata + 64 + 12); @@ -3192,8 +3202,14 @@ void static BitcoinMiner(CWallet *pwallet) break; // Update nTime every few seconds - pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime()); + pblock->UpdateTime(pindexPrev); nBlockTime = ByteReverse(pblock->nTime); + if (fTestNet) + { + // Changing pblock->nTime can change work required on testnet: + nBlockBits = ByteReverse(pblock->nBits); + hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256(); + } } } } diff --git a/src/main.h b/src/main.h index a1fb548f08..083d34029a 100644 --- a/src/main.h +++ b/src/main.h @@ -856,6 +856,8 @@ public: return n; } + void UpdateTime(const CBlockIndex* pindexPrev); + uint256 BuildMerkleTree() const { -- cgit v1.2.3 From 1db5f43dc4d151a8b0543075385a57c3e57f54a3 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 16 Mar 2012 20:31:12 -0400 Subject: Bugfix: Missing includes --- src/qt/addressbookpage.cpp | 1 + src/qt/transactionview.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/qt/addressbookpage.cpp b/src/qt/addressbookpage.cpp index 76061233fc..2c4407a81d 100644 --- a/src/qt/addressbookpage.cpp +++ b/src/qt/addressbookpage.cpp @@ -4,6 +4,7 @@ #include "addresstablemodel.h" #include "editaddressdialog.h" #include "csvmodelwriter.h" +#include "guiutil.h" #include #include diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index 0bfce351a4..1dd4c7b542 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -10,6 +10,7 @@ #include "transactiondescdialog.h" #include "editaddressdialog.h" #include "optionsmodel.h" +#include "guiutil.h" #include #include -- cgit v1.2.3 From 8b3a795ea6bcbd83eab83edf75e98c57269aeb6e Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 16 Mar 2012 20:31:12 -0400 Subject: Bugfix: Missing includes --- src/qt/addressbookpage.cpp | 1 + src/qt/transactionview.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/qt/addressbookpage.cpp b/src/qt/addressbookpage.cpp index 76061233fc..2c4407a81d 100644 --- a/src/qt/addressbookpage.cpp +++ b/src/qt/addressbookpage.cpp @@ -4,6 +4,7 @@ #include "addresstablemodel.h" #include "editaddressdialog.h" #include "csvmodelwriter.h" +#include "guiutil.h" #include #include diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index 0bfce351a4..1dd4c7b542 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -10,6 +10,7 @@ #include "transactiondescdialog.h" #include "editaddressdialog.h" #include "optionsmodel.h" +#include "guiutil.h" #include #include -- cgit v1.2.3 From 1422e5bf518bf8a86f1e62f8f6c2552d242264bf Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Thu, 15 Mar 2012 22:25:07 -0400 Subject: Bump version to 0.5.3.1 --- bitcoin-qt.pro | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 121a53f019..92b0a6f03d 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.5.3 +VERSION = 0.5.3.1 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/doc/README b/doc/README index 1323814932..f411638251 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.5.3 BETA +Bitcoin 0.5.3.1 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index f52c1d1799..9b47fb805e 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.5.3 BETA +Bitcoin 0.5.3.1 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 12a1a532da..a7d621c095 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.5.3 +!define VERSION 0.5.3.1 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.5.3-win32-setup.exe +OutFile bitcoin-0.5.3.1-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.5.3.0 +VIProductVersion 0.5.3.1 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index 71f24f81d5..e388819405 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -60,7 +60,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 50300; +static const int VERSION = 50301; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 1a4ac2b4d07eb9bf19d494586b0ff5c73ba2de68 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sat, 17 Mar 2012 19:54:22 -0400 Subject: Move QMAKE_LIBS_QT_ENTRY adjustment to bitcoin side of build It could just as well be on either part of the gitian build, but to safely put it on the Qt side would require bumping the filename, and every gitian user rebuilding it. v0.5.3.1 put it on the Bitcoin side, and this is easier to work with and keep safe, so I'm moving it. --- bitcoin-qt.pro | 1 + contrib/gitian-descriptors/qt-win32.yml | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 92b0a6f03d..33df7cd835 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -254,6 +254,7 @@ isEmpty(BOOST_INCLUDE_PATH) { windows:LIBS += -lmingwthrd -lws2_32 windows:DEFINES += _MT WIN32 windows:RC_FILE = src/qt/res/bitcoin-qt.rc +windows:QMAKE_LIBS_QT_ENTRY -= -lmingw32 macx:HEADERS += src/qt/macdockiconhandler.h macx:OBJECTIVE_SOURCES += src/qt/macdockiconhandler.mm diff --git a/contrib/gitian-descriptors/qt-win32.yml b/contrib/gitian-descriptors/qt-win32.yml index adccebbb91..6eb76b2170 100644 --- a/contrib/gitian-descriptors/qt-win32.yml +++ b/contrib/gitian-descriptors/qt-win32.yml @@ -47,7 +47,6 @@ script: | cp -a bin $SRCDIR/ cd $INSTDIR find . -name *.prl | xargs -l sed 's|/$||' -i - sed 's/QMAKE_LIBS_QT_ENTRY = -lmingw32 -lqtmain/QMAKE_LIBS_QT_ENTRY = -lqtmain/' -i mkspecs/unsupported/win32-g++-cross/qmake.conf #sed 's|QMAKE_PRL_LIBS.*|QMAKE_PRL_LIBS = -lQtDeclarative -lQtScript -lQtSvg -lQtSql -lQtXmlPatterns -lQtGui -lgdi32 -lcomdlg32 -loleaut32 -limm32 -lwinmm -lwinspool -lmsimg32 -lQtNetwork -lQtCore -lole32 -luuid -lws2_32 -ladvapi32 -lshell32 -luser32 -lkernel32|' -i imports/Qt/labs/particles/qmlparticlesplugin.prl # as zip stores file timestamps, use faketime to intercept stat calls to set dates for all files to reference date -- cgit v1.2.3 From b3ba40c6bf7417f9db6ee67afe388953d0d77e41 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sat, 17 Mar 2012 19:54:22 -0400 Subject: Move QMAKE_LIBS_QT_ENTRY adjustment to bitcoin side of build It could just as well be on either part of the gitian build, but to safely put it on the Qt side would require bumping the filename, and every gitian user rebuilding it. v0.5.3.1 put it on the Bitcoin side, and this is easier to work with and keep safe, so I'm moving it. --- bitcoin-qt.pro | 1 + contrib/gitian-descriptors/qt-win32.yml | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 64b9670bfd..28eba2b9ea 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -254,6 +254,7 @@ isEmpty(BOOST_INCLUDE_PATH) { windows:LIBS += -lmingwthrd -lws2_32 windows:DEFINES += _MT WIN32 windows:RC_FILE = src/qt/res/bitcoin-qt.rc +windows:QMAKE_LIBS_QT_ENTRY -= -lmingw32 macx:HEADERS += src/qt/macdockiconhandler.h macx:OBJECTIVE_SOURCES += src/qt/macdockiconhandler.mm diff --git a/contrib/gitian-descriptors/qt-win32.yml b/contrib/gitian-descriptors/qt-win32.yml index adccebbb91..6eb76b2170 100644 --- a/contrib/gitian-descriptors/qt-win32.yml +++ b/contrib/gitian-descriptors/qt-win32.yml @@ -47,7 +47,6 @@ script: | cp -a bin $SRCDIR/ cd $INSTDIR find . -name *.prl | xargs -l sed 's|/$||' -i - sed 's/QMAKE_LIBS_QT_ENTRY = -lmingw32 -lqtmain/QMAKE_LIBS_QT_ENTRY = -lqtmain/' -i mkspecs/unsupported/win32-g++-cross/qmake.conf #sed 's|QMAKE_PRL_LIBS.*|QMAKE_PRL_LIBS = -lQtDeclarative -lQtScript -lQtSvg -lQtSql -lQtXmlPatterns -lQtGui -lgdi32 -lcomdlg32 -loleaut32 -limm32 -lwinmm -lwinspool -lmsimg32 -lQtNetwork -lQtCore -lole32 -luuid -lws2_32 -ladvapi32 -lshell32 -luser32 -lkernel32|' -i imports/Qt/labs/particles/qmlparticlesplugin.prl # as zip stores file timestamps, use faketime to intercept stat calls to set dates for all files to reference date -- cgit v1.2.3 From 0a1c5c9b104458b3e048c8e3ae5e9f347a5ab399 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 19 Mar 2012 12:15:03 -0400 Subject: Bump version to 0.5.0.6 --- bitcoin-qt.pro | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 28eba2b9ea..ff5df98247 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.5.0.5 +VERSION = 0.5.0.6 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/doc/README b/doc/README index 9b3c561cbe..dc296f4e2e 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.5.0.5 BETA +Bitcoin 0.5.0.6 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index c23b0ea84d..f373b1449b 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.5.0.5 BETA +Bitcoin 0.5.0.6 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 4f764153e1..c574269bc4 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.5.0.5 +!define VERSION 0.5.0.6 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.5.0.5-win32-setup.exe +OutFile bitcoin-0.5.0.6-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.5.0.5 +VIProductVersion 0.5.0.6 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index f10f933b16..f628510a36 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -60,7 +60,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 50005; +static const int VERSION = 50006; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 00d832756cd1c4574774497dc1232101bea5db96 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 11 Mar 2012 17:57:44 -0400 Subject: Print wallet load errors (to debug.log) --- src/init.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/init.cpp b/src/init.cpp index 079e67b936..2dccc81bf5 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -398,12 +398,14 @@ bool AppInit2(int argc, char* argv[]) else if (nLoadWalletRet == DB_NEED_REWRITE) { strErrors += _("Wallet needed to be rewritten: restart Bitcoin to complete \n"); + printf("%s", strErrors.c_str()); wxMessageBox(strErrors, "Bitcoin", wxOK | wxICON_ERROR); return false; } else strErrors += _("Error loading wallet.dat \n"); } + printf("%s", strErrors.c_str()); printf(" wallet %15"PRI64d"ms\n", GetTimeMillis() - nStart); RegisterWallet(pwalletMain); -- cgit v1.2.3 From 1194f003504fa6e9d9f59012ec736ebc7c231360 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 11 Mar 2012 18:07:40 -0400 Subject: Print more diagnostic info for the various DB_CORRUPT conditions --- src/db.cpp | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/src/db.cpp b/src/db.cpp index 783b079963..7f9439bf74 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -798,7 +798,10 @@ int CWalletDB::LoadWallet(CWallet* pwallet) // Get cursor Dbc* pcursor = GetCursor(); if (!pcursor) + { + printf("Error getting wallet database cursor\n"); return DB_CORRUPT; + } loop { @@ -809,7 +812,10 @@ int CWalletDB::LoadWallet(CWallet* pwallet) if (ret == DB_NOTFOUND) break; else if (ret != 0) + { + printf("Error reading next record from wallet database\n"); return DB_CORRUPT; + } // Unserialize // Taking advantage of the fact that pair serialization @@ -879,19 +885,38 @@ int CWalletDB::LoadWallet(CWallet* pwallet) CPrivKey pkey; ssValue >> pkey; key.SetPrivKey(pkey); - if (key.GetPubKey() != vchPubKey || !key.IsValid()) + if (key.GetPubKey() != vchPubKey) + { + printf("Error reading wallet database: CPrivKey pubkey inconsistency\n"); return DB_CORRUPT; + } + if (!key.IsValid()) + { + printf("Error reading wallet database: invalid CPrivKey\n"); + return DB_CORRUPT; + } } else { CWalletKey wkey; ssValue >> wkey; key.SetPrivKey(wkey.vchPrivKey); - if (key.GetPubKey() != vchPubKey || !key.IsValid()) + if (key.GetPubKey() != vchPubKey) + { + printf("Error reading wallet database: CWalletKey pubkey inconsistency\n"); return DB_CORRUPT; + } + if (!key.IsValid()) + { + printf("Error reading wallet database: invalid CWalletKey\n"); + return DB_CORRUPT; + } } if (!pwallet->LoadKey(key)) + { + printf("Error reading wallet database: LoadKey failed\n"); return DB_CORRUPT; + } } else if (strType == "mkey") { @@ -900,7 +925,10 @@ int CWalletDB::LoadWallet(CWallet* pwallet) CMasterKey kMasterKey; ssValue >> kMasterKey; if(pwallet->mapMasterKeys.count(nID) != 0) + { + printf("Error reading wallet database: duplicate CMasterKey id %u\n", nID); return DB_CORRUPT; + } pwallet->mapMasterKeys[nID] = kMasterKey; if (pwallet->nMasterKeyMaxID < nID) pwallet->nMasterKeyMaxID = nID; @@ -912,7 +940,10 @@ int CWalletDB::LoadWallet(CWallet* pwallet) vector vchPrivKey; ssValue >> vchPrivKey; if (!pwallet->LoadCryptedKey(vchPubKey, vchPrivKey)) + { + printf("Error reading wallet database: LoadCryptedKey failed\n"); return DB_CORRUPT; + } fIsEncrypted = true; } else if (strType == "defaultkey") -- cgit v1.2.3 From 0ae535cdb2e331c81b35486ebaae09aa5e80d014 Mon Sep 17 00:00:00 2001 From: Joel Kaartinen Date: Fri, 16 Mar 2012 14:23:59 +0200 Subject: Make the sendcoins dialog use the configured unit type, even on the first attempt. --- src/qt/sendcoinsentry.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qt/sendcoinsentry.cpp b/src/qt/sendcoinsentry.cpp index d98400c260..caffaaeff2 100644 --- a/src/qt/sendcoinsentry.cpp +++ b/src/qt/sendcoinsentry.cpp @@ -66,6 +66,7 @@ void SendCoinsEntry::on_payTo_textChanged(const QString &address) void SendCoinsEntry::setModel(WalletModel *model) { this->model = model; + clear(); } void SendCoinsEntry::setRemoveEnabled(bool enabled) -- cgit v1.2.3 From e20417c333f86797ed328d990bf284080a69920b Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 17 Feb 2012 13:50:32 +0100 Subject: Hide window from taskbar when "minimize to tray" active by making window into Tool window --- src/qt/bitcoingui.cpp | 27 +++++++++------------------ src/qt/bitcoingui.h | 4 ---- 2 files changed, 9 insertions(+), 22 deletions(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 3c9a773f4e..ff862cf40e 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -55,7 +55,6 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): QMainWindow(parent), clientModel(0), walletModel(0), - dummyWidget(0), encryptWalletAction(0), changePassphraseAction(0), aboutQtAction(0), @@ -85,9 +84,6 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): // Create the tray icon (or setup the dock icon) createTrayIcon(); - // Dummy widget used when restoring window state after minimization - dummyWidget = new QWidget(); - // Create tabs overviewPage = new OverviewPage(); @@ -161,7 +157,6 @@ BitcoinGUI::~BitcoinGUI() #ifdef Q_WS_MAC delete appMenuBar; #endif - delete dummyWidget; } void BitcoinGUI::createActions() @@ -387,14 +382,6 @@ void BitcoinGUI::trayIconActivated(QSystemTrayIcon::ActivationReason reason) } #endif -void BitcoinGUI::showNormal() -{ - // Reparent window to the desktop (in case it was hidden on minimize) - if(parent() != NULL) - setParent(NULL, Qt::Window); - QMainWindow::showNormal(); -} - void BitcoinGUI::optionsClicked() { if(!clientModel || !clientModel->getOptionsModel()) @@ -541,15 +528,19 @@ void BitcoinGUI::changeEvent(QEvent *e) { if(clientModel && clientModel->getOptionsModel()->getMinimizeToTray()) { - if(isMinimized()) + QWindowStateChangeEvent *wsevt = static_cast(e); + bool wasMinimized = wsevt->oldState() & Qt::WindowMinimized; + bool isMinimized = windowState() & Qt::WindowMinimized; + if(!wasMinimized && isMinimized) { - // Hiding the window from taskbar - setParent(dummyWidget, Qt::SubWindow); + // Minimized, hide the window from taskbar + setWindowFlags(windowFlags() | Qt::Tool); return; } - else + else if(wasMinimized && !isMinimized) { - showNormal(); + // Unminimized, show the window in taskbar + setWindowFlags(windowFlags() &~ Qt::Tool); } } } diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 1338998a98..9b672ee809 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -54,8 +54,6 @@ private: QStackedWidget *centralWidget; - QWidget *dummyWidget; - OverviewPage *overviewPage; QWidget *transactionsPage; AddressBookPage *addressBookPage; @@ -109,8 +107,6 @@ public slots: */ void askFee(qint64 nFeeRequired, bool *payFee); - void showNormal(); - private slots: // UI pages void gotoOverviewPage(); -- cgit v1.2.3 From b4c7b6a384e69ec31ae6067a9b9692fa7b02ab56 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Thu, 15 Mar 2012 22:30:08 +0100 Subject: Yet another attempt at implementing "minimize to tray" that works on all OSes --- src/qt/bitcoingui.cpp | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index ff862cf40e..78becafe5b 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -45,6 +45,7 @@ #include #include #include +#include #include #include @@ -523,29 +524,21 @@ void BitcoinGUI::error(const QString &title, const QString &message) void BitcoinGUI::changeEvent(QEvent *e) { + QMainWindow::changeEvent(e); #ifndef Q_WS_MAC // Ignored on Mac if(e->type() == QEvent::WindowStateChange) { if(clientModel && clientModel->getOptionsModel()->getMinimizeToTray()) { QWindowStateChangeEvent *wsevt = static_cast(e); - bool wasMinimized = wsevt->oldState() & Qt::WindowMinimized; - bool isMinimized = windowState() & Qt::WindowMinimized; - if(!wasMinimized && isMinimized) - { - // Minimized, hide the window from taskbar - setWindowFlags(windowFlags() | Qt::Tool); - return; - } - else if(wasMinimized && !isMinimized) + if(!(wsevt->oldState() & Qt::WindowMinimized) && isMinimized()) { - // Unminimized, show the window in taskbar - setWindowFlags(windowFlags() &~ Qt::Tool); + QTimer::singleShot(0, this, SLOT(hide())); + e->ignore(); } } } #endif - QMainWindow::changeEvent(e); } void BitcoinGUI::closeEvent(QCloseEvent *event) -- cgit v1.2.3 From 0e6c6e3fd1ab971c652e48fa04bac097e44e76fe Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 18 Feb 2012 13:32:25 +0100 Subject: Workaround for BN_bn2mpi reading/writing out of bounds When OpenSSL's BN_bn2mpi is passed a buffer of size 4, valgrind reports reading/writing one byte past it. I am unable to find evidence of this behaviour in BN_bn2mpi's source code, so it may be a spurious warning. However, this change is harmless, as only the bignum with value 0 results in an mpi serialization of size 4. --- src/bignum.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bignum.h b/src/bignum.h index 1a2406b935..6e8d3cb8ab 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -243,7 +243,7 @@ public: std::vector getvch() const { unsigned int nSize = BN_bn2mpi(this, NULL); - if (nSize < 4) + if (nSize <= 4) return std::vector(); std::vector vch(nSize); BN_bn2mpi(this, &vch[0]); -- cgit v1.2.3 From 2f2ac3fece6c7f576c5957f05f342f2830301b54 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 13 Mar 2012 17:22:07 -0400 Subject: Minimal support for validating BIP16 pay-to-script-hash transactions Note this does NOT include accepting them in blocks (making them standard) --- src/main.cpp | 284 ++++++++++++++++++++++++++++++++++++++++----------------- src/main.h | 53 ++++++++++- src/script.cpp | 93 +++++++++++++++++-- src/script.h | 45 +++++---- 4 files changed, 367 insertions(+), 108 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 652d4c1f98..c81f1318b0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -374,15 +374,6 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi if ((int64)nLockTime > INT_MAX) return error("AcceptToMemoryPool() : not accepting nLockTime beyond 2038 yet"); - // Safety limits - unsigned int nSize = ::GetSerializeSize(*this, SER_NETWORK); - // Checking ECDSA signatures is a CPU bottleneck, so to avoid denial-of-service - // attacks disallow transactions with more than one SigOp per 34 bytes. - // 34 bytes because a TxOut is: - // 20-byte address + 8 byte bitcoin amount + 5 bytes of ops + 1 byte script length - if (GetSigOpCount() > nSize / 34 || nSize < 100) - return error("AcceptToMemoryPool() : nonstandard transaction"); - // Rather not work on nonstandard transactions (unless -testnet) if (!fTestNet && !IsStandard()) return error("AcceptToMemoryPool() : nonstandard transaction type"); @@ -426,17 +417,29 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi if (fCheckInputs) { - // Check against previous transactions + MapPrevTx mapInputs; map mapUnused; - int64 nFees = 0; bool fInvalid = false; - if (!ConnectInputs(txdb, mapUnused, CDiskTxPos(1,1,1), pindexBest, nFees, false, false, 0, fInvalid)) + if (!FetchInputs(txdb, mapUnused, false, false, mapInputs, fInvalid)) { if (fInvalid) return error("AcceptToMemoryPool() : FetchInputs found invalid tx %s", hash.ToString().substr(0,10).c_str()); - return error("AcceptToMemoryPool() : ConnectInputs failed %s", hash.ToString().substr(0,10).c_str()); + if (pfMissingInputs) + *pfMissingInputs = true; + return error("AcceptToMemoryPool() : FetchInputs failed %s", hash.ToString().substr(0,10).c_str()); } + // Safety limits + unsigned int nSize = ::GetSerializeSize(*this, SER_NETWORK); + // Checking ECDSA signatures is a CPU bottleneck, so to avoid denial-of-service + // attacks disallow transactions with more than one SigOp per 34 bytes. + // 34 bytes because a TxOut is: + // 20-byte address + 8 byte bitcoin amount + 5 bytes of ops + 1 byte script length + if (GetSigOpCount() > nSize / 34 || nSize < 100) + return error("AcceptToMemoryPool() : nonstandard transaction"); + + int64 nFees = GetValueIn(mapInputs)-GetValueOut(); + // Don't accept it if it can't get into a block if (nFees < GetMinFee(1000, true, true)) return error("AcceptToMemoryPool() : not enough fees"); @@ -465,6 +468,13 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi dFreeCount += nSize; } } + + // Check against previous transactions + // This is done last to help prevent CPU exhaustion denial-of-service attacks. + if (!ConnectInputs(mapInputs, mapUnused, CDiskTxPos(1,1,1), pindexBest, false, false)) + { + return error("AcceptToMemoryPool() : ConnectInputs failed %s", hash.ToString().substr(0,10).c_str()); + } } // Store transaction in memory @@ -853,9 +863,8 @@ bool CTransaction::DisconnectInputs(CTxDB& txdb) } -bool CTransaction::ConnectInputs(CTxDB& txdb, map& mapTestPool, CDiskTxPos posThisTx, - CBlockIndex* pindexBlock, int64& nFees, bool fBlock, bool fMiner, int64 nMinFee, - bool& fInvalid) +bool CTransaction::FetchInputs(CTxDB& txdb, const map& mapTestPool, + bool fBlock, bool fMiner, MapPrevTx& inputsRet, bool& fInvalid) { // FetchInputs can return false either because we just haven't seen some inputs // (in which case the transaction should be stored as an orphan) @@ -863,70 +872,143 @@ bool CTransaction::ConnectInputs(CTxDB& txdb, map& mapTestPoo // 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. + + for (int i = 0; i < vin.size(); i++) + { + COutPoint prevout = vin[i].prevout; + if (inputsRet.count(prevout.hash)) + continue; // Got it already + + // Read txindex + CTxIndex& txindex = inputsRet[prevout.hash].first; + bool fFound = true; + if ((fBlock || fMiner) && mapTestPool.count(prevout.hash)) + { + // Get txindex from current proposed changes + txindex = mapTestPool.find(prevout.hash)->second; + } + else + { + // Read txindex from txdb + fFound = txdb.ReadTxIndex(prevout.hash, txindex); + } + if (!fFound && (fBlock || fMiner)) + return fMiner ? false : error("FetchInputs() : %s prev tx %s index entry not found", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str()); + + // Read txPrev + CTransaction& txPrev = inputsRet[prevout.hash].second; + if (!fFound || txindex.pos == CDiskTxPos(1,1,1)) + { + // Get prev tx from single transactions in memory + CRITICAL_BLOCK(cs_mapTransactions) + { + if (!mapTransactions.count(prevout.hash)) + return error("FetchInputs() : %s mapTransactions prev not found %s", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str()); + txPrev = mapTransactions[prevout.hash]; + } + if (!fFound) + txindex.vSpent.resize(txPrev.vout.size()); + } + else + { + // Get prev tx from disk + if (!txPrev.ReadFromDisk(txindex.pos)) + return error("FetchInputs() : %s ReadFromDisk prev tx %s failed", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str()); + } + } + + // Make sure all prevout.n's are valid: + for (int i = 0; i < vin.size(); i++) + { + const COutPoint prevout = vin[i].prevout; + assert(inputsRet.count(prevout.hash) != 0); + const CTxIndex& txindex = inputsRet[prevout.hash].first; + const CTransaction& txPrev = inputsRet[prevout.hash].second; + if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size()) + { + // Revisit this if/when transaction replacement is implemented and allows + // adding inputs: + fInvalid = true; + return error("FetchInputs() : %s prevout.n out of range %d %d %d 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()); + } + } + + return true; +} + +const CTxOut& CTransaction::GetOutputFor(const CTxIn& input, const MapPrevTx& inputs) const +{ + MapPrevTx::const_iterator mi = inputs.find(input.prevout.hash); + if (mi == inputs.end()) + throw std::runtime_error("CTransaction::GetOutputFor() : prevout.hash not found"); + + const CTransaction& txPrev = (mi->second).second; + if (input.prevout.n >= txPrev.vout.size()) + throw std::runtime_error("CTransaction::GetOutputFor() : prevout.n out of range"); + + return txPrev.vout[input.prevout.n]; +} + +int64 CTransaction::GetValueIn(const MapPrevTx& inputs) const +{ + if (IsCoinBase()) + return 0; + + int64 nResult = 0; + for (int i = 0; i < vin.size(); i++) + { + nResult += GetOutputFor(vin[i], inputs).nValue; + } + return nResult; + +} + +int CTransaction::GetP2SHSigOpCount(const MapPrevTx& inputs) const +{ + if (IsCoinBase()) + return 0; + + int nSigOps = 0; + for (int i = 0; i < vin.size(); i++) + { + const CTxOut& prevout = GetOutputFor(vin[i], inputs); + if (prevout.scriptPubKey.IsPayToScriptHash()) + nSigOps += prevout.scriptPubKey.GetSigOpCount(vin[i].scriptSig); + } + return nSigOps; +} + +bool CTransaction::ConnectInputs(MapPrevTx inputs, + map& mapTestPool, const CDiskTxPos& posThisTx, + const CBlockIndex* pindexBlock, bool fBlock, bool fMiner, bool fStrictPayToScriptHash) +{ // Take over previous transactions' spent pointers + // fBlock is true when this is called from AcceptBlock when a new best-block is added to the blockchain + // fMiner is true when called from the internal bitcoin miner + // ... both are false when called from CTransaction::AcceptToMemoryPool if (!IsCoinBase()) { int64 nValueIn = 0; + int64 nFees = 0; for (int i = 0; i < vin.size(); i++) { COutPoint prevout = vin[i].prevout; - - // Read txindex - CTxIndex txindex; - bool fFound = true; - if ((fBlock || fMiner) && mapTestPool.count(prevout.hash)) - { - // Get txindex from current proposed changes - txindex = mapTestPool[prevout.hash]; - } - else - { - // Read txindex from txdb - fFound = txdb.ReadTxIndex(prevout.hash, txindex); - } - if (!fFound && (fBlock || fMiner)) - return fMiner ? false : error("ConnectInputs() : %s prev tx %s index entry not found", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str()); - - // Read txPrev - CTransaction txPrev; - if (!fFound || txindex.pos == CDiskTxPos(1,1,1)) - { - // Get prev tx from single transactions in memory - CRITICAL_BLOCK(cs_mapTransactions) - { - if (!mapTransactions.count(prevout.hash)) - return error("ConnectInputs() : %s mapTransactions prev not found %s", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str()); - txPrev = mapTransactions[prevout.hash]; - } - if (!fFound) - txindex.vSpent.resize(txPrev.vout.size()); - } - else - { - // Get prev tx from disk - if (!txPrev.ReadFromDisk(txindex.pos)) - return error("ConnectInputs() : %s ReadFromDisk prev tx %s failed", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str()); - } + assert(inputs.count(prevout.hash) > 0); + CTxIndex& txindex = inputs[prevout.hash].first; + CTransaction& txPrev = inputs[prevout.hash].second; if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size()) - { - // Revisit this if/when transaction replacement is implemented and allows - // adding inputs: - fInvalid = true; return error("ConnectInputs() : %s prevout.n out of range %d %d %d 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, check that it's matured if (txPrev.IsCoinBase()) - for (CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < COINBASE_MATURITY; pindex = pindex->pprev) + for (const CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < COINBASE_MATURITY; pindex = pindex->pprev) if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile) return error("ConnectInputs() : tried to spend coinbase at depth %d", pindexBlock->nHeight - pindex->nHeight); - // Verify signature - if (!VerifySignature(txPrev, *this, i)) - return error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str()); - - // Check for conflicts + // Check for conflicts (double-spend) if (!txindex.vSpent[prevout.n].IsNull()) return fMiner ? false : error("ConnectInputs() : %s prev tx already used at %s", GetHash().ToString().substr(0,10).c_str(), txindex.vSpent[prevout.n].ToString().c_str()); @@ -935,6 +1017,10 @@ bool CTransaction::ConnectInputs(CTxDB& txdb, map& mapTestPoo if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn)) return error("ConnectInputs() : txin values out of range"); + // Verify signature + if (!VerifySignature(txPrev, *this, i, fStrictPayToScriptHash, 0)) + return error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str()); + // Mark outpoints as spent txindex.vSpent[prevout.n] = posThisTx; @@ -952,24 +1038,11 @@ bool CTransaction::ConnectInputs(CTxDB& txdb, map& mapTestPoo int64 nTxFee = nValueIn - GetValueOut(); if (nTxFee < 0) return error("ConnectInputs() : %s nTxFee < 0", GetHash().ToString().substr(0,10).c_str()); - if (nTxFee < nMinFee) - return false; nFees += nTxFee; if (!MoneyRange(nFees)) return error("ConnectInputs() : nFees out of range"); } - if (fBlock) - { - // Add transaction to changes - mapTestPool[GetHash()] = CTxIndex(posThisTx, vout.size()); - } - else if (fMiner) - { - // Add transaction to test pool - mapTestPool[GetHash()] = CTxIndex(CDiskTxPos(1,1,1), vout.size()); - } - return true; } @@ -995,7 +1068,7 @@ bool CTransaction::ClientConnectInputs() return false; // Verify signature - if (!VerifySignature(txPrev, *this, i)) + if (!VerifySignature(txPrev, *this, i, true, 0)) return error("ConnectInputs() : VerifySignature failed"); ///// this is redundant with the mapNextTx stuff, not sure which I want to get rid of @@ -1068,20 +1141,51 @@ bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex) return false; } + // P2SH didn't become active until Apr 1 2012 (Feb 15 on testnet) + int64 nEvalSwitchTime = fTestNet ? 1329264000 : 1333238400; + bool fStrictPayToScriptHash = (pindex->nTime >= nEvalSwitchTime); + //// issue here: it doesn't know the version unsigned int nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK) - 1 + GetSizeOfCompactSize(vtx.size()); map mapQueuedChanges; int64 nFees = 0; + int nSigOps = 0; BOOST_FOREACH(CTransaction& tx, vtx) { + nSigOps += tx.GetSigOpCount(); + if (nSigOps > MAX_BLOCK_SIGOPS) + return error("ConnectBlock() : too many sigops"); + CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos); nTxPos += ::GetSerializeSize(tx, SER_DISK); bool fInvalid; - if (!tx.ConnectInputs(txdb, mapQueuedChanges, posThisTx, pindex, nFees, true, false, 0, fInvalid)) - return false; + MapPrevTx mapInputs; + if (!tx.IsCoinBase()) + { + if (!tx.FetchInputs(txdb, mapQueuedChanges, true, false, mapInputs, fInvalid)) + return false; + + if (fStrictPayToScriptHash) + { + // Add in sigops done by pay-to-script-hash inputs; + // this is to prevent a "rogue miner" from creating + // an incredibly-expensive-to-validate block. + nSigOps += tx.GetP2SHSigOpCount(mapInputs); + if (nSigOps > MAX_BLOCK_SIGOPS) + return error("ConnectBlock() : too many sigops"); + } + + nFees += tx.GetValueIn(mapInputs)-tx.GetValueOut(); + + if (!tx.ConnectInputs(mapInputs, mapQueuedChanges, posThisTx, pindex, true, false, fStrictPayToScriptHash)) + return false; + } + + mapQueuedChanges[tx.GetHash()] = CTxIndex(posThisTx, tx.vout.size()); } + // Write queued txindex changes for (map::iterator mi = mapQueuedChanges.begin(); mi != mapQueuedChanges.end(); ++mi) { @@ -1344,7 +1448,7 @@ bool CBlock::CheckBlock() const // Check that it's not full of nonstandard transactions if (GetSigOpCount() > MAX_BLOCK_SIGOPS) - return error("CheckBlock() : too many nonstandard transactions"); + return error("CheckBlock() : out-of-bounds SigOpCount"); // Check merkleroot if (hashMerkleRoot != BuildMerkleTree()) @@ -2854,6 +2958,8 @@ CBlock* CreateNewBlock(CReserveKey& reservekey) unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK); if (nBlockSize + nTxSize >= MAX_BLOCK_SIZE_GEN) continue; + + // Legacy limits on sigOps: int nTxSigOps = tx.GetSigOpCount(); if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS) continue; @@ -2866,14 +2972,28 @@ CBlock* CreateNewBlock(CReserveKey& reservekey) // because we're already processing them in order of dependency map mapTestPoolTmp(mapTestPool); bool fInvalid; - if (!tx.ConnectInputs(txdb, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, nFees, false, true, nMinFee, fInvalid)) + MapPrevTx mapInputs; + if (!tx.FetchInputs(txdb, mapTestPoolTmp, false, true, mapInputs, fInvalid)) + continue; + + int64 nTxFees = tx.GetValueIn(mapInputs)-tx.GetValueOut(); + if (nTxFees < nMinFee) + continue; + + nTxSigOps += tx.GetP2SHSigOpCount(mapInputs); + if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS) + continue; + + if (!tx.ConnectInputs(mapInputs, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, false, true)) continue; + mapTestPoolTmp[tx.GetHash()] = CTxIndex(CDiskTxPos(1,1,1), tx.vout.size()); swap(mapTestPool, mapTestPoolTmp); // Added pblock->vtx.push_back(tx); nBlockSize += nTxSize; nBlockSigOps += nTxSigOps; + nFees += nTxFees; // Add transactions that depend on this one to the priority queue uint256 hash = tx.GetHash(); diff --git a/src/main.h b/src/main.h index 3e381b060b..f29ccde080 100644 --- a/src/main.h +++ b/src/main.h @@ -386,6 +386,7 @@ public: }; +typedef std::map > MapPrevTx; // @@ -494,6 +495,15 @@ public: return n; } + /** Count ECDSA signature operations in pay-to-script-hash inputs. + This is a better measure of how expensive it is to process this transaction. + + @param[in] mapInputsMap of previous transactions that have outputs we're spending + @return maximum number of sigops required to validate this transaction's inputs + @see CTransaction::FetchInputs + */ + int GetP2SHSigOpCount(const MapPrevTx& mapInputs) const; + bool IsStandard() const { BOOST_FOREACH(const CTxIn& txin, vin) @@ -517,6 +527,16 @@ public: return nValueOut; } + /** Amount of bitcoins 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. + + @param[in] mapInputsMap of previous transactions that have outputs we're spending + @returnSum of value of all inputs (scriptSigs) + @see CTransaction::FetchInputs + */ + int64 GetValueIn(const MapPrevTx& mapInputs) const; + static bool AllowFree(double dPriority) { // Large (in bytes) low-priority (new, small-coin) transactions @@ -631,14 +651,41 @@ public: bool ReadFromDisk(CTxDB& txdb, COutPoint prevout); bool ReadFromDisk(COutPoint prevout); bool DisconnectInputs(CTxDB& txdb); - bool ConnectInputs(CTxDB& txdb, std::map& mapTestPool, CDiskTxPos posThisTx, - CBlockIndex* pindexBlock, int64& nFees, bool fBlock, bool fMiner, int64 nMinFee, - bool& fInvalid); + + /** Fetch from memory and/or disk. inputsRet keys are transaction hashes. + + @param[in] txdb Transaction database + @param[in] mapTestPool List of pending changes to the transaction index database + @param[in] fBlock True if being called to add a new best-block to the chain + @param[in] fMiner True if being called by CreateNewBlock + @param[out] inputsRet Pointers to this transaction's inputs + @param[out] fInvalid returns true if transaction is invalid + @return Returns true if all inputs are in txdb or mapTestPool + */ + bool FetchInputs(CTxDB& txdb, const std::map& mapTestPool, + bool fBlock, bool fMiner, MapPrevTx& inputsRet, bool& fInvalid); + + /** Sanity check previous transactions, then, if all checks succeed, + mark them as spent by this transaction. + + @param[in] inputsPrevious transactions (from FetchInputs) + @param[out] mapTestPoolKeeps track of inputs that need to be updated on disk + @param[in] posThisTxPosition of this transaction on disk + @param[in] pindexBlock + @param[in] fBlock true if called from ConnectBlock + @param[in] fMiner true if called from CreateNewBlock + @param[in] fStrictPayToScriptHash true if fully validating p2sh transactions + @return Returns true if all checks succeed + */ + bool ConnectInputs(MapPrevTx inputs, + std::map& mapTestPool, const CDiskTxPos& posThisTx, + const CBlockIndex* pindexBlock, bool fBlock, bool fMiner, bool fStrictPayToScriptHash=true); bool ClientConnectInputs(); bool CheckTransaction() const; bool AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs=true, bool* pfMissingInputs=NULL); bool AcceptToMemoryPool(bool fCheckInputs=true, bool* pfMissingInputs=NULL); protected: + const CTxOut& GetOutputFor(const CTxIn& input, const MapPrevTx& inputs) const; bool AddToMemoryPoolUnchecked(); public: bool RemoveFromMemoryPool(); diff --git a/src/script.cpp b/src/script.cpp index 6e7bcb5e14..377a7abb28 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -1146,16 +1146,40 @@ bool ExtractAddress(const CScript& scriptPubKey, const CKeyStore* keystore, CBit } -bool VerifyScript(const CScript& scriptSig, const CScript& scriptPubKey, const CTransaction& txTo, unsigned int nIn, int nHashType) +bool VerifyScript(const CScript& scriptSig, const CScript& scriptPubKey, const CTransaction& txTo, unsigned int nIn, + bool fValidatePayToScriptHash, int nHashType) { - vector > stack; + vector > stack, stackCopy; if (!EvalScript(stack, scriptSig, txTo, nIn, nHashType)) return false; + if (fValidatePayToScriptHash) + stackCopy = stack; if (!EvalScript(stack, scriptPubKey, txTo, nIn, nHashType)) return false; if (stack.empty()) return false; - return CastToBool(stack.back()); + + if (CastToBool(stack.back()) == false) + return false; + + // Additional validation for spend-to-script-hash transactions: + if (fValidatePayToScriptHash && scriptPubKey.IsPayToScriptHash()) + { + if (!scriptSig.IsPushOnly()) // scriptSig must be literals-only + return false; // or validation fails + + const valtype& pubKeySerialized = stackCopy.back(); + CScript pubKey2(pubKeySerialized.begin(), pubKeySerialized.end()); + popstack(stackCopy); + + if (!EvalScript(stackCopy, pubKey2, txTo, nIn, nHashType)) + return false; + if (stackCopy.empty()) + return false; + return CastToBool(stackCopy.back()); + } + + return true; } @@ -1177,14 +1201,14 @@ bool SignSignature(const CKeyStore &keystore, const CTransaction& txFrom, CTrans // Test solution if (scriptPrereq.empty()) - if (!VerifyScript(txin.scriptSig, txout.scriptPubKey, txTo, nIn, 0)) + if (!VerifyScript(txin.scriptSig, txout.scriptPubKey, txTo, nIn, true, 0)) return false; return true; } -bool VerifySignature(const CTransaction& txFrom, const CTransaction& txTo, unsigned int nIn, int nHashType) +bool VerifySignature(const CTransaction& txFrom, const CTransaction& txTo, unsigned int nIn, bool fValidatePayToScriptHash, int nHashType) { assert(nIn < txTo.vin.size()); const CTxIn& txin = txTo.vin[nIn]; @@ -1195,8 +1219,65 @@ bool VerifySignature(const CTransaction& txFrom, const CTransaction& txTo, unsig if (txin.prevout.hash != txFrom.GetHash()) return false; - if (!VerifyScript(txin.scriptSig, txout.scriptPubKey, txTo, nIn, nHashType)) + if (!VerifyScript(txin.scriptSig, txout.scriptPubKey, txTo, nIn, fValidatePayToScriptHash, nHashType)) return false; return true; } + +int CScript::GetSigOpCount(bool fAccurate) const +{ + int n = 0; + const_iterator pc = begin(); + opcodetype lastOpcode = OP_INVALIDOPCODE; + while (pc < end()) + { + opcodetype opcode; + if (!GetOp(pc, opcode)) + break; + if (opcode == OP_CHECKSIG || opcode == OP_CHECKSIGVERIFY) + n++; + else if (opcode == OP_CHECKMULTISIG || opcode == OP_CHECKMULTISIGVERIFY) + { + if (fAccurate && lastOpcode >= OP_1 && lastOpcode <= OP_16) + n += DecodeOP_N(lastOpcode); + else + n += 20; + } + lastOpcode = opcode; + } + return n; +} + +int CScript::GetSigOpCount(const CScript& scriptSig) const +{ + if (!IsPayToScriptHash()) + return GetSigOpCount(true); + + // This is a pay-to-script-hash scriptPubKey; + // get the last item that the scriptSig + // pushes onto the stack: + const_iterator pc = scriptSig.begin(); + vector data; + while (pc < scriptSig.end()) + { + opcodetype opcode; + if (!scriptSig.GetOp(pc, opcode, data)) + return 0; + if (opcode > OP_16) + return 0; + } + + /// ... and return it's opcount: + CScript subscript(data.begin(), data.end()); + return subscript.GetSigOpCount(true); +} + +bool CScript::IsPayToScriptHash() const +{ + // Extra-fast test for pay-to-script-hash CScripts: + return (this->size() == 23 && + this->at(0) == OP_HASH160 && + this->at(1) == 0x14 && + this->at(22) == OP_EQUAL); +} diff --git a/src/script.h b/src/script.h index e61ea2fd7e..bc9fc9ab6f 100644 --- a/src/script.h +++ b/src/script.h @@ -574,6 +574,14 @@ public: return true; } + // Encode/decode small integers: + static int DecodeOP_N(opcodetype opcode) + { + if (opcode == OP_0) + return 0; + assert(opcode >= OP_1 && opcode <= OP_16); + return (int)opcode - (int)(OP_1 - 1); + } void FindAndDelete(const CScript& b) { @@ -588,25 +596,28 @@ public: } while (GetOp(pc, opcode)); } - - - int GetSigOpCount() const + int Find(opcodetype op) const { - int n = 0; - const_iterator pc = begin(); - while (pc < end()) - { - opcodetype opcode; - if (!GetOp(pc, opcode)) - break; - if (opcode == OP_CHECKSIG || opcode == OP_CHECKSIGVERIFY) - n++; - else if (opcode == OP_CHECKMULTISIG || opcode == OP_CHECKMULTISIGVERIFY) - n += 20; - } - return n; + int nFound = 0; + opcodetype opcode; + for (const_iterator pc = begin(); pc != end() && GetOp(pc, opcode);) + if (opcode == op) + ++nFound; + return nFound; } + // Pre-version-0.6, Bitcoin 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 + // ... OP_N CHECKMULTISIG ... + int GetSigOpCount(bool fAccurate=false) const; + + // Accurately count sigOps, including sigOps in + // pay-to-script-hash transactions: + int GetSigOpCount(const CScript& scriptSig) const; + + bool IsPayToScriptHash() const; bool IsPushOnly() const { @@ -698,6 +709,6 @@ bool IsStandard(const CScript& scriptPubKey); bool IsMine(const CKeyStore& keystore, const CScript& scriptPubKey); bool ExtractAddress(const CScript& scriptPubKey, const CKeyStore* pkeystore, CBitcoinAddress& addressRet); bool SignSignature(const CKeyStore& keystore, const CTransaction& txFrom, CTransaction& txTo, unsigned int nIn, int nHashType=SIGHASH_ALL, CScript scriptPrereq=CScript()); -bool VerifySignature(const CTransaction& txFrom, const CTransaction& txTo, unsigned int nIn, int nHashType=0); +bool VerifySignature(const CTransaction& txFrom, const CTransaction& txTo, unsigned int nIn, bool fValidatePayToScriptHash, int nHashType); #endif -- cgit v1.2.3 From fcc547346a9c9f66855b9c8584e405291c864287 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sat, 17 Mar 2012 19:54:22 -0400 Subject: Move QMAKE_LIBS_QT_ENTRY adjustment to bitcoin side of build It could just as well be on either part of the gitian build, but to safely put it on the Qt side would require bumping the filename, and every gitian user rebuilding it. v0.5.3.1 put it on the Bitcoin side, and this is easier to work with and keep safe, so I'm moving it. Use `qmake MINGW_THREAD_BUGFIX=0` to disable --- bitcoin-qt.pro | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index ff5df98247..ad6fb001ee 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -251,10 +251,20 @@ isEmpty(BOOST_INCLUDE_PATH) { macx:BOOST_INCLUDE_PATH = /opt/local/include } -windows:LIBS += -lmingwthrd -lws2_32 -windows:DEFINES += _MT WIN32 +windows:LIBS += -lws2_32 +windows:DEFINES += WIN32 windows:RC_FILE = src/qt/res/bitcoin-qt.rc -windows:QMAKE_LIBS_QT_ENTRY -= -lmingw32 + +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 + QMAKE_LIBS_QT_ENTRY = -lmingwthrd $$QMAKE_LIBS_QT_ENTRY +} macx:HEADERS += src/qt/macdockiconhandler.h macx:OBJECTIVE_SOURCES += src/qt/macdockiconhandler.mm -- cgit v1.2.3 From e364ad962f40afb091db5f03a0c48342063672a0 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 20 Mar 2012 13:45:45 -0400 Subject: Use last checkpoint instead of hard-coded 140,700. Fixes #913. --- src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 759e514ca8..c2decc339d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1508,10 +1508,11 @@ bool CBlock::AcceptBlock() return error("AcceptBlock() : AddToBlockIndex failed"); // Relay inventory, but don't relay old inventory during initial block download + int nBlockEstimate = Checkpoints::GetTotalBlocksEstimate(); if (hashBestChain == hash) CRITICAL_BLOCK(cs_vNodes) BOOST_FOREACH(CNode* pnode, vNodes) - if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : 140700)) + if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : nBlockEstimate)) pnode->PushInventory(CInv(MSG_BLOCK, hash)); return true; -- cgit v1.2.3 From 68d889db3458366a161b847f38346da0a650c1ed Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 22 Mar 2012 16:15:30 -0400 Subject: Fix grammatical errors in translation process documentation (partial of 2fac102) --- doc/translation_process.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/translation_process.md b/doc/translation_process.md index cf1000573f..603d557cf6 100644 --- a/doc/translation_process.md +++ b/doc/translation_process.md @@ -1,7 +1,7 @@ Translations ============ -The QT GUI can be easily be translated into other languages. Here's how we +The Qt GUI can be easily translated into other languages. Here's how we handle those translations. Files and Folders @@ -30,10 +30,10 @@ This directory contains all translations. Filenames must adhere to this format: #### Source file -`src/qt/locale/bitcoin_en.ts` is a treated in a special way. It is used as the -source for all other translations. Whenever a string in the code is change +`src/qt/locale/bitcoin_en.ts` is treated in a special way. It is used as the +source for all other translations. Whenever a string in the code is changed this file must be updated to reflect those changes. Usually, this can be -accomplished by running `lupdate` +accomplished by running `lupdate`. Syncing with transifex ---------------------- @@ -42,9 +42,9 @@ We are using http://transifex.net as a frontend for translating the client. https://www.transifex.net/projects/p/bitcoin/resource/tx/ -The "transifex client":http://help.transifex.net/features/client/index.html -will help with fetching new translations from transifex. - +The "transifex client" (see: http://help.transifex.net/features/client/) +will help with fetching new translations from transifex. Use the following +config to be able to connect with the client. ### .tx/config -- cgit v1.2.3 From 8ed1f7c1532fe3e67ca5f7fc7c1c920bbf297203 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sun, 19 Feb 2012 19:42:15 +0100 Subject: Report number of (dis)connected blocks in reorganization Also report old and new best, and fork point. --- src/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index c2decc339d..12703621e8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1311,6 +1311,9 @@ bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew) BOOST_FOREACH(CTransaction& tx, vDelete) tx.RemoveFromMemoryPool(); + printf("REORGANIZE: Disconnected %i blocks; %s..%s\n", vDisconnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexBest->GetBlockHash().ToString().substr(0,20).c_str()); + printf("REORGANIZE: Connected %i blocks; %s..%s\n", vConnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->GetBlockHash().ToString().substr(0,20).c_str()); + return true; } -- cgit v1.2.3 From b6751ed1b2a71e07cd3a8af4f02ce64fec39fe88 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Wed, 21 Mar 2012 13:15:27 +0100 Subject: More debug output for failed reorganizations --- src/main.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 12703621e8..5c1b138dc3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1251,6 +1251,9 @@ bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew) vConnect.push_back(pindex); reverse(vConnect.begin(), vConnect.end()); + printf("REORGANIZE: Disconnect %i blocks; %s..%s\n", vDisconnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexBest->GetBlockHash().ToString().substr(0,20).c_str()); + printf("REORGANIZE: Connect %i blocks; %s..%s\n", vConnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->GetBlockHash().ToString().substr(0,20).c_str()); + // Disconnect shorter branch vector vResurrect; BOOST_FOREACH(CBlockIndex* pindex, vDisconnect) @@ -1259,7 +1262,7 @@ bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew) if (!block.ReadFromDisk(pindex)) return error("Reorganize() : ReadFromDisk for disconnect failed"); if (!block.DisconnectBlock(txdb, pindex)) - return error("Reorganize() : DisconnectBlock failed"); + return error("Reorganize() : DisconnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str()); // Queue memory transactions to resurrect BOOST_FOREACH(const CTransaction& tx, block.vtx) @@ -1279,7 +1282,7 @@ bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew) { // Invalid block txdb.TxnAbort(); - return error("Reorganize() : ConnectBlock failed"); + return error("Reorganize() : ConnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str()); } // Queue memory transactions to delete @@ -1311,8 +1314,7 @@ bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew) BOOST_FOREACH(CTransaction& tx, vDelete) tx.RemoveFromMemoryPool(); - printf("REORGANIZE: Disconnected %i blocks; %s..%s\n", vDisconnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexBest->GetBlockHash().ToString().substr(0,20).c_str()); - printf("REORGANIZE: Connected %i blocks; %s..%s\n", vConnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->GetBlockHash().ToString().substr(0,20).c_str()); + printf("REORGANIZE: done\n"); return true; } -- cgit v1.2.3 From 04dc79f1cc19b48531cc9a16ca502eac34d7e95b Mon Sep 17 00:00:00 2001 From: Alistair Buxton Date: Sun, 18 Mar 2012 03:03:24 +0000 Subject: When disconnecting a node, clear the received buffer so that we do not process any already received messages. The primary reason to do this is if a node spams hundreds of messages and we ban them, we don't want to continue processing the rest of it. --- src/net.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/net.cpp b/src/net.cpp index a8d3d0b171..763e160edd 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -716,6 +716,7 @@ void CNode::CloseSocketDisconnect() printf("disconnecting node %s\n", addr.ToString().c_str()); closesocket(hSocket); hSocket = INVALID_SOCKET; + vRecv.clear(); } } -- cgit v1.2.3 From 1941765ae25d7223cdd4c44deb7474ae75dc48dc Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Wed, 21 Mar 2012 22:29:33 +0100 Subject: Fix warning about deprecated unescaped backslash --- bitcoin-qt.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index ad6fb001ee..2b6fc5710b 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -204,7 +204,7 @@ CODECFORTR = UTF-8 TRANSLATIONS = $$files(src/qt/locale/bitcoin_*.ts) isEmpty(QMAKE_LRELEASE) { - win32:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\lrelease.exe + win32:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease } isEmpty(TS_DIR):TS_DIR = src/qt/locale -- cgit v1.2.3 From fea0a27ddc30f2d51c386d268499d6c50363c202 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Thu, 22 Mar 2012 04:59:59 +0100 Subject: Check minversion before loading the rest of the wallet When a 0.6 wallet with compressed pubkeys is created, it writes a minversion record to prevent older clients from reading it. If the 0.5 loading it sees a key record before seeing the minversion record however, it will fail with DB_CORRUPT instead of DB_TOO_NEW. --- src/db.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/db.cpp b/src/db.cpp index 7f9439bf74..bf335e7e3f 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -795,6 +795,13 @@ int CWalletDB::LoadWallet(CWallet* pwallet) //// todo: shouldn't we catch exceptions and try to recover and continue? CRITICAL_BLOCK(pwallet->cs_wallet) { + int nMinVersion = 0; + if (Read((string)"minversion", nMinVersion)) + { + if (nMinVersion > VERSION) + return DB_TOO_NEW; + } + // Get cursor Dbc* pcursor = GetCursor(); if (!pcursor) @@ -980,13 +987,6 @@ int CWalletDB::LoadWallet(CWallet* pwallet) if (strKey == "addrProxy") ssValue >> addrProxy; if (fHaveUPnP && strKey == "fUseUPnP") ssValue >> fUseUPnP; } - else if (strType == "minversion") - { - int nMinVersion = 0; - ssValue >> nMinVersion; - if (nMinVersion > VERSION) - return DB_TOO_NEW; - } } pcursor->close(); } -- cgit v1.2.3 From 9504e415cbeb128331fa4715bcccfaad6a443731 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Mon, 26 Mar 2012 12:33:35 -0400 Subject: Remove wxWidgets .exe and locales during setup --- share/setup.nsi | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/share/setup.nsi b/share/setup.nsi index c574269bc4..55390f3521 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -75,6 +75,10 @@ Section -Main SEC0000 File /r /x *.exe /x *.o ../src\*.* SetOutPath $INSTDIR WriteRegStr HKCU "${REGKEY}\Components" Main 1 + + # Remove old wxwidgets-based-bitcoin executable and locales: + Delete /REBOOTOK $INSTDIR\bitcoin.exe + RMDir /r /REBOOTOK $INSTDIR\locale SectionEnd Section -post SEC0001 -- cgit v1.2.3 From ddd0d9ae54e52a299589c3655b5b2afc7c2bfd5e Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 27 Mar 2012 20:03:28 -0400 Subject: Minimal support for compressed-key signature recovery (for verifymessage) Upstream commits: 11529c6e4f7288d8a64c488a726ee3821c7adefe d4d9c734c315e99136fe245c5733ca75cab9f8bf --- src/key.h | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/key.h b/src/key.h index df5cfeb32c..9673b2a0bc 100644 --- a/src/key.h +++ b/src/key.h @@ -169,6 +169,11 @@ protected: EC_KEY* pkey; bool fSet; + void SetCompressedPubKey() + { + EC_KEY_set_conv_form(pkey, POINT_CONVERSION_COMPRESSED); + } + public: CKey() { @@ -346,7 +351,8 @@ public: { if (vchSig.size() != 65) return false; - if (vchSig[0]<27 || vchSig[0]>=31) + int nV = vchSig[0]; + if (nV<27 || nV>=35) return false; ECDSA_SIG *sig = ECDSA_SIG_new(); BN_bin2bn(&vchSig[1],32,sig->r); @@ -354,7 +360,12 @@ public: EC_KEY_free(pkey); pkey = EC_KEY_new_by_curve_name(NID_secp256k1); - if (ECDSA_SIG_recover_key_GFp(pkey, sig, (unsigned char*)&hash, sizeof(hash), vchSig[0] - 27, 0) == 1) + if (nV >= 31) + { + SetCompressedPubKey(); + nV -= 4; + } + if (ECDSA_SIG_recover_key_GFp(pkey, sig, (unsigned char*)&hash, sizeof(hash), nV - 27, 0) == 1) { fSet = true; ECDSA_SIG_free(sig); -- cgit v1.2.3 From 60f89779a3586f8afae47bb8e9c374cd5fe7f8b6 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 25 Feb 2012 19:02:30 +0100 Subject: Do not invoke anti-DoS system for invalid BIP16 transactions Doing so would allow an attack on old nodes, which would relay a standard transaction spending a BIP16 output in an invalid way, until reaching a new node, which will disconnect their peer. Reported by makomk on IRC. --- src/main.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 5c1b138dc3..4316d242f9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1028,7 +1028,15 @@ bool CTransaction::ConnectInputs(MapPrevTx inputs, // Verify signature if (!VerifySignature(txPrev, *this, i, fStrictPayToScriptHash, 0)) + { + // only during transition phase for P2SH: do not invoke (external) + // anti-DoS code for potentially old clients relaying bad P2SH + // transactions + if (fStrictPayToScriptHash && VerifySignature(txPrev, *this, i, false, 0)) + return error("ConnectInputs() : %s P2SH VerifySignature failed", GetHash().ToString().substr(0,10).c_str()); + return error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str()); + } // Mark outpoints as spent txindex.vSpent[prevout.n] = posThisTx; -- cgit v1.2.3 From d15180297fb68dbc423054bbfcd421bc02b7caef Mon Sep 17 00:00:00 2001 From: Vegard Nossum Date: Sun, 31 Jul 2011 20:00:38 +0200 Subject: Fix testing setup There were some problems with the existing testing setup: - Makefile rules for test-file compilation used CFLAGS instead of CXXFLAGS in makefile.unix --- src/makefile.unix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/makefile.unix b/src/makefile.unix index a2cbc7c77e..6629067d8a 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -133,7 +133,7 @@ bitcoind: $(OBJS:obj/%=obj/nogui/%) $(CXX) $(CXXFLAGS) -o $@ $^ $(LIBS) obj/test/test_bitcoin.o: $(wildcard test/*.cpp) $(HEADERS) - $(CXX) -c $(CFLAGS) -o $@ test/test_bitcoin.cpp + $(CXX) -c $(CXXFLAGS) -o $@ test/test_bitcoin.cpp test_bitcoin: obj/test/test_bitcoin.o $(filter-out obj/nogui/init.o,$(OBJS:obj/%=obj/nogui/%)) $(CXX) $(CXXFLAGS) -o $@ $(LIBPATHS) $^ -Wl,-Bstatic -lboost_unit_test_framework $(LIBS) -- cgit v1.2.3 From d53fbb4a53f4431291ba5b93f0fc1e85522e42de Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Wed, 4 Apr 2012 09:35:22 -0400 Subject: Fix script tests for P2SH Upstream: 922e8e2929a2e78270868385aa46f96002fbcff3 --- src/test/script_tests.cpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/test/script_tests.cpp b/src/test/script_tests.cpp index 13feb86b97..541f5f0c49 100644 --- a/src/test/script_tests.cpp +++ b/src/test/script_tests.cpp @@ -7,8 +7,8 @@ using namespace std; extern uint256 SignatureHash(CScript scriptCode, const CTransaction& txTo, unsigned int nIn, int nHashType); -extern bool VerifyScript(const CScript& scriptSig, const CScript& scriptPubKey, const CTransaction& txTo, unsigned int nIn, int nHashType); -extern bool VerifySignature(const CTransaction& txFrom, const CTransaction& txTo, unsigned int nIn, int nHashType); +extern bool VerifyScript(const CScript& scriptSig, const CScript& scriptPubKey, const CTransaction& txTo, unsigned int nIn, + bool fValidatePayToScriptHash, int nHashType); BOOST_AUTO_TEST_SUITE(script_tests) @@ -91,15 +91,15 @@ BOOST_AUTO_TEST_CASE(script_CHECKMULTISIG12) txTo12.vout[0].nValue = 1; CScript goodsig1 = sign_multisig(scriptPubKey12, key1, txTo12); - BOOST_CHECK(VerifyScript(goodsig1, scriptPubKey12, txTo12, 0, 0)); + BOOST_CHECK(VerifyScript(goodsig1, scriptPubKey12, txTo12, 0, true, 0)); txTo12.vout[0].nValue = 2; - BOOST_CHECK(!VerifyScript(goodsig1, scriptPubKey12, txTo12, 0, 0)); + BOOST_CHECK(!VerifyScript(goodsig1, scriptPubKey12, txTo12, 0, true, 0)); CScript goodsig2 = sign_multisig(scriptPubKey12, key2, txTo12); - BOOST_CHECK(VerifyScript(goodsig2, scriptPubKey12, txTo12, 0, 0)); + BOOST_CHECK(VerifyScript(goodsig2, scriptPubKey12, txTo12, 0, true, 0)); CScript badsig1 = sign_multisig(scriptPubKey12, key3, txTo12); - BOOST_CHECK(!VerifyScript(badsig1, scriptPubKey12, txTo12, 0, 0)); + BOOST_CHECK(!VerifyScript(badsig1, scriptPubKey12, txTo12, 0, true, 0)); } BOOST_AUTO_TEST_CASE(script_CHECKMULTISIG23) @@ -127,46 +127,46 @@ BOOST_AUTO_TEST_CASE(script_CHECKMULTISIG23) std::vector keys; keys.push_back(key1); keys.push_back(key2); CScript goodsig1 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(VerifyScript(goodsig1, scriptPubKey23, txTo23, 0, 0)); + BOOST_CHECK(VerifyScript(goodsig1, scriptPubKey23, txTo23, 0, true, 0)); keys.clear(); keys.push_back(key1); keys.push_back(key3); CScript goodsig2 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(VerifyScript(goodsig2, scriptPubKey23, txTo23, 0, 0)); + BOOST_CHECK(VerifyScript(goodsig2, scriptPubKey23, txTo23, 0, true, 0)); keys.clear(); keys.push_back(key2); keys.push_back(key3); CScript goodsig3 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(VerifyScript(goodsig3, scriptPubKey23, txTo23, 0, 0)); + BOOST_CHECK(VerifyScript(goodsig3, scriptPubKey23, txTo23, 0, true, 0)); keys.clear(); keys.push_back(key2); keys.push_back(key2); // Can't re-use sig CScript badsig1 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(!VerifyScript(badsig1, scriptPubKey23, txTo23, 0, 0)); + BOOST_CHECK(!VerifyScript(badsig1, scriptPubKey23, txTo23, 0, true, 0)); keys.clear(); keys.push_back(key2); keys.push_back(key1); // sigs must be in correct order CScript badsig2 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(!VerifyScript(badsig2, scriptPubKey23, txTo23, 0, 0)); + BOOST_CHECK(!VerifyScript(badsig2, scriptPubKey23, txTo23, 0, true, 0)); keys.clear(); keys.push_back(key3); keys.push_back(key2); // sigs must be in correct order CScript badsig3 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(!VerifyScript(badsig3, scriptPubKey23, txTo23, 0, 0)); + BOOST_CHECK(!VerifyScript(badsig3, scriptPubKey23, txTo23, 0, true, 0)); keys.clear(); keys.push_back(key4); keys.push_back(key2); // sigs must match pubkeys CScript badsig4 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(!VerifyScript(badsig4, scriptPubKey23, txTo23, 0, 0)); + BOOST_CHECK(!VerifyScript(badsig4, scriptPubKey23, txTo23, 0, true, 0)); keys.clear(); keys.push_back(key1); keys.push_back(key4); // sigs must match pubkeys CScript badsig5 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(!VerifyScript(badsig5, scriptPubKey23, txTo23, 0, 0)); + BOOST_CHECK(!VerifyScript(badsig5, scriptPubKey23, txTo23, 0, true, 0)); keys.clear(); // Must have signatures CScript badsig6 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(!VerifyScript(badsig6, scriptPubKey23, txTo23, 0, 0)); + BOOST_CHECK(!VerifyScript(badsig6, scriptPubKey23, txTo23, 0, true, 0)); } -- cgit v1.2.3 From 2f98e8c1a4b6b0da41399791b3161bcd8c032454 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Mon, 26 Mar 2012 22:12:25 +0200 Subject: Updated my GPG key --- contrib/gitian-downloader/bitcoin-download-config | 2 +- contrib/gitian-downloader/sipa-key.pgp | Bin 13642 -> 108922 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/gitian-downloader/bitcoin-download-config b/contrib/gitian-downloader/bitcoin-download-config index d21bb07808..991971807f 100644 --- a/contrib/gitian-downloader/bitcoin-download-config +++ b/contrib/gitian-downloader/bitcoin-download-config @@ -17,7 +17,7 @@ signers: key: devrandom D762373D24904A3E42F33B08B9A408E71DAAC974: weight: 40 - name: Sipa + name: "Pieter Wuille" key: sipa 77E72E69DA7EE0A148C06B21B34821D4944DE5F7: weight: 40 diff --git a/contrib/gitian-downloader/sipa-key.pgp b/contrib/gitian-downloader/sipa-key.pgp index 086c9eb42e..a52a5deb1b 100644 Binary files a/contrib/gitian-downloader/sipa-key.pgp and b/contrib/gitian-downloader/sipa-key.pgp differ -- cgit v1.2.3 From 3f47eb4a9a42d97a9a60d3b3351b0a353892ee44 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Mon, 26 Mar 2012 22:12:25 +0200 Subject: Updated my GPG key --- contrib/gitian-downloader/linux-download-config | 2 +- contrib/gitian-downloader/sipa-key.pgp | Bin 13642 -> 108922 bytes contrib/gitian-downloader/win32-download-config | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/gitian-downloader/linux-download-config b/contrib/gitian-downloader/linux-download-config index d21bb07808..991971807f 100644 --- a/contrib/gitian-downloader/linux-download-config +++ b/contrib/gitian-downloader/linux-download-config @@ -17,7 +17,7 @@ signers: key: devrandom D762373D24904A3E42F33B08B9A408E71DAAC974: weight: 40 - name: Sipa + name: "Pieter Wuille" key: sipa 77E72E69DA7EE0A148C06B21B34821D4944DE5F7: weight: 40 diff --git a/contrib/gitian-downloader/sipa-key.pgp b/contrib/gitian-downloader/sipa-key.pgp index 086c9eb42e..a52a5deb1b 100644 Binary files a/contrib/gitian-downloader/sipa-key.pgp and b/contrib/gitian-downloader/sipa-key.pgp differ diff --git a/contrib/gitian-downloader/win32-download-config b/contrib/gitian-downloader/win32-download-config index c0de21c48f..0a7362a37d 100644 --- a/contrib/gitian-downloader/win32-download-config +++ b/contrib/gitian-downloader/win32-download-config @@ -17,7 +17,7 @@ signers: key: devrandom D762373D24904A3E42F33B08B9A408E71DAAC974: weight: 40 - name: Sipa + name: "Pieter Wuille" key: sipa 77E72E69DA7EE0A148C06B21B34821D4944DE5F7: weight: 40 -- cgit v1.2.3 From 680667784103ad01cd0ae7e9c82a1e8e1458c793 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Tue, 27 Mar 2012 23:15:05 +0200 Subject: removed an ugly line break in a transaction tooltip for case TransactionStatus::Mature --- src/qt/transactiontablemodel.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index b863546691..480d4ac25e 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -288,20 +288,19 @@ QString TransactionTableModel::formatTxStatus(const TransactionRecord *wtx) cons } if(wtx->type == TransactionRecord::Generated) { - status += "\n"; switch(wtx->status.maturity) { case TransactionStatus::Immature: - status += tr("Mined balance will be available in %n more blocks", "", + status += "\n" + tr("Mined balance will be available in %n more blocks", "", wtx->status.matures_in); break; case TransactionStatus::Mature: break; case TransactionStatus::MaturesWarning: - status += tr("This block was not received by any other nodes and will probably not be accepted!"); + status += "\n" + tr("This block was not received by any other nodes and will probably not be accepted!"); break; case TransactionStatus::NotAccepted: - status += tr("Generated but not accepted"); + status += "\n" + tr("Generated but not accepted"); break; } } -- cgit v1.2.3 From 8fae3dae11db28dc58a4a7a1b697a6b78cbf62c7 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 12 Mar 2012 00:45:08 -0400 Subject: Add Luke-Jr's PGP key to gitian-downloader --- contrib/gitian-downloader/bitcoin-download-config | 4 ++++ contrib/gitian-downloader/luke-jr-key.pgp | Bin 0 -> 5467 bytes 2 files changed, 4 insertions(+) create mode 100644 contrib/gitian-downloader/luke-jr-key.pgp diff --git a/contrib/gitian-downloader/bitcoin-download-config b/contrib/gitian-downloader/bitcoin-download-config index 991971807f..347670e586 100644 --- a/contrib/gitian-downloader/bitcoin-download-config +++ b/contrib/gitian-downloader/bitcoin-download-config @@ -15,6 +15,10 @@ signers: weight: 40 name: Devrandom key: devrandom + E463A93F5F3117EEDE6C7316BD02942421F4889F: + weight: 40 + name: Luke-Jr + key: luke-jr D762373D24904A3E42F33B08B9A408E71DAAC974: weight: 40 name: "Pieter Wuille" diff --git a/contrib/gitian-downloader/luke-jr-key.pgp b/contrib/gitian-downloader/luke-jr-key.pgp new file mode 100644 index 0000000000..c40917d78c Binary files /dev/null and b/contrib/gitian-downloader/luke-jr-key.pgp differ -- cgit v1.2.3 From 724c65c1f8b34245eee6dbd761e1956a7b0d9c53 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 12 Mar 2012 00:45:08 -0400 Subject: Add Luke-Jr's PGP key to gitian-downloader --- contrib/gitian-downloader/linux-download-config | 4 ++++ contrib/gitian-downloader/luke-jr-key.pgp | Bin 0 -> 5467 bytes contrib/gitian-downloader/win32-download-config | 4 ++++ 3 files changed, 8 insertions(+) create mode 100644 contrib/gitian-downloader/luke-jr-key.pgp diff --git a/contrib/gitian-downloader/linux-download-config b/contrib/gitian-downloader/linux-download-config index 991971807f..347670e586 100644 --- a/contrib/gitian-downloader/linux-download-config +++ b/contrib/gitian-downloader/linux-download-config @@ -15,6 +15,10 @@ signers: weight: 40 name: Devrandom key: devrandom + E463A93F5F3117EEDE6C7316BD02942421F4889F: + weight: 40 + name: Luke-Jr + key: luke-jr D762373D24904A3E42F33B08B9A408E71DAAC974: weight: 40 name: "Pieter Wuille" diff --git a/contrib/gitian-downloader/luke-jr-key.pgp b/contrib/gitian-downloader/luke-jr-key.pgp new file mode 100644 index 0000000000..c40917d78c Binary files /dev/null and b/contrib/gitian-downloader/luke-jr-key.pgp differ diff --git a/contrib/gitian-downloader/win32-download-config b/contrib/gitian-downloader/win32-download-config index 0a7362a37d..84ad989ada 100644 --- a/contrib/gitian-downloader/win32-download-config +++ b/contrib/gitian-downloader/win32-download-config @@ -15,6 +15,10 @@ signers: weight: 40 name: Devrandom key: devrandom + E463A93F5F3117EEDE6C7316BD02942421F4889F: + weight: 40 + name: Luke-Jr + key: luke-jr D762373D24904A3E42F33B08B9A408E71DAAC974: weight: 40 name: "Pieter Wuille" -- cgit v1.2.3 From 91d7e847e051c9aa8be87a72d2763872b6b4f385 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sat, 31 Mar 2012 15:08:25 +0200 Subject: Use a messagebox to display the error when -server is provided without providing a rpc password (plus part of 7cfbe1fee465e82ddbdc8ed17dfcce791bd765f5) --- src/bitcoinrpc.cpp | 5 +++-- src/noui.h | 2 ++ src/qt/bitcoin.cpp | 9 ++++++++- src/qt/bitcoingui.cpp | 9 +++++++-- src/qt/bitcoingui.h | 2 +- src/qtui.h | 2 ++ 6 files changed, 23 insertions(+), 6 deletions(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 1f57bf9cd0..a4a1fd4d6b 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -2174,7 +2174,7 @@ void ThreadRPCServer2(void* parg) strWhatAmI = strprintf(_("To use the %s option"), "\"-server\""); else if (mapArgs.count("-daemon")) strWhatAmI = strprintf(_("To use the %s option"), "\"-daemon\""); - PrintConsole( + ThreadSafeMessageBox(strprintf( _("Error: %s, you must set a rpcpassword in the configuration file:\n %s\n" "It is recommended you use the following random password:\n" "rpcuser=bitcoinrpc\n" @@ -2183,7 +2183,8 @@ void ThreadRPCServer2(void* parg) "If the file does not exist, create it with owner-readable-only file permissions.\n"), strWhatAmI.c_str(), GetConfigFile().c_str(), - EncodeBase58(&rand_pwd[0],&rand_pwd[0]+32).c_str()); + EncodeBase58(&rand_pwd[0],&rand_pwd[0]+32).c_str()), + _("Error"), wxOK | wxMODAL); #ifndef QT_GUI CreateThread(Shutdown, NULL); #endif diff --git a/src/noui.h b/src/noui.h index 754c2225fc..0bbf45a72a 100644 --- a/src/noui.h +++ b/src/noui.h @@ -36,6 +36,8 @@ typedef void wxWindow; #define wxHELP 0x00008000 #define wxMORE 0x00010000 #define wxSETUP 0x00020000 +// Force blocking, modal message box dialog (not just notification) +#define wxMODAL 0x00040000 inline int MyMessageBox(const std::string& message, const std::string& caption="Message", int style=wxOK, wxWindow* parent=NULL, int x=-1, int y=-1) { diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 54e6bb34c2..311fab3c9b 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -41,12 +41,19 @@ int MyMessageBox(const std::string& message, const std::string& caption, int sty int ThreadSafeMessageBox(const std::string& message, const std::string& caption, int style, wxWindow* parent, int x, int y) { + bool modal = style & wxMODAL; + + if (modal) + while (!guiref) + sleep(1); + // Message from network thread if(guiref) { QMetaObject::invokeMethod(guiref, "error", Qt::QueuedConnection, Q_ARG(QString, QString::fromStdString(caption)), - Q_ARG(QString, QString::fromStdString(message))); + Q_ARG(QString, QString::fromStdString(message)), + Q_ARG(bool, modal)); } else { diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 78becafe5b..ed891f369d 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -516,10 +516,15 @@ void BitcoinGUI::refreshStatusBar() setNumBlocks(clientModel->getNumBlocks()); } -void BitcoinGUI::error(const QString &title, const QString &message) +void BitcoinGUI::error(const QString &title, const QString &message, bool modal) { // Report errors from network/worker thread - notificator->notify(Notificator::Critical, title, message); + if (modal) + { + QMessageBox::critical(this, title, message, QMessageBox::Ok, QMessageBox::Ok); + } else { + notificator->notify(Notificator::Critical, title, message); + } } void BitcoinGUI::changeEvent(QEvent *e) diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 9b672ee809..efe3e9cc6d 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -100,7 +100,7 @@ public slots: /** Set the status bar text if there are any warnings (removes sync progress bar if applicable) */ void refreshStatusBar(); - void error(const QString &title, const QString &message); + void error(const QString &title, const QString &message, bool modal = false); /* It is currently not possible to pass a return value to another thread through BlockingQueuedConnection, so use an indirected pointer. http://bugreports.qt.nokia.com/browse/QTBUG-10440 diff --git a/src/qtui.h b/src/qtui.h index 17fc44e94b..193f849249 100644 --- a/src/qtui.h +++ b/src/qtui.h @@ -35,6 +35,8 @@ typedef void wxWindow; #define wxHELP 0x00008000 #define wxMORE 0x00010000 #define wxSETUP 0x00020000 +// Force blocking, modal message box dialog (not just notification) +#define wxMODAL 0x00040000 extern int MyMessageBox(const std::string& message, const std::string& caption="Message", int style=wxOK, wxWindow* parent=NULL, int x=-1, int y=-1); #define wxMessageBox MyMessageBox -- cgit v1.2.3 From bf754cfd01a4441f4e2c47387e26e6a3a1bff70f Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 16 Dec 2011 15:04:43 -0500 Subject: Add laanwj to gitian download scripts. --- contrib/gitian-downloader/bitcoin-download-config | 4 ++++ contrib/gitian-downloader/laanwj-key.pgp | 28 +++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 contrib/gitian-downloader/laanwj-key.pgp diff --git a/contrib/gitian-downloader/bitcoin-download-config b/contrib/gitian-downloader/bitcoin-download-config index 347670e586..88e48e2c23 100644 --- a/contrib/gitian-downloader/bitcoin-download-config +++ b/contrib/gitian-downloader/bitcoin-download-config @@ -31,4 +31,8 @@ signers: weight: 40 name: "Gavin Andresen" key: gavinandresen + 71A3B16735405025D447E8F274810B012346C9A6 + weight: 40 + name: "Wladimir J. van der Laan" + key: laanwj minimum_weight: 120 diff --git a/contrib/gitian-downloader/laanwj-key.pgp b/contrib/gitian-downloader/laanwj-key.pgp new file mode 100644 index 0000000000..559295109d --- /dev/null +++ b/contrib/gitian-downloader/laanwj-key.pgp @@ -0,0 +1,28 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: SKS 1.1.0 + +mQENBE5UtMEBCADOUz2i9l/D8xYINCmfUDnxi+DXvX5LmZ39ZdvsoE+ugO0SRRGdIHEFO2is +0xezX50wXu9aneb+tEqM0BuiLo6VxaXpxrkxHpr6c4jf37SkE/H0qsi/txEUp7337y3+4HMG +lUjiuh802I72p1qusjsKBnmnnR0rwNouTcoDmGUDh7jpKCtzFv+2TR2dRthJn7vmmjq3+bG6 +PYfqoFY1yHrAGT1lrDBULZsQ/NBLI2+J4oo2LYv3GCq8GNnzrovqvTvui50VSROhLrOe58o2 +shE+sjQShAy5wYkPt1R1fQnpfx+5vf+TPnkxVwRb3h5GhCp0YL8XC/BXsd5vM4KlVH2rABEB +AAG0K1dsYWRpbWlyIEouIHZhbiBkZXIgTGFhbiA8bGFhbndqQGdtYWlsLmNvbT6JATgEEwEC +ACIFAk5UtMECGwMGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJEHSBCwEjRsmmy6YIAK09 +buNXyYQrJBsX16sXxEhx5QPKyF3uHJDFJv66SdnpvIkNoznsaPiRJkbTANop93FZmaGa6wVn +zGDiz7jPA8Dpxx5aAYPhIT+zPJAdXWM3wJ/Gio9besRNzniai8Lwi5MZ9R/5yFGBobm6/AcN +4sUoqA3NSV2U3I29R0Vwlzo8GVtmyi9ENSi6Oo7AcXNTRt69cxW4nAHkB+amwwDJlcAb31ex +bogYXPhScwqQZixRr+JBkKxBjkTXXnQypT4KI5SegYwQVYfyiZmDP7UHKe/u6pSKKbVphLg8 +xLB5spcXse8/a2+onrbNlw6y8TXiJ++Z54PE7zztWTXf2huakeG5AQ0ETlS0wQEIAMNO3OkP +xoPRKWzBLcI7JRITAW+HNaLTq3uN2+4WxA57DEjbL9EDoAv+7wTkDAL40f0T+xiu6GJcLFjw +GJZu/tYu7+mErHjrdo+K4suCQt7w5EXCBvOLjhW4tyYMzNx8hP+oqzOW9iEC+6VV91+DYeqt +EkJuyVXOI4vzBlTw8uGow8aMMsCq8XVvKUZFTPsjGl197Q5B3A+ZOFCR8xqiqdPjuz6MglVV +oFdDNu3EZn8zkGsQlovXoE9ndVeVzx/XMNmsxFaMYsReUs253RIf1FEfgExID0fg2OnyLCjS +2iFW1RgajS+/saIkKl+N1iuMzJA7wMAM0plhRueOG0MtZSsAEQEAAYkBHwQYAQIACQUCTlS0 +wQIbDAAKCRB0gQsBI0bJpmsDB/4waenn2CvSHXyomykfpwf5lMte1V5LvH3z5R2LY+1NopRv +LSz3iC39x69XWiTbhywDfgafnGPW4pWBOff2/bu5/A6z1Hnan1vyrRRD/hx1uMJ7S6q+bIvZ +iVIg1p0jH6tdIIhwX3cydhdRZHo7e9oSMgOUWsr6Ar59NRo9CENwGPE4U61HXfOnxWdrFWoA +XdwZczBeLxmUy6Vo6sKqv+gE4bqrtAM0sY/MsQ9cU95x+52ox/sq44lQMwd3ZBYUP7B1qbHI +hZSZuch6MLi5scLPeau0ZvCaljiaMeivP5+x0gWPRs0kI+9sZxInbqvrsJ6oOBJM3xYGhtn1 +zZ7qmZR7 +=si/k +-----END PGP PUBLIC KEY BLOCK----- -- cgit v1.2.3 From d02833c76ab7b26ed4fa27fdad8f1d6bcd1d801c Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 16 Dec 2011 15:04:43 -0500 Subject: Add laanwj to gitian download scripts. --- contrib/gitian-downloader/laanwj-key.pgp | 28 +++++++++++++++++++++++++ contrib/gitian-downloader/linux-download-config | 4 ++++ contrib/gitian-downloader/win32-download-config | 4 ++++ 3 files changed, 36 insertions(+) create mode 100644 contrib/gitian-downloader/laanwj-key.pgp diff --git a/contrib/gitian-downloader/laanwj-key.pgp b/contrib/gitian-downloader/laanwj-key.pgp new file mode 100644 index 0000000000..559295109d --- /dev/null +++ b/contrib/gitian-downloader/laanwj-key.pgp @@ -0,0 +1,28 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: SKS 1.1.0 + +mQENBE5UtMEBCADOUz2i9l/D8xYINCmfUDnxi+DXvX5LmZ39ZdvsoE+ugO0SRRGdIHEFO2is +0xezX50wXu9aneb+tEqM0BuiLo6VxaXpxrkxHpr6c4jf37SkE/H0qsi/txEUp7337y3+4HMG +lUjiuh802I72p1qusjsKBnmnnR0rwNouTcoDmGUDh7jpKCtzFv+2TR2dRthJn7vmmjq3+bG6 +PYfqoFY1yHrAGT1lrDBULZsQ/NBLI2+J4oo2LYv3GCq8GNnzrovqvTvui50VSROhLrOe58o2 +shE+sjQShAy5wYkPt1R1fQnpfx+5vf+TPnkxVwRb3h5GhCp0YL8XC/BXsd5vM4KlVH2rABEB +AAG0K1dsYWRpbWlyIEouIHZhbiBkZXIgTGFhbiA8bGFhbndqQGdtYWlsLmNvbT6JATgEEwEC +ACIFAk5UtMECGwMGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJEHSBCwEjRsmmy6YIAK09 +buNXyYQrJBsX16sXxEhx5QPKyF3uHJDFJv66SdnpvIkNoznsaPiRJkbTANop93FZmaGa6wVn +zGDiz7jPA8Dpxx5aAYPhIT+zPJAdXWM3wJ/Gio9besRNzniai8Lwi5MZ9R/5yFGBobm6/AcN +4sUoqA3NSV2U3I29R0Vwlzo8GVtmyi9ENSi6Oo7AcXNTRt69cxW4nAHkB+amwwDJlcAb31ex +bogYXPhScwqQZixRr+JBkKxBjkTXXnQypT4KI5SegYwQVYfyiZmDP7UHKe/u6pSKKbVphLg8 +xLB5spcXse8/a2+onrbNlw6y8TXiJ++Z54PE7zztWTXf2huakeG5AQ0ETlS0wQEIAMNO3OkP +xoPRKWzBLcI7JRITAW+HNaLTq3uN2+4WxA57DEjbL9EDoAv+7wTkDAL40f0T+xiu6GJcLFjw +GJZu/tYu7+mErHjrdo+K4suCQt7w5EXCBvOLjhW4tyYMzNx8hP+oqzOW9iEC+6VV91+DYeqt +EkJuyVXOI4vzBlTw8uGow8aMMsCq8XVvKUZFTPsjGl197Q5B3A+ZOFCR8xqiqdPjuz6MglVV +oFdDNu3EZn8zkGsQlovXoE9ndVeVzx/XMNmsxFaMYsReUs253RIf1FEfgExID0fg2OnyLCjS +2iFW1RgajS+/saIkKl+N1iuMzJA7wMAM0plhRueOG0MtZSsAEQEAAYkBHwQYAQIACQUCTlS0 +wQIbDAAKCRB0gQsBI0bJpmsDB/4waenn2CvSHXyomykfpwf5lMte1V5LvH3z5R2LY+1NopRv +LSz3iC39x69XWiTbhywDfgafnGPW4pWBOff2/bu5/A6z1Hnan1vyrRRD/hx1uMJ7S6q+bIvZ +iVIg1p0jH6tdIIhwX3cydhdRZHo7e9oSMgOUWsr6Ar59NRo9CENwGPE4U61HXfOnxWdrFWoA +XdwZczBeLxmUy6Vo6sKqv+gE4bqrtAM0sY/MsQ9cU95x+52ox/sq44lQMwd3ZBYUP7B1qbHI +hZSZuch6MLi5scLPeau0ZvCaljiaMeivP5+x0gWPRs0kI+9sZxInbqvrsJ6oOBJM3xYGhtn1 +zZ7qmZR7 +=si/k +-----END PGP PUBLIC KEY BLOCK----- diff --git a/contrib/gitian-downloader/linux-download-config b/contrib/gitian-downloader/linux-download-config index 347670e586..88e48e2c23 100644 --- a/contrib/gitian-downloader/linux-download-config +++ b/contrib/gitian-downloader/linux-download-config @@ -31,4 +31,8 @@ signers: weight: 40 name: "Gavin Andresen" key: gavinandresen + 71A3B16735405025D447E8F274810B012346C9A6 + weight: 40 + name: "Wladimir J. van der Laan" + key: laanwj minimum_weight: 120 diff --git a/contrib/gitian-downloader/win32-download-config b/contrib/gitian-downloader/win32-download-config index 84ad989ada..595626f28f 100644 --- a/contrib/gitian-downloader/win32-download-config +++ b/contrib/gitian-downloader/win32-download-config @@ -31,4 +31,8 @@ signers: weight: 40 name: "Gavin Andresen" key: gavinandresen + 71A3B16735405025D447E8F274810B012346C9A6 + weight: 40 + name: "Wladimir J. van der Laan" + key: laanwj minimum_weight: 120 -- cgit v1.2.3 From 53e596512c62f3a874e616e80375f644c05ab42c Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Mon, 2 Apr 2012 20:34:17 +0200 Subject: Increase time ago of last block for "up to date" status from 30 to 90 minutes It was too hyperactive. gmaxwell: I mean that right now when the block gap goes over an hour it starts showing synchronizing. Increasing that to 90 minutes or so would make it only happen about 6.4 times per year --- src/qt/bitcoingui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index ed891f369d..be60838171 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -480,7 +480,7 @@ void BitcoinGUI::setNumBlocks(int count) } // Set icon state: spinning if catching up, tick otherwise - if(secs < 30*60) + if(secs < 90*60) { tooltip = tr("Up to date") + QString(".\n") + tooltip; labelBlocksIcon->setPixmap(QIcon(":/icons/synced").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); -- cgit v1.2.3 From c7057326eaba2d50410016a9825f0052dd0248b5 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Thu, 5 Apr 2012 01:02:49 +0200 Subject: Verify status of encrypt/decrypt calls to detect failed padding --- src/crypter.cpp | 24 ++++++++++++++---------- src/keystore.cpp | 4 ++++ 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/src/crypter.cpp b/src/crypter.cpp index 9a8e6ca89a..5b7bfec06a 100644 --- a/src/crypter.cpp +++ b/src/crypter.cpp @@ -73,14 +73,16 @@ bool CCrypter::Encrypt(const CKeyingMaterial& vchPlaintext, std::vector& vchCiphertext, CKeyingM EVP_CIPHER_CTX ctx; - EVP_CIPHER_CTX_init(&ctx); - EVP_DecryptInit_ex(&ctx, EVP_aes_256_cbc(), NULL, chKey, chIV); - - EVP_DecryptUpdate(&ctx, &vchPlaintext[0], &nPLen, &vchCiphertext[0], nLen); - EVP_DecryptFinal_ex(&ctx, (&vchPlaintext[0])+nPLen, &nFLen); + bool fOk = true; + EVP_CIPHER_CTX_init(&ctx); + if (fOk) fOk = EVP_DecryptInit_ex(&ctx, EVP_aes_256_cbc(), NULL, chKey, chIV); + if (fOk) fOk = EVP_DecryptUpdate(&ctx, &vchPlaintext[0], &nPLen, &vchCiphertext[0], nLen); + if (fOk) fOk = EVP_DecryptFinal_ex(&ctx, (&vchPlaintext[0])+nPLen, &nFLen); EVP_CIPHER_CTX_cleanup(&ctx); + if (!fOk) return false; + vchPlaintext.resize(nPLen + nFLen); return true; } diff --git a/src/keystore.cpp b/src/keystore.cpp index 68f57e7e0e..2e4de87af5 100644 --- a/src/keystore.cpp +++ b/src/keystore.cpp @@ -71,6 +71,8 @@ bool CCryptoKeyStore::Unlock(const CKeyingMaterial& vMasterKeyIn) CSecret vchSecret; if(!DecryptSecret(vMasterKeyIn, vchCryptedSecret, Hash(vchPubKey.begin(), vchPubKey.end()), vchSecret)) return false; + if (vchSecret.size() != 32) + return false; CKey key; key.SetSecret(vchSecret); if (key.GetPubKey() == vchPubKey) @@ -131,6 +133,8 @@ bool CCryptoKeyStore::GetKey(const CBitcoinAddress &address, CKey& keyOut) const CSecret vchSecret; if (!DecryptSecret(vMasterKey, vchCryptedSecret, Hash(vchPubKey.begin(), vchPubKey.end()), vchSecret)) return false; + if (vchSecret.size() != 32) + return false; keyOut.SetSecret(vchSecret); return true; } -- cgit v1.2.3 From 8ae76e0f5d1e9beeeab5f1dfc9b195d0999729d7 Mon Sep 17 00:00:00 2001 From: graingert Date: Fri, 6 Apr 2012 04:08:16 +0200 Subject: Change sign message bitcoin address tooltip to "The address to sign the message with" Closes #1050 --- src/qt/forms/messagepage.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/forms/messagepage.ui b/src/qt/forms/messagepage.ui index 131e15bdb3..8bd6d8b54b 100644 --- a/src/qt/forms/messagepage.ui +++ b/src/qt/forms/messagepage.ui @@ -35,7 +35,7 @@ - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) 34 -- cgit v1.2.3 From d652709abaccff37c1e5ea36a8334ad643809d23 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 25 Mar 2012 17:25:10 -0400 Subject: Bugfix: Replace "URL" with "URI" where we aren't actually working with URLs --- bitcoin-qt.pro | 4 +-- src/qt/bitcoin.cpp | 22 +++++++------- src/qt/bitcoingui.cpp | 12 ++++---- src/qt/bitcoingui.h | 2 +- src/qt/guiutil.cpp | 18 ++++++------ src/qt/guiutil.h | 8 +++--- src/qt/qtipcserver.cpp | 13 +++++---- src/qt/qtipcserver.h | 2 ++ src/qt/sendcoinsdialog.cpp | 4 +-- src/qt/sendcoinsdialog.h | 2 +- src/qt/test/test_main.cpp | 4 +-- src/qt/test/uritests.cpp | 71 ++++++++++++++++++++++++++++++++++++++++++++++ src/qt/test/uritests.h | 15 ++++++++++ src/qt/test/urltests.cpp | 71 ---------------------------------------------- src/qt/test/urltests.h | 15 ---------- src/qtui.h | 2 +- 16 files changed, 134 insertions(+), 131 deletions(-) create mode 100644 src/qt/test/uritests.cpp create mode 100644 src/qt/test/uritests.h delete mode 100644 src/qt/test/urltests.cpp delete mode 100644 src/qt/test/urltests.h diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index d9206b3bff..d156ea0278 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -231,8 +231,8 @@ FORMS += src/qt/forms/qrcodedialog.ui contains(BITCOIN_QT_TEST, 1) { SOURCES += src/qt/test/test_main.cpp \ - src/qt/test/urltests.cpp -HEADERS += src/qt/test/urltests.h + src/qt/test/uritests.cpp +HEADERS += src/qt/test/uritests.h DEPENDPATH += src/qt/test QT += testlib TARGET = bitcoin-qt_test diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 3450bb4570..71e2daf931 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -81,7 +81,7 @@ bool ThreadSafeAskFee(int64 nFeeRequired, const std::string& strCaption, wxWindo return payFee; } -void ThreadSafeHandleURL(const std::string& strURL) +void ThreadSafeHandleURI(const std::string& strURI) { if(!guiref) return; @@ -93,8 +93,8 @@ void ThreadSafeHandleURL(const std::string& strURL) { connectionType = Qt::BlockingQueuedConnection; } - QMetaObject::invokeMethod(guiref, "handleURL", connectionType, - Q_ARG(QString, QString::fromStdString(strURL))); + QMetaObject::invokeMethod(guiref, "handleURI", connectionType, + Q_ARG(QString, QString::fromStdString(strURI))); } void CalledSetStatusBar(const std::string& strText, int nField) @@ -141,10 +141,10 @@ int main(int argc, char *argv[]) { if (strlen(argv[i]) > 7 && strncasecmp(argv[i], "bitcoin:", 8) == 0) { - const char *strURL = argv[i]; + const char *strURI = argv[i]; try { - boost::interprocess::message_queue mq(boost::interprocess::open_only, "BitcoinURL"); - if(mq.try_send(strURL, strlen(strURL), 0)) + boost::interprocess::message_queue mq(boost::interprocess::open_only, BITCOINURI_QUEUE_NAME); + if(mq.try_send(strURI, strlen(strURI), 0)) exit(0); else break; @@ -254,21 +254,21 @@ int main(int argc, char *argv[]) window.show(); } - // Place this here as guiref has to be defined if we dont want to lose URLs + // Place this here as guiref has to be defined if we dont want to lose URIs ipcInit(); #if !defined(MAC_OSX) && !defined(WIN32) // TODO: implement qtipcserver.cpp for Mac and Windows - // Check for URL in argv + // Check for URI in argv for (int i = 1; i < argc; i++) { if (strlen(argv[i]) > 7 && strncasecmp(argv[i], "bitcoin:", 8) == 0) { - const char *strURL = argv[i]; + const char *strURI = argv[i]; try { - boost::interprocess::message_queue mq(boost::interprocess::open_only, "BitcoinURL"); - mq.try_send(strURL, strlen(strURL), 0); + boost::interprocess::message_queue mq(boost::interprocess::open_only, BITCOINURI_QUEUE_NAME); + mq.try_send(strURI, strlen(strURI), 0); } catch (boost::interprocess::interprocess_exception &ex) { } diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index ee5fd32a6d..4a9b420485 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -714,7 +714,7 @@ void BitcoinGUI::gotoMessagePage(QString addr) void BitcoinGUI::dragEnterEvent(QDragEnterEvent *event) { - // Accept only URLs + // Accept only URIs if(event->mimeData()->hasUrls()) event->acceptProposedAction(); } @@ -724,20 +724,20 @@ void BitcoinGUI::dropEvent(QDropEvent *event) if(event->mimeData()->hasUrls()) { gotoSendCoinsPage(); - QList urls = event->mimeData()->urls(); - foreach(const QUrl &url, urls) + QList uris = event->mimeData()->urls(); + foreach(const QUrl &uri, uris) { - sendCoinsPage->handleURL(url.toString()); + sendCoinsPage->handleURI(uri.toString()); } } event->acceptProposedAction(); } -void BitcoinGUI::handleURL(QString strURL) +void BitcoinGUI::handleURI(QString strURI) { gotoSendCoinsPage(); - sendCoinsPage->handleURL(strURL); + sendCoinsPage->handleURI(strURI); if(!isActiveWindow()) activateWindow(); diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index d221f6bad9..744755dbaa 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -127,7 +127,7 @@ public slots: @param[out] payFee true to pay the fee, false to not pay the fee */ void askFee(qint64 nFeeRequired, bool *payFee); - void handleURL(QString strURL); + void handleURI(QString strURI); void gotoMessagePage(); void gotoMessagePage(QString); diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index ac69bd07e9..24bb95d8a3 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -51,15 +51,15 @@ void GUIUtil::setupAmountWidget(QLineEdit *widget, QWidget *parent) widget->setAlignment(Qt::AlignRight|Qt::AlignVCenter); } -bool GUIUtil::parseBitcoinURL(const QUrl &url, SendCoinsRecipient *out) +bool GUIUtil::parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out) { - if(url.scheme() != QString("bitcoin")) + if(uri.scheme() != QString("bitcoin")) return false; SendCoinsRecipient rv; - rv.address = url.path(); + rv.address = uri.path(); rv.amount = 0; - QList > items = url.queryItems(); + QList > items = uri.queryItems(); for (QList >::iterator i = items.begin(); i != items.end(); i++) { bool fShouldReturnFalse = false; @@ -96,18 +96,18 @@ bool GUIUtil::parseBitcoinURL(const QUrl &url, SendCoinsRecipient *out) return true; } -bool GUIUtil::parseBitcoinURL(QString url, SendCoinsRecipient *out) +bool GUIUtil::parseBitcoinURI(QString uri, SendCoinsRecipient *out) { // Convert bitcoin:// to bitcoin: // // Cannot handle this later, because bitcoin:// will cause Qt to see the part after // as host, // which will lowercase it (and thus invalidate the address). - if(url.startsWith("bitcoin://")) + if(uri.startsWith("bitcoin://")) { - url.replace(0, 10, "bitcoin:"); + uri.replace(0, 10, "bitcoin:"); } - QUrl urlInstance(url); - return parseBitcoinURL(urlInstance, out); + QUrl uriInstance(uri); + return parseBitcoinURI(uriInstance, out); } QString GUIUtil::HtmlEscape(const QString& str, bool fMultiLine) diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index 75ba53f206..0c78b3ccb0 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -29,10 +29,10 @@ public: static void setupAddressWidget(QLineEdit *widget, QWidget *parent); static void setupAmountWidget(QLineEdit *widget, QWidget *parent); - // Parse "bitcoin:" URL into recipient object, return true on succesful parsing - // See Bitcoin URL definition discussion here: https://bitcointalk.org/index.php?topic=33490.0 - static bool parseBitcoinURL(const QUrl &url, SendCoinsRecipient *out); - static bool parseBitcoinURL(QString url, SendCoinsRecipient *out); + // Parse "bitcoin:" URI into recipient object, return true on succesful parsing + // See Bitcoin URI definition discussion here: https://bitcointalk.org/index.php?topic=33490.0 + static bool parseBitcoinURI(const QUrl &, SendCoinsRecipient *out); + static bool parseBitcoinURI(QString uri, SendCoinsRecipient *out); // HTML escaping for rich text controls static QString HtmlEscape(const QString& str, bool fMultiLine=false); diff --git a/src/qt/qtipcserver.cpp b/src/qt/qtipcserver.cpp index 8b9270e178..3c7889ca71 100644 --- a/src/qt/qtipcserver.cpp +++ b/src/qt/qtipcserver.cpp @@ -8,6 +8,7 @@ #include #include "headers.h" +#include "qtipcserver.h" using namespace boost::interprocess; using namespace boost::posix_time; @@ -16,7 +17,7 @@ using namespace std; void ipcShutdown() { - message_queue::remove("BitcoinURL"); + message_queue::remove(BITCOINURI_QUEUE_NAME); } void ipcThread(void* parg) @@ -30,7 +31,7 @@ void ipcThread(void* parg) ptime d = boost::posix_time::microsec_clock::universal_time() + millisec(100); if(mq->timed_receive(&strBuf, sizeof(strBuf), nSize, nPriority, d)) { - ThreadSafeHandleURL(std::string(strBuf, nSize)); + ThreadSafeHandleURI(std::string(strBuf, nSize)); Sleep(1000); } if (fShutdown) @@ -60,7 +61,7 @@ void ipcInit() size_t nSize; unsigned int nPriority; try { - mq = new message_queue(open_or_create, "BitcoinURL", 2, 256); + mq = new message_queue(open_or_create, BITCOINURI_QUEUE_NAME, 2, 256); // Make sure we don't lose any bitcoin: URIs for (int i = 0; i < 2; i++) @@ -68,15 +69,15 @@ void ipcInit() ptime d = boost::posix_time::microsec_clock::universal_time() + millisec(1); if(mq->timed_receive(&strBuf, sizeof(strBuf), nSize, nPriority, d)) { - ThreadSafeHandleURL(std::string(strBuf, nSize)); + ThreadSafeHandleURI(std::string(strBuf, nSize)); } else break; } // Make sure only one bitcoin instance is listening - message_queue::remove("BitcoinURL"); - mq = new message_queue(open_or_create, "BitcoinURL", 2, 256); + message_queue::remove(BITCOINURI_QUEUE_NAME); + mq = new message_queue(open_or_create, BITCOINURI_QUEUE_NAME, 2, 256); } catch (interprocess_exception &ex) { return; diff --git a/src/qt/qtipcserver.h b/src/qt/qtipcserver.h index 1de0334afd..fcff10d8da 100644 --- a/src/qt/qtipcserver.h +++ b/src/qt/qtipcserver.h @@ -1,2 +1,4 @@ +#define BITCOINURI_QUEUE_NAME "BitcoinURI" + void ipcInit(); void ipcShutdown(); diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 964313ea81..592ae6f45a 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -265,10 +265,10 @@ void SendCoinsDialog::pasteEntry(const SendCoinsRecipient &rv) } -void SendCoinsDialog::handleURL(const QString &url) +void SendCoinsDialog::handleURI(const QString &uri) { SendCoinsRecipient rv; - if(!GUIUtil::parseBitcoinURL(url, &rv)) + if(!GUIUtil::parseBitcoinURI(uri, &rv)) { return; } diff --git a/src/qt/sendcoinsdialog.h b/src/qt/sendcoinsdialog.h index 4dc3f08bc5..5dcbfbeb61 100644 --- a/src/qt/sendcoinsdialog.h +++ b/src/qt/sendcoinsdialog.h @@ -30,7 +30,7 @@ public: QWidget *setupTabChain(QWidget *prev); void pasteEntry(const SendCoinsRecipient &rv); - void handleURL(const QString &url); + void handleURI(const QString &uri); public slots: void clear(); diff --git a/src/qt/test/test_main.cpp b/src/qt/test/test_main.cpp index 0a08eafa1e..5b11e39ea3 100644 --- a/src/qt/test/test_main.cpp +++ b/src/qt/test/test_main.cpp @@ -1,11 +1,11 @@ #include #include -#include "urltests.h" +#include "uritests.h" // This is all you need to run all the tests int main(int argc, char *argv[]) { - URLTests test1; + URITests test1; QTest::qExec(&test1); } diff --git a/src/qt/test/uritests.cpp b/src/qt/test/uritests.cpp new file mode 100644 index 0000000000..70c20be0ea --- /dev/null +++ b/src/qt/test/uritests.cpp @@ -0,0 +1,71 @@ +#include "uritests.h" +#include "../guiutil.h" +#include "../walletmodel.h" + +#include + +/* +struct SendCoinsRecipient +{ + QString address; + QString label; + qint64 amount; +}; +*/ + +void URITests::uriTests() +{ + SendCoinsRecipient rv; + QUrl uri; + uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?req-dontexist=")); + QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv)); + + uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?dontexist=")); + QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); + QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); + QVERIFY(rv.label == QString()); + QVERIFY(rv.amount == 0); + + uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?label=Wikipedia Example Address")); + QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); + QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); + QVERIFY(rv.label == QString("Wikipedia Example Address")); + QVERIFY(rv.amount == 0); + + uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=0.001")); + QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); + QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); + QVERIFY(rv.label == QString()); + QVERIFY(rv.amount == 100000); + + uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=1.001")); + QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); + QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); + QVERIFY(rv.label == QString()); + QVERIFY(rv.amount == 100100000); + + uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=100&label=Wikipedia Example")); + QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); + QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); + QVERIFY(rv.amount == 10000000000); + QVERIFY(rv.label == QString("Wikipedia Example")); + + uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?message=Wikipedia Example Address")); + QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); + QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); + QVERIFY(rv.label == QString()); + + QVERIFY(GUIUtil::parseBitcoinURI("bitcoin://175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?message=Wikipedia Example Address", &rv)); + QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); + QVERIFY(rv.label == QString()); + + // We currently dont implement the message paramenter (ok, yea, we break spec...) + uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?req-message=Wikipedia Example Address")); + QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv)); + + uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=1,000&label=Wikipedia Example")); + QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv)); + + uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=1,000.0&label=Wikipedia Example")); + QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv)); +} diff --git a/src/qt/test/uritests.h b/src/qt/test/uritests.h new file mode 100644 index 0000000000..1237516e5f --- /dev/null +++ b/src/qt/test/uritests.h @@ -0,0 +1,15 @@ +#ifndef URITESTS_H +#define URITESTS_H + +#include +#include + +class URITests : public QObject +{ + Q_OBJECT + +private slots: + void uriTests(); +}; + +#endif // URITESTS_H diff --git a/src/qt/test/urltests.cpp b/src/qt/test/urltests.cpp deleted file mode 100644 index 1f11795a9b..0000000000 --- a/src/qt/test/urltests.cpp +++ /dev/null @@ -1,71 +0,0 @@ -#include "urltests.h" -#include "../guiutil.h" -#include "../walletmodel.h" - -#include - -/* -struct SendCoinsRecipient -{ - QString address; - QString label; - qint64 amount; -}; -*/ - -void URLTests::urlTests() -{ - SendCoinsRecipient rv; - QUrl url; - url.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?req-dontexist=")); - QVERIFY(!GUIUtil::parseBitcoinURL(url, &rv)); - - url.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?dontexist=")); - QVERIFY(GUIUtil::parseBitcoinURL(url, &rv)); - QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); - QVERIFY(rv.label == QString()); - QVERIFY(rv.amount == 0); - - url.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?label=Wikipedia Example Address")); - QVERIFY(GUIUtil::parseBitcoinURL(url, &rv)); - QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); - QVERIFY(rv.label == QString("Wikipedia Example Address")); - QVERIFY(rv.amount == 0); - - url.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=0.001")); - QVERIFY(GUIUtil::parseBitcoinURL(url, &rv)); - QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); - QVERIFY(rv.label == QString()); - QVERIFY(rv.amount == 100000); - - url.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=1.001")); - QVERIFY(GUIUtil::parseBitcoinURL(url, &rv)); - QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); - QVERIFY(rv.label == QString()); - QVERIFY(rv.amount == 100100000); - - url.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=100&label=Wikipedia Example")); - QVERIFY(GUIUtil::parseBitcoinURL(url, &rv)); - QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); - QVERIFY(rv.amount == 10000000000); - QVERIFY(rv.label == QString("Wikipedia Example")); - - url.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?message=Wikipedia Example Address")); - QVERIFY(GUIUtil::parseBitcoinURL(url, &rv)); - QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); - QVERIFY(rv.label == QString()); - - QVERIFY(GUIUtil::parseBitcoinURL("bitcoin://175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?message=Wikipedia Example Address", &rv)); - QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); - QVERIFY(rv.label == QString()); - - // We currently dont implement the message paramenter (ok, yea, we break spec...) - url.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?req-message=Wikipedia Example Address")); - QVERIFY(!GUIUtil::parseBitcoinURL(url, &rv)); - - url.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=1,000&label=Wikipedia Example")); - QVERIFY(!GUIUtil::parseBitcoinURL(url, &rv)); - - url.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=1,000.0&label=Wikipedia Example")); - QVERIFY(!GUIUtil::parseBitcoinURL(url, &rv)); -} diff --git a/src/qt/test/urltests.h b/src/qt/test/urltests.h deleted file mode 100644 index 393c511390..0000000000 --- a/src/qt/test/urltests.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef URLTESTS_H -#define URLTESTS_H - -#include -#include - -class URLTests : public QObject -{ - Q_OBJECT - -private slots: - void urlTests(); -}; - -#endif // URLTESTS_H diff --git a/src/qtui.h b/src/qtui.h index 7987370270..05a56678d1 100644 --- a/src/qtui.h +++ b/src/qtui.h @@ -42,7 +42,7 @@ extern int MyMessageBox(const std::string& message, const std::string& caption=" #define wxMessageBox MyMessageBox extern int ThreadSafeMessageBox(const std::string& message, const std::string& caption, int style=wxOK, wxWindow* parent=NULL, int x=-1, int y=-1); extern bool ThreadSafeAskFee(int64 nFeeRequired, const std::string& strCaption, wxWindow* parent); -extern void ThreadSafeHandleURL(const std::string& strURL); +extern void ThreadSafeHandleURI(const std::string& strURI); extern void CalledSetStatusBar(const std::string& strText, int nField); extern void UIThreadCall(boost::function0 fn); extern void MainFrameRepaint(); -- cgit v1.2.3 From ce333560949c8b89fac4dfb5112d3a808a8d4ff8 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 25 Mar 2012 17:25:10 -0400 Subject: Bugfix: Replace "URL" with "URI" where we aren't actually working with URLs --- src/qt/bitcoingui.cpp | 8 ++++---- src/qt/guiutil.cpp | 20 ++++++++++---------- src/qt/guiutil.h | 8 ++++---- src/qt/sendcoinsdialog.cpp | 8 ++++---- src/qt/sendcoinsdialog.h | 4 ++-- 5 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index be60838171..0111ebbc9d 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -659,7 +659,7 @@ void BitcoinGUI::gotoSendCoinsPage() void BitcoinGUI::dragEnterEvent(QDragEnterEvent *event) { - // Accept only URLs + // Accept only URIs if(event->mimeData()->hasUrls()) event->acceptProposedAction(); } @@ -669,10 +669,10 @@ void BitcoinGUI::dropEvent(QDropEvent *event) if(event->mimeData()->hasUrls()) { gotoSendCoinsPage(); - QList urls = event->mimeData()->urls(); - foreach(const QUrl &url, urls) + QList uris = event->mimeData()->urls(); + foreach(const QUrl &uri, uris) { - sendCoinsPage->handleURL(&url); + sendCoinsPage->handleURI(&uri); } } diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index d1490c8f70..f5e6e0a545 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -47,16 +47,16 @@ void GUIUtil::setupAmountWidget(QLineEdit *widget, QWidget *parent) widget->setAlignment(Qt::AlignRight|Qt::AlignVCenter); } -bool GUIUtil::parseBitcoinURL(const QUrl *url, SendCoinsRecipient *out) +bool GUIUtil::parseBitcoinURI(const QUrl *uri, SendCoinsRecipient *out) { - if(url->scheme() != QString("bitcoin")) + if(uri->scheme() != QString("bitcoin")) return false; SendCoinsRecipient rv; - rv.address = url->path(); - rv.label = url->queryItemValue("label"); + rv.address = uri->path(); + rv.label = uri->queryItemValue("label"); - QString amount = url->queryItemValue("amount"); + QString amount = uri->queryItemValue("amount"); if(amount.isEmpty()) { rv.amount = 0; @@ -75,18 +75,18 @@ bool GUIUtil::parseBitcoinURL(const QUrl *url, SendCoinsRecipient *out) return true; } -bool GUIUtil::parseBitcoinURL(QString url, SendCoinsRecipient *out) +bool GUIUtil::parseBitcoinURI(QString uri, SendCoinsRecipient *out) { // Convert bitcoin:// to bitcoin: // // Cannot handle this later, because bitcoin:// will cause Qt to see the part after // as host, // which will lowercase it (and thus invalidate the address). - if(url.startsWith("bitcoin://")) + if(uri.startsWith("bitcoin://")) { - url.replace(0, 10, "bitcoin:"); + uri.replace(0, 10, "bitcoin:"); } - QUrl urlInstance(url); - return parseBitcoinURL(&urlInstance, out); + QUrl uriInstance(uri); + return parseBitcoinURI(&uriInstance, out); } QString GUIUtil::getSaveFileName(QWidget *parent, const QString &caption, diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index d7523aa15c..8e75ee23ad 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -26,10 +26,10 @@ public: static void setupAddressWidget(QLineEdit *widget, QWidget *parent); static void setupAmountWidget(QLineEdit *widget, QWidget *parent); - // Parse "bitcoin:" URL into recipient object, return true on succesful parsing - // See Bitcoin URL definition discussion here: https://bitcointalk.org/index.php?topic=33490.0 - static bool parseBitcoinURL(const QUrl *url, SendCoinsRecipient *out); - static bool parseBitcoinURL(QString url, SendCoinsRecipient *out); + // Parse "bitcoin:" URI into recipient object, return true on succesful parsing + // See Bitcoin URI definition discussion here: https://bitcointalk.org/index.php?topic=33490.0 + static bool parseBitcoinURI(const QUrl *, SendCoinsRecipient *out); + static bool parseBitcoinURI(QString uri, SendCoinsRecipient *out); /** Get save file name, mimics QFileDialog::getSaveFileName, except that it appends a default suffix when no suffix is provided by the user. diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index e465b4141a..657761515b 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -255,20 +255,20 @@ void SendCoinsDialog::pasteEntry(const SendCoinsRecipient &rv) } -void SendCoinsDialog::handleURL(const QUrl *url) +void SendCoinsDialog::handleURI(const QUrl *uri) { SendCoinsRecipient rv; - if(!GUIUtil::parseBitcoinURL(url, &rv)) + if(!GUIUtil::parseBitcoinURI(uri, &rv)) { return; } pasteEntry(rv); } -void SendCoinsDialog::handleURL(const QString &url) +void SendCoinsDialog::handleURI(const QString &uri) { SendCoinsRecipient rv; - if(!GUIUtil::parseBitcoinURL(url, &rv)) + if(!GUIUtil::parseBitcoinURI(uri, &rv)) { return; } diff --git a/src/qt/sendcoinsdialog.h b/src/qt/sendcoinsdialog.h index fdff05783e..7da0a7fa07 100644 --- a/src/qt/sendcoinsdialog.h +++ b/src/qt/sendcoinsdialog.h @@ -29,8 +29,8 @@ public: QWidget *setupTabChain(QWidget *prev); void pasteEntry(const SendCoinsRecipient &rv); - void handleURL(const QUrl *url); - void handleURL(const QString &url); + void handleURI(const QUrl *uri); + void handleURI(const QString &uri); public slots: void clear(); -- cgit v1.2.3 From bf1f995c4c968f4325ac05474fcfd87924d62e36 Mon Sep 17 00:00:00 2001 From: p2k Date: Mon, 12 Mar 2012 14:20:55 +0100 Subject: Proper support for Growl 1.3 notifications --- src/qt/notificator.cpp | 15 ++++++++++----- src/qt/notificator.h | 3 ++- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/qt/notificator.cpp b/src/qt/notificator.cpp index a2314caa47..e668079536 100644 --- a/src/qt/notificator.cpp +++ b/src/qt/notificator.cpp @@ -52,10 +52,13 @@ Notificator::Notificator(const QString &programName, QSystemTrayIcon *trayicon, OSStatus status = LSGetApplicationForInfo(kLSUnknownType, kLSUnknownCreator, CFSTR("growlTicket"), kLSRolesAll, 0, &cfurl); if (status != kLSApplicationNotFoundErr) { CFBundleRef bundle = CFBundleCreate(0, cfurl); - CFRelease(cfurl); if (CFStringCompare(CFBundleGetIdentifier(bundle), CFSTR("com.Growl.GrowlHelperApp"), kCFCompareCaseInsensitive | kCFCompareBackwards) == kCFCompareEqualTo) { - mode = Growl; + if (CFStringHasSuffix(CFURLGetString(cfurl), CFSTR("/Growl.app/"))) + mode = Growl13; + else + mode = Growl12; } + CFRelease(cfurl); CFRelease(bundle); } #endif @@ -226,7 +229,7 @@ void Notificator::notifySystray(Class cls, const QString &title, const QString & void Notificator::notifyGrowl(Class cls, const QString &title, const QString &text, const QIcon &icon) { const QString script( - "tell application \"GrowlHelperApp\"\n" + "tell application \"%5\"\n" " set the allNotificationsList to {\"Notification\"}\n" // -- Make a list of all the notification types (all) " set the enabledNotificationsList to {\"Notification\"}\n" // -- Make a list of the notifications (enabled) " register as application \"%1\" all notifications allNotificationsList default notifications enabledNotificationsList\n" // -- Register our script with Growl @@ -265,7 +268,8 @@ void Notificator::notifyGrowl(Class cls, const QString &title, const QString &te QString quotedTitle(title), quotedText(text); quotedTitle.replace("\\", "\\\\").replace("\"", "\\"); quotedText.replace("\\", "\\\\").replace("\"", "\\"); - qt_mac_execute_apple_script(script.arg(notificationApp, quotedTitle, quotedText, notificationIcon), 0); + QString growlApp(this->mode == Notificator::Growl13 ? "Growl" : "GrowlHelperApp"); + qt_mac_execute_apple_script(script.arg(notificationApp, quotedTitle, quotedText, notificationIcon, growlApp), 0); } #endif @@ -282,7 +286,8 @@ void Notificator::notify(Class cls, const QString &title, const QString &text, c notifySystray(cls, title, text, icon, millisTimeout); break; #ifdef Q_WS_MAC - case Growl: + case Growl12: + case Growl13: notifyGrowl(cls, title, text, icon); break; #endif diff --git a/src/qt/notificator.h b/src/qt/notificator.h index ed69ae5c61..dba39f3971 100644 --- a/src/qt/notificator.h +++ b/src/qt/notificator.h @@ -48,7 +48,8 @@ private: None, Freedesktop, // Use DBus org.freedesktop.Notifications QSystemTray, // Use QSystemTray::showMessage - Growl // Use the Growl notification system (Mac only) + Growl12, // Use the Growl 1.2 notification system (Mac only) + Growl13 // Use the Growl 1.3 notification system (Mac only) }; QString programName; Mode mode; -- cgit v1.2.3 From 527b512cf754bc7846852f3a4a61d8b364c5abc3 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 6 Apr 2012 17:44:26 -0400 Subject: Bugfix: Windows lacks sleep(), so need to use Sleep() from util.h --- src/qt/bitcoin.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 311fab3c9b..1133f122e7 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -8,6 +8,7 @@ #include "headers.h" #include "init.h" +#include "util.h" #include #include @@ -45,7 +46,7 @@ int ThreadSafeMessageBox(const std::string& message, const std::string& caption, if (modal) while (!guiref) - sleep(1); + Sleep(1000); // Message from network thread if(guiref) -- cgit v1.2.3 From 06de079091d749ef43819fec2870f83971df8650 Mon Sep 17 00:00:00 2001 From: cardpuncher Date: Mon, 9 Apr 2012 22:22:38 +0300 Subject: Added comment lines in French & Turkish which basically mean "Bitcoin, virtual P2P cryptocurrency". --- contrib/debian/bitcoin-qt.desktop | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/debian/bitcoin-qt.desktop b/contrib/debian/bitcoin-qt.desktop index ea5a6e4ac4..7cb00a2c8b 100644 --- a/contrib/debian/bitcoin-qt.desktop +++ b/contrib/debian/bitcoin-qt.desktop @@ -2,6 +2,8 @@ Encoding=UTF-8 Name=Bitcoin Comment=Bitcoin P2P Cryptocurrency +Comment[fr]=Bitcoin, monnaie virtuelle cryptographique pair à pair +Comment[tr]=Bitcoin, eşten eşe kriptografik sanal para birimi Exec=/usr/bin/bitcoin-qt Terminal=false Type=Application -- cgit v1.2.3 From 1f56046fd529c0ef9e35d26d68995c497751c54f Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Thu, 5 Apr 2012 20:36:27 +0200 Subject: Show error message instead of exception crash when unable to bind RPC port Fixes issue #875 --- src/bitcoinrpc.cpp | 22 ++++++++++++++++++++++ src/qt/bitcoingui.cpp | 4 ++++ 2 files changed, 26 insertions(+) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index a4a1fd4d6b..ac20ae8610 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -2161,6 +2161,10 @@ void ThreadRPCServer(void* parg) printf("ThreadRPCServer exiting\n"); } +#ifdef QT_GUI +extern bool HACK_SHUTDOWN; +#endif + void ThreadRPCServer2(void* parg) { printf("ThreadRPCServer started\n"); @@ -2196,9 +2200,27 @@ void ThreadRPCServer2(void* parg) asio::io_service io_service; ip::tcp::endpoint endpoint(bindAddress, GetArg("-rpcport", 8332)); +#ifndef QT_GUI ip::tcp::acceptor acceptor(io_service, endpoint); acceptor.set_option(boost::asio::ip::tcp::acceptor::reuse_address(true)); +#else + ip::tcp::acceptor acceptor(io_service); + try + { + acceptor.open(endpoint.protocol()); + acceptor.set_option(boost::asio::ip::tcp::acceptor::reuse_address(true)); + acceptor.bind(endpoint); + acceptor.listen(socket_base::max_connections); + } + catch(system::system_error &e) + { + HACK_SHUTDOWN = true; + ThreadSafeMessageBox(strprintf(_("An error occured while setting up the RPC port %i for listening: %s"), endpoint.port(), e.what()), + _("Error"), wxOK | wxMODAL); + return; + } +#endif #ifdef USE_SSL ssl::context context(io_service, ssl::context::sslv23); diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 0111ebbc9d..3433c6a183 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -516,12 +516,16 @@ void BitcoinGUI::refreshStatusBar() setNumBlocks(clientModel->getNumBlocks()); } +bool HACK_SHUTDOWN = false; + void BitcoinGUI::error(const QString &title, const QString &message, bool modal) { // Report errors from network/worker thread if (modal) { QMessageBox::critical(this, title, message, QMessageBox::Ok, QMessageBox::Ok); + if (HACK_SHUTDOWN) + QMetaObject::invokeMethod(QCoreApplication::instance(), "quit", Qt::QueuedConnection); } else { notificator->notify(Notificator::Critical, title, message); } -- cgit v1.2.3 From 760d9480edd448a0ccac7d13739e46478bb79c54 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Wed, 11 Apr 2012 14:21:15 +0200 Subject: removed (no label) string if we have NO label (partial of 9e0dba8c17eb6507083b4d7602541c25f1fd7f38) --- src/qt/addressbookpage.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qt/addressbookpage.cpp b/src/qt/addressbookpage.cpp index 76aa87b134..387043ae2b 100644 --- a/src/qt/addressbookpage.cpp +++ b/src/qt/addressbookpage.cpp @@ -308,8 +308,8 @@ void AddressBookPage::on_showQRCode_clicked() foreach (QModelIndex index, indexes) { QString address = index.data().toString(), - label = index.sibling(index.row(), 0).data().toString(), - title = QString("%1 << %2 >>").arg(label).arg(address); + label = index.sibling(index.row(), 0).data(Qt::EditRole).toString(), + title = QString("%1%2<< %3 >>").arg(label).arg(label.isEmpty() ? "" : " ").arg(address); QRCodeDialog *d = new QRCodeDialog(title, address, label, tab == ReceivingTab, this); d->show(); -- cgit v1.2.3 From 278074eb238446d7feb90dafcbb537baa0068080 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sat, 14 Apr 2012 15:27:12 -0400 Subject: Display an error, rather than crashing, if encoding a QR Code failed. (master workaround in b1a99c3a1fb2613e9c7cecd565e8cc604b03eb6f + 7261945eb5f64423d47a5bff63ecd8b65d88b8ed) --- src/qt/forms/qrcodedialog.ui | 3 +++ src/qt/qrcodedialog.cpp | 28 +++++++++++++++++++--------- 2 files changed, 22 insertions(+), 9 deletions(-) diff --git a/src/qt/forms/qrcodedialog.ui b/src/qt/forms/qrcodedialog.ui index fa21f60b9e..fa960069d9 100644 --- a/src/qt/forms/qrcodedialog.ui +++ b/src/qt/forms/qrcodedialog.ui @@ -34,6 +34,9 @@ Qt::AlignCenter + + true + diff --git a/src/qt/qrcodedialog.cpp b/src/qt/qrcodedialog.cpp index 82959831de..9cf50b0e58 100644 --- a/src/qt/qrcodedialog.cpp +++ b/src/qt/qrcodedialog.cpp @@ -39,17 +39,27 @@ void QRCodeDialog::genCode() QString uri = getURI(); //qDebug() << "Encoding:" << uri.toUtf8().constData(); QRcode *code = QRcode_encodeString(uri.toUtf8().constData(), 0, QR_ECLEVEL_L, QR_MODE_8, 1); - myImage = QImage(code->width + 8, code->width + 8, QImage::Format_RGB32); - myImage.fill(0xffffff); - unsigned char *p = code->data; - for(int y = 0; y < code->width; y++) { - for(int x = 0; x < code->width; x++) { - myImage.setPixel(x + 4, y + 4, ((*p & 1) ? 0x0 : 0xffffff)); - p++; + if (code) + { + ui->lblQRCode->setText(""); + + QRcode *code = QRcode_encodeString(uri.toUtf8().constData(), 0, QR_ECLEVEL_L, QR_MODE_8, 1); + myImage = QImage(code->width + 8, code->width + 8, QImage::Format_RGB32); + myImage.fill(0xffffff); + unsigned char *p = code->data; + for (int y = 0; y < code->width; y++) + { + for (int x = 0; x < code->width; x++) + { + myImage.setPixel(x + 4, y + 4, ((*p & 1) ? 0x0 : 0xffffff)); + p++; + } } + QRcode_free(code); + ui->lblQRCode->setPixmap(QPixmap::fromImage(myImage).scaled(300, 300)); } - QRcode_free(code); - ui->lblQRCode->setPixmap(QPixmap::fromImage(myImage).scaled(300, 300)); + else + ui->lblQRCode->setText(tr("Error encoding URI into QR Code; try to reduce the text for label / message.")); } QString QRCodeDialog::getURI() -- cgit v1.2.3 From e88b6b341d75536f2743ce735c338c9fe93ba272 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 4 Apr 2012 20:56:13 -0400 Subject: Bug fix listtransactions from/count handling. --- src/rpc.cpp | 38 +++++++++++++++++++++++--------------- 1 file changed, 23 insertions(+), 15 deletions(-) diff --git a/src/rpc.cpp b/src/rpc.cpp index aade32ac1d..b62da8ecdf 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -1099,14 +1099,21 @@ Value listtransactions(const Array& params, bool fHelp) if (params.size() > 2) nFrom = params[2].get_int(); + if (nCount < 0) + throw JSONRPCError(-8, "Negative count"); + if (nFrom < 0) + throw JSONRPCError(-8, "Negative from"); + Array ret; CWalletDB walletdb(pwalletMain->strWalletFile); - // Firs: get all CWalletTx and CAccountingEntry into a sorted-by-time multimap: + // First: get all CWalletTx and CAccountingEntry into a sorted-by-time multimap. typedef pair TxPair; typedef multimap TxItems; TxItems txByTime; + // Note: maintaining indices in the database of (account,time) --> txid and (account, time) --> acentry + // would make this much faster for applications that do this a lot. for (map::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) { CWalletTx* wtx = &((*it).second); @@ -1119,10 +1126,8 @@ Value listtransactions(const Array& params, bool fHelp) txByTime.insert(make_pair(entry.nTime, TxPair((CWalletTx*)0, &entry))); } - // Now: iterate backwards until we have nCount items to return: - TxItems::reverse_iterator it = txByTime.rbegin(); - if (txByTime.size() > nFrom) std::advance(it, nFrom); - for (; it != txByTime.rend(); ++it) + // iterate backwards until we have nCount items to return: + for (TxItems::reverse_iterator it = txByTime.rbegin(); it != txByTime.rend(); ++it) { CWalletTx *const pwtx = (*it).second.first; if (pwtx != 0) @@ -1131,18 +1136,21 @@ Value listtransactions(const Array& params, bool fHelp) if (pacentry != 0) AcentryToJSON(*pacentry, strAccount, ret); - if (ret.size() >= nCount) break; + if (ret.size() >= (nCount+nFrom)) break; } - // ret is now newest to oldest + // ret is newest to oldest - // Make sure we return only last nCount items (sends-to-self might give us an extra): - if (ret.size() > nCount) - { - Array::iterator last = ret.begin(); - std::advance(last, nCount); - ret.erase(last, ret.end()); - } - std::reverse(ret.begin(), ret.end()); // oldest to newest + if (nFrom > ret.size()) nFrom = ret.size(); + if (nFrom+nCount > ret.size()) nCount = ret.size()-nFrom; + Array::iterator first = ret.begin(); + std::advance(first, nFrom); + Array::iterator last = ret.begin(); + std::advance(last, nFrom+nCount); + + if (last != ret.end()) ret.erase(last, ret.end()); + if (first != ret.begin()) ret.erase(ret.begin(), first); + + std::reverse(ret.begin(), ret.end()); // Return oldest to newest return ret; } -- cgit v1.2.3 From 1f917975359cc086926653075a43d64699a64677 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 13 Apr 2012 09:16:46 +0200 Subject: Add missing tooltip and key shortcut in settings dialog (#1088 without line break part) --- src/qt/optionsdialog.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index 75fd4ccf18..0025337ab8 100644 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -278,7 +278,8 @@ DisplayOptionsPage::DisplayOptionsPage(QWidget *parent): layout->addLayout(unit_hbox); - display_addresses = new QCheckBox(tr("Display addresses in transaction list"), this); + display_addresses = new QCheckBox(tr("&Display addresses in transaction list"), this); + display_addresses->setToolTip(tr("Whether to show Bitcoin addresses in the transaction list")); layout->addWidget(display_addresses); layout->addStretch(); -- cgit v1.2.3 From a558054709124a7e8208ce164175f7235166bedf Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sat, 14 Apr 2012 08:21:22 +0200 Subject: Do not show green tick unless all known blocks are downloaded (fixes #921) --- src/qt/bitcoingui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 3433c6a183..08ccb75b81 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -480,7 +480,7 @@ void BitcoinGUI::setNumBlocks(int count) } // Set icon state: spinning if catching up, tick otherwise - if(secs < 90*60) + if(secs < 90*60 && count >= nTotalBlocks) { tooltip = tr("Up to date") + QString(".\n") + tooltip; labelBlocksIcon->setPixmap(QIcon(":/icons/synced").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); -- cgit v1.2.3 From f2862f1a499265ec4209dfdc42edf57946e26803 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sat, 14 Apr 2012 18:32:30 +0200 Subject: Rename make_windows_icon.py to .sh as it is a shell script (fixes #1099) --- scripts/qt/make_windows_icon.py | 9 --------- scripts/qt/make_windows_icon.sh | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) delete mode 100755 scripts/qt/make_windows_icon.py create mode 100755 scripts/qt/make_windows_icon.sh diff --git a/scripts/qt/make_windows_icon.py b/scripts/qt/make_windows_icon.py deleted file mode 100755 index bf607b1c62..0000000000 --- a/scripts/qt/make_windows_icon.py +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -# create multiresolution windows icon -ICON_SRC=../../src/qt/res/icons/bitcoin.png -ICON_DST=../../src/qt/res/icons/bitcoin.ico -convert ${ICON_SRC} -resize 16x16 bitcoin-16.png -convert ${ICON_SRC} -resize 32x32 bitcoin-32.png -convert ${ICON_SRC} -resize 48x48 bitcoin-48.png -convert bitcoin-16.png bitcoin-32.png bitcoin-48.png ${ICON_DST} - diff --git a/scripts/qt/make_windows_icon.sh b/scripts/qt/make_windows_icon.sh new file mode 100755 index 0000000000..bf607b1c62 --- /dev/null +++ b/scripts/qt/make_windows_icon.sh @@ -0,0 +1,9 @@ +#!/bin/bash +# create multiresolution windows icon +ICON_SRC=../../src/qt/res/icons/bitcoin.png +ICON_DST=../../src/qt/res/icons/bitcoin.ico +convert ${ICON_SRC} -resize 16x16 bitcoin-16.png +convert ${ICON_SRC} -resize 32x32 bitcoin-32.png +convert ${ICON_SRC} -resize 48x48 bitcoin-48.png +convert bitcoin-16.png bitcoin-32.png bitcoin-48.png ${ICON_DST} + -- cgit v1.2.3 From 02a38ac22bafcd35334d31e57f41289ae1498b7a Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sat, 14 Apr 2012 15:38:26 -0400 Subject: Add symlink to scripts/qt/make_windows_icon.sh from old file name, just in case --- scripts/qt/make_windows_icon.py | 1 + 1 file changed, 1 insertion(+) create mode 120000 scripts/qt/make_windows_icon.py diff --git a/scripts/qt/make_windows_icon.py b/scripts/qt/make_windows_icon.py new file mode 120000 index 0000000000..f51c32a215 --- /dev/null +++ b/scripts/qt/make_windows_icon.py @@ -0,0 +1 @@ +make_windows_icon.sh \ No newline at end of file -- cgit v1.2.3 From b557c17a37fc05ae8905d2ab310a1ad0d53834c0 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sat, 14 Apr 2012 21:00:27 -0400 Subject: Bugfix: Check that QRcode_encodeString didn't return NULL (error) Without this, any error will segfault Bitcoin-Qt --- src/qt/qrcodedialog.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/qt/qrcodedialog.cpp b/src/qt/qrcodedialog.cpp index 9cf50b0e58..567cfa75f1 100644 --- a/src/qt/qrcodedialog.cpp +++ b/src/qt/qrcodedialog.cpp @@ -38,12 +38,16 @@ void QRCodeDialog::genCode() { QString uri = getURI(); //qDebug() << "Encoding:" << uri.toUtf8().constData(); - QRcode *code = QRcode_encodeString(uri.toUtf8().constData(), 0, QR_ECLEVEL_L, QR_MODE_8, 1); - if (code) + { ui->lblQRCode->setText(""); QRcode *code = QRcode_encodeString(uri.toUtf8().constData(), 0, QR_ECLEVEL_L, QR_MODE_8, 1); + if (!code) + { + ui->lblQRCode->setText(tr("Error encoding URI into QR Code.")); + return; + } myImage = QImage(code->width + 8, code->width + 8, QImage::Format_RGB32); myImage.fill(0xffffff); unsigned char *p = code->data; @@ -58,8 +62,6 @@ void QRCodeDialog::genCode() QRcode_free(code); ui->lblQRCode->setPixmap(QPixmap::fromImage(myImage).scaled(300, 300)); } - else - ui->lblQRCode->setText(tr("Error encoding URI into QR Code; try to reduce the text for label / message.")); } QString QRCodeDialog::getURI() -- cgit v1.2.3 From b7566fe29c2053843d2cec90a70fd699f5590391 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 15 Apr 2012 13:08:21 -0400 Subject: Bump version to 0.6.0.7 Skipping 0.6.0.1 through 0.6.0.6 since the internal version for 0.6.0[.0] was in fact 0.6.0.6 --- bitcoin-qt.pro | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/main.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index d156ea0278..db2bfe33d9 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.6.0 +VERSION = 0.6.0.7 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/doc/README b/doc/README index 00694e2ae1..800c72c83c 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.6.0 BETA +Bitcoin 0.6.0.7 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 9aa5aa744f..a04aedcd78 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.6.0 BETA +Bitcoin 0.6.0.7 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index cc19daf84a..fb9a0c67f2 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.6.0 +!define VERSION 0.6.0.7 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.6.0-win32-setup.exe +OutFile bitcoin-0.6.0.7-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.6.0.6 +VIProductVersion 0.6.0.7 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/main.h b/src/main.h index 18d5dbdd74..fc11411164 100644 --- a/src/main.h +++ b/src/main.h @@ -26,7 +26,7 @@ class CInv; class CRequestTracker; class CNode; -static const int CLIENT_VERSION = 60006; +static const int CLIENT_VERSION = 60007; static const bool VERSION_IS_BETA = true; extern const std::string CLIENT_NAME; -- cgit v1.2.3 From e962c7f53253ff08f095b52c4eed97fe36cf3520 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 15 Apr 2012 13:23:34 -0400 Subject: Bugfix: nTotalBlocks wasn't in 0.5.0, so need to replace it with equivalent function call in backport --- src/qt/bitcoingui.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 08ccb75b81..778acd1e00 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -4,6 +4,9 @@ * W.J. van der Laan 2011 * The Bitcoin Developers 2011 */ + +#include "checkpoints.h" + #include "bitcoingui.h" #include "transactiontablemodel.h" #include "addressbookpage.h" @@ -480,7 +483,7 @@ void BitcoinGUI::setNumBlocks(int count) } // Set icon state: spinning if catching up, tick otherwise - if(secs < 90*60 && count >= nTotalBlocks) + if(secs < 90*60 && count >= Checkpoints::GetTotalBlocksEstimate()) { tooltip = tr("Up to date") + QString(".\n") + tooltip; labelBlocksIcon->setPixmap(QIcon(":/icons/synced").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); -- cgit v1.2.3 From cb1035a00882405fac47eb92e7086c7231062e3d Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sat, 14 Apr 2012 09:41:05 +0200 Subject: Show a message box when runaway exception happens This is more clear to users than when the program simply disappears (usually during initialization). It still logs the message to the console and debug log as well. --- src/qt/bitcoin.cpp | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 1133f122e7..74ace600e0 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -120,6 +120,15 @@ std::string _(const char* psz) return QCoreApplication::translate("bitcoin-core", psz).toStdString(); } +/* Handle runaway exceptions. Shows a message box with the problem and quits the program. + */ +static void handleRunawayException(std::exception *e) +{ + PrintExceptionContinue(e, "Runaway exception"); + QMessageBox::critical(0, "Runaway exception", BitcoinGUI::tr("A fatal error occured. Bitcoin can no longer continue safely and will quit.") + QString("\n\n") + QString::fromStdString(strMiscWarning)); + exit(1); +} + int main(int argc, char *argv[]) { QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8")); @@ -197,9 +206,9 @@ int main(int argc, char *argv[]) return 1; } } catch (std::exception& e) { - PrintException(&e, "Runaway exception"); + handleRunawayException(&e); } catch (...) { - PrintException(NULL, "Runaway exception"); + handleRunawayException(NULL); } return 0; } -- cgit v1.2.3 From 7c3db2129e3d625e05ee56b3d07d12c0b6cfed92 Mon Sep 17 00:00:00 2001 From: Chris Moore Date: Thu, 12 Apr 2012 13:13:08 -0700 Subject: CBitcoinSecret::SetString() now calls IsValid() to make sure it was passed something with the correct version. --- src/base58.h | 10 ++++++++++ src/test/key_tests.cpp | 12 +++++++----- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/src/base58.h b/src/base58.h index 755e34c418..7fefbc5d74 100644 --- a/src/base58.h +++ b/src/base58.h @@ -396,6 +396,16 @@ public: return fExpectTestNet == fTestNet && (vchData.size() == 32 || (vchData.size() == 33 && vchData[32] == 1)); } + bool SetString(const char* pszSecret) + { + return CBase58Data::SetString(pszSecret) && IsValid(); + } + + bool SetString(const std::string& strSecret) + { + return SetString(strSecret.c_str()); + } + CBitcoinSecret(const CSecret& vchSecret, bool fCompressed) { SetSecret(vchSecret, fCompressed); diff --git a/src/test/key_tests.cpp b/src/test/key_tests.cpp index bc8759b6fa..a6dab623b0 100644 --- a/src/test/key_tests.cpp +++ b/src/test/key_tests.cpp @@ -14,6 +14,7 @@ static const string strSecret1 ("5HxWvvfubhXpYYpS3tJkw6fq9jE9j18THftkZjHHfmFiWtm static const string strSecret2 ("5KC4ejrDjv152FGwP386VD1i2NYc5KkfSMyv1nGy1VGDxGHqVY3"); static const string strSecret1C("Kwr371tjA9u2rFSMZjTNun2PXXP3WPZu2afRHTcta6KxEUdm1vEw"); static const string strSecret2C("L3Hq7a8FEQwJkW1M2GNKDW28546Vp5miewcCzSqUD9kCAXrJdS3g"); +static const string strAddress1("1HV9Lc3sNHZxwj4Zk6fB38tEmBryq2cBiF"); #ifdef KEY_TESTS_DUMPINFO void dumpKeyInfo(uint256 privkey) @@ -47,11 +48,12 @@ BOOST_AUTO_TEST_SUITE(key_tests) BOOST_AUTO_TEST_CASE(key_test1) { - CBitcoinSecret bsecret1, bsecret2, bsecret1C, bsecret2C; - bsecret1.SetString (strSecret1); - bsecret2.SetString (strSecret2); - bsecret1C.SetString(strSecret1C); - bsecret2C.SetString(strSecret2C); + CBitcoinSecret bsecret1, bsecret2, bsecret1C, bsecret2C, baddress1; + BOOST_CHECK( bsecret1.SetString (strSecret1)); + BOOST_CHECK( bsecret2.SetString (strSecret2)); + BOOST_CHECK( bsecret1C.SetString(strSecret1C)); + BOOST_CHECK( bsecret2C.SetString(strSecret2C)); + BOOST_CHECK(!baddress1.SetString(strAddress1)); bool fCompressed; CSecret secret1 = bsecret1.GetSecret (fCompressed); -- cgit v1.2.3 From 401db6d96b34bbfa8942af1090ce29cafcf79859 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sun, 15 Apr 2012 11:42:40 +0200 Subject: work around issue in boost::program_options that prevents from compiling in clang --- src/util.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/util.cpp b/src/util.cpp index 0f496bc455..c3290f4176 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -4,6 +4,17 @@ // file license.txt or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "strlcpy.h" + +// Work around clang compilation problem in Boost 1.46: +// /usr/include/boost/program_options/detail/config_file.hpp:163:17: error: call to function 'to_internal' that is neither visible in the template definition nor found by argument-dependent lookup +// See also: http://stackoverflow.com/questions/10020179/compilation-fail-in-boost-librairies-program-options +// http://clang.debian.net/status.php?version=3.0&key=CANNOT_FIND_FUNCTION +namespace boost { + namespace program_options { + std::string to_internal(const std::string&); + } +} + #include #include #include -- cgit v1.2.3 From f650d62fc66d67e9afb6917de9220b1e0e6759fe Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sun, 15 Apr 2012 12:22:30 +0200 Subject: fix warnings: array subscript is of type 'char' [-Wchar-subscripts] --- src/bignum.h | 2 +- src/uint256.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bignum.h b/src/bignum.h index 6e8d3cb8ab..641ebf4b05 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -300,7 +300,7 @@ public: while (isxdigit(*psz)) { *this <<= 4; - int n = phexdigit[*psz++]; + int n = phexdigit[(unsigned char)*psz++]; *this += n; } if (fNegative) diff --git a/src/uint256.h b/src/uint256.h index ae263346a8..07809e49a8 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -315,7 +315,7 @@ public: // hex string to uint static char phexdigit[256] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7,8,9,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0 }; const char* pbegin = psz; - while (phexdigit[*psz] || *psz == '0') + while (phexdigit[(unsigned char)*psz] || *psz == '0') psz++; psz--; unsigned char* p1 = (unsigned char*)pn; -- cgit v1.2.3 From 85e975f37907848ad28240da5b5e682ceb565eb2 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sun, 15 Apr 2012 12:22:30 +0200 Subject: fix warnings: array subscript is of type 'char' [-Wchar-subscripts] --- src/bignum.h | 2 +- src/uint256.h | 2 +- src/util.cpp | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/bignum.h b/src/bignum.h index 6e8d3cb8ab..641ebf4b05 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -300,7 +300,7 @@ public: while (isxdigit(*psz)) { *this <<= 4; - int n = phexdigit[*psz++]; + int n = phexdigit[(unsigned char)*psz++]; *this += n; } if (fNegative) diff --git a/src/uint256.h b/src/uint256.h index ae263346a8..07809e49a8 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -315,7 +315,7 @@ public: // hex string to uint static char phexdigit[256] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7,8,9,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0 }; const char* pbegin = psz; - while (phexdigit[*psz] || *psz == '0') + while (phexdigit[(unsigned char)*psz] || *psz == '0') psz++; psz--; unsigned char* p1 = (unsigned char*)pn; diff --git a/src/util.cpp b/src/util.cpp index f6c37a2d1f..a9111673e7 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -567,7 +567,7 @@ vector DecodeBase64(const char* p, bool* pfInvalid) while (1) { - int dec = decode64_table[*p]; + int dec = decode64_table[(unsigned char)*p]; if (dec == -1) break; p++; switch (mode) @@ -607,12 +607,12 @@ vector DecodeBase64(const char* p, bool* pfInvalid) break; case 2: // 4n+2 base64 characters processed: require '==' - if (left || p[0] != '=' || p[1] != '=' || decode64_table[p[2]] != -1) + if (left || p[0] != '=' || p[1] != '=' || decode64_table[(unsigned char)p[2]] != -1) *pfInvalid = true; break; case 3: // 4n+3 base64 characters processed: require '=' - if (left || p[0] != '=' || decode64_table[p[1]] != -1) + if (left || p[0] != '=' || decode64_table[(unsigned char)p[1]] != -1) *pfInvalid = true; break; } -- cgit v1.2.3 From c4381587a600fca2aba0ca4d45c7a5f14fc25c0f Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sun, 15 Apr 2012 12:31:56 +0200 Subject: fix warnings: 'XX' defined as a struct here but previously declared as a class [-Wmismatched-tags] --- src/qt/addresstablemodel.cpp | 3 ++- src/qt/transactiontablemodel.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/qt/addresstablemodel.cpp b/src/qt/addresstablemodel.cpp index 8fd6d52b7e..5d724ea1d1 100644 --- a/src/qt/addresstablemodel.cpp +++ b/src/qt/addresstablemodel.cpp @@ -27,8 +27,9 @@ struct AddressTableEntry }; // Private implementation -struct AddressTablePriv +class AddressTablePriv { +public: CWallet *wallet; QList cachedAddressTable; diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index 480d4ac25e..28620bf3aa 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -45,8 +45,9 @@ struct TxLessThan }; // Private implementation -struct TransactionTablePriv +class TransactionTablePriv { +public: TransactionTablePriv(CWallet *wallet, TransactionTableModel *parent): wallet(wallet), parent(parent) -- cgit v1.2.3 From 5f4fee559e3a30d967b104ddadb82283788a9f8a Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sun, 15 Apr 2012 12:42:52 +0200 Subject: fix warnings: enumeration values 'XX' not handled in switch [-Wswitch-enum] --- src/qt/editaddressdialog.cpp | 3 +++ src/qt/sendcoinsdialog.cpp | 2 ++ src/qt/walletmodel.h | 3 +-- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/qt/editaddressdialog.cpp b/src/qt/editaddressdialog.cpp index 8cc3c85d7a..cecb8aecd7 100644 --- a/src/qt/editaddressdialog.cpp +++ b/src/qt/editaddressdialog.cpp @@ -106,6 +106,9 @@ void EditAddressDialog::accept() tr("New key generation failed."), QMessageBox::Ok, QMessageBox::Ok); return; + case AddressTableModel::OK: + // Failed with unknown reason. Just reject. + break; } return; diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 657761515b..4c58b38b78 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -148,6 +148,8 @@ void SendCoinsDialog::on_sendButton_clicked() 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::Ok, QMessageBox::Ok); break; + case WalletModel::Aborted: // User aborted, nothing to do + break; case WalletModel::OK: accept(); break; diff --git a/src/qt/walletmodel.h b/src/qt/walletmodel.h index 055ba184b0..e04ae8790c 100644 --- a/src/qt/walletmodel.h +++ b/src/qt/walletmodel.h @@ -34,8 +34,7 @@ public: DuplicateAddress, TransactionCreationFailed, // Error returned when wallet is still locked TransactionCommitFailed, - Aborted, - MiscError + Aborted }; enum EncryptionStatus -- cgit v1.2.3 From fdcafa35359b3ad9af79d2367a1884d01607fb84 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sun, 15 Apr 2012 12:53:14 +0200 Subject: fix warnings: unused variable 'XX' [-Wunused-variable] --- scripts/qt/extract_strings_qt.py | 12 +++++++++--- src/qt/bitcoinstrings.cpp | 7 ++++++- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/scripts/qt/extract_strings_qt.py b/scripts/qt/extract_strings_qt.py index 6627de4abf..b0478699ee 100755 --- a/scripts/qt/extract_strings_qt.py +++ b/scripts/qt/extract_strings_qt.py @@ -53,9 +53,15 @@ child = Popen(['xgettext','--output=-','-n','--keyword=_'] + files, stdout=PIPE) messages = parse_po(out) f = open(OUT_CPP, 'w') -f.write('#include \n') -f.write('// Automatically generated by extract_strings.py\n') -f.write('static const char *bitcoin_strings[] = {') +f.write("""#include +// Automatically generated by extract_strings.py +#ifdef __GNUC__ +#define UNUSED __attribute__((unused)) +#else +#define UNUSED +#endif +""") +f.write('static const char UNUSED *bitcoin_strings[] = {') for (msgid, msgstr) in messages: if msgid != EMPTY: f.write('QT_TRANSLATE_NOOP("bitcoin-core", %s),\n' % ('\n'.join(msgid))) diff --git a/src/qt/bitcoinstrings.cpp b/src/qt/bitcoinstrings.cpp index 1b0a6767d7..2d77441b46 100644 --- a/src/qt/bitcoinstrings.cpp +++ b/src/qt/bitcoinstrings.cpp @@ -1,6 +1,11 @@ #include // Automatically generated by extract_strings.py -static const char *bitcoin_strings[] = {QT_TRANSLATE_NOOP("bitcoin-core", "Bitcoin version"), +#ifdef __GNUC__ +#define UNUSED __attribute__((unused)) +#else +#define UNUSED +#endif +static const char UNUSED *bitcoin_strings[] = {QT_TRANSLATE_NOOP("bitcoin-core", "Bitcoin version"), QT_TRANSLATE_NOOP("bitcoin-core", "Usage:"), QT_TRANSLATE_NOOP("bitcoin-core", "Send command to -server or bitcoind\n"), QT_TRANSLATE_NOOP("bitcoin-core", "List commands\n"), -- cgit v1.2.3 From 0aa0bb1ead81641480c0c7533a1f52dd6a07434e Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sun, 15 Apr 2012 12:53:14 +0200 Subject: fix warnings: unused variable 'XX' [-Wunused-variable] --- scripts/qt/extract_strings_qt.py | 12 +++++++++--- src/net.cpp | 3 --- src/qt/bitcoinstrings.cpp | 7 ++++++- src/script.cpp | 1 - 4 files changed, 15 insertions(+), 8 deletions(-) diff --git a/scripts/qt/extract_strings_qt.py b/scripts/qt/extract_strings_qt.py index 6627de4abf..b0478699ee 100755 --- a/scripts/qt/extract_strings_qt.py +++ b/scripts/qt/extract_strings_qt.py @@ -53,9 +53,15 @@ child = Popen(['xgettext','--output=-','-n','--keyword=_'] + files, stdout=PIPE) messages = parse_po(out) f = open(OUT_CPP, 'w') -f.write('#include \n') -f.write('// Automatically generated by extract_strings.py\n') -f.write('static const char *bitcoin_strings[] = {') +f.write("""#include +// Automatically generated by extract_strings.py +#ifdef __GNUC__ +#define UNUSED __attribute__((unused)) +#else +#define UNUSED +#endif +""") +f.write('static const char UNUSED *bitcoin_strings[] = {') for (msgid, msgstr) in messages: if msgid != EMPTY: f.write('QT_TRANSLATE_NOOP("bitcoin-core", %s),\n' % ('\n'.join(msgid))) diff --git a/src/net.cpp b/src/net.cpp index 37e73c421a..9bdb1f283e 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1305,8 +1305,6 @@ void ThreadOpenConnections2(void* parg) return; } - bool fAddSeeds = false; - // Add seed nodes if IRC isn't working bool fTOR = (fUseProxy && addrProxy.GetPort() == 9050); if (addrman.size()==0 && (GetTime() - nStart > 60 || fTOR) && !fTestNet) @@ -1332,7 +1330,6 @@ void ThreadOpenConnections2(void* parg) // Choose an address to connect to based on most recently seen // CAddress addrConnect; - int64 nBest = std::numeric_limits::min(); // Only connect to one address per a.b.?.? range. // Do this here so we don't have to critsect vNodes inside mapAddresses critsect. diff --git a/src/qt/bitcoinstrings.cpp b/src/qt/bitcoinstrings.cpp index 73db1fe46c..73a63e92ba 100644 --- a/src/qt/bitcoinstrings.cpp +++ b/src/qt/bitcoinstrings.cpp @@ -1,6 +1,11 @@ #include // Automatically generated by extract_strings.py -static const char *bitcoin_strings[] = {QT_TRANSLATE_NOOP("bitcoin-core", "Bitcoin version"), +#ifdef __GNUC__ +#define UNUSED __attribute__((unused)) +#else +#define UNUSED +#endif +static const char UNUSED *bitcoin_strings[] = {QT_TRANSLATE_NOOP("bitcoin-core", "Bitcoin version"), QT_TRANSLATE_NOOP("bitcoin-core", "Usage:"), QT_TRANSLATE_NOOP("bitcoin-core", "Send command to -server or bitcoind"), QT_TRANSLATE_NOOP("bitcoin-core", "List commands"), diff --git a/src/script.cpp b/src/script.cpp index b6f120289a..21f101e1c5 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -1443,7 +1443,6 @@ bool ExtractAddresses(const CScript& scriptPubKey, txnouttype& typeRet, vector Date: Sun, 15 Apr 2012 12:59:20 +0200 Subject: fix warnings: delete called on 'XX' that has virtual functions but non-virtual destructor [-Wdelete-non-virtual-dtor] --- src/keystore.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/keystore.h b/src/keystore.h index 1f2c6aea3e..cb297c35ab 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -13,6 +13,8 @@ protected: mutable CCriticalSection cs_KeyStore; public: + virtual ~CKeyStore() {} + virtual bool AddKey(const CKey& key) =0; virtual bool HaveKey(const CBitcoinAddress &address) const =0; virtual bool GetKey(const CBitcoinAddress &address, CKey& keyOut) const =0; -- cgit v1.2.3 From 9c236a945c7dc5f401b0ae51b69e2b658c62654c Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sun, 15 Apr 2012 13:03:28 +0200 Subject: fix warnings: '&&' within '||' [-Wlogical-op-parentheses] --- src/addrman.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/addrman.cpp b/src/addrman.cpp index 2ef666cf2c..8fb40b46df 100644 --- a/src/addrman.cpp +++ b/src/addrman.cpp @@ -312,7 +312,7 @@ bool CAddrMan::Add_(const CAddress &addr, const CNetAddr& source, int64 nTimePen pinfo->nServices |= addr.nServices; // do not update if no new information is present - if (!addr.nTime || pinfo->nTime && addr.nTime <= pinfo->nTime) + if (!addr.nTime || (pinfo->nTime && addr.nTime <= pinfo->nTime)) return false; // do not update if the entry was already in the "tried" table -- cgit v1.2.3 From 8460185dec74383b1e49500683cfc7aa9ceba554 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sun, 15 Apr 2012 13:27:00 +0200 Subject: fix warnings: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] --- src/main.cpp | 4 ++++ src/main.h | 2 ++ src/rpc.cpp | 4 ++++ src/wallet.cpp | 2 ++ src/wallet.h | 2 ++ 5 files changed, 14 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 4316d242f9..059dd3db9e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1149,14 +1149,18 @@ bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex) // This rule applies to all blocks whose timestamp is after March 15, 2012, 0:00 UTC. // On testnet it is enabled as of februari 20, 2012, 0:00 UTC. if (pindex->nTime > 1331769600 || (fTestNet && pindex->nTime > 1329696000)) + { BOOST_FOREACH(CTransaction& tx, vtx) { CTxIndex txindexOld; if (txdb.ReadTxIndex(tx.GetHash(), txindexOld)) + { BOOST_FOREACH(CDiskTxPos &pos, txindexOld.vSpent) if (pos.IsNull()) return false; + } } + } // P2SH didn't become active until Apr 1 2012 (Feb 15 on testnet) int64 nEvalSwitchTime = fTestNet ? 1329264000 : 1333238400; diff --git a/src/main.h b/src/main.h index e6f60a6a8d..b0f713e876 100644 --- a/src/main.h +++ b/src/main.h @@ -572,9 +572,11 @@ public: // To limit dust spam, require MIN_TX_FEE/MIN_RELAY_TX_FEE if any output is less than 0.01 if (nMinFee < nBaseFee) + { BOOST_FOREACH(const CTxOut& txout, vout) if (txout.nValue < CENT) nMinFee = nBaseFee; + } // Raise the price as the block approaches full if (nBlockSize != 1 && nNewBlockSize >= MAX_BLOCK_SIZE_GEN/2) diff --git a/src/rpc.cpp b/src/rpc.cpp index b62da8ecdf..bbfea33d76 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -685,8 +685,10 @@ Value getbalance(const Array& params, bool fHelp) list > listSent; wtx.GetAmounts(allGeneratedImmature, allGeneratedMature, listReceived, listSent, allFee, strSentAccount); if (wtx.GetDepthInMainChain() >= nMinDepth) + { BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress,int64)& r, listReceived) nBalance += r.second; + } BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress,int64)& r, listSent) nBalance -= r.second; nBalance -= allFee; @@ -1046,6 +1048,7 @@ void ListTransactions(const CWalletTx& wtx, const string& strAccount, int nMinDe // Received if (listReceived.size() > 0 && wtx.GetDepthInMainChain() >= nMinDepth) + { BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress, int64)& r, listReceived) { string account; @@ -1063,6 +1066,7 @@ void ListTransactions(const CWalletTx& wtx, const string& strAccount, int nMinDe ret.push_back(entry); } } + } } void AcentryToJSON(const CAccountingEntry& acentry, const string& strAccount, Array& ret) diff --git a/src/wallet.cpp b/src/wallet.cpp index 9f7422d1fb..3f51313e9b 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -545,8 +545,10 @@ void CWalletTx::AddSupportingTransactions(CTxDB& txdb) vtxPrev.push_back(tx); if (nDepth < COPY_DEPTH) + { BOOST_FOREACH(const CTxIn& txin, tx.vin) vWorkQueue.push_back(txin.prevout.hash); + } } } } diff --git a/src/wallet.h b/src/wallet.h index 4387e1a01f..bb9177b684 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -499,8 +499,10 @@ public: return false; if (mapPrev.empty()) + { BOOST_FOREACH(const CMerkleTx& tx, vtxPrev) mapPrev[tx.GetHash()] = &tx; + } BOOST_FOREACH(const CTxIn& txin, ptx->vin) { -- cgit v1.2.3 From 1bdfa94a0164f73b453633861b91c67bb6bf10d8 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sun, 15 Apr 2012 13:27:00 +0200 Subject: fix warnings: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] --- src/bitcoinrpc.cpp | 4 ++++ src/db.cpp | 4 ++++ src/main.cpp | 4 ++++ src/main.h | 2 ++ src/wallet.cpp | 2 ++ src/wallet.h | 2 ++ 6 files changed, 18 insertions(+) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index a24667756f..98702ee7cb 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -802,8 +802,10 @@ Value getbalance(const Array& params, bool fHelp) list > listSent; wtx.GetAmounts(allGeneratedImmature, allGeneratedMature, listReceived, listSent, allFee, strSentAccount); if (wtx.GetDepthInMainChain() >= nMinDepth) + { BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress,int64)& r, listReceived) nBalance += r.second; + } BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress,int64)& r, listSent) nBalance -= r.second; nBalance -= allFee; @@ -1236,6 +1238,7 @@ void ListTransactions(const CWalletTx& wtx, const string& strAccount, int nMinDe // Received if (listReceived.size() > 0 && wtx.GetDepthInMainChain() >= nMinDepth) + { BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress, int64)& r, listReceived) { string account; @@ -1253,6 +1256,7 @@ void ListTransactions(const CWalletTx& wtx, const string& strAccount, int nMinDe ret.push_back(entry); } } + } } void AcentryToJSON(const CAccountingEntry& acentry, const string& strAccount, Array& ret) diff --git a/src/db.cpp b/src/db.cpp index 2a09e2e673..60e04a218e 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -647,6 +647,7 @@ bool CTxDB::LoadBlockIndex() // check level 4: check whether spent txouts were spent within the main chain int nOutput = 0; if (nCheckLevel>3) + { BOOST_FOREACH(const CDiskTxPos &txpos, txindex.vSpent) { if (!txpos.IsNull()) @@ -687,9 +688,11 @@ bool CTxDB::LoadBlockIndex() } nOutput++; } + } } // check level 5: check whether all prevouts are marked spent if (nCheckLevel>4) + { BOOST_FOREACH(const CTxIn &txin, tx.vin) { CTxIndex txindex; @@ -700,6 +703,7 @@ bool CTxDB::LoadBlockIndex() pindexFork = pindex->pprev; } } + } } } } diff --git a/src/main.cpp b/src/main.cpp index d795ca1df9..ecb9a6af1d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1269,14 +1269,18 @@ bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex) // This rule applies to all blocks whose timestamp is after March 15, 2012, 0:00 UTC. // On testnet it is enabled as of februari 20, 2012, 0:00 UTC. if (pindex->nTime > 1331769600 || (fTestNet && pindex->nTime > 1329696000)) + { BOOST_FOREACH(CTransaction& tx, vtx) { CTxIndex txindexOld; if (txdb.ReadTxIndex(tx.GetHash(), txindexOld)) + { BOOST_FOREACH(CDiskTxPos &pos, txindexOld.vSpent) if (pos.IsNull()) return false; + } } + } // BIP16 didn't become active until Apr 1 2012 (Feb 15 on testnet) int64 nBIP16SwitchTime = fTestNet ? 1329264000 : 1333238400; diff --git a/src/main.h b/src/main.h index fc11411164..e89258699d 100644 --- a/src/main.h +++ b/src/main.h @@ -572,9 +572,11 @@ public: // To limit dust spam, require MIN_TX_FEE/MIN_RELAY_TX_FEE if any output is less than 0.01 if (nMinFee < nBaseFee) + { BOOST_FOREACH(const CTxOut& txout, vout) if (txout.nValue < CENT) nMinFee = nBaseFee; + } // Raise the price as the block approaches full if (nBlockSize != 1 && nNewBlockSize >= MAX_BLOCK_SIZE_GEN/2) diff --git a/src/wallet.cpp b/src/wallet.cpp index 27ed7228df..49e1392c27 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -644,8 +644,10 @@ void CWalletTx::AddSupportingTransactions(CTxDB& txdb) vtxPrev.push_back(tx); if (nDepth < COPY_DEPTH) + { BOOST_FOREACH(const CTxIn& txin, tx.vin) vWorkQueue.push_back(txin.prevout.hash); + } } } } diff --git a/src/wallet.h b/src/wallet.h index e1065cff38..308a266571 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -551,8 +551,10 @@ public: return false; if (mapPrev.empty()) + { BOOST_FOREACH(const CMerkleTx& tx, vtxPrev) mapPrev[tx.GetHash()] = &tx; + } BOOST_FOREACH(const CTxIn& txin, ptx->vin) { -- cgit v1.2.3 From e2ce6438a971d8cd22912c6ea831b9801c4a9a92 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 13 Apr 2012 21:08:46 +0200 Subject: Set label when selecting an address that already has a label. Fixes #1080. --- src/qt/sendcoinsentry.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/qt/sendcoinsentry.cpp b/src/qt/sendcoinsentry.cpp index caffaaeff2..c8242d8352 100644 --- a/src/qt/sendcoinsentry.cpp +++ b/src/qt/sendcoinsentry.cpp @@ -59,9 +59,11 @@ void SendCoinsEntry::on_payTo_textChanged(const QString &address) { if(!model) return; - // Fill in label from address book, if no label is filled in yet - if(ui->addAsLabel->text().isEmpty()) - ui->addAsLabel->setText(model->getAddressTableModel()->labelForAddress(address));} + // Fill in label from address book, if address has an associated label + QString associatedLabel = model->getAddressTableModel()->labelForAddress(address); + if(!associatedLabel.isEmpty()) + ui->addAsLabel->setText(associatedLabel); +} void SendCoinsEntry::setModel(WalletModel *model) { -- cgit v1.2.3 From 12570da46ff9de4201ae9f3411db0e955d2993de Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Fri, 13 Apr 2012 18:24:55 -0400 Subject: Locking fix for AlreadyHave() Access to mapTransactions[] must be guarded by cs_mapTransactions lock. --- src/main.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 059dd3db9e..57c18aed48 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1953,7 +1953,14 @@ bool static AlreadyHave(CTxDB& txdb, const CInv& inv) { switch (inv.type) { - case MSG_TX: return mapTransactions.count(inv.hash) || mapOrphanTransactions.count(inv.hash) || txdb.ContainsTx(inv.hash); + case MSG_TX: + CRITICAL_BLOCK(cs_mapTransactions) + { + return mapTransactions.count(inv.hash) || + mapOrphanTransactions.count(inv.hash) || + txdb.ContainsTx(inv.hash); + } + case MSG_BLOCK: return mapBlockIndex.count(inv.hash) || mapOrphanBlocks.count(inv.hash); } // Don't know what it is, just say we already got one -- cgit v1.2.3 From 1175d8f6a1782da777f406a8400b7281a7af09e7 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Tue, 17 Apr 2012 12:30:00 -0400 Subject: AlreadyHave(): only hold lock during mapTransactions access --- src/main.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 57c18aed48..f13b884f96 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1954,11 +1954,15 @@ bool static AlreadyHave(CTxDB& txdb, const CInv& inv) switch (inv.type) { case MSG_TX: + { + bool txInMap = false; CRITICAL_BLOCK(cs_mapTransactions) { - return mapTransactions.count(inv.hash) || - mapOrphanTransactions.count(inv.hash) || - txdb.ContainsTx(inv.hash); + txInMap = (mapTransactions.count(inv.hash) != 0); + } + return txInMap || + mapOrphanTransactions.count(inv.hash) || + txdb.ContainsTx(inv.hash); } case MSG_BLOCK: return mapBlockIndex.count(inv.hash) || mapOrphanBlocks.count(inv.hash); -- cgit v1.2.3 From d506c160eb4ccf826374e0d628ee09b9fff1def0 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Mon, 16 Apr 2012 11:46:13 +0200 Subject: Add forgotten initializer --- src/qt/csvmodelwriter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/csvmodelwriter.cpp b/src/qt/csvmodelwriter.cpp index 4b21b8c4be..84578b3322 100644 --- a/src/qt/csvmodelwriter.cpp +++ b/src/qt/csvmodelwriter.cpp @@ -6,7 +6,7 @@ CSVModelWriter::CSVModelWriter(const QString &filename, QObject *parent) : QObject(parent), - filename(filename) + filename(filename), model(0) { } -- cgit v1.2.3 From ef2f3ddaf764f886fbb4d6004844fe88b8029cf2 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Sun, 15 Apr 2012 16:47:24 -0400 Subject: The string class returns string::npos, when find() fails. Noticed when sign-comparison warnings were enabled. --- src/irc.cpp | 8 ++++---- src/net.cpp | 4 ++-- src/rpc.cpp | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/irc.cpp b/src/irc.cpp index 5dfab06bac..5ac2306f16 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -156,13 +156,13 @@ int RecvUntil(SOCKET hSocket, const char* psz1, const char* psz2=NULL, const cha if (!RecvLineIRC(hSocket, strLine)) return 0; printf("IRC %s\n", strLine.c_str()); - if (psz1 && strLine.find(psz1) != -1) + if (psz1 && strLine.find(psz1) != string::npos) return 1; - if (psz2 && strLine.find(psz2) != -1) + if (psz2 && strLine.find(psz2) != string::npos) return 2; - if (psz3 && strLine.find(psz3) != -1) + if (psz3 && strLine.find(psz3) != string::npos) return 3; - if (psz4 && strLine.find(psz4) != -1) + if (psz4 && strLine.find(psz4) != string::npos) return 4; } } diff --git a/src/net.cpp b/src/net.cpp index 763e160edd..38fd3b5a14 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -316,14 +316,14 @@ bool GetMyExternalIP2(const CAddress& addrConnect, const char* pszGet, const cha } if (pszKeyword == NULL) break; - if (strLine.find(pszKeyword) != -1) + if (strLine.find(pszKeyword) != string::npos) { strLine = strLine.substr(strLine.find(pszKeyword) + strlen(pszKeyword)); break; } } closesocket(hSocket); - if (strLine.find("<") != -1) + if (strLine.find("<") != string::npos) strLine = strLine.substr(0, strLine.find("<")); strLine = strLine.substr(strspn(strLine.c_str(), " \t\n\r")); while (strLine.size() > 0 && isspace(strLine[strLine.size()-1])) diff --git a/src/rpc.cpp b/src/rpc.cpp index bbfea33d76..8a02d95c1b 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -147,7 +147,7 @@ Value help(const Array& params, bool fHelp) // Help text is returned in an exception string strHelp = string(e.what()); if (strCommand == "") - if (strHelp.find('\n') != -1) + if (strHelp.find('\n') != string::npos) strHelp = strHelp.substr(0, strHelp.find('\n')); strRet += strHelp + "\n"; } -- cgit v1.2.3 From 774e9b6dbb2c967ec979351cc4dba82fc0102ee1 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Sun, 15 Apr 2012 16:52:09 -0400 Subject: Fix loop index var types, fixing many minor sign comparison warnings foo.size() typically returns an unsigned integral type; make loop variables match those types' signedness. --- src/main.cpp | 34 +++++++++++++++++----------------- src/main.h | 12 ++++++------ src/net.cpp | 6 +++--- src/protocol.cpp | 2 +- src/uint256.h | 2 +- src/wallet.cpp | 14 +++++++------- src/wallet.h | 6 +++--- 7 files changed, 38 insertions(+), 38 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index f13b884f96..76e0783794 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -389,7 +389,7 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi // Check for conflicts with in-memory transactions CTransaction* ptxOld = NULL; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { COutPoint outpoint = vin[i].prevout; if (mapNextTx.count(outpoint)) @@ -405,7 +405,7 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi return false; if (!IsNewerThan(*ptxOld)) return false; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { COutPoint outpoint = vin[i].prevout; if (!mapNextTx.count(outpoint) || mapNextTx[outpoint].ptx != ptxOld) @@ -511,7 +511,7 @@ bool CTransaction::AddToMemoryPoolUnchecked() { uint256 hash = GetHash(); mapTransactions[hash] = *this; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) mapNextTx[vin[i].prevout] = CInPoint(&mapTransactions[hash], i); nTransactionsUpdated++; } @@ -884,7 +884,7 @@ bool CTransaction::FetchInputs(CTxDB& txdb, const map& mapTes if (IsCoinBase()) return true; // Coinbase transactions have no inputs to fetch. - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { COutPoint prevout = vin[i].prevout; if (inputsRet.count(prevout.hash)) @@ -929,7 +929,7 @@ bool CTransaction::FetchInputs(CTxDB& txdb, const map& mapTes } // Make sure all prevout.n's are valid: - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { const COutPoint prevout = vin[i].prevout; assert(inputsRet.count(prevout.hash) != 0); @@ -966,7 +966,7 @@ int64 CTransaction::GetValueIn(const MapPrevTx& inputs) const return 0; int64 nResult = 0; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { nResult += GetOutputFor(vin[i], inputs).nValue; } @@ -980,7 +980,7 @@ int CTransaction::GetP2SHSigOpCount(const MapPrevTx& inputs) const return 0; int nSigOps = 0; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { const CTxOut& prevout = GetOutputFor(vin[i], inputs); if (prevout.scriptPubKey.IsPayToScriptHash()) @@ -1001,7 +1001,7 @@ bool CTransaction::ConnectInputs(MapPrevTx inputs, { int64 nValueIn = 0; int64 nFees = 0; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { COutPoint prevout = vin[i].prevout; assert(inputs.count(prevout.hash) > 0); @@ -1073,7 +1073,7 @@ bool CTransaction::ClientConnectInputs() CRITICAL_BLOCK(cs_mapTransactions) { int64 nValueIn = 0; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { // Get prev tx from single transactions in memory COutPoint prevout = vin[i].prevout; @@ -1284,7 +1284,7 @@ bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew) // Connect longer branch vector vDelete; - for (int i = 0; i < vConnect.size(); i++) + for (unsigned int i = 0; i < vConnect.size(); i++) { CBlockIndex* pindex = vConnect[i]; CBlock block; @@ -1463,7 +1463,7 @@ bool CBlock::CheckBlock() const // First transaction must be coinbase, the rest must not be if (vtx.empty() || !vtx[0].IsCoinBase()) return error("CheckBlock() : first tx is not coinbase"); - for (int i = 1; i < vtx.size(); i++) + for (unsigned int i = 1; i < vtx.size(); i++) if (vtx[i].IsCoinBase()) return error("CheckBlock() : more than one coinbase"); @@ -1589,7 +1589,7 @@ bool static ProcessBlock(CNode* pfrom, CBlock* pblock) // Recursively process any orphan blocks that depended on this one vector vWorkQueue; vWorkQueue.push_back(hash); - for (int i = 0; i < vWorkQueue.size(); i++) + for (unsigned int i = 0; i < vWorkQueue.size(); i++) { uint256 hashPrev = vWorkQueue[i]; for (multimap::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev); @@ -1813,7 +1813,7 @@ void PrintBlockTree() // put the main timechain first vector& vNext = mapNext[pindex]; - for (int i = 0; i < vNext.size(); i++) + for (unsigned int i = 0; i < vNext.size(); i++) { if (vNext[i]->pnext) { @@ -1823,7 +1823,7 @@ void PrintBlockTree() } // iterate children - for (int i = 0; i < vNext.size(); i++) + for (unsigned int i = 0; i < vNext.size(); i++) vStack.push_back(make_pair(nCol+i, vNext[i])); } } @@ -2335,7 +2335,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) vWorkQueue.push_back(inv.hash); // Recursively process any orphan transactions that depended on this one - for (int i = 0; i < vWorkQueue.size(); i++) + for (unsigned int i = 0; i < vWorkQueue.size(); i++) { uint256 hashPrev = vWorkQueue[i]; for (multimap::iterator mi = mapOrphanTransactionsByPrev.lower_bound(hashPrev); @@ -3112,7 +3112,7 @@ void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1)); // Byte swap all the input buffer - for (int i = 0; i < sizeof(tmp)/4; i++) + for (unsigned int i = 0; i < sizeof(tmp)/4; i++) ((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]); // Precalc the first half of the first hash, which stays constant @@ -3234,7 +3234,7 @@ void static BitcoinMiner(CWallet *pwallet) // Check if something found if (nNonceFound != -1) { - for (int i = 0; i < sizeof(hash)/4; i++) + for (unsigned int i = 0; i < sizeof(hash)/4; i++) ((unsigned int*)&hash)[i] = ByteReverse(((unsigned int*)&hash)[i]); if (hash <= hashTarget) diff --git a/src/main.h b/src/main.h index b0f713e876..de674b5bb1 100644 --- a/src/main.h +++ b/src/main.h @@ -455,13 +455,13 @@ public: { if (vin.size() != old.vin.size()) return false; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) if (vin[i].prevout != old.vin[i].prevout) return false; bool fNewer = false; unsigned int nLowest = UINT_MAX; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { if (vin[i].nSequence != old.vin[i].nSequence) { @@ -636,9 +636,9 @@ public: vin.size(), vout.size(), nLockTime); - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) str += " " + vin[i].ToString() + "\n"; - for (int i = 0; i < vout.size(); i++) + for (unsigned int i = 0; i < vout.size(); i++) str += " " + vout[i].ToString() + "\n"; return str; } @@ -1012,13 +1012,13 @@ public: hashMerkleRoot.ToString().substr(0,10).c_str(), nTime, nBits, nNonce, vtx.size()); - for (int i = 0; i < vtx.size(); i++) + for (unsigned int i = 0; i < vtx.size(); i++) { printf(" "); vtx[i].print(); } printf(" vMerkleTree: "); - for (int i = 0; i < vMerkleTree.size(); i++) + for (unsigned int i = 0; i < vMerkleTree.size(); i++) printf("%s ", vMerkleTree[i].ToString().substr(0,10).c_str()); printf("\n"); } diff --git a/src/net.cpp b/src/net.cpp index 38fd3b5a14..92ccb1e880 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -869,7 +869,7 @@ void ThreadSocketHandler2(void* parg) if (hSocketMax > -1) { printf("socket select error %d\n", nErr); - for (int i = 0; i <= hSocketMax; i++) + for (unsigned int i = 0; i <= hSocketMax; i++) FD_SET(i, &fdsetRecv); } FD_ZERO(&fdsetSend); @@ -1252,7 +1252,7 @@ void ThreadDNSAddressSeed2(void* parg) { printf("Loading addresses from DNS seeds (could take a while)\n"); - for (int seed_idx = 0; seed_idx < ARRAYLEN(strDNSSeed); seed_idx++) { + for (unsigned int seed_idx = 0; seed_idx < ARRAYLEN(strDNSSeed); seed_idx++) { vector vaddr; if (Lookup(strDNSSeed[seed_idx], vaddr, NODE_NETWORK, -1, true)) { @@ -1469,7 +1469,7 @@ void ThreadOpenConnections2(void* parg) if (fAddSeeds) { - for (int i = 0; i < ARRAYLEN(pnSeed); i++) + for (unsigned int i = 0; i < ARRAYLEN(pnSeed); i++) { // It'll only connect to one or two seed nodes because once it connects, // it'll get a pile of addresses with newer timestamps. diff --git a/src/protocol.cpp b/src/protocol.cpp index 48784b9cfb..a3e54ebc3d 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -270,7 +270,7 @@ CInv::CInv(int typeIn, const uint256& hashIn) CInv::CInv(const std::string& strType, const uint256& hashIn) { - int i; + unsigned int i; for (i = 1; i < ARRAYLEN(ppszTypeName); i++) { if (strType == ppszTypeName[i]) diff --git a/src/uint256.h b/src/uint256.h index 07809e49a8..bbdba99533 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -294,7 +294,7 @@ public: std::string GetHex() const { char psz[sizeof(pn)*2 + 1]; - for (int i = 0; i < sizeof(pn); i++) + for (unsigned int i = 0; i < sizeof(pn); i++) sprintf(psz + i*2, "%02x", ((unsigned char*)pn)[sizeof(pn) - i - 1]); return std::string(psz, psz + sizeof(pn)*2); } diff --git a/src/wallet.cpp b/src/wallet.cpp index 3f51313e9b..b3eb06a3f6 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -512,7 +512,7 @@ void CWalletTx::AddSupportingTransactions(CTxDB& txdb) { map mapWalletPrev; set setAlreadyDone; - for (int i = 0; i < vWorkQueue.size(); i++) + for (unsigned int i = 0; i < vWorkQueue.size(); i++) { uint256 hash = vWorkQueue[i]; if (setAlreadyDone.count(hash)) @@ -607,7 +607,7 @@ void CWallet::ReacceptWalletTransactions() printf("ERROR: ReacceptWalletTransactions() : txindex.vSpent.size() %d != wtx.vout.size() %d\n", txindex.vSpent.size(), wtx.vout.size()); continue; } - for (int i = 0; i < txindex.vSpent.size(); i++) + for (unsigned int i = 0; i < txindex.vSpent.size(); i++) { if (wtx.IsSpent(i)) continue; @@ -771,7 +771,7 @@ bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfThe if (nDepth < (pcoin->IsFromMe() ? nConfMine : nConfTheirs)) continue; - for (int i = 0; i < pcoin->vout.size(); i++) + for (unsigned int i = 0; i < pcoin->vout.size(); i++) { if (pcoin->IsSpent(i) || !IsMine(pcoin->vout[i])) continue; @@ -804,7 +804,7 @@ bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfThe if (nTotalLower == nTargetValue || nTotalLower == nTargetValue + CENT) { - for (int i = 0; i < vValue.size(); ++i) + for (unsigned int i = 0; i < vValue.size(); ++i) { setCoinsRet.insert(vValue[i].second); nValueRet += vValue[i].first; @@ -837,7 +837,7 @@ bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfThe bool fReachedTarget = false; for (int nPass = 0; nPass < 2 && !fReachedTarget; nPass++) { - for (int i = 0; i < vValue.size(); i++) + for (unsigned int i = 0; i < vValue.size(); i++) { if (nPass == 0 ? rand() % 2 : !vfIncluded[i]) { @@ -866,7 +866,7 @@ bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfThe nValueRet += coinLowestLarger.first; } else { - for (int i = 0; i < vValue.size(); i++) + for (unsigned int i = 0; i < vValue.size(); i++) if (vfBest[i]) { setCoinsRet.insert(vValue[i].second); @@ -875,7 +875,7 @@ bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfThe //// debug print printf("SelectCoins() best subset: "); - for (int i = 0; i < vValue.size(); i++) + for (unsigned int i = 0; i < vValue.size(); i++) if (vfBest[i]) printf("%s ", FormatMoney(vValue[i].first).c_str()); printf("total %s\n", FormatMoney(nBest).c_str()); diff --git a/src/wallet.h b/src/wallet.h index bb9177b684..e0f39b4170 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -355,7 +355,7 @@ public: bool UpdateSpent(const std::vector& vfNewSpent) { bool fReturn = false; - for (int i=0; i < vfNewSpent.size(); i++) + for (unsigned int i = 0; i < vfNewSpent.size(); i++) { if (i == vfSpent.size()) break; @@ -434,7 +434,7 @@ public: return nAvailableCreditCached; int64 nCredit = 0; - for (int i = 0; i < vout.size(); i++) + for (unsigned int i = 0; i < vout.size(); i++) { if (!IsSpent(i)) { @@ -487,7 +487,7 @@ public: std::vector vWorkQueue; vWorkQueue.reserve(vtxPrev.size()+1); vWorkQueue.push_back(this); - for (int i = 0; i < vWorkQueue.size(); i++) + for (unsigned int i = 0; i < vWorkQueue.size(); i++) { const CMerkleTx* ptx = vWorkQueue[i]; -- cgit v1.2.3 From 0c3aa881e2ac7a6142fcfcbb9b7d2824532fe522 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Sun, 15 Apr 2012 16:52:09 -0400 Subject: Fix loop index var types, fixing many minor sign comparison warnings foo.size() typically returns an unsigned integral type; make loop variables match those types' signedness. --- src/addrman.cpp | 4 ++-- src/bitcoinrpc.cpp | 2 +- src/main.cpp | 38 +++++++++++++++++++------------------- src/main.h | 12 ++++++------ src/net.cpp | 6 +++--- src/netbase.cpp | 2 +- src/protocol.cpp | 2 +- src/uint256.h | 2 +- src/wallet.cpp | 14 +++++++------- src/wallet.h | 6 +++--- 10 files changed, 44 insertions(+), 44 deletions(-) diff --git a/src/addrman.cpp b/src/addrman.cpp index 8fb40b46df..11dd2a7b7d 100644 --- a/src/addrman.cpp +++ b/src/addrman.cpp @@ -124,7 +124,7 @@ int CAddrMan::SelectTried(int nKBucket) // random shuffle the first few elements (using the entire list) // find the least recently tried among them int64 nOldest = -1; - for (int i=0; i &vNew = vvNew[nB]; diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index e9056ca0af..ab4238fbb7 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1008,7 +1008,7 @@ Value addmultisigaddress(const Array& params, bool fHelp) "(got %d, need at least %d)", keys.size(), nRequired)); std::vector pubkeys; pubkeys.resize(keys.size()); - for (int i = 0; i < keys.size(); i++) + for (unsigned int i = 0; i < keys.size(); i++) { const std::string& ks = keys[i].get_str(); diff --git a/src/main.cpp b/src/main.cpp index ecb9a6af1d..e2310b8494 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -293,7 +293,7 @@ bool CTransaction::AreInputsStandard(const MapPrevTx& mapInputs) const if (IsCoinBase()) return true; // Coinbases don't use vin normally - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { const CTxOut& prev = GetOutputFor(vin[i], mapInputs); @@ -487,7 +487,7 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi // Check for conflicts with in-memory transactions CTransaction* ptxOld = NULL; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { COutPoint outpoint = vin[i].prevout; if (mapNextTx.count(outpoint)) @@ -503,7 +503,7 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi return false; if (!IsNewerThan(*ptxOld)) return false; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { COutPoint outpoint = vin[i].prevout; if (!mapNextTx.count(outpoint) || mapNextTx[outpoint].ptx != ptxOld) @@ -612,7 +612,7 @@ bool CTransaction::AddToMemoryPoolUnchecked() { uint256 hash = GetHash(); mapTransactions[hash] = *this; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) mapNextTx[vin[i].prevout] = CInPoint(&mapTransactions[hash], i); nTransactionsUpdated++; ++nPooledTx; @@ -997,7 +997,7 @@ bool CTransaction::FetchInputs(CTxDB& txdb, const map& mapTes if (IsCoinBase()) return true; // Coinbase transactions have no inputs to fetch. - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { COutPoint prevout = vin[i].prevout; if (inputsRet.count(prevout.hash)) @@ -1042,7 +1042,7 @@ bool CTransaction::FetchInputs(CTxDB& txdb, const map& mapTes } // Make sure all prevout.n's are valid: - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { const COutPoint prevout = vin[i].prevout; assert(inputsRet.count(prevout.hash) != 0); @@ -1079,7 +1079,7 @@ int64 CTransaction::GetValueIn(const MapPrevTx& inputs) const return 0; int64 nResult = 0; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { nResult += GetOutputFor(vin[i], inputs).nValue; } @@ -1093,7 +1093,7 @@ int CTransaction::GetP2SHSigOpCount(const MapPrevTx& inputs) const return 0; int nSigOps = 0; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { const CTxOut& prevout = GetOutputFor(vin[i], inputs); if (prevout.scriptPubKey.IsPayToScriptHash()) @@ -1114,7 +1114,7 @@ bool CTransaction::ConnectInputs(MapPrevTx inputs, { int64 nValueIn = 0; int64 nFees = 0; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { COutPoint prevout = vin[i].prevout; assert(inputs.count(prevout.hash) > 0); @@ -1193,7 +1193,7 @@ bool CTransaction::ClientConnectInputs() CRITICAL_BLOCK(cs_mapTransactions) { int64 nValueIn = 0; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { // Get prev tx from single transactions in memory COutPoint prevout = vin[i].prevout; @@ -1404,7 +1404,7 @@ bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew) // Connect longer branch vector vDelete; - for (int i = 0; i < vConnect.size(); i++) + for (unsigned int i = 0; i < vConnect.size(); i++) { CBlockIndex* pindex = vConnect[i]; CBlock block; @@ -1643,7 +1643,7 @@ bool CBlock::CheckBlock() const // 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")); - for (int i = 1; i < vtx.size(); i++) + for (unsigned int i = 1; i < vtx.size(); i++) if (vtx[i].IsCoinBase()) return DoS(100, error("CheckBlock() : more than one coinbase")); @@ -1777,7 +1777,7 @@ bool ProcessBlock(CNode* pfrom, CBlock* pblock) // Recursively process any orphan blocks that depended on this one vector vWorkQueue; vWorkQueue.push_back(hash); - for (int i = 0; i < vWorkQueue.size(); i++) + for (unsigned int i = 0; i < vWorkQueue.size(); i++) { uint256 hashPrev = vWorkQueue[i]; for (multimap::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev); @@ -2001,7 +2001,7 @@ void PrintBlockTree() // put the main timechain first vector& vNext = mapNext[pindex]; - for (int i = 0; i < vNext.size(); i++) + for (unsigned int i = 0; i < vNext.size(); i++) { if (vNext[i]->pnext) { @@ -2011,7 +2011,7 @@ void PrintBlockTree() } // iterate children - for (int i = 0; i < vNext.size(); i++) + for (unsigned int i = 0; i < vNext.size(); i++) vStack.push_back(make_pair(nCol+i, vNext[i])); } } @@ -2364,7 +2364,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) } CTxDB txdb("r"); - for (int nInv = 0; nInv < vInv.size(); nInv++) + for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) { const CInv &inv = vInv[nInv]; @@ -2539,7 +2539,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) vWorkQueue.push_back(inv.hash); // Recursively process any orphan transactions that depended on this one - for (int i = 0; i < vWorkQueue.size(); i++) + for (unsigned int i = 0; i < vWorkQueue.size(); i++) { uint256 hashPrev = vWorkQueue[i]; for (multimap::iterator mi = mapOrphanTransactionsByPrev.lower_bound(hashPrev); @@ -3294,7 +3294,7 @@ void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1)); // Byte swap all the input buffer - for (int i = 0; i < sizeof(tmp)/4; i++) + for (unsigned int i = 0; i < sizeof(tmp)/4; i++) ((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]); // Precalc the first half of the first hash, which stays constant @@ -3419,7 +3419,7 @@ void static BitcoinMiner(CWallet *pwallet) // Check if something found if (nNonceFound != -1) { - for (int i = 0; i < sizeof(hash)/4; i++) + for (unsigned int i = 0; i < sizeof(hash)/4; i++) ((unsigned int*)&hash)[i] = ByteReverse(((unsigned int*)&hash)[i]); if (hash <= hashTarget) diff --git a/src/main.h b/src/main.h index e89258699d..2f07372dfc 100644 --- a/src/main.h +++ b/src/main.h @@ -456,13 +456,13 @@ public: { if (vin.size() != old.vin.size()) return false; - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) if (vin[i].prevout != old.vin[i].prevout) return false; bool fNewer = false; unsigned int nLowest = std::numeric_limits::max(); - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) { if (vin[i].nSequence != old.vin[i].nSequence) { @@ -636,9 +636,9 @@ public: vin.size(), vout.size(), nLockTime); - for (int i = 0; i < vin.size(); i++) + for (unsigned int i = 0; i < vin.size(); i++) str += " " + vin[i].ToString() + "\n"; - for (int i = 0; i < vout.size(); i++) + for (unsigned int i = 0; i < vout.size(); i++) str += " " + vout[i].ToString() + "\n"; return str; } @@ -1006,13 +1006,13 @@ public: hashMerkleRoot.ToString().substr(0,10).c_str(), nTime, nBits, nNonce, vtx.size()); - for (int i = 0; i < vtx.size(); i++) + for (unsigned int i = 0; i < vtx.size(); i++) { printf(" "); vtx[i].print(); } printf(" vMerkleTree: "); - for (int i = 0; i < vMerkleTree.size(); i++) + for (unsigned int i = 0; i < vMerkleTree.size(); i++) printf("%s ", vMerkleTree[i].ToString().substr(0,10).c_str()); printf("\n"); } diff --git a/src/net.cpp b/src/net.cpp index 9bdb1f283e..c4bd027de2 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -694,7 +694,7 @@ void ThreadSocketHandler2(void* parg) if (hSocketMax > -1) { printf("socket select error %d\n", nErr); - for (int i = 0; i <= hSocketMax; i++) + for (unsigned int i = 0; i <= hSocketMax; i++) FD_SET(i, &fdsetRecv); } FD_ZERO(&fdsetSend); @@ -1086,7 +1086,7 @@ void ThreadDNSAddressSeed2(void* parg) { printf("Loading addresses from DNS seeds (could take a while)\n"); - for (int seed_idx = 0; seed_idx < ARRAYLEN(strDNSSeed); seed_idx++) { + for (unsigned int seed_idx = 0; seed_idx < ARRAYLEN(strDNSSeed); seed_idx++) { vector vaddr; vector vAdd; if (LookupHost(strDNSSeed[seed_idx][1], vaddr)) @@ -1310,7 +1310,7 @@ void ThreadOpenConnections2(void* parg) if (addrman.size()==0 && (GetTime() - nStart > 60 || fTOR) && !fTestNet) { std::vector vAdd; - for (int i = 0; i < ARRAYLEN(pnSeed); i++) + for (unsigned int i = 0; i < ARRAYLEN(pnSeed); i++) { // It'll only connect to one or two seed nodes because once it connects, // it'll get a pile of addresses with newer timestamps. diff --git a/src/netbase.cpp b/src/netbase.cpp index baf7c412a0..45fdca571f 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -136,7 +136,7 @@ bool Lookup(const char *pszName, std::vector& vAddr, int portDefault, if (!fRet) return false; vAddr.resize(vIP.size()); - for (int i = 0; i < vIP.size(); i++) + for (unsigned int i = 0; i < vIP.size(); i++) vAddr[i] = CService(vIP[i], port); return true; } diff --git a/src/protocol.cpp b/src/protocol.cpp index 15fbf9fc0d..06306cf8e1 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -107,7 +107,7 @@ CInv::CInv(int typeIn, const uint256& hashIn) CInv::CInv(const std::string& strType, const uint256& hashIn) { - int i; + unsigned int i; for (i = 1; i < ARRAYLEN(ppszTypeName); i++) { if (strType == ppszTypeName[i]) diff --git a/src/uint256.h b/src/uint256.h index 0947816785..309c1f7995 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -287,7 +287,7 @@ public: std::string GetHex() const { char psz[sizeof(pn)*2 + 1]; - for (int i = 0; i < sizeof(pn); i++) + for (unsigned int i = 0; i < sizeof(pn); i++) sprintf(psz + i*2, "%02x", ((unsigned char*)pn)[sizeof(pn) - i - 1]); return std::string(psz, psz + sizeof(pn)*2); } diff --git a/src/wallet.cpp b/src/wallet.cpp index 49e1392c27..bd17bd926f 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -611,7 +611,7 @@ void CWalletTx::AddSupportingTransactions(CTxDB& txdb) { map mapWalletPrev; set setAlreadyDone; - for (int i = 0; i < vWorkQueue.size(); i++) + for (unsigned int i = 0; i < vWorkQueue.size(); i++) { uint256 hash = vWorkQueue[i]; if (setAlreadyDone.count(hash)) @@ -718,7 +718,7 @@ void CWallet::ReacceptWalletTransactions() printf("ERROR: ReacceptWalletTransactions() : txindex.vSpent.size() %d != wtx.vout.size() %d\n", txindex.vSpent.size(), wtx.vout.size()); continue; } - for (int i = 0; i < txindex.vSpent.size(); i++) + for (unsigned int i = 0; i < txindex.vSpent.size(); i++) { if (wtx.IsSpent(i)) continue; @@ -897,7 +897,7 @@ bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfThe if (nDepth < (pcoin->IsFromMe() ? nConfMine : nConfTheirs)) continue; - for (int i = 0; i < pcoin->vout.size(); i++) + for (unsigned int i = 0; i < pcoin->vout.size(); i++) { if (pcoin->IsSpent(i) || !IsMine(pcoin->vout[i])) continue; @@ -930,7 +930,7 @@ bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfThe if (nTotalLower == nTargetValue || nTotalLower == nTargetValue + CENT) { - for (int i = 0; i < vValue.size(); ++i) + for (unsigned int i = 0; i < vValue.size(); ++i) { setCoinsRet.insert(vValue[i].second); nValueRet += vValue[i].first; @@ -963,7 +963,7 @@ bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfThe bool fReachedTarget = false; for (int nPass = 0; nPass < 2 && !fReachedTarget; nPass++) { - for (int i = 0; i < vValue.size(); i++) + for (unsigned int i = 0; i < vValue.size(); i++) { if (nPass == 0 ? rand() % 2 : !vfIncluded[i]) { @@ -992,7 +992,7 @@ bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfThe nValueRet += coinLowestLarger.first; } else { - for (int i = 0; i < vValue.size(); i++) + for (unsigned int i = 0; i < vValue.size(); i++) if (vfBest[i]) { setCoinsRet.insert(vValue[i].second); @@ -1001,7 +1001,7 @@ bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfThe //// debug print printf("SelectCoins() best subset: "); - for (int i = 0; i < vValue.size(); i++) + for (unsigned int i = 0; i < vValue.size(); i++) if (vfBest[i]) printf("%s ", FormatMoney(vValue[i].first).c_str()); printf("total %s\n", FormatMoney(nBest).c_str()); diff --git a/src/wallet.h b/src/wallet.h index 308a266571..5672c6069d 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -400,7 +400,7 @@ public: bool UpdateSpent(const std::vector& vfNewSpent) { bool fReturn = false; - for (int i=0; i < vfNewSpent.size(); i++) + for (unsigned int i = 0; i < vfNewSpent.size(); i++) { if (i == vfSpent.size()) break; @@ -486,7 +486,7 @@ public: return nAvailableCreditCached; int64 nCredit = 0; - for (int i = 0; i < vout.size(); i++) + for (unsigned int i = 0; i < vout.size(); i++) { if (!IsSpent(i)) { @@ -539,7 +539,7 @@ public: std::vector vWorkQueue; vWorkQueue.reserve(vtxPrev.size()+1); vWorkQueue.push_back(this); - for (int i = 0; i < vWorkQueue.size(); i++) + for (unsigned int i = 0; i < vWorkQueue.size(); i++) { const CMerkleTx* ptx = vWorkQueue[i]; -- cgit v1.2.3 From 2abd083ea44ba00a23db87b8123a5732421a905f Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Sun, 15 Apr 2012 16:58:32 -0400 Subject: Fix sign-compare warnings: netbase's Lookup* max-solutions may be unsigned --- src/netbase.cpp | 8 ++++---- src/netbase.h | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/netbase.cpp b/src/netbase.cpp index 45fdca571f..8b30ffc140 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -22,7 +22,7 @@ int nConnectTimeout = 5000; static const unsigned char pchIPv4[12] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff }; -bool static LookupIntern(const char *pszName, std::vector& vIP, int nMaxSolutions, bool fAllowLookup) +bool static LookupIntern(const char *pszName, std::vector& vIP, unsigned int nMaxSolutions, bool fAllowLookup) { vIP.clear(); struct addrinfo aiHint; @@ -77,7 +77,7 @@ bool static LookupIntern(const char *pszName, std::vector& vIP, int nM return (vIP.size() > 0); } -bool LookupHost(const char *pszName, std::vector& vIP, int nMaxSolutions, bool fAllowLookup) +bool LookupHost(const char *pszName, std::vector& vIP, unsigned int nMaxSolutions, bool fAllowLookup) { if (pszName[0] == 0) return false; @@ -93,12 +93,12 @@ bool LookupHost(const char *pszName, std::vector& vIP, int nMaxSolutio return LookupIntern(pszHost, vIP, nMaxSolutions, fAllowLookup); } -bool LookupHostNumeric(const char *pszName, std::vector& vIP, int nMaxSolutions) +bool LookupHostNumeric(const char *pszName, std::vector& vIP, unsigned int nMaxSolutions) { return LookupHost(pszName, vIP, nMaxSolutions, false); } -bool Lookup(const char *pszName, std::vector& vAddr, int portDefault, bool fAllowLookup, int nMaxSolutions) +bool Lookup(const char *pszName, std::vector& vAddr, int portDefault, bool fAllowLookup, unsigned int nMaxSolutions) { if (pszName[0] == 0) return false; diff --git a/src/netbase.h b/src/netbase.h index b5f9d5fad9..e86c114d47 100644 --- a/src/netbase.h +++ b/src/netbase.h @@ -126,10 +126,10 @@ class CService : public CNetAddr ) }; -bool LookupHost(const char *pszName, std::vector& vIP, int nMaxSolutions = 0, bool fAllowLookup = true); -bool LookupHostNumeric(const char *pszName, std::vector& vIP, int nMaxSolutions = 0); +bool LookupHost(const char *pszName, std::vector& vIP, unsigned int nMaxSolutions = 0, bool fAllowLookup = true); +bool LookupHostNumeric(const char *pszName, std::vector& vIP, unsigned int nMaxSolutions = 0); bool Lookup(const char *pszName, CService& addr, int portDefault = 0, bool fAllowLookup = true); -bool Lookup(const char *pszName, std::vector& vAddr, int portDefault = 0, bool fAllowLookup = true, int nMaxSolutions = 0); +bool Lookup(const char *pszName, std::vector& vAddr, int portDefault = 0, bool fAllowLookup = true, unsigned int nMaxSolutions = 0); bool LookupNumeric(const char *pszName, CService& addr, int portDefault = 0); bool ConnectSocket(const CService &addr, SOCKET& hSocketRet, int nTimeout = nConnectTimeout); -- cgit v1.2.3 From 1b7e5cbcad219e946bb4217741da6933d8302412 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Sun, 15 Apr 2012 16:59:48 -0400 Subject: CNode's nHeaderStart may be negative, so change its type (PARTIAL) --- src/net.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net.h b/src/net.h index 53e13fd095..24ab43a503 100644 --- a/src/net.h +++ b/src/net.h @@ -111,7 +111,7 @@ public: int64 nLastRecv; int64 nLastSendEmpty; int64 nTimeConnected; - unsigned int nHeaderStart; + signed int nHeaderStart; unsigned int nMessageStart; CAddress addr; int nVersion; -- cgit v1.2.3 From 7f34351910ee63685beb169895a3eb5ef266dbb5 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Sun, 15 Apr 2012 17:00:20 -0400 Subject: Fix misc. minor sign-comparison warnings --- src/base58.h | 2 +- src/crypter.cpp | 2 +- src/key.h | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/base58.h b/src/base58.h index 592756ff74..fe1927255c 100644 --- a/src/base58.h +++ b/src/base58.h @@ -255,7 +255,7 @@ public: bool IsValid() const { - int nExpectedSize = 20; + unsigned int nExpectedSize = 20; bool fExpectTestNet = false; switch(nVersion) { diff --git a/src/crypter.cpp b/src/crypter.cpp index 5b7bfec06a..e821b089ba 100644 --- a/src/crypter.cpp +++ b/src/crypter.cpp @@ -31,7 +31,7 @@ bool CCrypter::SetKeyFromPassphrase(const std::string& strKeyData, const std::ve i = EVP_BytesToKey(EVP_aes_256_cbc(), EVP_sha512(), &chSalt[0], (unsigned char *)&strKeyData[0], strKeyData.size(), nRounds, chKey, chIV); - if (i != WALLET_CRYPTO_KEY_SIZE) + if (i != (int)WALLET_CRYPTO_KEY_SIZE) { memset(&chKey, 0, sizeof chKey); memset(&chIV, 0, sizeof chIV); diff --git a/src/key.h b/src/key.h index 477f550bcf..6bf750847e 100644 --- a/src/key.h +++ b/src/key.h @@ -181,7 +181,7 @@ public: CPrivKey GetPrivKey() const { - unsigned int nSize = i2d_ECPrivateKey(pkey, NULL); + int nSize = i2d_ECPrivateKey(pkey, NULL); if (!nSize) throw key_error("CKey::GetPrivKey() : i2d_ECPrivateKey failed"); CPrivKey vchPrivKey(nSize, 0); @@ -202,7 +202,7 @@ public: std::vector GetPubKey() const { - unsigned int nSize = i2o_ECPublicKey(pkey, NULL); + int nSize = i2o_ECPublicKey(pkey, NULL); if (!nSize) throw key_error("CKey::GetPubKey() : i2o_ECPublicKey failed"); std::vector vchPubKey(nSize, 0); -- cgit v1.2.3 From dc588faf5922d8ca449dea61bbe899532497c914 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Tue, 17 Apr 2012 18:50:45 +0200 Subject: Fix potential deadlock Conflict: * cs_main in ProcessMessages() (before calling ProcessMessages) * cs_vSend in CNode::BeginMessage versus: * cs_vSend in ThreadMessageHandler2 (before calling SendMessages) * cs_main in SendMessages Even though cs_vSend is a try_lock, if it succeeds simultaneously with the locking of cs_main in ProcessMessages(), it could cause a deadlock. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 76e0783794..e6f94210b9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2618,7 +2618,7 @@ bool ProcessMessages(CNode* pfrom) bool SendMessages(CNode* pto, bool fSendTrickle) { - CRITICAL_BLOCK(cs_main) + TRY_CRITICAL_BLOCK(cs_main) { // Don't send anything until we get their version message if (pto->nVersion == 0) -- cgit v1.2.3 From e401e5eb79f944bf772e541baed9ef45f0cb4f43 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Tue, 17 Apr 2012 23:27:59 +0200 Subject: Add missing breaks in optionmodel's switch case --- src/qt/optionsmodel.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index efc216dab8..02daef5e21 100644 --- a/src/qt/optionsmodel.cpp +++ b/src/qt/optionsmodel.cpp @@ -123,10 +123,12 @@ bool OptionsModel::setData(const QModelIndex & index, const QVariant & value, in walletdb.WriteSetting("nDisplayUnit", nDisplayUnit); emit displayUnitChanged(unit); } + break; case DisplayAddresses: { bDisplayAddresses = value.toBool(); walletdb.WriteSetting("bDisplayAddresses", bDisplayAddresses); } + break; default: break; } -- cgit v1.2.3 From bd043f19c83654331e5418ea1e7af2bd213899a7 Mon Sep 17 00:00:00 2001 From: "Dwayne C. Litzenberger" Date: Mon, 16 Apr 2012 01:31:38 -0400 Subject: Fix phexdigits[255] is undefined. --- src/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.cpp b/src/util.cpp index c3290f4176..a6065ef16c 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -421,7 +421,7 @@ vector ParseHex(const char* psz) 0,1,2,3,4,5,6,7,8,9,-1,-1,-1,-1,-1,-1, -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, - -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1 + -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -- cgit v1.2.3 From 810427470113ab25724a6f50abdcdf63118e683b Mon Sep 17 00:00:00 2001 From: "Dwayne C. Litzenberger" Date: Mon, 16 Apr 2012 01:31:38 -0400 Subject: Fix phexdigits[255] is undefined. --- src/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.cpp b/src/util.cpp index 5ba650420b..b6b4ee645a 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -418,7 +418,7 @@ static char phexdigit[256] = 0,1,2,3,4,5,6,7,8,9,-1,-1,-1,-1,-1,-1, -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, - -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1 + -1,0xa,0xb,0xc,0xd,0xe,0xf,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -- cgit v1.2.3 From e5b980d72f808c46ea279d1fa5bfc1f8fb3363c3 Mon Sep 17 00:00:00 2001 From: "Dwayne C. Litzenberger" Date: Mon, 16 Apr 2012 01:32:55 -0400 Subject: Fix bugs on 'unsigned char' platforms. In ISO C++, the signedness of 'char' is undefined. On some platforms (e.g. ARM), 'char' is an unsigned type, but some of the code relies on 'char' being signed (as it is on x86). This is indicated by compiler warnings like this: bignum.h: In constructor 'CBigNum::CBigNum(char)': bignum.h:81:59: warning: comparison is always true due to limited range of data type [-Wtype-limits] util.cpp: In function 'bool IsHex(const string&)': util.cpp:427:28: warning: comparison is always false due to limited range of data type [-Wtype-limits] In particular, IsHex erroneously returned true regardless of the input characters, as long as the length of the string was a positive multiple of 2. Note: For testing, it's possible using GCC to force char to be unsigned by adding the -funsigned-char parameter to xCXXFLAGS. --- src/bignum.h | 5 +++-- src/script.h | 6 ++++-- src/uint256.h | 2 +- src/util.cpp | 8 ++++---- 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/src/bignum.h b/src/bignum.h index 641ebf4b05..fd5364e810 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -77,7 +77,8 @@ public: BN_clear_free(this); } - CBigNum(char n) { BN_init(this); if (n >= 0) setulong(n); else setint64(n); } + //CBigNum(char n) is not portable. Use 'signed char' or 'unsigned char'. + CBigNum(signed char n) { BN_init(this); if (n >= 0) setulong(n); else setint64(n); } CBigNum(short n) { BN_init(this); if (n >= 0) setulong(n); else setint64(n); } CBigNum(int n) { BN_init(this); if (n >= 0) setulong(n); else setint64(n); } CBigNum(long n) { BN_init(this); if (n >= 0) setulong(n); else setint64(n); } @@ -295,7 +296,7 @@ public: psz++; // hex string to bignum - static char phexdigit[256] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7,8,9,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0 }; + static signed char phexdigit[256] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7,8,9,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0 }; *this = 0; while (isxdigit(*psz)) { diff --git a/src/script.h b/src/script.h index bc9fc9ab6f..7d15bbaebe 100644 --- a/src/script.h +++ b/src/script.h @@ -402,7 +402,8 @@ public: } - explicit CScript(char b) { operator<<(b); } + //explicit CScript(char b) is not portable. Use 'signed char' or 'unsigned char'. + explicit CScript(signed char b) { operator<<(b); } explicit CScript(short b) { operator<<(b); } explicit CScript(int b) { operator<<(b); } explicit CScript(long b) { operator<<(b); } @@ -419,7 +420,8 @@ public: explicit CScript(const std::vector& b) { operator<<(b); } - CScript& operator<<(char b) { return push_int64(b); } + //CScript& operator<<(char b) is not portable. Use 'signed char' or 'unsigned char'. + CScript& operator<<(signed char b) { return push_int64(b); } CScript& operator<<(short b) { return push_int64(b); } CScript& operator<<(int b) { return push_int64(b); } CScript& operator<<(long b) { return push_int64(b); } diff --git a/src/uint256.h b/src/uint256.h index bbdba99533..0add804051 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -313,7 +313,7 @@ public: psz += 2; // hex string to uint - static char phexdigit[256] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7,8,9,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0 }; + static unsigned char phexdigit[256] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7,8,9,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0 }; const char* pbegin = psz; while (phexdigit[(unsigned char)*psz] || *psz == '0') psz++; diff --git a/src/util.cpp b/src/util.cpp index a6065ef16c..a45d19156f 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -414,7 +414,7 @@ bool ParseMoney(const char* pszIn, int64& nRet) vector ParseHex(const char* psz) { - static char phexdigit[256] = + static signed char phexdigit[256] = { -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, @@ -438,12 +438,12 @@ vector ParseHex(const char* psz) { while (isspace(*psz)) psz++; - char c = phexdigit[(unsigned char)*psz++]; - if (c == (char)-1) + signed char c = phexdigit[(unsigned char)*psz++]; + if (c == (signed char)-1) break; unsigned char n = (c << 4); c = phexdigit[(unsigned char)*psz++]; - if (c == (char)-1) + if (c == (signed char)-1) break; n |= c; vch.push_back(n); -- cgit v1.2.3 From c43a9ea77db06b9d101f0551df373d417e5028af Mon Sep 17 00:00:00 2001 From: "Dwayne C. Litzenberger" Date: Mon, 16 Apr 2012 01:32:55 -0400 Subject: Fix bugs on 'unsigned char' platforms. In ISO C++, the signedness of 'char' is undefined. On some platforms (e.g. ARM), 'char' is an unsigned type, but some of the code relies on 'char' being signed (as it is on x86). This is indicated by compiler warnings like this: bignum.h: In constructor 'CBigNum::CBigNum(char)': bignum.h:81:59: warning: comparison is always true due to limited range of data type [-Wtype-limits] util.cpp: In function 'bool IsHex(const string&)': util.cpp:427:28: warning: comparison is always false due to limited range of data type [-Wtype-limits] In particular, IsHex erroneously returned true regardless of the input characters, as long as the length of the string was a positive multiple of 2. Note: For testing, it's possible using GCC to force char to be unsigned by adding the -funsigned-char parameter to xCXXFLAGS. --- src/bignum.h | 5 +++-- src/script.h | 6 ++++-- src/uint256.h | 2 +- src/util.cpp | 8 ++++---- 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/src/bignum.h b/src/bignum.h index 9962b78372..e691dbe94e 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -78,7 +78,8 @@ public: BN_clear_free(this); } - CBigNum(char n) { BN_init(this); if (n >= 0) setulong(n); else setint64(n); } + //CBigNum(char n) is not portable. Use 'signed char' or 'unsigned char'. + CBigNum(signed char n) { BN_init(this); if (n >= 0) setulong(n); else setint64(n); } CBigNum(short n) { BN_init(this); if (n >= 0) setulong(n); else setint64(n); } CBigNum(int n) { BN_init(this); if (n >= 0) setulong(n); else setint64(n); } CBigNum(long n) { BN_init(this); if (n >= 0) setulong(n); else setint64(n); } @@ -296,7 +297,7 @@ public: psz++; // hex string to bignum - static char phexdigit[256] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7,8,9,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0 }; + static signed char phexdigit[256] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7,8,9,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0 }; *this = 0; while (isxdigit(*psz)) { diff --git a/src/script.h b/src/script.h index 524d08b3ec..1aac324f62 100644 --- a/src/script.h +++ b/src/script.h @@ -268,7 +268,8 @@ public: } - explicit CScript(char b) { operator<<(b); } + //explicit CScript(char b) is not portable. Use 'signed char' or 'unsigned char'. + explicit CScript(signed char b) { operator<<(b); } explicit CScript(short b) { operator<<(b); } explicit CScript(int b) { operator<<(b); } explicit CScript(long b) { operator<<(b); } @@ -285,7 +286,8 @@ public: explicit CScript(const std::vector& b) { operator<<(b); } - CScript& operator<<(char b) { return push_int64(b); } + //CScript& operator<<(char b) is not portable. Use 'signed char' or 'unsigned char'. + CScript& operator<<(signed char b) { return push_int64(b); } CScript& operator<<(short b) { return push_int64(b); } CScript& operator<<(int b) { return push_int64(b); } CScript& operator<<(long b) { return push_int64(b); } diff --git a/src/uint256.h b/src/uint256.h index 309c1f7995..a65a2e496d 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -306,7 +306,7 @@ public: psz += 2; // hex string to uint - static char phexdigit[256] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7,8,9,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0 }; + static unsigned char phexdigit[256] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,1,2,3,4,5,6,7,8,9,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0xa,0xb,0xc,0xd,0xe,0xf,0,0,0,0,0,0,0,0,0 }; const char* pbegin = psz; while (phexdigit[(unsigned char)*psz] || *psz == '0') psz++; diff --git a/src/util.cpp b/src/util.cpp index b6b4ee645a..039c482f71 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -411,7 +411,7 @@ bool ParseMoney(const char* pszIn, int64& nRet) } -static char phexdigit[256] = +static signed char phexdigit[256] = { -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, @@ -447,12 +447,12 @@ vector ParseHex(const char* psz) { while (isspace(*psz)) psz++; - char c = phexdigit[(unsigned char)*psz++]; - if (c == (char)-1) + signed char c = phexdigit[(unsigned char)*psz++]; + if (c == (signed char)-1) break; unsigned char n = (c << 4); c = phexdigit[(unsigned char)*psz++]; - if (c == (char)-1) + if (c == (signed char)-1) break; n |= c; vch.push_back(n); -- cgit v1.2.3 From d0fe14ffecda4af98ffe7b1523f9a903bf7518a0 Mon Sep 17 00:00:00 2001 From: Timothy Redaelli Date: Fri, 20 Apr 2012 12:50:57 +0200 Subject: Add missing includes. (Fix bulding under GCC 4.7) (Note: GCC 4.7 build NOT tested with backports -Luke) --- src/uint256.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/uint256.h b/src/uint256.h index 0add804051..320ee7e95a 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -8,6 +8,7 @@ #include "serialize.h" #include +#include #include #include -- cgit v1.2.3 From 07d1a50aee407bcdc32c884801290ee2724637ea Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Sun, 22 Apr 2012 13:44:12 -0400 Subject: Test ScriptSigArgsExpected() for error, before accumulating return value --- src/main.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 2473662620..1bb64a6264 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -304,6 +304,8 @@ bool CTransaction::AreInputsStandard(const MapPrevTx& mapInputs) const if (!Solver(prevScript, whichType, vSolutions)) return false; int nArgsExpected = ScriptSigArgsExpected(whichType, vSolutions); + if (nArgsExpected < 0) + return false; // Transactions with extra stuff in their scriptSigs are // non-standard. Note that this EvalScript() call will @@ -325,10 +327,15 @@ bool CTransaction::AreInputsStandard(const MapPrevTx& mapInputs) const return false; if (whichType2 == TX_SCRIPTHASH) return false; - nArgsExpected += ScriptSigArgsExpected(whichType2, vSolutions2); + + int tmpExpected; + tmpExpected = ScriptSigArgsExpected(whichType2, vSolutions2); + if (tmpExpected < 0) + return false; + nArgsExpected += tmpExpected; } - if (stack.size() != nArgsExpected) + if (stack.size() != (unsigned int)nArgsExpected) return false; } -- cgit v1.2.3 From c21121752d95ee241eb616a9b958fc662c874803 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Sun, 22 Apr 2012 13:59:24 -0400 Subject: CBlock::WriteToDisk() properly checks ftell(3) for error return Rather than storing ftell(3)'s return value -- a long -- in an unsigned int, we store and check a properly typed temp. Then, assured a non-negative value, we store in nBlockPosRet. --- src/main.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.h b/src/main.h index de674b5bb1..e835cdd7bb 100644 --- a/src/main.h +++ b/src/main.h @@ -961,9 +961,10 @@ public: fileout << FLATDATA(pchMessageStart) << nSize; // Write block - nBlockPosRet = ftell(fileout); - if (nBlockPosRet == -1) + long fileOutPos = ftell(fileout); + if (fileOutPos < 0) return error("CBlock::WriteToDisk() : ftell failed"); + nBlockPosRet = fileOutPos; fileout << *this; // Flush stdio buffers and commit to disk before returning -- cgit v1.2.3 From 282e3ffe6e292ed6b11bc71414420de052193757 Mon Sep 17 00:00:00 2001 From: Timothy Redaelli Date: Wed, 25 Apr 2012 14:07:24 +0200 Subject: We should include netinet/in.h to use sockaddr_in (POSIX.1-2001) --- src/net.cpp | 2 ++ src/protocol.cpp | 1 + src/protocol.h | 4 ++++ 3 files changed, 7 insertions(+) diff --git a/src/net.cpp b/src/net.cpp index 92ccb1e880..5135a88b32 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -12,6 +12,8 @@ #ifdef __WXMSW__ #include +#else +#include #endif #ifdef USE_UPNP diff --git a/src/protocol.cpp b/src/protocol.cpp index a3e54ebc3d..7d80d5d5d0 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -8,6 +8,7 @@ #ifndef __WXMSW__ # include +# include #endif // Prototypes from net.h, but that header (currently) stinks, can't #include it without breaking things diff --git a/src/protocol.h b/src/protocol.h index 53d3eef4d5..6db64900f2 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -10,6 +10,10 @@ #ifndef __INCLUDED_PROTOCOL_H__ #define __INCLUDED_PROTOCOL_H__ +#ifndef __WXMSW__ +#include +#endif + #include "serialize.h" #include #include "uint256.h" -- cgit v1.2.3 From dfac636fd7e4f0168daade3b3095f3d5a60fd524 Mon Sep 17 00:00:00 2001 From: Timothy Redaelli Date: Wed, 25 Apr 2012 14:07:24 +0200 Subject: We should include netinet/in.h to use sockaddr_in (POSIX.1-2001) --- src/net.cpp | 2 ++ src/protocol.cpp | 1 + src/protocol.h | 4 ++++ 3 files changed, 7 insertions(+) diff --git a/src/net.cpp b/src/net.cpp index 5b3faea79d..e92c659a39 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -12,6 +12,8 @@ #ifdef WIN32 #include +#else +#include #endif #ifdef USE_UPNP diff --git a/src/protocol.cpp b/src/protocol.cpp index 9933452d4f..16ad7468e1 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -8,6 +8,7 @@ #ifndef WIN32 # include +# include #endif // Prototypes from net.h, but that header (currently) stinks, can't #include it without breaking things diff --git a/src/protocol.h b/src/protocol.h index 53d3eef4d5..c8723fa3ea 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -10,6 +10,10 @@ #ifndef __INCLUDED_PROTOCOL_H__ #define __INCLUDED_PROTOCOL_H__ +#ifndef WIN32 +#include +#endif + #include "serialize.h" #include #include "uint256.h" -- cgit v1.2.3 From ea22a380de824500644db6fd6f33d0465b34f7a1 Mon Sep 17 00:00:00 2001 From: Timothy Redaelli Date: Wed, 25 Apr 2012 14:07:24 +0200 Subject: We should include netinet/in.h to use sockaddr_in (POSIX.1-2001) --- src/net.cpp | 2 ++ src/netbase.h | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index 5368261243..e5cb6d4b24 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -13,6 +13,8 @@ #ifdef WIN32 #include +#else +#include #endif #ifdef USE_UPNP diff --git a/src/netbase.h b/src/netbase.h index e86c114d47..26c2140155 100644 --- a/src/netbase.h +++ b/src/netbase.h @@ -19,8 +19,6 @@ #include #include #include -#endif -#ifdef BSD #include #endif -- cgit v1.2.3 From aff6456e8ab47260c1d9598ed00f08fce4848f27 Mon Sep 17 00:00:00 2001 From: freewil Date: Thu, 26 Apr 2012 13:12:44 -0400 Subject: remove strange debug message from listsinceblock --- src/bitcoinrpc.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index b141e733ff..4e65628472 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1318,7 +1318,6 @@ Value listsinceblock(const Array& params, bool fHelp) if (target_confirms == 1) { - printf("oops!\n"); lastblock = hashBestChain; } else -- cgit v1.2.3 From 3eb5fdbf5f73535f6a027bbcdf07958610794749 Mon Sep 17 00:00:00 2001 From: freewil Date: Thu, 26 Apr 2012 12:48:33 -0400 Subject: listsinceblock: rpc param blockid -> blockhash This is more consistent with the rest of the labeling seen by the user when accessing the rpc commands. --- src/bitcoinrpc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 4e65628472..3e82cd3ab7 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1280,8 +1280,8 @@ Value listsinceblock(const Array& params, bool fHelp) { if (fHelp) throw runtime_error( - "listsinceblock [blockid] [target-confirmations]\n" - "Get all transactions in blocks since block [blockid], or all transactions if omitted"); + "listsinceblock [blockhash] [target-confirmations]\n" + "Get all transactions in blocks since block [blockhash], or all transactions if omitted"); CBlockIndex *pindex = NULL; int target_confirms = 1; -- cgit v1.2.3 From c18b82d5db39bff026f10694a062be2dc7048fd8 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 27 Apr 2012 10:50:24 -0400 Subject: Bump version to 0.4.6 --- contrib/Bitcoin.app/Contents/Info.plist | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/contrib/Bitcoin.app/Contents/Info.plist b/contrib/Bitcoin.app/Contents/Info.plist index b34827e3ca..8271c15ef4 100644 --- a/contrib/Bitcoin.app/Contents/Info.plist +++ b/contrib/Bitcoin.app/Contents/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.4.5 + 0.4.6 CFBundleSignature ???? CFBundleVersion diff --git a/doc/README b/doc/README index e572b2dd53..15f92bf4af 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.4.5 BETA +Bitcoin 0.4.6 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 6a551a0b97..8dde1a9365 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.4.5 BETA +Bitcoin 0.4.6 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 643b0ffef8..27c87db84b 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.4.5 +!define VERSION 0.4.6 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.4.5-win32-setup.exe +OutFile bitcoin-0.4.6-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.4.5.0 +VIProductVersion 0.4.6.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index 491169ff58..302766062a 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -59,7 +59,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 40500; +static const int VERSION = 40600; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From e5f43fe30992abd75b6f981fd287cfed64c627ee Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 27 Apr 2012 10:55:06 -0400 Subject: Bump version to 0.5.5 --- bitcoin-qt.pro | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 60f1de8997..922f42ed76 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.5.4 +VERSION = 0.5.5 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/doc/README b/doc/README index 3d8c63a3e1..41fecd7d47 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.5.4 BETA +Bitcoin 0.5.5 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index b4ad595419..9feb2faed0 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.5.4 BETA +Bitcoin 0.5.5 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index e231436408..b2d0dd0529 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.5.4 +!define VERSION 0.5.5 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.5.4-win32-setup.exe +OutFile bitcoin-0.5.5-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.5.4.0 +VIProductVersion 0.5.5.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index 396e1727eb..346594c86a 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -60,7 +60,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 50400; +static const int VERSION = 50500; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 5ad4028050d54be1bf60b99dc4edaa2a984f959b Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Fri, 27 Apr 2012 10:52:14 -0400 Subject: Windows build: compile against openssl 1.0.1b --- contrib/gitian-descriptors/gitian-win32.yml | 6 +++--- doc/build-msw.txt | 6 +++--- src/makefile.linux-mingw | 4 ++-- src/makefile.mingw | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/contrib/gitian-descriptors/gitian-win32.yml b/contrib/gitian-descriptors/gitian-win32.yml index 252e62e236..f1990aa8e7 100644 --- a/contrib/gitian-descriptors/gitian-win32.yml +++ b/contrib/gitian-descriptors/gitian-win32.yml @@ -18,7 +18,7 @@ remotes: files: - "wxwidgets-win32-2.9.2-gitian.zip" - "boost-win32-1.47.0-gitian.zip" -- "openssl-1.0.0d.tar.gz" +- "openssl-1.0.1b.tar.gz" - "db-4.8.30.NC.tar.gz" - "miniupnpc-1.6.tar.gz" script: | @@ -50,8 +50,8 @@ script: | mv include/boost . cd .. # - tar xzf openssl-1.0.0d.tar.gz - cd openssl-1.0.0d + tar xzf openssl-1.0.1b.tar.gz + cd openssl-1.0.1b ./Configure --cross-compile-prefix=i586-mingw32msvc- mingw make cd .. diff --git a/doc/build-msw.txt b/doc/build-msw.txt index d08e3a23b7..69c298bbba 100644 --- a/doc/build-msw.txt +++ b/doc/build-msw.txt @@ -28,7 +28,7 @@ Libraries you need to download separately and build: default path download wxWidgets \wxwidgets-2.9.2-mgw http://www.wxwidgets.org/downloads/ -OpenSSL \openssl-1.0.0d-mgw http://www.openssl.org/source/ +OpenSSL \openssl-1.0.1b-mgw http://www.openssl.org/source/ Berkeley DB \db-4.8.30.NC-mgw http://www.oracle.com/technology/software/products/berkeley-db/index.html Boost \boost-1.47.0-mgw http://www.boost.org/users/download/ miniupnpc \miniupnpc-1.6-mgw http://miniupnp.tuxfamily.org/files/ @@ -42,7 +42,7 @@ miniupnpc New (3-clause) BSD license Versions used in this release: wxWidgets 2.9.2 -OpenSSL 1.0.0d +OpenSSL 1.0.1b Berkeley DB 4.8.30.NC Boost 1.47.0 miniupnpc 1.6 @@ -66,7 +66,7 @@ MSYS shell: un-tar sources with MSYS 'tar xfz' to avoid issue with symlinks (OpenSSL ticket 2377) change 'MAKE' env. variable from 'C:\MinGW32\bin\mingw32-make.exe' to '/c/MinGW32/bin/mingw32-make.exe' -cd /c/openssl-1.0.0d-mgw +cd /c/openssl-1.0.1b-mgw ./config make diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 23b417cad1..945c15e87b 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -9,7 +9,7 @@ USE_UPNP:=0 INCLUDEPATHS= \ -I"$(DEPSDIR)/boost_1_47_0" \ -I"$(DEPSDIR)/db-4.8.30.NC/build_unix" \ - -I"$(DEPSDIR)/openssl-1.0.0d/include" \ + -I"$(DEPSDIR)/openssl-1.0.1b/include" \ -I"$(DEPSDIR)/wxWidgets-2.9.2/lib/gcc_lib/mswud" \ -I"$(DEPSDIR)/wxWidgets-2.9.2/include" \ -I"$(DEPSDIR)/wxWidgets-2.9.2/lib/wx/include/i586-mingw32msvc-msw-unicode-static-2.9/" \ @@ -18,7 +18,7 @@ INCLUDEPATHS= \ LIBPATHS= \ -L"$(DEPSDIR)/boost_1_47_0/stage/lib" \ -L"$(DEPSDIR)/db-4.8.30.NC/build_unix" \ - -L"$(DEPSDIR)/openssl-1.0.0d" \ + -L"$(DEPSDIR)/openssl-1.0.1b" \ -L"$(DEPSDIR)/wxWidgets-2.9.2/lib" WXLIBS= -l wx_mswu-2.9-i586-mingw32msvc diff --git a/src/makefile.mingw b/src/makefile.mingw index ef7eebf430..35254b38ef 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -7,14 +7,14 @@ USE_UPNP:=0 INCLUDEPATHS= \ -I"C:\boost-1.47.0-mgw" \ -I"C:\db-4.8.30.NC-mgw\build_unix" \ - -I"C:\openssl-1.0.0d-mgw\include" \ + -I"C:\openssl-1.0.1b-mgw\include" \ -I"C:\wxWidgets-2.9.2-mgw\lib\gcc_lib\mswud" \ -I"C:\wxWidgets-2.9.2-mgw\include" LIBPATHS= \ -L"C:\boost-1.47.0-mgw\stage\lib" \ -L"C:\db-4.8.30.NC-mgw\build_unix" \ - -L"C:\openssl-1.0.0d-mgw" \ + -L"C:\openssl-1.0.1b-mgw" \ -L"C:\wxWidgets-2.9.2-mgw\lib\gcc_lib" WXLIBS= \ -- cgit v1.2.3 From b7a2b6e1aa3d2b5fc8240dc0fd3a0e8acb213775 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Fri, 27 Apr 2012 10:52:14 -0400 Subject: Windows build: compile against openssl 1.0.1b --- contrib/gitian-descriptors/gitian-win32.yml | 8 ++++---- doc/build-msw.txt | 6 +++--- doc/release-process.txt | 2 +- src/makefile.linux-mingw | 4 ++-- src/makefile.mingw | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/contrib/gitian-descriptors/gitian-win32.yml b/contrib/gitian-descriptors/gitian-win32.yml index 0f4670979e..f9c5214cbd 100644 --- a/contrib/gitian-descriptors/gitian-win32.yml +++ b/contrib/gitian-descriptors/gitian-win32.yml @@ -18,7 +18,7 @@ remotes: files: - "qt-win32-4.7.4-gitian.zip" - "boost-win32-1.47.0-gitian.zip" -- "openssl-1.0.0e.tar.gz" +- "openssl-1.0.1b.tar.gz" - "db-4.8.30.NC.tar.gz" - "miniupnpc-1.6.tar.gz" script: | @@ -42,8 +42,8 @@ script: | mv include/boost . cd .. # - tar xzf openssl-1.0.0e.tar.gz - cd openssl-1.0.0e + tar xzf openssl-1.0.1b.tar.gz + cd openssl-1.0.1b ./Configure --cross-compile-prefix=i586-mingw32msvc- mingw make cd .. @@ -71,7 +71,7 @@ script: | export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1 export FAKETIME=$REFERENCE_DATETIME export TZ=UTC - $HOME/qt/src/bin/qmake -spec unsupported/win32-g++-cross USE_SSL=1 MINIUPNPC_LIB_PATH=$HOME/build/miniupnpc MINIUPNPC_INCLUDE_PATH=$HOME/build/ BDB_LIB_PATH=$HOME/build/db-4.8.30.NC/build_unix BDB_INCLUDE_PATH=$HOME/build/db-4.8.30.NC/build_unix BOOST_LIB_PATH=$HOME/build/boost_1_47_0/stage/lib BOOST_INCLUDE_PATH=$HOME/build/boost_1_47_0 BOOST_LIB_SUFFIX=-mt-s BOOST_THREAD_LIB_SUFFIX=_win32-mt-s OPENSSL_LIB_PATH=$HOME/build/openssl-1.0.0e OPENSSL_INCLUDE_PATH=$HOME/build/openssl-1.0.0e/include INCLUDEPATH=$HOME/build DEFINES=BOOST_THREAD_USE_LIB BITCOIN_NEED_QT_PLUGINS=1 QMAKE_LRELEASE=lrelease QMAKE_CXXFLAGS=-frandom-seed=bitcoin QMAKE_LFLAGS=-frandom-seed=bitcoin + $HOME/qt/src/bin/qmake -spec unsupported/win32-g++-cross USE_SSL=1 MINIUPNPC_LIB_PATH=$HOME/build/miniupnpc MINIUPNPC_INCLUDE_PATH=$HOME/build/ BDB_LIB_PATH=$HOME/build/db-4.8.30.NC/build_unix BDB_INCLUDE_PATH=$HOME/build/db-4.8.30.NC/build_unix BOOST_LIB_PATH=$HOME/build/boost_1_47_0/stage/lib BOOST_INCLUDE_PATH=$HOME/build/boost_1_47_0 BOOST_LIB_SUFFIX=-mt-s BOOST_THREAD_LIB_SUFFIX=_win32-mt-s OPENSSL_LIB_PATH=$HOME/build/openssl-1.0.1b OPENSSL_INCLUDE_PATH=$HOME/build/openssl-1.0.1b/include INCLUDEPATH=$HOME/build DEFINES=BOOST_THREAD_USE_LIB BITCOIN_NEED_QT_PLUGINS=1 QMAKE_LRELEASE=lrelease QMAKE_CXXFLAGS=-frandom-seed=bitcoin QMAKE_LFLAGS=-frandom-seed=bitcoin make $MAKEOPTS cp release/bitcoin-qt.exe $OUTDIR/ # diff --git a/doc/build-msw.txt b/doc/build-msw.txt index 346be75f56..2e54b029fc 100644 --- a/doc/build-msw.txt +++ b/doc/build-msw.txt @@ -24,7 +24,7 @@ Dependencies Libraries you need to download separately and build: default path download -OpenSSL \openssl-1.0.0d-mgw http://www.openssl.org/source/ +OpenSSL \openssl-1.0.1b-mgw http://www.openssl.org/source/ Berkeley DB \db-4.8.30.NC-mgw http://www.oracle.com/technology/software/products/berkeley-db/index.html Boost \boost-1.47.0-mgw http://www.boost.org/users/download/ miniupnpc \miniupnpc-1.6-mgw http://miniupnp.tuxfamily.org/files/ @@ -36,7 +36,7 @@ Boost MIT-like license miniupnpc New (3-clause) BSD license Versions used in this release: -OpenSSL 1.0.0e +OpenSSL 1.0.1b Berkeley DB 4.8.30.NC Boost 1.47.0 miniupnpc 1.6 @@ -48,7 +48,7 @@ MSYS shell: un-tar sources with MSYS 'tar xfz' to avoid issue with symlinks (OpenSSL ticket 2377) change 'MAKE' env. variable from 'C:\MinGW32\bin\mingw32-make.exe' to '/c/MinGW32/bin/mingw32-make.exe' -cd /c/openssl-1.0.0e-mgw +cd /c/openssl-1.0.1b-mgw ./config make diff --git a/doc/release-process.txt b/doc/release-process.txt index 9be6b782a4..2d483d36d7 100644 --- a/doc/release-process.txt +++ b/doc/release-process.txt @@ -24,7 +24,7 @@ * Fetch and build inputs: mkdir -p inputs; cd inputs/ wget 'http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.6.tar.gz' -O miniupnpc-1.6.tar.gz - wget 'http://www.openssl.org/source/openssl-1.0.0e.tar.gz' + wget 'http://www.openssl.org/source/openssl-1.0.1b.tar.gz' wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz' 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' diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 61f8d4881f..fa46d080bb 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -9,13 +9,13 @@ USE_UPNP:=0 INCLUDEPATHS= \ -I"$(DEPSDIR)/boost_1_47_0" \ -I"$(DEPSDIR)/db-4.8.30.NC/build_unix" \ - -I"$(DEPSDIR)/openssl-1.0.0e/include" \ + -I"$(DEPSDIR)/openssl-1.0.1b/include" \ -I"$(DEPSDIR)" LIBPATHS= \ -L"$(DEPSDIR)/boost_1_47_0/stage/lib" \ -L"$(DEPSDIR)/db-4.8.30.NC/build_unix" \ - -L"$(DEPSDIR)/openssl-1.0.0e" + -L"$(DEPSDIR)/openssl-1.0.1b" LIBS= \ -l boost_system-mt-s \ diff --git a/src/makefile.mingw b/src/makefile.mingw index 2cb78d97e6..5e9a4427f1 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -7,12 +7,12 @@ USE_UPNP:=0 INCLUDEPATHS= \ -I"C:\boost-1.47.0-mgw" \ -I"C:\db-4.8.30.NC-mgw\build_unix" \ - -I"C:\openssl-1.0.0d-mgw\include" + -I"C:\openssl-1.0.1b-mgw\include" LIBPATHS= \ -L"C:\boost-1.47.0-mgw\stage\lib" \ -L"C:\db-4.8.30.NC-mgw\build_unix" \ - -L"C:\openssl-1.0.0d-mgw" + -L"C:\openssl-1.0.1b-mgw" LIBS= \ -l boost_system-mgw45-mt-s-1_47 \ -- cgit v1.2.3 From dd02f3ca6e0a8ab1771887f5a49d3359a4d94d4d Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Fri, 27 Apr 2012 10:52:14 -0400 Subject: Windows build: compile against openssl 1.0.1b --- contrib/gitian-descriptors/deps-win32.yml | 6 +++--- contrib/gitian-descriptors/gitian-win32.yml | 2 +- doc/build-msw.txt | 6 +++--- doc/release-process.txt | 2 +- src/makefile.linux-mingw | 4 ++-- src/makefile.mingw | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/contrib/gitian-descriptors/deps-win32.yml b/contrib/gitian-descriptors/deps-win32.yml index 776a8da00a..74fa1847b5 100644 --- a/contrib/gitian-descriptors/deps-win32.yml +++ b/contrib/gitian-descriptors/deps-win32.yml @@ -13,7 +13,7 @@ packages: reference_datetime: "2011-01-30 00:00:00" remotes: [] files: -- "openssl-1.0.0e.tar.gz" +- "openssl-1.0.1b.tar.gz" - "db-4.8.30.NC.tar.gz" - "miniupnpc-1.6.tar.gz" - "zlib-1.2.6.tar.gz" @@ -25,8 +25,8 @@ script: | export FAKETIME=$REFERENCE_DATETIME export TZ=UTC # - tar xzf openssl-1.0.0e.tar.gz - cd openssl-1.0.0e + tar xzf openssl-1.0.1b.tar.gz + cd openssl-1.0.1b ./Configure --cross-compile-prefix=i586-mingw32msvc- mingw make cd .. diff --git a/contrib/gitian-descriptors/gitian-win32.yml b/contrib/gitian-descriptors/gitian-win32.yml index 4f299c442b..d2f4515b0b 100644 --- a/contrib/gitian-descriptors/gitian-win32.yml +++ b/contrib/gitian-descriptors/gitian-win32.yml @@ -52,7 +52,7 @@ script: | export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1 export FAKETIME=$REFERENCE_DATETIME export TZ=UTC - $HOME/qt/src/bin/qmake -spec unsupported/win32-g++-cross USE_SSL=1 MINIUPNPC_LIB_PATH=$HOME/build/miniupnpc MINIUPNPC_INCLUDE_PATH=$HOME/build/ BDB_LIB_PATH=$HOME/build/db-4.8.30.NC/build_unix BDB_INCLUDE_PATH=$HOME/build/db-4.8.30.NC/build_unix BOOST_LIB_PATH=$HOME/build/boost_1_47_0/stage/lib BOOST_INCLUDE_PATH=$HOME/build/boost_1_47_0 BOOST_LIB_SUFFIX=-mt-s BOOST_THREAD_LIB_SUFFIX=_win32-mt-s OPENSSL_LIB_PATH=$HOME/build/openssl-1.0.0e OPENSSL_INCLUDE_PATH=$HOME/build/openssl-1.0.0e/include QRENCODE_LIB_PATH=$HOME/build/qrencode-3.2.0/.libs QRENCODE_INCLUDE_PATH=$HOME/build/qrencode-3.2.0 USE_QRCODE=1 INCLUDEPATH=$HOME/build DEFINES=BOOST_THREAD_USE_LIB BITCOIN_NEED_QT_PLUGINS=1 QMAKE_LRELEASE=lrelease QMAKE_CXXFLAGS=-frandom-seed=bitcoin QMAKE_LFLAGS=-frandom-seed=bitcoin + $HOME/qt/src/bin/qmake -spec unsupported/win32-g++-cross USE_SSL=1 MINIUPNPC_LIB_PATH=$HOME/build/miniupnpc MINIUPNPC_INCLUDE_PATH=$HOME/build/ BDB_LIB_PATH=$HOME/build/db-4.8.30.NC/build_unix BDB_INCLUDE_PATH=$HOME/build/db-4.8.30.NC/build_unix BOOST_LIB_PATH=$HOME/build/boost_1_47_0/stage/lib BOOST_INCLUDE_PATH=$HOME/build/boost_1_47_0 BOOST_LIB_SUFFIX=-mt-s BOOST_THREAD_LIB_SUFFIX=_win32-mt-s OPENSSL_LIB_PATH=$HOME/build/openssl-1.0.1b OPENSSL_INCLUDE_PATH=$HOME/build/openssl-1.0.1b/include QRENCODE_LIB_PATH=$HOME/build/qrencode-3.2.0/.libs QRENCODE_INCLUDE_PATH=$HOME/build/qrencode-3.2.0 USE_QRCODE=1 INCLUDEPATH=$HOME/build DEFINES=BOOST_THREAD_USE_LIB BITCOIN_NEED_QT_PLUGINS=1 QMAKE_LRELEASE=lrelease QMAKE_CXXFLAGS=-frandom-seed=bitcoin QMAKE_LFLAGS=-frandom-seed=bitcoin make $MAKEOPTS cp release/bitcoin-qt.exe $OUTDIR/ # diff --git a/doc/build-msw.txt b/doc/build-msw.txt index 7e3d1a7cbf..b1805154e1 100644 --- a/doc/build-msw.txt +++ b/doc/build-msw.txt @@ -24,7 +24,7 @@ Dependencies Libraries you need to download separately and build: default path download -OpenSSL \openssl-1.0.0d-mgw http://www.openssl.org/source/ +OpenSSL \openssl-1.0.1b-mgw http://www.openssl.org/source/ Berkeley DB \db-4.8.30.NC-mgw http://www.oracle.com/technology/software/products/berkeley-db/index.html Boost \boost-1.47.0-mgw http://www.boost.org/users/download/ miniupnpc \miniupnpc-1.6-mgw http://miniupnp.tuxfamily.org/files/ @@ -36,7 +36,7 @@ Boost MIT-like license miniupnpc New (3-clause) BSD license Versions used in this release: -OpenSSL 1.0.0e +OpenSSL 1.0.1b Berkeley DB 4.8.30.NC Boost 1.47.0 miniupnpc 1.6 @@ -48,7 +48,7 @@ MSYS shell: un-tar sources with MSYS 'tar xfz' to avoid issue with symlinks (OpenSSL ticket 2377) change 'MAKE' env. variable from 'C:\MinGW32\bin\mingw32-make.exe' to '/c/MinGW32/bin/mingw32-make.exe' -cd /c/openssl-1.0.0e-mgw +cd /c/openssl-1.0.1b-mgw ./config make diff --git a/doc/release-process.txt b/doc/release-process.txt index 977780c9e7..05db17e323 100644 --- a/doc/release-process.txt +++ b/doc/release-process.txt @@ -24,7 +24,7 @@ * Fetch and build inputs: mkdir -p inputs; cd inputs/ wget 'http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.6.tar.gz' -O miniupnpc-1.6.tar.gz - wget 'http://www.openssl.org/source/openssl-1.0.0e.tar.gz' + wget 'http://www.openssl.org/source/openssl-1.0.1b.tar.gz' wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz' wget 'http://zlib.net/zlib-1.2.6.tar.gz' wget 'ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng-1.5.9.tar.gz' diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 40ce1dcdca..d728910b7f 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -9,13 +9,13 @@ USE_UPNP:=0 INCLUDEPATHS= \ -I"$(DEPSDIR)/boost_1_47_0" \ -I"$(DEPSDIR)/db-4.8.30.NC/build_unix" \ - -I"$(DEPSDIR)/openssl-1.0.0e/include" \ + -I"$(DEPSDIR)/openssl-1.0.1b/include" \ -I"$(DEPSDIR)" LIBPATHS= \ -L"$(DEPSDIR)/boost_1_47_0/stage/lib" \ -L"$(DEPSDIR)/db-4.8.30.NC/build_unix" \ - -L"$(DEPSDIR)/openssl-1.0.0e" + -L"$(DEPSDIR)/openssl-1.0.1b" LIBS= \ -l boost_system-mt-s \ diff --git a/src/makefile.mingw b/src/makefile.mingw index f7dfcc74c1..7496e0a929 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -7,12 +7,12 @@ USE_UPNP:=0 INCLUDEPATHS= \ -I"C:\boost-1.47.0-mgw" \ -I"C:\db-4.8.30.NC-mgw\build_unix" \ - -I"C:\openssl-1.0.0d-mgw\include" + -I"C:\openssl-1.0.1b-mgw\include" LIBPATHS= \ -L"C:\boost-1.47.0-mgw\stage\lib" \ -L"C:\db-4.8.30.NC-mgw\build_unix" \ - -L"C:\openssl-1.0.0d-mgw" + -L"C:\openssl-1.0.1b-mgw" LIBS= \ -l boost_system-mgw45-mt-s-1_47 \ -- cgit v1.2.3 From 3a70f3a4ec0cc3860b977597577fcf01cd5c13ae Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Fri, 27 Apr 2012 11:53:11 -0400 Subject: Bump win32.deps version number for new openssl --- contrib/gitian-descriptors/deps-win32.yml | 2 +- contrib/gitian-descriptors/gitian-win32.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/gitian-descriptors/deps-win32.yml b/contrib/gitian-descriptors/deps-win32.yml index 74fa1847b5..df1e3de358 100644 --- a/contrib/gitian-descriptors/deps-win32.yml +++ b/contrib/gitian-descriptors/deps-win32.yml @@ -62,7 +62,7 @@ script: | make $MAKEOPTS cd .. # - zip -r $OUTDIR/bitcoin-deps-0.0.3.zip \ + zip -r $OUTDIR/bitcoin-deps-0.0.4.zip \ $(ls qrencode-*/{qrencode.h,.libs/libqrencode.{,l}a} | sort) \ $(ls db-*/build_unix/{libdb_cxx.a,db.h,db_cxx.h,libdb.a,.libs/libdb_cxx-?.?.a} | sort) \ $(find openssl-* -name '*.a' -o -name '*.h' | sort) \ diff --git a/contrib/gitian-descriptors/gitian-win32.yml b/contrib/gitian-descriptors/gitian-win32.yml index d2f4515b0b..488cc95f64 100644 --- a/contrib/gitian-descriptors/gitian-win32.yml +++ b/contrib/gitian-descriptors/gitian-win32.yml @@ -17,7 +17,7 @@ remotes: files: - "qt-win32-4.7.4-gitian.zip" - "boost-win32-1.47.0-gitian.zip" -- "bitcoin-deps-0.0.3.zip" +- "bitcoin-deps-0.0.4.zip" script: | # mkdir $HOME/qt @@ -39,7 +39,7 @@ script: | mv include/boost . cd .. # - unzip bitcoin-deps-0.0.3.zip + unzip bitcoin-deps-0.0.4.zip # find -type f | xargs touch --date="$REFERENCE_DATETIME" # -- cgit v1.2.3 From 813dc92cdcdc575004d95627cdbdfb3cc87b87a5 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 11 Apr 2012 14:00:48 -0400 Subject: fix compiler error in bitcoinrpc RE: boost::system (Partial of 2232717cba9e9f06a01e8f37bcea4e79ee65205f) --- src/bitcoinrpc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 3e82cd3ab7..2f42fae1ee 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -2224,7 +2224,7 @@ void ThreadRPCServer2(void* parg) acceptor.bind(endpoint); acceptor.listen(socket_base::max_connections); } - catch(system::system_error &e) + catch(boost::system::system_error &e) { HACK_SHUTDOWN = true; ThreadSafeMessageBox(strprintf(_("An error occured while setting up the RPC port %i for listening: %s"), endpoint.port(), e.what()), -- cgit v1.2.3 From 1fb6e2d9bf27bdce4e7220c667fc0bcd6feb9b4e Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sun, 22 Apr 2012 17:32:08 +0200 Subject: change button tooltip on sign message page for copy to clipboard as it was missleading --- src/qt/forms/messagepage.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/forms/messagepage.ui b/src/qt/forms/messagepage.ui index 8bd6d8b54b..ae1e062fca 100644 --- a/src/qt/forms/messagepage.ui +++ b/src/qt/forms/messagepage.ui @@ -128,7 +128,7 @@ - Copy the currently selected address to the system clipboard + Copy the current signature to the system clipboard &Copy to Clipboard -- cgit v1.2.3 From e6578e7fa7385dde7a0de9c2e87d8c0afa176314 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Tue, 1 May 2012 01:56:47 +0200 Subject: remove unused typedef in serialize.h --- src/serialize.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/serialize.h b/src/serialize.h index 302766062a..959a3a694b 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -1244,8 +1244,6 @@ public: int nType; int nVersion; - typedef FILE element_type; - CAutoFile(FILE* filenew=NULL, int nTypeIn=SER_DISK, int nVersionIn=VERSION) { file = filenew; -- cgit v1.2.3 From 8edec3f9d6e91aa1a3f2cb9042d1137fce591142 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Tue, 1 May 2012 18:45:10 +0200 Subject: fix DEPENDPATH in the project file, as json has no include sub-dir and src was in twice --- bitcoin-qt.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 922f42ed76..56ecbfd984 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -76,7 +76,7 @@ contains(BITCOIN_NEED_QT_PLUGINS, 1) { QMAKE_CXXFLAGS_WARN_ON = -fdiagnostics-show-option -Wall -Wno-strict-aliasing -Wno-invalid-offsetof -Wno-unused-variable -Wno-unused-parameter -Wno-sign-compare -Wno-char-subscripts -Wno-unused-value -Wno-sequence-point -Wno-parentheses -Wno-unknown-pragmas -Wno-switch # Input -DEPENDPATH += src/qt src src json/include +DEPENDPATH += src src/json src/qt HEADERS += src/qt/bitcoingui.h \ src/qt/transactiontablemodel.h \ src/qt/addresstablemodel.h \ -- cgit v1.2.3 From 48984829151d76fefb62029e500145d7e4f19a8d Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Tue, 1 May 2012 01:46:03 +0200 Subject: fix compiler warning "suggest parentheses around assignment used as truth value [-Wparentheses]" in util.cpp --- src/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.cpp b/src/util.cpp index a45d19156f..766c3ab447 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -236,7 +236,7 @@ inline int OutputDebugStringF(const char* pszFormat, ...) *pend = '\0'; char* p1 = pszBuffer; char* p2; - while (p2 = strchr(p1, '\n')) + while ((p2 = strchr(p1, '\n'))) { p2++; char c = *p2; -- cgit v1.2.3 From 6789e99e4f70b9e779598f1a31552a87b5bd9360 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Tue, 1 May 2012 22:26:33 +0200 Subject: add bitcoin-qt.rc to OTHER_FILES (shown in Qt Creator) --- bitcoin-qt.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 56ecbfd984..8af8895db1 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -219,7 +219,7 @@ PRE_TARGETDEPS += compiler_TSQM_make_all # "Other files" to show in Qt Creator OTHER_FILES += \ - doc/*.rst doc/*.txt doc/README README.md + 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) { -- cgit v1.2.3 From cae1a682678e94015ff89be2c6fa6484c8ef6fbe Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Thu, 3 May 2012 11:30:52 +0200 Subject: remove obsolete BackupWallet() entry in wallet.h --- src/wallet.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wallet.h b/src/wallet.h index e0f39b4170..ea7b279268 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -166,7 +166,6 @@ public: } int LoadWallet(bool& fFirstRunRet); -// bool BackupWallet(const std::string& strDest); bool SetAddressBookName(const CBitcoinAddress& address, const std::string& strName); -- cgit v1.2.3 From ad5a4c7c471912aa0bef52c33a1abfb01fe6d89d Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Sun, 29 Apr 2012 20:56:55 -0400 Subject: Check earlier for blocks with duplicate transactions. Fixes #1167 --- src/main.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index e6f94210b9..e8cbc01c7f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1472,6 +1472,16 @@ bool CBlock::CheckBlock() const if (!tx.CheckTransaction()) return error("CheckBlock() : CheckTransaction failed"); + // Check for duplicate txids. This is caught by ConnectInputs(), + // but catching it earlier avoids a potential DoS attack: + set uniqueTx; + BOOST_FOREACH(const CTransaction& tx, vtx) + { + uniqueTx.insert(tx.GetHash()); + } + if (uniqueTx.size() != vtx.size()) + return error("CheckBlock() : duplicate transaction"); + // Check that it's not full of nonstandard transactions if (GetSigOpCount() > MAX_BLOCK_SIGOPS) return error("CheckBlock() : out-of-bounds SigOpCount"); -- cgit v1.2.3 From 6a89317f621692e7d5c0c67b3a1440bf1b52b328 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Sun, 29 Apr 2012 20:56:55 -0400 Subject: Check earlier for blocks with duplicate transactions. Fixes #1167 --- src/main.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index d72a131a5f..5f98d49530 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1492,6 +1492,16 @@ bool CBlock::CheckBlock() const if (!tx.CheckTransaction()) return DoS(tx.nDoS, error("CheckBlock() : CheckTransaction failed")); + // Check for duplicate txids. This is caught by ConnectInputs(), + // but catching it earlier avoids a potential DoS attack: + set uniqueTx; + BOOST_FOREACH(const CTransaction& tx, vtx) + { + uniqueTx.insert(tx.GetHash()); + } + if (uniqueTx.size() != vtx.size()) + return DoS(100, error("CheckBlock() : duplicate transaction")); + // Check that it's not full of nonstandard transactions if (GetSigOpCount() > MAX_BLOCK_SIGOPS) return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount")); -- cgit v1.2.3 From c328c684c27b8a4e45c169cdcf4f003e7d9e976d Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 4 May 2012 19:54:24 +0000 Subject: Bugfix: Remove redundant duplicate transaction check --- src/main.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index ff4e2f0ded..5f98d49530 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1502,16 +1502,6 @@ bool CBlock::CheckBlock() const if (uniqueTx.size() != vtx.size()) return DoS(100, error("CheckBlock() : duplicate transaction")); - // Check for duplicate txids. This is caught by ConnectInputs(), - // but catching it earlier avoids a potential DoS attack: - set uniqueTx; - BOOST_FOREACH(const CTransaction& tx, vtx) - { - uniqueTx.insert(tx.GetHash()); - } - if (uniqueTx.size() != vtx.size()) - return error("CheckBlock() : duplicate transaction"); - // Check that it's not full of nonstandard transactions if (GetSigOpCount() > MAX_BLOCK_SIGOPS) return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount")); -- cgit v1.2.3 From 479c99022e0e65ac525b45d3a18599726c00cc03 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Wed, 4 Apr 2012 09:07:55 +0200 Subject: remove HTML code around "Wallet" (displayed on overview page) and use Qt tags for font settings --- src/qt/forms/overviewpage.ui | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/qt/forms/overviewpage.ui b/src/qt/forms/overviewpage.ui index cc67fae533..3cf7dd0ed3 100644 --- a/src/qt/forms/overviewpage.ui +++ b/src/qt/forms/overviewpage.ui @@ -78,12 +78,14 @@ + + + 11 + true + + - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + Wallet -- cgit v1.2.3 From 607739befb6d4a647f03ed049b12222b1530f43c Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 6 May 2012 05:27:08 +0000 Subject: Bugfix: %-12I64d is not valid and causes the parameter to be skipped, use %12"PRI64d" instead Conflicts: src/walletdb.cpp --- src/db.cpp | 2 +- src/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/db.cpp b/src/db.cpp index bf335e7e3f..4c0c557a5a 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -867,7 +867,7 @@ int CWalletDB::LoadWallet(CWallet* pwallet) //// debug print //printf("LoadWallet %s\n", wtx.GetHash().ToString().c_str()); - //printf(" %12I64d %s %s %s\n", + //printf(" %12"PRI64d" %s %s %s\n", // wtx.vout[0].nValue, // DateTimeStrFormat("%x %H:%M:%S", wtx.GetBlockTime()).c_str(), // wtx.hashBlock.ToString().substr(0,20).c_str(), diff --git a/src/main.cpp b/src/main.cpp index e8cbc01c7f..67d6638e0e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2971,7 +2971,7 @@ CBlock* CreateNewBlock(CReserveKey& reservekey) dPriority += (double)nValueIn * nConf; if (fDebug && GetBoolArg("-printpriority")) - printf("priority nValueIn=%-12I64d nConf=%-5d dPriority=%-20.1f\n", nValueIn, nConf, dPriority); + printf("priority nValueIn=%-12"PRI64d" nConf=%-5d dPriority=%-20.1f\n", nValueIn, nConf, dPriority); } // Priority is sum(valuein * age) / txsize -- cgit v1.2.3 From d41f22cb7675e8d45160511c3f45e51ba5dbbd00 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sat, 5 May 2012 02:41:43 +0000 Subject: Bugfix: %-12I64d is not valid and causes the parameter to be skipped, use %12"PRI64d" instead --- src/main.cpp | 2 +- src/walletdb.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 427e435a90..c1c57d1d2b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3188,7 +3188,7 @@ CBlock* CreateNewBlock(CReserveKey& reservekey) dPriority += (double)nValueIn * nConf; if (fDebug && GetBoolArg("-printpriority")) - printf("priority nValueIn=%-12I64d nConf=%-5d dPriority=%-20.1f\n", nValueIn, nConf, dPriority); + printf("priority nValueIn=%-12"PRI64d" nConf=%-5d dPriority=%-20.1f\n", nValueIn, nConf, dPriority); } // Priority is sum(valuein * age) / txsize diff --git a/src/walletdb.cpp b/src/walletdb.cpp index 709ecac184..e5d57288e8 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -189,7 +189,7 @@ int CWalletDB::LoadWallet(CWallet* pwallet) //// debug print //printf("LoadWallet %s\n", wtx.GetHash().ToString().c_str()); - //printf(" %12I64d %s %s %s\n", + //printf(" %12"PRI64d" %s %s %s\n", // wtx.vout[0].nValue, // DateTimeStrFormat("%x %H:%M:%S", wtx.GetBlockTime()).c_str(), // wtx.hashBlock.ToString().substr(0,20).c_str(), -- cgit v1.2.3 From b94e6eb5a510315c4713ffc8bcfbfceb674691dc Mon Sep 17 00:00:00 2001 From: Peter Todd Date: Sat, 28 Apr 2012 16:29:27 -0400 Subject: Fixed non-sensical error message Previously trying to create a multisig address that required less than one signature would output something like the following: "wrong number of keys(got 1, need at least 0)" --- src/bitcoinrpc.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 6525c15194..4426ac502e 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1002,10 +1002,12 @@ Value addmultisigaddress(const Array& params, bool fHelp) strAccount = AccountFromValue(params[2]); // Gather public keys - if (nRequired < 1 || keys.size() < nRequired) + if (nRequired < 1) + throw runtime_error("a multisignature address must require at least one key to redeem"); + if (keys.size() < nRequired) throw runtime_error( - strprintf("wrong number of keys" - "(got %d, need at least %d)", keys.size(), nRequired)); + strprintf("not enough keys supplied " + "(got %d keys, but need at least %d to redeem)", keys.size(), nRequired)); std::vector pubkeys; pubkeys.resize(keys.size()); for (unsigned int i = 0; i < keys.size(); i++) -- cgit v1.2.3 From e2b9bf9e6e846d2b182baf889f556e624c02e7a8 Mon Sep 17 00:00:00 2001 From: Peter Todd Date: Sat, 28 Apr 2012 16:29:27 -0400 Subject: Fixed non-sensical error message Previously trying to create a multisig address that required less than one signature would output something like the following: "wrong number of keys(got 1, need at least 0)" --- src/bitcoinrpc.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 15bcf1da3d..0b851c4e70 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -999,10 +999,12 @@ Value addmultisigaddress(const Array& params, bool fHelp) strAccount = AccountFromValue(params[2]); // Gather public keys - if ((nRequired < 1) || ((int)keys.size() < nRequired)) + if (nRequired < 1) + throw runtime_error("a multisignature address must require at least one key to redeem"); + if ((int)keys.size() < nRequired) throw runtime_error( - strprintf("wrong number of keys" - "(got %d, need at least %d)", keys.size(), nRequired)); + strprintf("not enough keys supplied " + "(got %d keys, but need at least %d to redeem)", keys.size(), nRequired)); std::vector pubkeys; pubkeys.resize(keys.size()); for (unsigned int i = 0; i < keys.size(); i++) -- cgit v1.2.3 From adecb2ea00c8e8944a8c9bc5bc10e84ed1a568c0 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 5 May 2012 21:22:55 +0200 Subject: Fix addrman crashes A function returned the element to remove from a bucket, instead of its position in that bucket. This function was only called when a tried bucket overflowed, which only happens after many outgoing connections have been made. Closes: #1065, #1156 --- src/addrman.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/addrman.cpp b/src/addrman.cpp index 11dd2a7b7d..9edbcc3a5f 100644 --- a/src/addrman.cpp +++ b/src/addrman.cpp @@ -124,17 +124,20 @@ int CAddrMan::SelectTried(int nKBucket) // random shuffle the first few elements (using the entire list) // find the least recently tried among them int64 nOldest = -1; + int nOldestPos = -1; for (unsigned int i = 0; i < ADDRMAN_TRIED_ENTRIES_INSPECT_ON_EVICT && i < vTried.size(); i++) { int nPos = GetRandInt(vTried.size() - i) + i; int nTemp = vTried[nPos]; vTried[nPos] = vTried[i]; vTried[i] = nTemp; - if (nOldest == -1 || mapInfo[nTemp].nLastSuccess < mapInfo[nOldest].nLastSuccess) + if (nOldest == -1 || mapInfo[nTemp].nLastSuccess < mapInfo[nOldest].nLastSuccess) { nOldest = nTemp; + nOldestPos = nPos; + } } - return nOldest; + return nOldestPos; } int CAddrMan::ShrinkNew(int nUBucket) -- cgit v1.2.3 From 700e5a4d86d5180e6bb905c25a9e05695617f445 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 5 May 2012 21:27:52 +0200 Subject: Bugfix: store source address in addrman --- src/addrman.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/addrman.h b/src/addrman.h index 91e1f87f05..5f1d7b2af9 100644 --- a/src/addrman.h +++ b/src/addrman.h @@ -62,7 +62,7 @@ public: nRandomPos = -1; } - CAddrInfo(const CAddress &addrIn, const CNetAddr &addrSource) : CAddress(addrIn) + CAddrInfo(const CAddress &addrIn, const CNetAddr &addrSource) : CAddress(addrIn), source(addrSource) { Init(); } -- cgit v1.2.3 From e38d492822a82fc9f1324f9e08c6ff0627321511 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sun, 6 May 2012 08:14:19 +0200 Subject: Hide UI immediately after leaving the main loop. Prevents it from seeming to hang during shutdown if shutdown is triggered while the window is open. --- src/qt/bitcoin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index b7c8a45d72..3157eadef8 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -205,6 +205,7 @@ int main(int argc, char *argv[]) app.exec(); + window.hide(); guiref = 0; } Shutdown(NULL); -- cgit v1.2.3 From 486f7c8f65898ec5314bc75491eebabefdf3ca84 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sun, 6 May 2012 08:14:19 +0200 Subject: Hide UI immediately after leaving the main loop. Prevents it from seeming to hang during shutdown if shutdown is triggered while the window is open. --- src/qt/bitcoin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 7c262e14cd..97a8f916c3 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -281,6 +281,7 @@ int main(int argc, char *argv[]) #endif app.exec(); + window.hide(); window.setClientModel(0); window.setWalletModel(0); guiref = 0; -- cgit v1.2.3 From 293f2644ffd98742caa30b16405b95a6420e8ba0 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Thu, 3 May 2012 14:52:15 +0200 Subject: fix #952 by checking if we have a new address or an updated label --- src/qt/walletmodel.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index f028f10f6c..710d3aa0ad 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -152,14 +152,20 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(const QListcs_wallet) { - if (!wallet->mapAddressBook.count(strAddress)) - wallet->SetAddressBookName(strAddress, rcp.label.toStdString()); + std::map::iterator mi = wallet->mapAddressBook.find(strAddress); + + // Check if we have a new address or an updated label + if (mi == wallet->mapAddressBook.end() || mi->second != strLabel) + { + wallet->SetAddressBookName(strAddress, strLabel); + } } } -- cgit v1.2.3 From 5cbe24202a6ba0b7780fcaa3a4530d46612f02da Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Thu, 3 May 2012 14:52:15 +0200 Subject: fix #952 by checking if we have a new address or an updated label --- src/qt/walletmodel.cpp | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index a915274da3..b9ccb06c09 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -150,14 +150,21 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(const QListcs_wallet); - if (!wallet->mapAddressBook.count(strAddress)) - wallet->SetAddressBookName(strAddress, rcp.label.toStdString()); + + std::map::iterator mi = wallet->mapAddressBook.find(strAddress); + + // Check if we have a new address or an updated label + if (mi == wallet->mapAddressBook.end() || mi->second != strLabel) + { + wallet->SetAddressBookName(strAddress, strLabel); + } } } -- cgit v1.2.3 From dfdaee931021618fa2d280907aad7393640f39f5 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 5 May 2012 21:30:38 +0200 Subject: Add extra asserts to addrman --- src/addrman.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/addrman.cpp b/src/addrman.cpp index 345261e229..c1a0df6a44 100644 --- a/src/addrman.cpp +++ b/src/addrman.cpp @@ -107,9 +107,15 @@ void CAddrMan::SwapRandom(int nRndPos1, int nRndPos2) if (nRndPos1 == nRndPos2) return; + assert(nRndPos1 >= 0 && nRndPos2 >= 0); + assert(nRndPos1 < vRandom.size() && nRndPos2 < vRandom.size()); + int nId1 = vRandom[nRndPos1]; int nId2 = vRandom[nRndPos2]; + assert(mapInfo.count(nId1) == 1); + assert(mapInfo.count(nId2) == 1); + mapInfo[nId1].nRandomPos = nRndPos2; mapInfo[nId2].nRandomPos = nRndPos1; @@ -130,6 +136,7 @@ int CAddrMan::SelectTried(int nKBucket) int nTemp = vTried[nPos]; vTried[nPos] = vTried[i]; vTried[i] = nTemp; + assert(nOldest == -1 || mapInfo.count(nTemp) == 1); if (nOldest == -1 || mapInfo[nTemp].nLastSuccess < mapInfo[nOldest].nLastSuccess) nOldest = nTemp; } @@ -139,11 +146,13 @@ int CAddrMan::SelectTried(int nKBucket) int CAddrMan::ShrinkNew(int nUBucket) { + assert(nUBucket >= 0 && nUBucket < vvNew.size()); std::set &vNew = vvNew[nUBucket]; // first look for deletable items for (std::set::iterator it = vNew.begin(); it != vNew.end(); it++) { + assert(mapInfo.count(*it)); CAddrInfo &info = mapInfo[*it]; if (info.IsTerrible()) { @@ -168,11 +177,13 @@ int CAddrMan::ShrinkNew(int nUBucket) { if (nI == n[0] || nI == n[1] || nI == n[2] || nI == n[3]) { + assert(nOldest == -1 || mapInfo.count(*it) == 1); if (nOldest == -1 || mapInfo[*it].nTime < mapInfo[nOldest].nTime) nOldest = *it; } nI++; } + assert(mapInfo.count(nOldest) == 1); CAddrInfo &info = mapInfo[nOldest]; if (--info.nRefCount == 0) { @@ -189,6 +200,8 @@ int CAddrMan::ShrinkNew(int nUBucket) void CAddrMan::MakeTried(CAddrInfo& info, int nId, int nOrigin) { + assert(vvNew[nOrigin].count(nId) == 1); + // remove the entry from all new buckets for (std::vector >::iterator it = vvNew.begin(); it != vvNew.end(); it++) { @@ -197,6 +210,8 @@ void CAddrMan::MakeTried(CAddrInfo& info, int nId, int nOrigin) } nNew--; + assert(info.nRefCount == 0); + // what tried bucket to move the entry to int nKBucket = info.GetTriedBucket(nKey); std::vector &vTried = vvTried[nKBucket]; @@ -214,6 +229,7 @@ void CAddrMan::MakeTried(CAddrInfo& info, int nId, int nOrigin) int nPos = SelectTried(nKBucket); // find which new bucket it belongs to + assert(mapInfo.count(vTried[nPos]) == 1); int nUBucket = mapInfo[vTried[nPos]].GetNewBucket(nKey); std::set &vNew = vvNew[nUBucket]; @@ -385,6 +401,7 @@ CAddress CAddrMan::Select_(int nUnkBias) std::vector &vTried = vvTried[nKBucket]; if (vTried.size() == 0) continue; int nPos = GetRandInt(vTried.size()); + assert(mapInfo.count(vTried[nPos]) == 1); CAddrInfo &info = mapInfo[vTried[nPos]]; if (GetRandInt(1<<30) < fChanceFactor*info.GetChance()*(1<<30)) return info; @@ -402,6 +419,7 @@ CAddress CAddrMan::Select_(int nUnkBias) std::set::iterator it = vNew.begin(); while (nPos--) it++; + assert(mapInfo.count(*it) == 1); CAddrInfo &info = mapInfo[*it]; if (GetRandInt(1<<30) < fChanceFactor*info.GetChance()*(1<<30)) return info; @@ -481,6 +499,7 @@ void CAddrMan::GetAddr_(std::vector &vAddr) { int nRndPos = GetRandInt(vRandom.size() - n) + n; SwapRandom(n, nRndPos); + assert(mapInfo.count(vRandom[n]) == 1); vAddr.push_back(mapInfo[vRandom[n]]); } } -- cgit v1.2.3 From 05ff9680baed281e00e2a0cab43d1d9ef17ec891 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 5 May 2012 21:22:55 +0200 Subject: Fix addrman crashes A function returned the element to remove from a bucket, instead of its position in that bucket. This function was only called when a tried bucket overflowed, which only happens after many outgoing connections have been made. Closes: #1065, #1156 --- src/addrman.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/addrman.cpp b/src/addrman.cpp index c1a0df6a44..10d005aae9 100644 --- a/src/addrman.cpp +++ b/src/addrman.cpp @@ -130,6 +130,7 @@ int CAddrMan::SelectTried(int nKBucket) // random shuffle the first few elements (using the entire list) // find the least recently tried among them int64 nOldest = -1; + int nOldestPos = -1; for (unsigned int i = 0; i < ADDRMAN_TRIED_ENTRIES_INSPECT_ON_EVICT && i < vTried.size(); i++) { int nPos = GetRandInt(vTried.size() - i) + i; @@ -137,11 +138,13 @@ int CAddrMan::SelectTried(int nKBucket) vTried[nPos] = vTried[i]; vTried[i] = nTemp; assert(nOldest == -1 || mapInfo.count(nTemp) == 1); - if (nOldest == -1 || mapInfo[nTemp].nLastSuccess < mapInfo[nOldest].nLastSuccess) + if (nOldest == -1 || mapInfo[nTemp].nLastSuccess < mapInfo[nOldest].nLastSuccess) { nOldest = nTemp; + nOldestPos = nPos; + } } - return nOldest; + return nOldestPos; } int CAddrMan::ShrinkNew(int nUBucket) -- cgit v1.2.3 From 5e27f737fa9575f7e060e455956a3851ae28ded3 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 5 May 2012 21:27:52 +0200 Subject: Bugfix: store source address in addrman --- src/addrman.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/addrman.h b/src/addrman.h index 7652df66ae..3768614cfe 100644 --- a/src/addrman.h +++ b/src/addrman.h @@ -62,7 +62,7 @@ public: nRandomPos = -1; } - CAddrInfo(const CAddress &addrIn, const CNetAddr &addrSource) : CAddress(addrIn) + CAddrInfo(const CAddress &addrIn, const CNetAddr &addrSource) : CAddress(addrIn), source(addrSource) { Init(); } -- cgit v1.2.3 From eb3f661add15837434c286476a32e05f279a1919 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sun, 18 Mar 2012 23:47:26 +0100 Subject: Prevent stuck block download in large reorganisations In cases of very large reorganisations (hundreds of blocks), a situation may appear where an 'inv' is sent as response to a 'getblocks', but the last block mentioned in the inv is already known to the receiver node. However, the supplying node uses a request for this last block as a trigger to send the rest of the inv blocks. If it never comes, the block chain download is stuck. This commit makes the receiver node always request the last inv'ed block, even if it is already known, to prevent this problem. --- src/main.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 67d6638e0e..167e2821c0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2178,8 +2178,10 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) return error("message inv size() = %d", vInv.size()); CTxDB txdb("r"); - BOOST_FOREACH(const CInv& inv, vInv) + for (int nInv = 0; nInv < vInv.size(); nInv++) { + const CInv &inv = vInv[nInv]; + if (fShutdown) return true; pfrom->AddInventoryKnown(inv); @@ -2188,9 +2190,12 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) if (fDebug) printf(" got inventory: %s %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new"); - if (!fAlreadyHave) + // Always request the last block in an inv bundle (even if we already have it), as it is the + // trigger for the other side to send further invs. If we are stuck on a (very long) side chain, + // this is necessary to connect earlier received orphan blocks to the chain again. + if (!fAlreadyHave || (inv.type == MSG_BLOCK && nInv==vInv.size()-1)) pfrom->AskFor(inv); - else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) + if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash])); // Track requests for our stuff -- cgit v1.2.3 From 2403bb79bc232ea3f9a78448d0fb4ffcf385d209 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 5 May 2012 04:04:38 +0200 Subject: Prevent stuck download: correct solution Pull request #948 introduced a fix for nodes stuck on a long side branch of the main chain. The fix was non-functional however, as the additional getdata request was created in a first step of processing, but dropped in a second step as it was considered redundant. This commits fixes it by sending the request directly. --- src/main.cpp | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 167e2821c0..a2fc7387fb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2177,6 +2177,12 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) if (vInv.size() > 50000) return error("message inv size() = %d", vInv.size()); + // find last block in inv vector + unsigned int nLastBlock = (unsigned int)(-1); + for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) { + if (vInv[vInv.size() - 1 - nInv].type == MSG_BLOCK) + nLastBlock = vInv.size() - 1 - nInv; + } CTxDB txdb("r"); for (int nInv = 0; nInv < vInv.size(); nInv++) { @@ -2193,9 +2199,15 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) // Always request the last block in an inv bundle (even if we already have it), as it is the // trigger for the other side to send further invs. If we are stuck on a (very long) side chain, // this is necessary to connect earlier received orphan blocks to the chain again. - if (!fAlreadyHave || (inv.type == MSG_BLOCK && nInv==vInv.size()-1)) + if (fAlreadyHave && nInv == nLastBlock) { + // bypass mapAskFor, and send request directly; it must go through. + std::vector vGetData(1,inv); + pfrom->PushMessage("getdata", vGetData); + } + + if (!fAlreadyHave) pfrom->AskFor(inv); - if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) + else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash])); // Track requests for our stuff -- cgit v1.2.3 From 60953d05c8cc6eefb0c03d1d39209bdaf54725eb Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 5 May 2012 04:04:38 +0200 Subject: Prevent stuck download: correct solution Pull request #948 introduced a fix for nodes stuck on a long side branch of the main chain. The fix was non-functional however, as the additional getdata request was created in a first step of processing, but dropped in a second step as it was considered redundant. This commits fixes it by sending the request directly. --- src/main.cpp | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 9b93c85caf..7e4ed1100c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2391,6 +2391,12 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) return error("message inv size() = %d", vInv.size()); } + // find last block in inv vector + unsigned int nLastBlock = (unsigned int)(-1); + for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) { + if (vInv[vInv.size() - 1 - nInv].type == MSG_BLOCK) + nLastBlock = vInv.size() - 1 - nInv; + } CTxDB txdb("r"); for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) { @@ -2407,9 +2413,15 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) // Always request the last block in an inv bundle (even if we already have it), as it is the // trigger for the other side to send further invs. If we are stuck on a (very long) side chain, // this is necessary to connect earlier received orphan blocks to the chain again. - if (!fAlreadyHave || (inv.type == MSG_BLOCK && nInv==vInv.size()-1)) + if (fAlreadyHave && nInv == nLastBlock) { + // bypass mapAskFor, and send request directly; it must go through. + std::vector vGetData(1,inv); + pfrom->PushMessage("getdata", vGetData); + } + + if (!fAlreadyHave) pfrom->AskFor(inv); - if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) + else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash])); // Track requests for our stuff -- cgit v1.2.3 From b803009c84b1e7ca16cc5a2105269bc3518970a0 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 7 May 2012 03:57:39 +0000 Subject: Update/fix translations --- src/qt/locale/bitcoin_da.ts | 1120 ++++++++++------------------------- src/qt/locale/bitcoin_de.ts | 1281 ++++++++++++---------------------------- src/qt/locale/bitcoin_en.ts | 1056 ++++++++------------------------- src/qt/locale/bitcoin_es.ts | 1118 ++++++++++------------------------- src/qt/locale/bitcoin_es_CL.ts | 1126 ++++++++++------------------------- src/qt/locale/bitcoin_hu.ts | 1109 +++++++++------------------------- src/qt/locale/bitcoin_it.ts | 1133 ++++++++++------------------------- src/qt/locale/bitcoin_nb.ts | 1124 ++++++++++------------------------- src/qt/locale/bitcoin_nl.ts | 1218 +++++++++++--------------------------- src/qt/locale/bitcoin_pt_BR.ts | 1094 +++++++++------------------------- src/qt/locale/bitcoin_ru.ts | 1149 ++++++++++------------------------- src/qt/locale/bitcoin_uk.ts | 1130 ++++++++++------------------------- src/qt/locale/bitcoin_zh_CN.ts | 1119 +++++++++-------------------------- src/qt/locale/bitcoin_zh_TW.ts | 1119 +++++++++-------------------------- 14 files changed, 4263 insertions(+), 11633 deletions(-) diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index 7e5e683647..81e864e30b 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -14,14 +16,14 @@ - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers Dette program er ekperimentielt. @@ -78,22 +80,22 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open &Slet - + Export Address Book Data Eksporter Adressekartoteketsdata - + Comma separated file (*.csv) Kommasepareret fil (*. csv) - + Error exporting Fejl under eksport - + Could not write to file %1. Kunne ikke skrive til filen %1. @@ -101,17 +103,17 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open AddressTableModel - + Label Etiket - + Address Adresse - + (no label) (ingen etiket) @@ -125,125 +127,132 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open + TextLabel TekstEtiket - + Enter passphrase Indtast adgangskode - + New passphrase Ny adgangskode - + Repeat new passphrase Gentag ny adgangskode - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Indtast den nye adgangskode til tegnebogen.<br/>Brug venligst en adgangskode på <b>10 eller flere tilfældige tegn</b>, eller <b>otte eller flere ord</b>. - + Encrypt wallet Krypter tegnebog - + This operation needs your wallet passphrase to unlock the wallet. Denne funktion har brug for din tegnebogs kodeord 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 kodeord for at dekryptere tegnebogen. - + Decrypt wallet Dekryptér tegnebog - + Change passphrase Skift adgangskode - + Enter the old and new passphrase to the wallet. Indtast den gamle og 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 BITCOINS</b>! Are you sure you wish to encrypt your wallet? ADVARSEL: Hvis du krypterer din tegnebog og mister dit kodeord vil du <b>miste alle dine BITCOINS</b>! Er du sikker på at du ønsker at kryptere din tegnebog? - - + + Wallet encrypted Tegnebog krypteret - - Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. + + + Warning: The Caps Lock key is on. + - - - - + + + + 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. - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. + + + + The supplied passphrases do not match. De angivne kodeord stemmer ikke overens. - + Wallet unlock failed Tegnebogsoplåsning mislykkedes - - + + The passphrase entered for the wallet decryption was incorrect. Det angivne kodeord for tegnebogsdekrypteringen er forkert. - + Wallet decryption failed Tegnebogsdekryptering mislykkedes - + Wallet passphrase was succesfully changed. Tegnebogskodeord blev ændret. @@ -251,247 +260,273 @@ Er du sikker på at du ønsker at kryptere din tegnebog? BitcoinGUI - + Bitcoin Wallet Bitcoin Tegnebog - + + Synchronizing with network... Synkroniserer med netværk ... - + Block chain synchronization in progress Blokkæde synkronisering i gang - + &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 Rediger listen over gemte adresser og etiketter - + &Receive coins &Modtag coins - + Show the list of addresses for receiving payments Vis listen over adresser for at modtage betalinger - + &Send coins &Send coins - + Send coins to a bitcoin address Send coins til en bitcoinadresse - + E&xit &Luk - + Quit application Afslut program - + &About %1 &Om %1 - + Show information about Bitcoin Vis oplysninger om Bitcoin - + &Options... &Indstillinger ... - + Modify configuration options for bitcoin Rediger konfigurationsindstillinger af bitcoin - + Open &Bitcoin Åbn &Bitcoin - + Show the Bitcoin window Vis Bitcoinvinduet - + &Export... &Eksporter... - + Export the current view to a file Eksportér den aktuelle visning til en fil - + &Encrypt Wallet &Kryptér tegnebog - + Encrypt or decrypt wallet Kryptér eller dekryptér tegnebog - + &Change Passphrase &Skift adgangskode - + Change the passphrase used for wallet encryption Skift kodeord anvendt til tegnebogskryptering - + + About &Qt + Om &Qt + + + + Show information about Qt + Vis oplysninger om Qt + + + &File &Fil - + &Settings &Indstillinger - + &Help &Hjælp - + Tabs toolbar Faneværktøjslinje - + Actions toolbar Handlingsværktøjslinje - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n aktiv(e) forbindelse(r) til Bitcoinnetværket%n aktiv(e) forbindelse(r) til Bitcoinnetværket + + %n aktiv(e) forbindelse(r) til Bitcoinnetværket + %n aktiv(e) forbindelse(r) til Bitcoinnetværket + - + Downloaded %1 of %2 blocks of transaction history. Downloadet %1 af %2 blokke af transaktionshistorie. - + Downloaded %1 blocks of transaction history. Downloadet %1 blokke af transaktionshistorie. - + %n second(s) ago - %n sekund(er) siden%n sekund(er) siden + + %n sekund(er) siden + %n sekund(er) siden + - + %n minute(s) ago - %n minut(ter) siden%n minut(ter) siden + + %n minut(ter) siden + %n minut(ter) siden + - + %n hour(s) ago - %n time(r) siden%n time(r) siden + + %n time(r) siden + %n time(r) siden + - + %n day(s) ago - %n dag(e) siden%n dag(e) siden + + %n dag(e) siden + %n dag(e) 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 størrelsesbegrænsningen. Du kan stadig sende den for et gebyr på %1 som går til de noder der behandler din transaktion, og som hjælper med at støtte netværket. Ønsker du at betale gebyret? - + Sending... Sender... - + Sent transaction Afsendt transaktion - + Incoming transaction Indgående transaktion - + Date: %1 Amount: %2 Type: %3 @@ -504,15 +539,20 @@ Adresse: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Tegnebog er <b>krypteret</b> og i øjeblikket <b>ulåst</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -528,8 +568,13 @@ Adresse: %4 - Display addresses in transaction list - Vis adresser i transaktionensliste + &Display addresses in transaction list + &Vis adresser i transaktionensliste + + + + Whether to show Bitcoin addresses in the transaction list + @@ -580,22 +625,22 @@ Adresse: %4 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 bitcoin address. Den indtastede adresse "%1" er ikke en gyldig bitcoinadresse. - + Could not unlock wallet. Kunne ikke låse tegnebog op. - + New key generation failed. Ny nøglegenerering mislykkedes. @@ -674,8 +719,8 @@ Adresse: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1kB. Gebyr på 0.01 anbefales. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1 kB. Gebyr på 0.01 anbefales. @@ -684,8 +729,8 @@ Adresse: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1kB. Gebyr på 0.01 anbefales. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1 kB. Gebyr på 0.01 anbefales. @@ -744,20 +789,12 @@ Adresse: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + - + <b>Recent transactions</b> <b>Nyeste transaktioner</b> @@ -781,13 +818,13 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins Send Coins @@ -802,82 +839,87 @@ p, li { white-space: pre-wrap; } &Tilføj modtager... - + Clear all Ryd alle - + + Remove all transaction fields + + + + Balance: Saldo: - + 123.456 BTC 123.456 BTC - + Confirm the send action Bekræft afsendelsen - + &Send &Afsend - + <b>%1</b> to %2 (%3) <b>%1</b> til %2 (%3) - + Confirm send coins Bekræft afsendelse af coins - + Are you sure you want to send %1? Er du sikker på at du vil sende %1? - + and og - + The recepient 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. - + Amount exceeds your balance Beløbet overstiger din saldo - + 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 in one send operation Duplikeret adresse fundet. Du kan kun sende til hver adresse en gang pr. afsendelse. - + Error: Transaction creation failed Fejl: Oprettelse af transaktionen 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 dine coins i din tegnebog allerede var brugt, som hvis du brugte en kopi af wallet.dat og dine coins er blevet brugt i kopien, men ikke er markeret som brugt her. @@ -1098,54 +1140,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Dato - + Type Type - + Address Adresse - + Amount Beløb - + Open for %n block(s) - Åben for %n blok(ke)Åben for %n blok(ke) + + Åben for %n blok(ke) + Åben for %n blok(ke) + - + Open until %1 Åben indtil %1 - + Offline (%1 confirmations) Offline (%1 bekræftelser) - + Unconfirmed (%1 of %2 confirmations) Ubekræftet (%1 af %2 bekræftelser) - + Confirmed (%1 confirmations) Bekræftet (%1 bekræftelser) Mined balance will be available in %n more blocks - Minerede balance vil være tilgængelig om %n blok(ke)Minerede balance vil være tilgængelig om %n blok(ke) + + Minerede balance vil være tilgængelig om %n blok(ke) + Minerede balance vil være tilgængelig om %n blok(ke) + @@ -1164,56 +1212,51 @@ p, li { white-space: pre-wrap; } - Received from IP - Modtaget fra IP + Received from + Modtaget fra - + Sent to Sendt til - - Sent to IP - Sendt til IP - - - + Payment to yourself Betaling til dig selv - + Mined Minerede - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. Transactionsstatus. Hold musen over dette felt for at vise antallet af bekræftelser. - + Date and time that the transaction was received. Dato og tid for at transaktionen blev modtaget. - + Type of transaction. Type af transaktion. - + Destination address of transaction. Destinationsadresse for transaktion. - + Amount removed from or added to balance. Beløb fjernet eller tilføjet balance. @@ -1312,67 +1355,67 @@ p, li { white-space: pre-wrap; } Vis detaljer... - + Export Transaction Data Eksportér Transaktionsdata - + Comma separated file (*.csv) Kommasepareret fil (*.csv) - + Confirmed Bekræftet - + Date Dato - + Type Type - + Label Etiket - + Address Adresse - + Amount Beløb - + ID ID - + Error exporting Fejl under eksport - + Could not write to file %1. Kunne ikke skrive til filen %1. - + Range: Interval: - + to til @@ -1388,218 +1431,218 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoinversion - + Usage: Anvendelse: - + Send command to -server or bitcoind Send kommando til -server eller bitcoind - + List commands Liste over kommandoer - + Get help for a command Få hjælp til en kommando - + Options: Indstillinger: - + Specify configuration file (default: bitcoin.conf) Angiv konfigurationsfil (standard: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Angiv pid-fil (default: bitcoind.pid) - + Generate coins Generér coins - - Don't generate coins + + Don't generate coins Generér ikke coins - + Start minimized Start minimeret - + Specify data directory Angiv databibliotek - + Specify connection timeout (in milliseconds) Angiv tilslutningstimeout (i millisekunder) - + Connect through socks4 proxy Tilslut via SOCKS4 proxy - + Allow DNS lookups for addnode and connect Tillad DNS-opslag for addnode og connect - + Add a node to connect to Tilføj en node til at forbinde til - + Connect only to the specified node Tilslut kun til den angivne node - - Don't accept connections from outside + + Don't accept connections from outside Acceptér ikke forbindelser udefra - - Don't attempt to use UPnP to map the listening port + + Don't attempt to use UPnP to map the listening port Forsøg ikke at bruge UPnP til at konfigurere den lyttende port - + Attempt to use UPnP to map the listening port Forsøg at bruge UPnP til at kofnigurere den lyttende port - + Fee per kB to add to transactions you send Gebyr pr. kB, som skal tilføjes til transaktioner du sender - + 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 acceptér kommandoer - + Use the test network Brug test-netværket - + Username for JSON-RPC connections Brugernavn til JSON-RPC-forbindelser - + Password for JSON-RPC connections Password til JSON-RPC-forbindelser - + Listen for JSON-RPC connections on <port> (default: 8332) Lyt til JSON-RPC-forbindelser på <port> (standard: 8332) - + 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 node, der kører på <ip> (standard: 127.0.0.1) - + Set key pool size to <n> (default: 100) Sæt nøglepoolstørrelse til <n> (standard: 100) - + Rescan the block chain for missing wallet transactions Gennemsøg blokkæden for manglende tegnebogstransaktioner - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1607,721 +1650,154 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-indstillinger: (se Bitcoin Wiki for SSL opsætningsinstruktioner) - + 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) Server private nøgle (standard: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Acceptabele ciphers (standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Denne hjælpebesked - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Kan låse data-biblioteket %s. Bitcoin kører sikkert allerede. - + Loading addresses... Indlæser adresser... - + Error loading addr.dat Fejl ved indlæsning af addr.dat - + Loading block index... Indlæser blok-indeks... - + 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 - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Fejl ved indlæsning af wallet.dat: Tegnebog kræver en nyere version af Bitcoin - + Error loading wallet.dat Fejl ved indlæsning af wallet.dat - + Rescanning... Genindlæser... - + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Done loading Indlæsning gennemført - + Invalid -proxy address Ugyldig -proxy adresse - + Invalid amount for -paytxfee=<amount> Ugyldigt beløb for -paytxfee=<amount> - + 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. - + Error: CreateThread(StartNode) failed Fejl: CreateThread(StartNode) mislykkedes - + Warning: Disk space is low Advarsel: Diskplads er lav - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Kunne ikke binde sig til port %d på denne computer. Bitcoin kører sikkert allerede. - - - This transaction is over the size limit. You can still send it for a fee of %s, 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 størrelsesbegrænsningen. Du kan stadig sende den for et gebyr på %s som går til de noder der behandler din transaktion, og som hjælper med at støtte netværket. Ønsker du at betale gebyret? - - - - Enter the current passphrase to the wallet. - Indtast den nuværende adgangskode til tegnebogen. - - - - Passphrase - Adgangskode - - - - Please supply the current wallet decryption passphrase. - Angiv venligst det nuværende kodeord til dekryptering af tegnebog. - - - - The passphrase entered for the wallet decryption was incorrect. - Det angivne kodeord for tegnebogsdekrypteringen er forkert. - - - - Status - Status - - Date - Dato - - - - Description - Beskrivelse - - - - Debit - Debet - - - - Credit - Kredit - - - - Open for %d blocks - Åben for %d blokke - - - - Open until %s - Åben indtil %s - - - - %d/offline? - %d/offline? - - - - %d/unconfirmed - %d/ubekræftet - - - - %d confirmations - %d bekræftelser - - - - Generated - Genereret - - - - Generated (%s matures in %d more blocks) - Genereret (%s modnes om %d blokke) - - - - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - Genereret - Advarsel: Denne blok blev ikke modtaget af nogen andre noder, og vil formentlig ikke blive accepteret! - - - - Generated (not accepted) - Genereret (ikke accepteret) - - - - From: - Fra: - - - - Received with: - Modtaget med: - - - - Payment to yourself - Betaling til dig selv - - - - To: - Til: - - - - Generating - Generering - - - - (not connected) - (ikke tilsluttet) - - - - %d connections %d blocks %d transactions - %d forbindelser %d blokke %d transaktioner - - - - Wallet already encrypted. - Tegnebog er allerede krypteret. - - - - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - Indtast den nye adgangskode til tegnebogen. -Brug venligst en adgangskode på 10 eller flere tilfældige tegn, eller otte eller flere ord. - - - - Error: The supplied passphrase was too short. - Fejl: Den angivne kodeord var for kort. - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - ADVARSEL: Hvis du krypterer din tegnebog og mister dit kodeord, vil du miste alle dine BITCOINS! -Er du sikker på at du ønsker at kryptere din tegnebog? - - - - Please re-enter your new wallet passphrase. - Angiv venligst dit nye tegneborgskodeord igen. - - - - Error: the supplied passphrases didn't match. - Fejl: de angive kodeord stemte ikke overens. - - - - Wallet encryption failed. - Tegnebogskryptering mislykkedes. - - - - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Tegnebog Krypteret. -Husk at kryptere din tegnebog ikke fuldt ud kan beskytte din bitcoins mod at blive stjålet af malware inficerer din computer. - - - - Wallet is unencrypted, please encrypt it first. - Tegnebogen er ikke krypteret. Kryptér den venligst først. - - - - Enter the new passphrase for the wallet. - Indtast den nye adgangskode til tegnebogen. - - - - Re-enter the new passphrase for the wallet. - Genindtast den nye adgangskode til tegnebogen. - - - - Wallet Passphrase Changed. - Adgangskode til tegnebog ændret. - - - - New Receiving Address - Ny modtageradresse - - - - You should use a new address for each payment you receive. - -Label - Du bør bruge en ny adresse for hver betaling du modtager. - -Mærkat - - - - <b>Status:</b> - <b>Status:</b> - - - - , has not been successfully broadcast yet - , er ikke blevet transmitteret endnu - - - - , broadcast through %d node - , spredt gennem %d knudepunkt - - - - , broadcast through %d nodes - , spredt gennem %d knudepunkter - - - - <b>Date:</b> - <b>Dato:</b> - - - - <b>Source:</b> Generated<br> - <b>Kilde:</b> Genereret<br> - - - - <b>From:</b> - <b>Fra:</b> - - - - unknown - ukendt - - - - <b>To:</b> - <b>Til:</b> - - - - (yours, label: - (din, etiket: - - - - (yours) - (din) - - - - <b>Credit:</b> - <b>Kredit:</b> - - - - (%s matures in %d more blocks) - (%s bliver moden om %d blokke) - - - - (not accepted) - (ikke accepteret) - - - - <b>Debit:</b> - <b>Debet:</b> - - - - <b>Transaction fee:</b> - <b>Transaktionsgebyr:</b> - - - - <b>Net amount:</b> - <b>Nettobeløb:</b> - - - - Message: - Besked: - - - - Comment: - Kommentar: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Genererede coins skal vente 120 blokke, før de kan blive brugt. Da du genererede denne blok blev det transmitteret til netværket, for at blive føjet til blokkæden. Hvis det mislykkes at komme ind i kæden, vil den skifte til "ikke godkendt", og ikke blive kunne bruges. Dette kan lejlighedsvis ske, hvis en anden node genererer en blok inden for få sekunder af din. - - - - Cannot write autostart/bitcoin.desktop file - Skrivning til filen autostart/bitcoin.desktop ikke mulig - - - - Main - Generelt - - - - &Start Bitcoin on window system startup - &Start Bitcoin når systemet startes - - - - &Minimize on close - &Minimér ved lukning - - - - version %s - version %s - - - - Error in amount - Fejl i beløb - - - - Send Coins - Send Coins - - - - Amount exceeds your balance - Beløb overstiger saldo - - - - Total exceeds your balance when the - Det samlede beløb overstiger saldoen når - - - - transaction fee is included - transaktionsgebyret er inkluderet - - - - Payment sent - Betaling afsendt - - - - Sending... - Sender... - - - - Invalid address - Ugyldig adresse - - - - Sending %s to %s - Sender %s til %s - - - - CANCELLED - ANNULLERET - - - - Cancelled - Annulleret - - - - Transfer cancelled - Overførsel annulleret - - - - Error: - Fejl: - - - - Insufficient funds - Du har ikke penge nok - - - - Connecting... - Forbinder... - - - - Unable to connect - Forbindelse mislykkedes - - - - Requesting public key... - Efterspørger offentlig nøgle... - - - - Received public key... - Modtog offentlig nøgle... - - - - Recipient is not accepting transactions sent by IP address - Modtageren accepterer ikke transaktioner sendt til en IP-adresse - - - - Transfer was not accepted - Overførsel ikke accepteret - - - - Invalid response received - Ugyldigt svar modtaget - - - - Creating transaction... - Opretter transaktion... - - - - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - Denne transaktion kræver at du betaler et transaktionsgebyr på mindst %s pga. af transaktionens størrelse, dens kompleksitet eller fordi den gør brug af nyligt modtagne penge - - - - Transaction creation failed - Opretning af transaktion mislykkedes - - - - Transaction aborted - Transaktion afbrudt - - - - Lost connection, transaction cancelled - Forbindelse afbrudt, transaktion annulleret - - - - Sending payment... - Sender betaling... - - - - The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Transaktionen blev afvist. Dette kan ske hvis nogle af pengene i din tegnebog allerede er brugt, for eksempel hvis du har brugt en kopi af din wallet.dat-fil og pengene er brugt i kopien af din tegnebog, men ikke blev markeret som brugte deri. - - - - Waiting for confirmation... - Afventer bekræftelse... - - - - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - Betalingen blev afsendt, men modtageren var ikke i stand til at bekræfte den. -Transaktionen er oprettet og vil kreditere modtageren, -men kommentarfeltet vil være tomt. - - - - Payment was sent, but an invalid response was received - Betalingen blev afsendt, men et ugyldigt svar blev modtaget - - - - Payment completed - Betaling fuldført - - - - Name - Navn - - - - Address - Adresse - - - - Label - Etiket - - - - Bitcoin Address - Bitcoinadresse - - - - This is one of your own addresses for receiving payments and cannot be entered in the address book. - Dette er en af dine egne adresser til at modtage betalinger med, og kan ikke indtastes i adressebogen. - - - - Edit Address - Rediger Adresse - - - - Edit Address Label - Redigér adressemærkat - - - - Add Address - Tilføj adresse - - - - Bitcoin - Bitcoin - - - - Bitcoin - Generating - Bitcoin - Genererer - - - - Bitcoin - (not connected) - Bitcoin - (ikke tilsluttet) - - - - &Open Bitcoin - Å&bn Bitcoin - - - - &Send Bitcoins - &Send Bitcoins - - - - O&ptions... - &Indstillinger... - - - - E&xit - &Luk - - - - Program has crashed and will terminate. - Programmet er gået ned og vil afslutte. - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Advarsel: Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet. Hvis der er fejl i disse vil Bitcoin ikke fungere korrekt. - + beta beta @@ -2329,9 +1805,9 @@ men kommentarfeltet vil være tomt. main - - Bitcoin Qt - Bitcoin Qt + + Bitcoin-Qt + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index c815b77699..01b108ff7f 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -14,20 +16,20 @@ - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - Copyright © 2009-2011 Bitcoin Entwickler + Copyright © 2009-2012 Bitcoin Entwickler Dies ist experimentelle Software. -Veröffentlicht unter der MIT/X11 Software-Lizenz. Sie können diese in der beiligenden Datei license.txt oder unter http://www.opensource.org/licenses/mit-license.php nachlesen. +Veröffentlicht unter der MIT/X11 Software-Lizenz, siehe beiligende Datei license.txt oder http://www.opensource.org/licenses/mit-license.php. -Dieses Produkt enthält Software, welche vom OpenSSL Projekt zur Verwendung im OpenSSL Toolkit (http://www.openssl.org/) entwickelt wurde, kryptographische Software von Eric Young (eay@cryptsoft.com) und UPnP Software von Thomas-Bernard. +Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im OpenSSL Toolkit (http://www.openssl.org/) entwickelt wurde, sowie kryptographische Software geschrieben von Eric Young (eay@cryptsoft.com) und UPnP Software geschrieben von Thomas Bernard. @@ -40,22 +42,22 @@ Dieses Produkt enthält Software, welche vom OpenSSL Projekt zur Verwendung im O These are your Bitcoin 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. - Dies sind ihre Bitcoin-Adressen zum Empfangen von Zahlungen. Um Ihre Zahlungen zurückverfolgen zu können, schlagen wir vor, jedem Sender eine andere Empfangsaddresse mitzuteilen. + Dies sind Ihre Bitcoin-Adressen zum Empfangen von Zahlungen. Es steht Ihnen frei, jedem Absender eine andere mitzuteilen, um einen besseren Überblick über eingehende Zahlungen zu erhalten. Double-click to edit address or label - Doppelklick zum Ändern der Adresse oder der Bezeichnung + Doppelklicken, um die Adresse oder die Bezeichnung zu bearbeiten Create a new address - Neue Adresse erstellen + Eine neue Adresse erstellen &New Address... - &Neue Adresse... + &Neue Adresse @@ -65,12 +67,12 @@ Dieses Produkt enthält Software, welche vom OpenSSL Projekt zur Verwendung im O &Copy to Clipboard - &In die Zwischenablage kopieren + In die Zwischenablage &kopieren Delete the currently selected address from the list. Only sending addresses can be deleted. - Die ausgewählte Adresse aus der Liste entfernen. Sie können nur ausgehende Adressen entfernen. + Die ausgewählte Adresse aus der Liste entfernen. Sie können nur Zahlungsadressen entfernen. @@ -78,40 +80,40 @@ Dieses Produkt enthält Software, welche vom OpenSSL Projekt zur Verwendung im O &Löschen - + Export Address Book Data Adressbuch exportieren - + Comma separated file (*.csv) Kommagetrennte Datei (*.csv) - + Error exporting Fehler beim Exportieren - + Could not write to file %1. - Konnte Datei %1 nicht zum Schreiben öffnen. + Konnte nicht in Datei %1 schreiben. AddressTableModel - + Label Bezeichnung - + Address Adresse - + (no label) (keine Bezeichnung) @@ -125,125 +127,131 @@ Dieses Produkt enthält Software, welche vom OpenSSL Projekt zur Verwendung im O + TextLabel - Text Bezeichnung + Textbezeichnung - + Enter passphrase Passphrase eingeben - + New passphrase Neue Passphrase - + Repeat new passphrase Neue Passphrase wiederholen - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Geben Sie die neue Passphrase für die Brieftasche ein.<br/>Bitte benutzen Sie eine Passphrase von <b>zehn oder mehr zufälligen Zeichen</b> oder <b>acht oder mehr Wörter</b>. + Geben Sie die neue Passphrase für die Brieftasche ein.<br>Bitte benutzen Sie eine Passphrase bestehend aus <b>10 oder mehr zufälligen Zeichen</b> oder <b>8 oder mehr Wörtern</b>. - + Encrypt wallet Brieftasche verschlüsseln - + This operation needs your wallet passphrase to unlock the wallet. Dieser Vorgang benötigt Ihre Passphrase um die Brieftasche zu entsperren. - + Unlock wallet Brieftasche entsperren - + This operation needs your wallet passphrase to decrypt the wallet. Dieser Vorgang benötigt Ihre Passphrase um die Brieftasche zu entschlüsseln. - + Decrypt wallet Brieftasche entschlüsseln - + Change passphrase Passphrase ändern - + Enter the old and new passphrase to the wallet. Geben Sie die alte und die neue Passphrase der Brieftasche ein. - + Confirm wallet encryption - Bestätige die Verschlüsselung der Brieftasche + Verschlüsselung der Brieftasche bestätigen - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? - WARNUNG: Wenn Sie Ihre Brieftasche verschlüsseln und Ihre Passphrase verlieren, werden Sie <b>ALLE IHRE BITCOINS VERLIEREN</b>! -Sind Sie sich sicher, dass Sie Ihre Brieftasche verschlüsseln möchten? + WARNUNG: Wenn Sie Ihre Brieftasche verschlüsseln und Ihre Passphrase verlieren, werden Sie <b>ALLE IHRE BITCOINS VERLIEREN</b>!<br><br>Sind Sie sich sicher, dass Sie Ihre Brieftasche verschlüsseln möchten? - - + + Wallet encrypted Brieftasche verschlüsselt - - Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Beachten Sie, dass das Verschlüsseln Ihrer Brieftasche nicht komplett vor Diebstahl Ihrer Bitcoins durch Malware schützt, die Ihren Computer infiziert hat. + + + Warning: The Caps Lock key is on. + Warnung: Die Feststelltaste ist aktiviert. - - - - + + + + Wallet encryption failed Verschlüsselung der Brieftasche fehlgeschlagen - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Die Verschlüsselung der Brieftasche ist wegen eines internen Fehlers fehlgeschlagen. Ihre Brieftasche wurde nicht verschlüsselt. + Die Verschlüsselung der Brieftasche ist aufgrund eines internen Fehlers fehlgeschlagen. Ihre Brieftasche wurde nicht verschlüsselt. - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung Ihrer Brieftasche nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadsoftware schützt, die Ihren Computer befällt. + + + + The supplied passphrases do not match. Die eingegebenen Passphrasen stimmen nicht überein. - + Wallet unlock failed Entsperrung der Brieftasche fehlgeschlagen - - + + The passphrase entered for the wallet decryption was incorrect. Die eingegebene Passphrase zum Entschlüsseln der Brieftasche war nicht korrekt. - + Wallet decryption failed Entschlüsselung der Brieftasche fehlgeschlagen - + Wallet passphrase was succesfully changed. Die Passphrase der Brieftasche wurde erfolgreich geändert. @@ -251,247 +259,273 @@ Sind Sie sich sicher, dass Sie Ihre Brieftasche verschlüsseln möchten? BitcoinGUI - + Bitcoin Wallet Bitcoin-Brieftasche - + + Synchronizing with network... Synchronisiere mit Netzwerk... - + Block chain synchronization in progress - Synchronisiere mit der Blockkette + Synchronisation der Blockkette wird durchgeführt - + &Overview &Übersicht - + Show general overview of wallet - Zeige allgemeine Übersicht der Brieftasche + Allgemeine Übersicht der Brieftasche anzeigen - + &Transactions &Transaktionen - + Browse transaction history Transaktionsverlauf durchsehen - + &Address Book &Adressbuch - + Edit the list of stored addresses and labels - Gespeicherte Adressen und Bezeichnungen bearbeiten + Liste der gespeicherten Zahlungsadressen und Bezeichnungen bearbeiten - + &Receive coins - &Bitcoins empfangen + Bitcoins &empfangen - + Show the list of addresses for receiving payments - Liste der Adressen zum Empfangen von Zahlungen anzeigen + Liste der Empfangsadressen anzeigen - + &Send coins - &Bitcoins überweisen + Bitcoins &überweisen - + Send coins to a bitcoin address Bitcoins an eine Bitcoin-Adresse überweisen - + E&xit - + &Beenden - + Quit application Anwendung beenden - + &About %1 &Über %1 - + Show information about Bitcoin Informationen über Bitcoin anzeigen - + &Options... - &Einstellungen... + &Erweiterte Einstellungen... - + Modify configuration options for bitcoin - Einstellungen für Bitcoin ändern + Erweiterte Bitcoin-Einstellungen ändern - + Open &Bitcoin &Bitcoin öffnen - + Show the Bitcoin window Bitcoin-Fenster anzeigen - + &Export... - &Exportieren... + &Exportieren nach... - + Export the current view to a file Aktuelle Ansicht in eine Datei exportieren - + &Encrypt Wallet - Brieftasche &verschlüsseln + Brieftasche &verschlüsseln... - + Encrypt or decrypt wallet Brieftasche ent- oder verschlüsseln - + &Change Passphrase - Passphrase &ändern + Passphrase &ändern... - + Change the passphrase used for wallet encryption Ändert die Passphrase, die für die Verschlüsselung der Brieftasche benutzt wird - + + About &Qt + Über &Qt + + + + Show information about Qt + Informationen über Qt anzeigen + + + &File &Datei - + &Settings &Einstellungen - + &Help &Hilfe - + Tabs toolbar Registerkarten-Leiste - + Actions toolbar Aktionen-Werkzeugleiste - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n aktive Verbindung zum Bitcoin-Netzwerk%n aktive Verbindungen zum Bitcoin-Netzwerk + + %n aktive Verbindung zum Bitcoin-Netzwerk + %n aktive Verbindungen zum Bitcoin-Netzwerk + - + Downloaded %1 of %2 blocks of transaction history. - %1 von %2 Blöcken des Transaktionsverlauf heruntergeladen. + %1 von %2 Blöcken des Transaktionsverlaufs heruntergeladen. - + Downloaded %1 blocks of transaction history. %1 Blöcke des Transaktionsverlaufs heruntergeladen. - + %n second(s) ago - vor %n Sekundevor %n Sekunden + + vor %n Sekunde + vor %n Sekunden + - + %n minute(s) ago - vor %n Minutevor %n Minuten + + vor %n Minute + vor %n Minuten + - + %n hour(s) ago - vor %n Stundevor %n Stunden + + vor %n Stunde + vor %n Stunden + - + %n day(s) ago - vor %n Tagvor %n Tagen + + vor %n Tag + vor %n Tagen + - + Up to date Auf aktuellem Stand - + Catching up... Hole auf... - + Last received block was generated %1. - Der letzte empfangene Block wurde am %1 generiert. + Der letzte empfangene Block wurde %1 generiert. - + 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? - Die Transaktion übersteigt das Größenlimit. Sie können sie jedoch senden, wenn Sie einen zusätzlichen Betrag von %1 zahlen. Dieser geht an die Knoten, die Ihre Transaktion bearbeiten und unterstützt das Bitcoin-Netzwerk. Möchten Sie die Gebühr bezahlen? + Die Transaktion übersteigt das Größenlimit. Sie können sie trotzdem senden, wenn Sie eine zusätzliche Transaktionsgebühr in Höhe von %1 zahlen. Diese wird an die Knoten verteilt, die Ihre Transaktion bearbeiten und unterstützt damit das Bitcoin-Netzwerk.<br><br>Möchten Sie die Gebühr bezahlen? - + Sending... - Senden... + Transaktionsgebühr bestätigen - + Sent transaction Gesendete Transaktion - + Incoming transaction - Empfangene Transaktion + Eingehende Transaktion - + Date: %1 Amount: %2 Type: %3 @@ -503,14 +537,19 @@ Typ: %3 Adresse: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Brieftasche ist <b>verschlüsselt</b> und momentan <b>entsperrt</b> + Brieftasche ist <b>verschlüsselt</b> und aktuell <b>entsperrt</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> - Brieftasche ist <b>verschlüsselt</b> und momentan <b>gesperrt</b> + Brieftasche ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -523,12 +562,17 @@ Adresse: %4 Choose the default subdivision unit to show in the interface, and when sending coins - Wählen Sie die Standard-Unterteilungseinheit, die in der Benutzeroberfläche und beim Senden von Bitcoins angezeigt werden soll + Wählen Sie die Standard-Untereinheit, die in der Benutzeroberfläche und beim Überweisen von Bitcoins angezeigt werden soll - Display addresses in transaction list - Adressen in der Transaktionsliste anzeigen + &Display addresses in transaction list + &Adressen in der Transaktionsliste anzeigen + + + + Whether to show Bitcoin addresses in the transaction list + @@ -579,24 +623,24 @@ Adresse: %4 Zahlungsadresse bearbeiten - + The entered address "%1" is already in the address book. Die eingegebene Adresse "%1" befindet sich bereits im Adressbuch. - + The entered address "%1" is not a valid bitcoin address. Die eingegebene Adresse "%1" ist keine gültige Bitcoin-Adresse. - + Could not unlock wallet. Die Brieftasche konnte nicht entsperrt werden. - + New key generation failed. - Neue Schlüsselgenerierung fehlgeschlagen. + Generierung eines neuen Schlüssels fehlgeschlagen. @@ -604,22 +648,22 @@ Adresse: %4 &Start Bitcoin on window system startup - &Bitcoin beim Systemstart ausführen + Bitcoin beim &Systemstart ausführen Automatically start Bitcoin after the computer is turned on - Bitcoin automatisch starten, wenn der Computer eingeschaltet wird + Bitcoin automatisch ausführen, wenn der Computer eingeschaltet wird &Minimize to the tray instead of the taskbar - &In den Infobereich statt in die Taskleiste minimieren + In den Infobereich anstatt in die Taskleiste &minimieren Show only a tray icon after minimizing the window - Nur ein Symbol im Infobereich anzeigen, wenn das Fenster minimiert wird + Nur ein Symbol im Infobereich anzeigen, nachdem das Fenster minimiert wurde @@ -634,7 +678,7 @@ Adresse: %4 M&inimize on close - Beim Schließen m&inimieren + Beim Schließen &minimieren @@ -644,12 +688,12 @@ Adresse: %4 &Connect through SOCKS4 proxy: - &Über einen SOCKS4-Proxy verbinden: + Über einen SOCKS4-Proxy &verbinden: Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Über einen SOCKS4-Proxy zum Bitcoin-Netzwerk verbinden (bspw. für eine Verbindung über Tor) + Über einen SOCKS4-Proxy zum Bitcoin-Netzwerk verbinden (z.B. bei einer Verbindung über Tor) @@ -673,8 +717,8 @@ Adresse: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Zusätzliche Transaktionsgebühr pro kB, welche sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 wird empfohlen. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optionale Transaktionsgebühr pro kB, die sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 wird empfohlen. @@ -683,8 +727,8 @@ Adresse: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Zusätzliche Transaktionsgebühr pro kB, welche sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 wird empfohlen. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optionale Transaktionsgebühr pro kB, die sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 wird empfohlen. @@ -692,7 +736,7 @@ Adresse: %4 Main - Haupt + Allgemein @@ -702,7 +746,7 @@ Adresse: %4 Options - Einstellungen + Erweiterte Einstellungen @@ -743,20 +787,12 @@ Adresse: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Brieftasche</span></p></body></html> + + Wallet + Brieftasche - + <b>Recent transactions</b> <b>Letzte Transaktionen</b> @@ -768,7 +804,7 @@ p, li { white-space: pre-wrap; } Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Anzahl der Transaktionen, die noch bestätigt werden müssen und noch nicht zum aktuellen Kontostand zählen + Betrag aus unbestätigten Transaktionen, der noch nicht im aktuellen Kontostand enthalten ist @@ -780,105 +816,110 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins Bitcoins überweisen Send to multiple recipients at once - 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 - + Clear all Zurücksetzen - + + Remove all transaction fields + Alle Überweisungsfelder zurücksetzen + + + Balance: Kontostand: - + 123.456 BTC 123.456 BTC - + Confirm the send action Überweisung bestätigen - + &Send &Überweisen - + <b>%1</b> to %2 (%3) <b>%1</b> an %2 (%3) - + Confirm send coins Überweisung bestätigen - + Are you sure you want to send %1? - Sind Sie sich sicher, dass Sie folgendes überweisen möchten: %1? + Sind Sie sich sicher, dass Sie die folgende Überweisung ausführen möchten?<br>%1 - + and und - + The recepient address is not valid, please recheck. - Die Empfangsadresse 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 mehr als 0 betragen. + Der zu zahlende Betrag muss größer 0 sein. - + Amount exceeds your balance - Der Betrag übersteigt Ihren Kontostand + Der angegebene Betrag übersteigt Ihren Kontostand. - + Total exceeds your balance when the %1 transaction fee is included - Summe ü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 in one send operation - Doppelte Adresse gefunden. Pro Vorgang kann an eine Adresse nur einmalig etwas überwiesen werden + Doppelte Adresse gefunden, pro Überweisung kann an jede Adresse nur einmalig etwas überwiesen werden - + Error: Transaction creation failed Fehler: Transaktionserstellung fehlgeschlagen - + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Fehler: Die Transaktion wurde abgelehnt. Dies kann passieren, wenn einige Ihrer Bitcoins aus Ihrer Brieftasche bereits ausgegeben wurden (z.B. aus einer Sicherungskopie Ihrer wallet.dat). + Fehler: Die Transaktion wurde abgelehnt. Dies kann passieren, wenn einige Bitcoins aus Ihrer Brieftasche bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie Ihrer wallet.dat genutzt, die Bitcoins dort ausgegeben haben und dies daher in der derzeit aktiven Brieftasche nicht vermerkt ist. @@ -902,7 +943,7 @@ p, li { white-space: pre-wrap; } Enter a label for this address to add it to your address book - Geben Sie hier eine Bezeichnung der Adresse ein, um sie zum Adressbuch hinzuzufügen + Adressbezeichnung eingeben (diese wird bei unbekannten Adressen inkl. der Adresse dem Adressbuch hinzugefügt) @@ -912,12 +953,12 @@ p, li { white-space: pre-wrap; } The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Die Empfangsadresse für die Überweisung (z.B. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Die Zahlungsadresse der Überweisung (z.B. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Choose address from address book - Adresse aus dem Adressbuch auswählen + Adresse aus Adressbuch wählen @@ -980,17 +1021,17 @@ p, li { white-space: pre-wrap; } , has not been successfully broadcast yet - ; wurde noch nicht erfolgreich gesendet + , wurde noch nicht erfolgreich übertragen , broadcast through %1 node - ; über %1 Knoten gesendet + , über %1 Knoten übertragen , broadcast through %1 nodes - ; über %1 Knoten gesendet + , über %1 Knoten übertragen @@ -1023,12 +1064,12 @@ p, li { white-space: pre-wrap; } (yours, label: - (Ihre, Bezeichnung: + (Eigene Adresse, Bezeichnung: (yours) - (Ihre) + (Eigene Adresse) @@ -1041,7 +1082,7 @@ p, li { white-space: pre-wrap; } (%1 matures in %2 more blocks) - (%1 reift in weiteren %2 Blöcken) + %1 (reift noch %2 weitere Blöcke) @@ -1078,7 +1119,7 @@ p, li { white-space: pre-wrap; } Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Generierte Bitcoins müssen 120 Blöcke lang warten, bevor sie ausgegeben werden können. Als Sie diesen Block generierten, wurde er an das Netzwerk gesendet, um ihn der Blockkette hinzuzufügen. Falls dies fehlschlägt wird der Status in "nicht angenommen" geändert und der Betrag wird nicht verfügbar werden. Das kann gelegentlich passieren, wenn ein anderer Knoten einen Block zur selben Zeit wie Sie generierte. + Generierte Bitcoins müssen 120 Blöcke lang warten, bevor sie ausgegeben werden können. Als Sie diesen Block generierten, wurde er an das Netzwerk übertragen, um ihn der Blockkette hinzuzufügen. Falls dies fehlschlägt wird der Status in "nicht angenommen" geändert und der Betrag wird nicht verfügbar werden. Das kann gelegentlich passieren, wenn ein anderer Knoten einen Block zur selben Zeit wie Sie generierte. @@ -1097,54 +1138,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Datum - + Type Typ - + Address Adresse - + Amount Betrag - + Open for %n block(s) - Offen für %n BlockOffen für %n Blöcke + + Offen für %n Block + Offen für %n Blöcke + - + Open until %1 Offen bis %1 - + Offline (%1 confirmations) Nicht verbunden (%1 Bestätigungen) - + Unconfirmed (%1 of %2 confirmations) Unbestätigt (%1 von %2 Bestätigungen) - + Confirmed (%1 confirmations) Bestätigt (%1 Bestätigungen) Mined balance will be available in %n more blocks - Der erarbeitete Betrag wird in %n Block verfügbar seinDer erarbeitete Betrag wird in %n Blöcken verfügbar sein + + Der erarbeitete Betrag wird in %n Block verfügbar sein + Der erarbeitete Betrag wird in %n Blöcken verfügbar sein + @@ -1159,62 +1206,57 @@ p, li { white-space: pre-wrap; } Received with - Empfangen durch + Empfangen über - Received from IP - Empfangen von IP + Received from + Empfangen von - + Sent to Überwiesen an - - Sent to IP - Überwiesen an IP - - - + Payment to yourself - Zahlung an Sie selbst + Eigenüberweisung - + Mined Erarbeitet - + (n/a) (k.A.) - + Transaction status. Hover over this field to show number of confirmations. Transaktionsstatus. Fahren Sie mit der Maus über dieses Feld, um die Anzahl der Bestätigungen zu sehen. - + Date and time that the transaction was received. Datum und Uhrzeit als die Transaktion empfangen wurde. - + Type of transaction. - Art der Transaktion. + Art der Transaktion - + Destination address of transaction. - Empfangsadresse der Transaktion. + Zieladresse der Transaktion. - + Amount removed from or added to balance. - Betrag vom Kontostand entfernt oder hinzugefügt. + Der Betrag, der dem Kontostand abgezogen oder hinzugefügt wurde. @@ -1253,12 +1295,12 @@ p, li { white-space: pre-wrap; } Range... - Bereich... + Zeitraum Received with - Empfangen durch + Empfangen über @@ -1268,7 +1310,7 @@ p, li { white-space: pre-wrap; } To yourself - Zu Ihnen selbst + Eigenüberweisung @@ -1288,7 +1330,7 @@ p, li { white-space: pre-wrap; } Min amount - Kleinster Betrag + Minimaler Betrag @@ -1308,70 +1350,70 @@ p, li { white-space: pre-wrap; } Show details... - Details anzeigen... + Transaktionsdetails anzeigen - + Export Transaction Data Transaktionen exportieren - + 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. Konnte nicht in Datei %1 schreiben. - + Range: - Bereich: + Zeitraum: - + to bis @@ -1387,207 +1429,207 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoin Version - + Usage: Verwendung: - + Send command to -server or bitcoind Sende Befehl an -server oder bitcoind - + List commands Befehle auflisten - + Get help for a command Hilfe für Befehl erhalten - + Options: Einstellungen: - + Specify configuration file (default: bitcoin.conf) Bitte wählen Sie eine Konfigurationsdatei (Standard: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Bitte wählen Sie den Namen der PID Datei (Standard bitcoind.pid) - + Generate coins Erarbeite Bitcoins - - Don't generate coins + + Don't generate coins Keine Bitcoins erarbeiten - + Start minimized minimiert starten - + Specify data directory Bitte wählen Sie das Datenverzeichnis - + Specify connection timeout (in milliseconds) Netzwerkverbindungsabbruch nach (in Millisekunden) - + Connect through socks4 proxy Durch SOCKS4-Proxy verbinden - + Allow DNS lookups for addnode and connect Erlaube DNS Namensauflösung für addnode und connect - + Add a node to connect to Bitcoin Knoten hinzufügen - + Connect only to the specified node Nur zu angegebenen Knoten verbinden - - Don't accept connections from outside + + Don't accept connections from outside Keine externen Transatkionen akzeptieren - - Don't attempt to use UPnP to map the listening port + + Don't attempt to use UPnP to map the listening port UPnP nicht verwenden - + Attempt to use UPnP to map the listening port Versuche eine Verbindung mittels UPnP herzustellen - + Fee per kB to add to transactions you send Gebühr pro kB, die gesendeten Transaktionen hinzugefügt wird - + Accept command line and JSON-RPC commands Erlaube Kommandozeilen und JSON-RPC Befehle - + Run in the background as a daemon and accept commands Als Hintergrunddienst starten und Befehle akzeptieren - + Use the test network Das Test Netzwerk verwenden - + 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: 8332) Port für JSON-RPC Befehle (Standard: 8332) - + Allow JSON-RPC connections from specified IP address JSON-RPC Befehle nur von dieser IP-Adresse erlauben - + Send commands to node running on <ip> (default: 127.0.0.1) Befehle an Bitcoin Knoten <ip> senden (Standard: 127.0.0.1) - + Set key pool size to <n> (default: 100) Menge der vorgenerierten Adressen (Standard: 100) - + Rescan the block chain for missing wallet transactions Blockkette nach verlorenen Transaktionen durchsuchen (rescan) - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1595,710 +1637,149 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Use OpenSSL (https) for JSON-RPC connections JSON-RPC Befehle über OpenSSL (https) - + Server certificate file (default: server.cert) SSL Server Zertifikat (Standard: server.cert) - + Server private key (default: server.pem) Privater SSL Schlüssel (Standard: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Erlaubte Kryptographiealgorithmen (Standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Dieser Hilfetext - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Konnte das Datenverzeichnis %s nicht sperren. Evtl. wurde das Programm mehrfach gestartet. + Konnte das Datenverzeichnis %s nicht sperren. Evtl. wurde Bitcoin bereits gestartet. - + Loading addresses... Lade Adressen... - + Error loading addr.dat Fehler beim Laden der addr.dat - + Loading block index... Lade Blockindex... - + Error loading blkindex.dat Fehler beim laden der blkindex.dat - + Loading wallet... Lade Geldbörse... - + Error loading wallet.dat: Wallet corrupted Fehler beim Laden von wallet.dat: Brieftasche beschädigt - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Fehler beim Laden von wallet.dat: Neuere Version von Bitcoin notwendig - + Error loading wallet.dat Fehler beim Laden von wallet.dat - + Rescanning... - Lade neu... + Durchsuche erneut... - + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Done loading Laden abgeschlossen - + Invalid -proxy address - Fehlerhafte Proxy Adresse + Fehlerhafte Proxy-Adresse - + Invalid amount for -paytxfee=<amount> Ungültige Angabe für -paytxfee=<Betrag> - + 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 gesetzt. Dies ist die Gebühr die beim senden einer Transaktion fällig wird. - - - - Error: CreateThread(StartNode) failed - Fehler: CreateThread(StartNode) fehlerhaft - - - - Warning: Disk space is low - Warnung: Festplattenplatz wird knapp. - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Fehler beim registrieren des Ports %d auf diesem Computer. Evtl. läuft BitCoin bereits - - - - This transaction is over the size limit. You can still send it for a fee of %s, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Warnung: -paytxfee ist auf einen sehr hohen Wert gesetzt. Dies ist die Gebühr die beim Senden einer Transaktion fällig wird. - Enter the current passphrase to the wallet. - Geben Sie bitte das Passwort für die Brieftasche ein. + Error: CreateThread(StartNode) failed + Fehler: CreateThread(StartNode) fehlgeschlagen - Passphrase - Passwort + Warning: Disk space is low + Warnung: Festplattenplatz wird knapp - Please supply the current wallet decryption passphrase. - Bitte die aktuelle Passphrase zur Entschlüsselung eingeben. - - - - The passphrase entered for the wallet decryption was incorrect. - Das eingegebene Passwort für die Brieftasche war fehlerhaft - - - - Status - Status + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Fehler beim registrieren des Ports %d auf diesem Computer. Evtl. wurde Bitcoin bereits gestartet. - Date - Datum - - - - Description - Beschreibung - - - - Debit - Debitoren - - - - Credit - Kreditoren - - - - Open for %d blocks - Öffne für %d Blöcke - - - - Open until %s - Geöffnet bis %s - - - - %d/offline? - %d/offline? - - - - %d/unconfirmed - %d/unbestätigt - - - - %d confirmations - %d Bestätigungen - - - - Generated - Generiert - - - - Generated (%s matures in %d more blocks) - Erstellt (%s reift nach %d weiteren Blöcken) - - - - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - Generiert - Warnung: Dieser Block wurde bei keinem anderen Knoten empfangen und wird wahrscheinlich nicht akzeptiert! - - - - Generated (not accepted) - Generiert (nicht akzeptiert) - - - - From: - Von: - - - - Received with: - Erhalten mit: - - - - Payment to yourself - Bezahlung an sich selbst - - - - To: - An: - - - - Generating - Erzeuge - - - - (not connected) - (nicht verbunden) - - - - %d connections %d blocks %d transactions - %d Verbindungen %d Blöcke %d Transaktionen - - - - Wallet already encrypted. - Brieftasche ist bereits verschlüsselt. - - - - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - Geben Sie die neue Passphrase für die Brieftasche ein -Bitte benutzen Sie eine Passphrase von 10 oder mehr zufälligen Zeichen oder acht oder mehr Wörtern. - - - - Error: The supplied passphrase was too short. - Fehler: Das eingegebene Passwort war zu kurz. - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - WARNUNG: Wenn Sie Ihre Brieftasche verschlüsseln und Ihre Passphrase verlieren, werden Sie <b>ALLE IHRE BITCOINS VERLIEREN</b>! Sind Sie sich sicher, dass Sie Ihre Brieftasche verschlüsseln möchten? - - - - Please re-enter your new wallet passphrase. - Bitte geben Sie Ihr neues Brieftaschenpasswort erneut ein. - - - - Error: the supplied passphrases didn't match. - Fehler: Die eingegebenen Passphrasen stimmen nicht überein. - - - - Wallet encryption failed. - Verschlüsselung der Brieftasche fehlgeschlagen. - - - - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - Wallet is unencrypted, please encrypt it first. - Brieftasche nicht verschlüsselt, bitte zuerst verschlüsseln. - - - - Enter the new passphrase for the wallet. - Gib eine neue Passphrase für die Brieftasche eine. - - - - Re-enter the new passphrase for the wallet. - Gib die neue Passphrase erneut ein. - - - - Wallet Passphrase Changed. - Passphrase geändert. - - - - New Receiving Address - Neue Empfangsadresse - - - - You should use a new address for each payment you receive. - -Label - - - - - <b>Status:</b> - <b>Status:</b> - - - - , has not been successfully broadcast yet - ; wurde noch nicht erfolgreich gesendet - - - - , broadcast through %d node - - - - - , broadcast through %d nodes - - - - - <b>Date:</b> - <b>Datum:</b> - - - - <b>Source:</b> Generated<br> - <b>Quelle:</b> Generiert<br> - - - - <b>From:</b> - <b>Von:</b> - - - - unknown - unbekannt - - - - <b>To:</b> - <b>An:</b> - - - - (yours, label: - (Ihre, Bezeichnung: - - - - (yours) - (Ihre) - - - - <b>Credit:</b> - <b>Gutschrift:</b> - - - - (%s matures in %d more blocks) - - - - - (not accepted) - (nicht angenommen) - - - - <b>Debit:</b> - <b>Belastung:</b> - - - - <b>Transaction fee:</b> - <b>Transaktionsgebühr:</b> - - - - <b>Net amount:</b> - <b>Nettobetrag:</b> - - - - Message: - Nachricht: - - - - Comment: - Kommentar: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Generierte Bitcoins müssen 120 Blöcke lang warten, bevor sie ausgegeben werden können. Als Sie diesen Block generierten, wurde er an das Netzwerk gesendet, um ihn der Blockkette hinzuzufügen. Falls dies fehlschlägt wird der Status in "nicht angenommen" geändert und der Betrag wird nicht verfügbar werden. Das kann gelegentlich passieren, wenn ein anderer Knoten einen Block zur selben Zeit wie Sie generierte. - - - - Cannot write autostart/bitcoin.desktop file - - - - - Main - Haupt - - - - &Start Bitcoin on window system startup - &Bitcoin beim Systemstart ausführen - - - - &Minimize on close - - - - - version %s - Version %s - - - - Error in amount - - - - - Send Coins - Bitcoins überweisen - - - - Amount exceeds your balance - Betrag übersteigt Ihr Guthaben - - - - Total exceeds your balance when the - - - - - transaction fee is included - - - - - Payment sent - Zahlung gesendet - - - - Sending... - Senden... - - - - Invalid address - ungültige Adresse - - - - Sending %s to %s - Sende %s an %s - - - - CANCELLED - ABGEBROCHEN - - - - Cancelled - Abgebrochen - - - - Transfer cancelled - - - - - Error: - Fehler: - - - - Insufficient funds - Unzureichender Kontostand - - - - Connecting... - Verbinde... - - - - Unable to connect - Kann nicht verbinden - - - - Requesting public key... - - - - - Received public key... - - - - - Recipient is not accepting transactions sent by IP address - - - - - Transfer was not accepted - - - - - Invalid response received - - - - - Creating transaction... - - - - - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - - - - - Transaction creation failed - - - - - Transaction aborted - Transaktion abgebrochen - - - - Lost connection, transaction cancelled - - - - - Sending payment... - Sende Zahlung... - - - - The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Fehler: Die Transaktion wurde abgelehnt. Dies kann passieren, wenn einige Ihrer Bitcoins aus Ihrer Brieftasche bereits ausgegeben wurden (z.B. aus einer Sicherungskopie Ihrer wallet.dat). - - - - Waiting for confirmation... - Warte auf Bestätigung... - - - - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - - - - - Payment was sent, but an invalid response was received - - - - - Payment completed - Die Zahlung wurde abgeschlossen - - - - Name - Name - - - - Address - Adresse - - - - Label - Bezeichnung - - - - Bitcoin Address - Bitcoin Adresse - - - - This is one of your own addresses for receiving payments and cannot be entered in the address book. - - - - - Edit Address - Adresse bearbeiten - - - - Edit Address Label - - - - - Add Address - Adresse hinzufügen - - - - Bitcoin - Bitcoin - - - - Bitcoin - Generating - Bitcoin - Generiere - - - - Bitcoin - (not connected) - Bitcoin - (nicht verbunden) - - - - &Open Bitcoin - - - - - &Send Bitcoins - - - - - O&ptions... - - - - - E&xit - - - - - Program has crashed and will terminate. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Bitte prüfen Sie Ihre Datums- und Uhrzeiteinstellungen, ansonsten kann es sein das BitCoin nicht ordnungsgemäss funktioniert. + Warnung: Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen Ihres Computers, da Bitcoin ansonsten nicht ordnungsgemäß funktionieren wird. - + beta Beta @@ -2306,9 +1787,9 @@ but the comment information will be blank. main - - Bitcoin Qt - Bitcoin Qt + + Bitcoin-Qt + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index 122f6d56a5..31ea0e5d0c 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -16,7 +16,7 @@ - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -74,22 +74,22 @@ This product includes software developed by the OpenSSL Project for use in the O - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. @@ -97,17 +97,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label - + Address - + (no label) @@ -121,124 +121,131 @@ This product includes software developed by the OpenSSL Project for use in the O + TextLabel - + Enter passphrase - + New passphrase - + Repeat new passphrase - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + Encrypt wallet - + This operation needs your wallet passphrase to unlock the wallet. - + Unlock wallet - + This operation needs your wallet passphrase to decrypt the wallet. - + Decrypt wallet - + Change passphrase - + Enter the old and new passphrase to the wallet. - + Confirm wallet encryption - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? - - + + Wallet encrypted - - Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + + + Warning: The Caps Lock key is on. - - - - + + + + Wallet encryption failed - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - - The supplied passphrases do not match. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + + The supplied passphrases do not match. + + + + Wallet unlock failed - - + + The passphrase entered for the wallet decryption was incorrect. - + Wallet decryption failed - + Wallet passphrase was succesfully changed. @@ -246,262 +253,273 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet - + + Synchronizing with network... - + Block chain synchronization in progress - + &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 - + Send coins to a bitcoin address - + E&xit - + Quit application - + &About %1 - + Show information about Bitcoin - + &Options... - + Modify configuration options for bitcoin - + Open &Bitcoin - + Show the Bitcoin window - + &Export... - + Export the current view to a file - + &Encrypt Wallet - + Encrypt or decrypt wallet - + &Change Passphrase - + Change the passphrase used for wallet encryption - + + About &Qt + + + + + Show information about Qt + + + + &File - + &Settings - + &Help - + Tabs toolbar - + Actions toolbar - + [testnet] - + bitcoin-qt - + %n active connection(s) to Bitcoin network - + %n active connection to Bitcoin network %n active connections to Bitcoin network - + Downloaded %1 of %2 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 - + 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? - + Sending... - + Sent transaction - + Incoming transaction - + Date: %1 Amount: %2 Type: %3 @@ -510,15 +528,20 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -534,7 +557,12 @@ Address: %4 - Display addresses in transaction list + &Display addresses in transaction list + + + + + Whether to show Bitcoin addresses in the transaction list @@ -586,22 +614,22 @@ Address: %4 - + The entered address "%1" is already in the address book. - + The entered address "%1" is not a valid bitcoin address. - + Could not unlock wallet. - + New key generation failed. @@ -680,7 +708,7 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. @@ -690,7 +718,7 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. @@ -750,16 +778,12 @@ Address: %4 - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet - + <b>Recent transactions</b> @@ -783,13 +807,13 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins @@ -804,82 +828,87 @@ p, li { white-space: pre-wrap; } - + Clear all - + + Remove all transaction fields + + + + Balance: - + 123.456 BTC - + Confirm the send action - + &Send - + <b>%1</b> to %2 (%3) - + Confirm send coins - + Are you sure you want to send %1? - + and - + The recepient address is not valid, please recheck. - + The amount to pay must be larger than 0. - + Amount exceeds your balance - + Total exceeds your balance when the %1 transaction fee is included - + Duplicate address found, can only send to each address once in one 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. @@ -1100,57 +1129,57 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date - + Type - + Address - + Amount - + Open for %n block(s) - + Open for %n block Open for %n blocks - + Open until %1 - + Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) Mined balance will be available in %n more blocks - + Mined balance will be available in %n more block Mined balance will be available in %n more blocks @@ -1172,56 +1201,51 @@ p, li { white-space: pre-wrap; } - Received from IP + Received from - + Sent to - - Sent to IP - - - - + 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. @@ -1320,67 +1344,67 @@ p, li { white-space: pre-wrap; } - + Export Transaction Data - + Comma separated file (*.csv) - + Confirmed - + Date - + Type - + Label - + Address - + Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to @@ -1396,895 +1420,335 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version - + Usage: - + Send command to -server or bitcoind - + List commands - + Get help for a command - + Options: - + Specify configuration file (default: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) - + Generate coins - + Don't generate coins - + Start minimized - + Specify data directory - + Specify connection timeout (in milliseconds) - + Connect through socks4 proxy - + Allow DNS lookups for addnode and connect - + Add a node to connect to - + Connect only to the specified node - + Don't accept connections from outside - + Don't attempt to use UPnP to map the listening port - + Attempt to use UPnP to map the listening port - + Fee per kB to add to transactions you send - + Accept command line and JSON-RPC commands - + Run in the background as a daemon and accept commands - + Use the test network - + Username for JSON-RPC connections - + Password for JSON-RPC connections - + Listen for JSON-RPC connections on <port> (default: 8332) - + Allow JSON-RPC connections from specified IP address - + Send commands to node running on <ip> (default: 127.0.0.1) - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + SSL options: (see the Bitcoin 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) - + This help message - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + Loading addresses... - + Error loading addr.dat - + Loading block index... - + Error loading blkindex.dat - + Loading wallet... - + Error loading wallet.dat: Wallet corrupted - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + Error loading wallet.dat - + Rescanning... - - Done loading - - - - - Invalid -proxy address - - - - - Invalid amount for -paytxfee=<amount> + + Threshold for disconnecting misbehaving peers (default: 100) + - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Error: CreateThread(StartNode) failed + + Done loading - - Warning: Disk space is low + + Invalid -proxy address - - Unable to bind to port %d on this computer. Bitcoin is probably already running. + + Invalid amount for -paytxfee=<amount> - - This transaction is over the size limit. You can still send it for a fee of %s, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - Enter the current passphrase to the wallet. + Error: CreateThread(StartNode) failed - Passphrase + Warning: Disk space is low - Please supply the current wallet decryption passphrase. - - - - - The passphrase entered for the wallet decryption was incorrect. - - - - - Status + Unable to bind to port %d on this computer. Bitcoin is probably already running. - Date - - - - - Description - - - - - Debit + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Credit - - - - - Open for %d blocks - - - - - Open until %s - - - - - %d/offline? - - - - - %d/unconfirmed - - - - - %d confirmations - - - - - Generated - - - - - Generated (%s matures in %d more blocks) - - - - - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - - - - - Generated (not accepted) - - - - - From: - - - - - Received with: - - - - - Payment to yourself - - - - - To: - - - - - Generating - - - - - (not connected) - - - - - %d connections %d blocks %d transactions - - - - - Wallet already encrypted. - - - - - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - - - - - Error: The supplied passphrase was too short. - - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - - - - - Please re-enter your new wallet passphrase. - - - - - Error: the supplied passphrases didn't match. - - - - - Wallet encryption failed. - - - - - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - Wallet is unencrypted, please encrypt it first. - - - - - Enter the new passphrase for the wallet. - - - - - Re-enter the new passphrase for the wallet. - - - - - Wallet Passphrase Changed. - - - - - New Receiving Address - - - - - You should use a new address for each payment you receive. - -Label - - - - - <b>Status:</b> - - - - - , has not been successfully broadcast yet - - - - - , broadcast through %d node - - - - - , broadcast through %d nodes - - - - - <b>Date:</b> - - - - - <b>Source:</b> Generated<br> - - - - - <b>From:</b> - - - - - unknown - - - - - <b>To:</b> - - - - - (yours, label: - - - - - (yours) - - - - - <b>Credit:</b> - - - - - (%s matures in %d more blocks) - - - - - (not accepted) - - - - - <b>Debit:</b> - - - - - <b>Transaction fee:</b> - - - - - <b>Net amount:</b> - - - - - Message: - - - - - Comment: - - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - - - - - Cannot write autostart/bitcoin.desktop file - - - - - Main - - - - - &Start Bitcoin on window system startup - - - - - &Minimize on close - - - - - version %s - - - - - Error in amount - - - - - Send Coins - - - - - Amount exceeds your balance - - - - - Total exceeds your balance when the - - - - - transaction fee is included - - - - - Payment sent - - - - - Sending... - - - - - Invalid address - - - - - Sending %s to %s - - - - - CANCELLED - - - - - Cancelled - - - - - Transfer cancelled - - - - - Error: - - - - - Insufficient funds - - - - - Connecting... - - - - - Unable to connect - - - - - Requesting public key... - - - - - Received public key... - - - - - Recipient is not accepting transactions sent by IP address - - - - - Transfer was not accepted - - - - - Invalid response received - - - - - Creating transaction... - - - - - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - - - - - Transaction creation failed - - - - - Transaction aborted - - - - - Lost connection, transaction cancelled - - - - - Sending payment... - - - - - The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - - - - - Waiting for confirmation... - - - - - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - - - - - Payment was sent, but an invalid response was received - - - - - Payment completed - - - - - Name - - - - - Address - - - - - Label - - - - - Bitcoin Address - - - - - This is one of your own addresses for receiving payments and cannot be entered in the address book. - - - - - Edit Address - - - - - Edit Address Label - - - - - Add Address - - - - - Bitcoin - - - - - Bitcoin - Generating - - - - - Bitcoin - (not connected) - - - - - &Open Bitcoin - - - - - &Send Bitcoins - - - - - O&ptions... - - - - - E&xit - - - - - Program has crashed and will terminate. - - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - - - - beta @@ -2292,8 +1756,8 @@ but the comment information will be blank. main - - Bitcoin Qt + + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index 768efaec8f..826a28c9d9 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -14,14 +16,14 @@ - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - Copyright (c) 2009-2010 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers Este es un software experimental. @@ -81,22 +83,22 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Bo&rrar - + Export Address Book Data Exporta datos de la Guia de direcciones - + Comma separated file (*.csv) Archivos separados por coma (*.csv) - + Error exporting Exportar errores - + Could not write to file %1. No se pudo escribir al archivo %1. @@ -104,17 +106,17 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. AddressTableModel - + Label Etiqueta - + Address Dirección - + (no label) (sin etiqueta) @@ -128,125 +130,132 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. + TextLabel Cambiar contraseña: - + Enter passphrase Introduce contraseña actual - + New passphrase Nueva contraseña - + Repeat new passphrase Repite nueva contraseña: - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Introduce la nueva contraseña de cartera.<br/>Por favor utiliza un contraseña <b>de 10 o mas caracteres aleatorios</b>, u <b>ocho o mas palabras</b>. - + Encrypt wallet Encriptar cartera - + This operation needs your wallet passphrase to unlock the wallet. Esta operación necesita la contraseña para desbloquear la cartera. - + Unlock wallet Desbloquea cartera - + This operation needs your wallet passphrase to decrypt the wallet. Esta operación necesita la contraseña para decriptar la cartera. - + Decrypt wallet Decriptar cartera - + Change passphrase Cambia contraseña - + Enter the old and new passphrase to the wallet. Introduce la contraseña anterior y la nueva de cartera - + Confirm wallet encryption Confirma la encriptación de cartera - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? ATENCION: ¡Si encriptas tu cartera y pierdes la contraseña perderas <b>TODOS TUS BITCOINS</b>!" ¿Seguro que quieres seguir encriptando la cartera? - - + + Wallet encrypted Cartera encriptada - - Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Recuerda que encriptando tu cartera no garantiza mantener a salvo tus bitcoins en caso de tener viruses en el ordenador. + + + Warning: The Caps Lock key is on. + - - - - + + + + Wallet encryption failed Encriptación de cartera fallida - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Encriptación de cartera fallida debido a un error interno. Tu cartera no ha sido encriptada. - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerda que encriptando tu cartera no garantiza mantener a salvo tus bitcoins en caso de tener viruses en el ordenador. + + + + The supplied passphrases do not match. Las contraseñas no coinciden. - + Wallet unlock failed Desbloqueo de cartera fallido - - + + The passphrase entered for the wallet decryption was incorrect. La contraseña introducida para decriptar la cartera es incorrecta. - + Wallet decryption failed Decriptación de cartera fallida - + Wallet passphrase was succesfully changed. La contraseña de cartera ha sido cambiada con exit. @@ -254,247 +263,273 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet Cartera Bitcoin - + + Synchronizing with network... Sincronizando con la red... - + Block chain synchronization in progress Sincronización cadena de bloques en progreso - + &Overview &Vista general - + Show general overview of wallet Muestra una vista general de cartera - + &Transactions &Transacciónes - + Browse transaction history Visiona el historial de transacciónes - + &Address Book &Guia de direcciónes - + Edit the list of stored addresses and labels Edita la lista de las direcciónes y etiquetas almacenada - + &Receive coins &Recibe monedas - + Show the list of addresses for receiving payments Muestra la lista de direcciónes utilizadas para recibir pagos - + &Send coins &Envia monedas - + Send coins to a bitcoin address Envia monedas a una dirección bitcoin - + E&xit &Salir - + Quit application Salir de la aplicación - + &About %1 S&obre %1 - + Show information about Bitcoin Muestra información sobre Bitcoin - + &Options... &Opciones - + Modify configuration options for bitcoin Modifica opciones de configuración - + Open &Bitcoin Abre &Bitcoin - + Show the Bitcoin window Muestra la ventana de Bitcoin - + &Export... &Exporta... - + Export the current view to a file Exporta la vista actual a un archivo - + &Encrypt Wallet &Encriptar cartera - + Encrypt or decrypt wallet Encriptar o decriptar cartera - + &Change Passphrase &Cambiar la contraseña - + Change the passphrase used for wallet encryption Cambiar la contraseña utilizada para la encriptación de cartera - + + About &Qt + + + + + Show information about Qt + Muestra información sobre Qt + + + &File &Archivo - + &Settings &Configuración - + &Help &Ayuda - + Tabs toolbar Barra de pestañas - + Actions toolbar Barra de acciónes - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n conexión activa hacia la red Bitcoin%n conexiones activas hacia la red Bitcoin + + %n conexión activa hacia la red Bitcoin + %n conexiones activas hacia la red Bitcoin + - + Downloaded %1 of %2 blocks of transaction history. Se han bajado %1 de %2 bloques de historial. - + Downloaded %1 blocks of transaction history. Se han bajado %1 bloques de historial. - + %n second(s) ago - Hace %n segundoHace %n segundos + + Hace %n segundo + Hace %n segundos + - + %n minute(s) ago - Hace %n minutoHace %n minutos + + Hace %n minuto + Hace %n minutos + - + %n hour(s) ago - Hace %n horaHace %n horas + + Hace %n hora + Hace %n horas + - + %n day(s) ago - Hace %n díaHace %n días + + Hace %n día + Hace %n días + - + Up to date Actualizado - + Catching up... Recuperando... - + Last received block was generated %1. El ultimo bloque recibido fue 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? Esta transacción supera el límite. Puedes seguir enviandola incluyendo una comisión de %s que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Quieres seguir con la transacción? - + Sending... Enviando... - + Sent transaction Transacción enviada - + Incoming transaction Transacción entrante - + Date: %1 Amount: %2 Type: %3 @@ -506,15 +541,20 @@ Tipo: %3 Dirección: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> La cartera esta <b>encriptada</b> y actualmente <b>desbloqueda</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> La cartera esta <b>encriptada</b> y actualmente <b>bloqueda</b> + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -530,8 +570,13 @@ Dirección: %4 - Display addresses in transaction list - Muestra direcciones en el listado de movimientos + &Display addresses in transaction list + &Muestra direcciones en el listado de movimientos + + + + Whether to show Bitcoin addresses in the transaction list + @@ -582,22 +627,22 @@ Dirección: %4 Editar dirección de envio - + The entered address "%1" is already in the address book. La dirección introducia "%1" ya esta guardada en la guia. - + The entered address "%1" is not a valid bitcoin address. La dirección introducida "%1" no es una dirección Bitcoin valida. - + Could not unlock wallet. No se pudo desbloquear la cartera. - + New key generation failed. La generación de nueva clave fallida. @@ -676,8 +721,8 @@ Dirección: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Comisión opcional a las transacciones por kB que ayuda a asegurar que tus transacciones son procesadas rápidamente. La mayoría de las transacciones son de 1kB. Se recomienda una comisión de 0.01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Comisión opcional a las transacciones por kB que ayuda a asegurar que tus transacciones son procesadas rápidamente. La mayoría de las transacciones son de 1 kB. Se recomienda una comisión de 0.01. @@ -686,8 +731,8 @@ Dirección: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Comisión opcional a las transacciones por kB que ayuda a asegurar que tus transacciones son procesadas rápidamente. La mayoría de las transacciones son de 1kB. Se recomienda una comisión de 0.01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Comisión opcional a las transacciones por kB que ayuda a asegurar que tus transacciones son procesadas rápidamente. La mayoría de las transacciones son de 1 kB. Se recomienda una comisión de 0.01. @@ -746,20 +791,12 @@ Dirección: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Cartera</span></p></body></html> + + Wallet + Cartera - + <b>Recent transactions</b> <b>Movimientos recientes</b> @@ -783,13 +820,13 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins Envia monedas @@ -804,82 +841,87 @@ p, li { white-space: pre-wrap; } &Agrega destinatario... - + Clear all &Borra todos - + + Remove all transaction fields + + + + Balance: Balance: - + 123.456 BTC 123.456 BTC - + Confirm the send action Confirma el envio - + &Send &Envía - + <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) - + Confirm send coins Confirmar el envio de monedas - + Are you sure you want to send %1? Estas seguro que quieres enviar %1? - + and y - + The recepient 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. - + Amount exceeds your balance La cantidad sobrepasa tu saldo - + 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 in one send operation Tienes una dirección duplicada, solo puedes enviar a direcciónes individuales de una sola vez - + Error: Transaction creation failed Error: La transacción no se pudo crear - + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. @@ -1100,54 +1142,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Fecha - + Type Tipo - + Address Dirección - + Amount Cantidad - + Open for %n block(s) - Abierto por %n bloqueAbierto por %n bloques + + Abierto por %n bloque + Abierto por %n bloques + - + Open until %1 Abierto hasta %1 - + Offline (%1 confirmations) Fuera de linea (%1 confirmaciónes) - + Unconfirmed (%1 of %2 confirmations) No confirmado (%1 de %2 confirmaciónes) - + Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) Mined balance will be available in %n more blocks - El balance minado estará disponible en %n bloque masEl balance minado estará disponible en %n bloques mas + + El balance minado estará disponible en %n bloque mas + El balance minado estará disponible en %n bloques mas + @@ -1166,56 +1214,51 @@ p, li { white-space: pre-wrap; } - Received from IP - Recibido de IP + Received from + Recibido de - + Sent to Enviado a - - Sent to IP - Enviado a IP - - - + Payment to yourself Pago proprio - + Mined Minado - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. Estado de transacción. Pasa el raton sobre este campo para ver el numero de confirmaciónes. - + Date and time that the transaction was received. Fecha y hora cuando se recibió la transaccion - + Type of transaction. Tipo de transacción. - + Destination address of transaction. Dirección de destino para la transacción - + Amount removed from or added to balance. Cantidad restada o añadida al balance @@ -1314,67 +1357,67 @@ p, li { white-space: pre-wrap; } Muestra detalles... - + Export Transaction Data Exportar datos de transacción - + 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 Error exportando - + Could not write to file %1. No se pudo escribir en el archivo %1. - + Range: Rango: - + to para @@ -1390,220 +1433,220 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Versión Bitcoin - + Usage: Uso: - + Send command to -server or bitcoind Envia comando a bitcoin lanzado con -server u bitcoind - + List commands Muestra comandos - + Get help for a command Recibir ayuda para un comando - + Options: Opciones: - + Specify configuration file (default: bitcoin.conf) Especifica archivo de configuración (predeterminado: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Especifica archivo pid (predeterminado: bitcoin.pid) - + Generate coins Genera monedas - - Don't generate coins + + Don't generate coins No generar monedas - + Start minimized Arranca minimizado - + Specify data directory Especifica directorio para los datos - + Specify connection timeout (in milliseconds) Especifica tiempo de espera para conexion (en milisegundos) - + Connect through socks4 proxy Conecta mediante proxy socks4 - + Allow DNS lookups for addnode and connect Permite búsqueda DNS para addnode y connect - + Add a node to connect to Agrega un nodo para conectarse - + Connect only to the specified node Conecta solo al nodo especificado - - Don't accept connections from outside + + Don't accept connections from outside No aceptar conexiones desde el exterior - - Don't attempt to use UPnP to map the listening port + + Don't attempt to use UPnP to map the listening port No intentar usar UPnP para mapear el puerto de entrada - + Attempt to use UPnP to map the listening port Intenta usar UPnP para mapear el puerto de escucha. - + Fee per kB to add to transactions you send Comisión por kB para agregar a las transacciones que envias - + Accept command line and JSON-RPC commands Aceptar comandos consola y JSON-RPC - + Run in the background as a daemon and accept commands Correr como demonio y acepta comandos - + Use the test network Usa la red de pruebas - + Username for JSON-RPC connections 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: 8332) Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) - + Allow JSON-RPC connections from specified IP address Permite conexiones JSON-RPC desde la dirección IP especificada - + Send commands to node running on <ip> (default: 127.0.0.1) Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - + Set key pool size to <n> (default: 100) Ajusta el numero de claves en reserva <n> (predeterminado: 100) - + Rescan the block chain for missing wallet transactions Rescanea la cadena de bloques para transacciones perdidas de la cartera - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1611,722 +1654,155 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Use OpenSSL (https) for JSON-RPC connections Usa OpenSSL (https) para las conexiones JSON-RPC - + Server certificate file (default: server.cert) Certificado del servidor (Predeterminado: server.cert) - + Server private key (default: server.pem) Clave privada del servidor (Predeterminado: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Este mensaje de ayuda - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. - + Loading addresses... Cargando direcciónes... - + Error loading addr.dat Error cargando addr.dat - + Loading block index... Cargando el index de bloques... - + Error loading blkindex.dat Error cargando blkindex.dat - + Loading wallet... Cargando cartera... - + Error loading wallet.dat: Wallet corrupted Error cargando wallet.dat: Cartera dañada - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Error cargando el archivo wallet.dat: Se necesita una versión mas nueva de Bitcoin - + Error loading wallet.dat Error cargando wallet.dat - + Rescanning... Rescaneando... - + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Done loading Carga completa - + Invalid -proxy address Dirección -proxy invalida - + Invalid amount for -paytxfee=<amount> Cantidad inválida para -paytxfee=<amount> - + 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. - + Error: CreateThread(StartNode) failed Error: CreateThread(StartNode) fallido - + Warning: Disk space is low Atención: Poco espacio en el disco duro - + Unable to bind to port %d on this computer. Bitcoin is probably already running. No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. - - - This transaction is over the size limit. You can still send it for a fee of %s, 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 supera el límite. Puedes seguir enviandola incluyendo una comisión de %s que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Quieres seguir con la transacción? - - - - Enter the current passphrase to the wallet. - Introduce la contraseña actual de la cartera. - - - - Passphrase - Contraseña - - - - Please supply the current wallet decryption passphrase. - Por favor introduce la contraseña actual de la cartera. - - - - The passphrase entered for the wallet decryption was incorrect. - La contraseña introducida para decriptar la cartera es incorrecta. - - - - Status - Estado - - Date - Fecha - - - - Description - Descripción - - - - Debit - Debito - - - - Credit - Credito - - - - Open for %d blocks - Abierto para %d bloques - - - - Open until %s - Abierto hasta %s - - - - %d/offline? - %d/fuera de linea? - - - - %d/unconfirmed - %d/no confirmado - - - - %d confirmations - %d confirmaciónes - - - - Generated - Generado - - - - Generated (%s matures in %d more blocks) - Generado (%s madura en %d bloques) - - - - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - Generado - Cuidado: Este bloque no se recibió de otros nodos y probablemente no sea aceptado! - - - - Generated (not accepted) - Generado (no aceptado) - - - - From: - De: - - - - Received with: - Recibido con: - - - - Payment to yourself - Pago a ti mismo - - - - To: - Para: - - - - Generating - Generando - - - - (not connected) - (no conectado) - - - - %d connections %d blocks %d transactions - %d conexiones %d bloques %d transacciones - - - - Wallet already encrypted. - La cartera ya esta encriptada. - - - - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - Introduce la nueva contraseña de cartera. -Por favor utiliza un contraseña de 10 o mas caracteres aleatorios, u ocho o mas palabras. - - - - Error: The supplied passphrase was too short. - Error: La contraseña introducida es demasiado corta. - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - ATENCION: ¡Si encriptas tu cartera y pierdes la contraseña perderas TODOS TUS BITCOINS! -¿Estas seguro que quieres seguir encriptando la cartera? - - - - Please re-enter your new wallet passphrase. - Por favor vuelve introducir la nueva contraseña. - - - - Error: the supplied passphrases didn't match. - Error: las contraseñas no son identicas. - - - - Wallet encryption failed. - Encriptacion de cartera fallida. - - - - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Cartera Encriptada. -Recuerda que encriptando tu cartera no garantiza mantener a salvo tus bitcoins en caso de tener viruses en el ordenador. - - - - Wallet is unencrypted, please encrypt it first. - Cartera no encriptada, intenta encriptar primero. - - - - Enter the new passphrase for the wallet. - Introduce la nueva contraseña para la cartera. - - - - Re-enter the new passphrase for the wallet. - Reintroduce la nueva contraseña para la cartera. - - - - Wallet Passphrase Changed. - Contraseña de cartera cambiada. - - - - New Receiving Address - Nueva dirección de recepción - - - - You should use a new address for each payment you receive. - -Label - Debes usar una nueva dirección para cada pago que usted recibe. - -Etiqueta - - - - <b>Status:</b> - <b>Estado:</b> - - - - , has not been successfully broadcast yet - , no ha sido emitido satisfactoriamente todavía - - - - , broadcast through %d node - , emitido mediante %d nodo - - - - , broadcast through %d nodes - , emitido mediante %d nodos - - - - <b>Date:</b> - <b>Fecha:</b> - - - - <b>Source:</b> Generated<br> - <b>Fuente:</b> Generado<br> - - - - <b>From:</b> - <b>De:</b> - - - - unknown - desconocido - - - - <b>To:</b> - <b>Para:</b> - - - - (yours, label: - (tuya, etiqueta: - - - - (yours) - (tuya) - - - - <b>Credit:</b> - <b>Crédito:</b> - - - - (%s matures in %d more blocks) - (%s madura en %d bloques) - - - - (not accepted) - (no aceptada) - - - - <b>Debit:</b> - <b>Débito:</b> - - - - <b>Transaction fee:</b> - <b>Comisión transacción:</b> - - - - <b>Net amount:</b> - <b>Cantidad total:</b> - - - - Message: - Mensaje: - - - - Comment: - Comentario: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Las monedas generadas deben esperar 120 bloques antes de ser gastadas. Cuando has generado este bloque se emitió a la red para ser agregado en la cadena de bloques. Si falla al incluirse en la cadena, cambiará a "no aceptado" y las monedas no se podrán gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque casi al mismo tiempo que el tuyo. - - - - Cannot write autostart/bitcoin.desktop file - No se puede escribir el fichero autostart/bitcoin.desktop - - - - Main - Principal - - - - &Start Bitcoin on window system startup - &Arranca Bitcoin al iniciar el sistema - - - - &Minimize on close - &Minimiza al cerrar - - - - version %s - versión %s - - - - Error in amount - Error en la cantidad - - - - Send Coins - Envia monedas - - - - Amount exceeds your balance - La cantidad sobrepasa tu balance - - - - Total exceeds your balance when the - El total sobrepasa tu balance cuando se - - - - transaction fee is included - incluyen las tasas de transacción - - - - Payment sent - Pago enviado - - - - Sending... - Enviando... - - - - Invalid address - Dirección inválida - - - - Sending %s to %s - Enviando %s a %s - - - - CANCELLED - CANCELADO - - - - Cancelled - Cancelado - - - - Transfer cancelled - Transferencia cancelada - - - - Error: - Error: - - - - Insufficient funds - Fondos insuficientes - - - - Connecting... - Conectando... - - - - Unable to connect - No es posible conectar - - - - Requesting public key... - Pidiendo clave pública... - - - - Received public key... - Clave pública recibida... - - - - Recipient is not accepting transactions sent by IP address - El destinatario no accepta transacciones enviadas a direcciones IP - - - - Transfer was not accepted - La transferencia no fue aceptada - - - - Invalid response received - Respuesta inválida recibida - - - - Creating transaction... - Creando transacción... - - - - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - Esta transacción requiere una comisión de al menos %s por su cantidad, complejidad o uso de fondos recibidos recientemente - - - - Transaction creation failed - Fallo al crear la transacción. - - - - Transaction aborted - Transacción abortada - - - - Lost connection, transaction cancelled - Conexión perdida, transacción cancelada - - - - Sending payment... - Enviando pago... - - - - The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - La transacción fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. - - - - Waiting for confirmation... - Esperando confirmación... - - - - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - El pago se ha enviado, pero el receptor no pudo verificarlo. -La transacción se grabó y el saldo fue transferido, -pero la información de los comentarios quedará en blanco. - - - - Payment was sent, but an invalid response was received - El pago fue enviado, pero se recibió una respuesta inválida - - - - Payment completed - Pago completado - - - - Name - Nombre - - - - Address - Dirección - - - - Label - Etiqueta - - - - Bitcoin Address - Dirección Bitcoin - - - - This is one of your own addresses for receiving payments and cannot be entered in the address book. - Esta es una de sus direcciones para recibir pagos y no puede incluirse en la libreta de direcciones. - - - - Edit Address - Edita dirección - - - - Edit Address Label - Edita etiqueta dirección - - - - Add Address - Agrega dirección - - - - Bitcoin - Bitcoin - - - - Bitcoin - Generating - Bitcoin - Generando - - - - Bitcoin - (not connected) - Bitcoin - (no conectado) - - - - &Open Bitcoin - &Abre Bitcoin - - - - &Send Bitcoins - &Envia Bitcoins - - - - O&ptions... - O&pciones - - - - E&xit - S&alir - - - - Program has crashed and will terminate. - El programa ha detectado un error y va a cerrarse. - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Precaución: Por favor revisa que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal Bitcoin no funcionará correctamente. - + beta beta @@ -2334,9 +1810,9 @@ pero la información de los comentarios quedará en blanco. main - - Bitcoin Qt - Bitcoin Qt + + Bitcoin-Qt + diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index c0bea54429..af883fdebe 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -14,14 +16,14 @@ - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers Este es un software experimental. @@ -81,22 +83,22 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.&Borrar - + Export Address Book Data Exporta datos de la guia de direcciones - + Comma separated file (*.csv) Archivos separados por coma (*.csv) - + Error exporting Exportar errores - + Could not write to file %1. No se pudo escribir al archivo %1. @@ -104,17 +106,17 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. AddressTableModel - + Label Etiqueta - + Address Dirección - + (no label) (sin etiqueta) @@ -128,125 +130,132 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. + TextLabel Cambiar contraseña: - + Enter passphrase Introduce contraseña actual - + New passphrase Nueva contraseña - + Repeat new passphrase Repite nueva contraseña: - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Introduce la nueva contraseña para la billetera.<br/>Por favor utiliza un contraseña <b>de 10 o mas caracteres aleatorios</b>, u <b>ocho o mas palabras</b>. - + Encrypt wallet Codificar billetera - + This operation needs your wallet passphrase to unlock the wallet. Esta operación necesita la contraseña para desbloquear la billetera. - + Unlock wallet Desbloquea billetera - + This operation needs your wallet passphrase to decrypt the wallet. Esta operación necesita la contraseña para decodificar la billetara. - + Decrypt wallet Decodificar cartera - + Change passphrase Cambia contraseña - + Enter the old and new passphrase to the wallet. Introduce la contraseña anterior y la nueva de cartera - + Confirm wallet encryption Confirma la codificación de cartera - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? ATENCIÓN: ¡Si codificas tu billetera y pierdes la contraseña perderás <b>TODOS TUS BITCOINS</b>!" ¿Seguro que quieres seguir codificando la billetera? - - + + Wallet encrypted Billetera codificada - - Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Recuerda que codificando tu billetera no garantiza mantener a salvo tus bitcoins en caso de tener virus en el computador. + + + Warning: The Caps Lock key is on. + Precaucion: Mayúsculas Activadas - - - - + + + + Wallet encryption failed Falló la codificación de la billetera - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. La codificación de la billetera falló debido a un error interno. Tu billetera no ha sido codificada. - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus bitcoins de ser robados por malware que infecte su computador + + + + The supplied passphrases do not match. Las contraseñas no coinciden. - + Wallet unlock failed Ha fallado el desbloqueo de la billetera - - + + The passphrase entered for the wallet decryption was incorrect. La contraseña introducida para decodificar la billetera es incorrecta. - + Wallet decryption failed Ha fallado la decodificación de la billetera - + Wallet passphrase was succesfully changed. La contraseña de billetera ha sido cambiada con éxito. @@ -254,247 +263,273 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet Billetera Bitcoin - + + Synchronizing with network... Sincronizando con la red... - + Block chain synchronization in progress Sincronización de la cadena de bloques en progreso - + &Overview &Vista general - + Show general overview of wallet Muestra una vista general de la billetera - + &Transactions &Transacciónes - + Browse transaction history Explora el historial de transacciónes - + &Address Book &Guia de direcciónes - + Edit the list of stored addresses and labels Edita la lista de direcciones y etiquetas almacenadas - + &Receive coins &Recibir monedas - + Show the list of addresses for receiving payments Muestra la lista de direcciónes utilizadas para recibir pagos - + &Send coins &Envíar monedas - + Send coins to a bitcoin address Enviar monedas a una dirección bitcoin - + E&xit &Salir - + Quit application Salir del programa - + &About %1 S&obre %1 - + Show information about Bitcoin Muestra información acerca de Bitcoin - + &Options... &Opciones - + Modify configuration options for bitcoin Modifica las opciones de configuración de bitcoin - + Open &Bitcoin Abre &Bitcoin - + Show the Bitcoin window Muestra la ventana de Bitcoin - + &Export... &Exportar... - + Export the current view to a file Exportar la vista actual a un archivo - + &Encrypt Wallet &Codificar la billetera - + Encrypt or decrypt wallet Codificar o decodificar la billetera - + &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 - + + About &Qt + Acerca de + + + + Show information about Qt + Mostrar Información sobre QT + + + &File &Archivo - + &Settings &Configuración - + &Help &Ayuda - + Tabs toolbar Barra de pestañas - + Actions toolbar Barra de acciónes - + [testnet] [red-de-pruebas] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n conexión activa hacia la red Bitcoin%n conexiones activas hacia la red Bitcoin + + %n conexión activa hacia la red Bitcoin + %n conexiones activas hacia la red Bitcoin + - + Downloaded %1 of %2 blocks of transaction history. Descargados %1 de %2 bloques del historial de transacciones. - + Downloaded %1 blocks of transaction history. Descargado %1 bloques del historial de transacciones. - + %n second(s) ago - Hace %n segundoHace %n segundos + + Hace %n segundo + Hace %n segundos + - + %n minute(s) ago - Hace %n minutoHace %n minutos + + Hace %n minuto + Hace %n minutos + - + %n hour(s) ago - Hace %n horaHace %n horas + + Hace %n hora + Hace %n horas + - + %n day(s) ago - Hace %n díaHace %n días + + Hace %n día + Hace %n días + - + Up to date Actualizado - + Catching up... Recuperando... - + Last received block was generated %1. El ultimo bloque recibido fue 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? Esta transacción supera el límite. Puedes seguir enviandola incluyendo una comisión de %s que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Quieres seguir con la transacción? - + Sending... Enviando... - + Sent transaction Transacción enviada - + Incoming transaction Transacción entrante - + Date: %1 Amount: %2 Type: %3 @@ -506,15 +541,20 @@ Tipo: %3 Dirección: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> La billetera esta <b>codificada</b> y actualmente <b>desbloqueda</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> La billetera esta <b>codificada</b> y actualmente <b>bloqueda</b> + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -530,8 +570,13 @@ Dirección: %4 - Display addresses in transaction list - Muestra direcciones en el listado de transaccioines + &Display addresses in transaction list + &Muestra direcciones en el listado de transaccioines + + + + Whether to show Bitcoin addresses in the transaction list + @@ -582,22 +627,22 @@ Dirección: %4 Editar dirección de envio - + The entered address "%1" is already in the address book. La dirección introducida "%1" ya esta guardada en la libreta de direcciones. - + The entered address "%1" is not a valid bitcoin address. La dirección introducida "%1" no es una dirección Bitcoin valida. - + Could not unlock wallet. No se pudo desbloquear la billetera. - + New key generation failed. La generación de nueva clave falló. @@ -676,18 +721,18 @@ Dirección: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Comisión de operación opcional por kB que ayuda a asegurar que tus transacciones sean procesadas rápidamente. La mayoría de las transacciones son de 1kB. Se recomienda una comisión de 0.01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Comisión opcional por kB que ayuda a asegurar que sus transacciones son procesadas rápidamente. La mayoria de transacciones son de 1 KB. Se recomienda comisión de 0.01 Pay transaction &fee - Comision de &transacciónes + Comisión de &transacciónes - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Comisión de operación opcional por kB que ayuda a asegurar que tus transacciones sean procesadas rápidamente. La mayoría de las transacciones son de 1kB. Se recomienda una comisión de 0.01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Comisión opcional por kB que ayuda a asegurar que sus transacciones son procesadas rápidamente. La mayoria de transacciones son de 1 KB. Se recomienda comisión de 0.01 @@ -746,20 +791,12 @@ Dirección: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Cartera</span></p></body></html> + + Wallet + Cartera - + <b>Recent transactions</b> <b>Transacciones recientes</b> @@ -783,13 +820,13 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins Enviar monedas @@ -804,82 +841,87 @@ p, li { white-space: pre-wrap; } &Agrega destinatario... - + Clear all &Borra todos - + + Remove all transaction fields + Remover todos los campos de la transacción + + + Balance: Balance: - + 123.456 BTC 123.456 BTC - + Confirm the send action Confirma el envio - + &Send &Envía - + <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) - + Confirm send coins Confirmar el envio de monedas - + Are you sure you want to send %1? Estas seguro que quieres enviar %1? - + and y - + The recepient 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. - + Amount exceeds your balance La cantidad sobrepasa tu saldo - + 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 in one send operation Tienes una dirección duplicada, solo puedes enviar a direcciónes individuales de una sola vez - + Error: Transaction creation failed Error: La transacción no se pudo crear - + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. @@ -920,7 +962,7 @@ p, li { white-space: pre-wrap; } Choose address from address book - Elije dirección de la guia + Elije dirección de la guia @@ -1100,54 +1142,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Fecha - + Type Tipo - + Address Dirección - + Amount Cantidad - + Open for %n block(s) - Abierto por %n bloqueAbierto por %n bloques + + Abierto por %n bloque + Abierto por %n bloques + - + Open until %1 Abierto hasta %1 - + Offline (%1 confirmations) Fuera de linea (%1 confirmaciónes) - + Unconfirmed (%1 of %2 confirmations) No confirmado (%1 de %2 confirmaciónes) - + Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) Mined balance will be available in %n more blocks - El balance minado estará disponible en %n bloque masEl balance minado estará disponible en %n bloques mas + + El balance minado estará disponible en %n bloque mas + El balance minado estará disponible en %n bloques mas + @@ -1166,56 +1214,51 @@ p, li { white-space: pre-wrap; } - Received from IP - Recibido de IP + Received from + Recibido de - + Sent to Enviado a - - Sent to IP - Enviado a IP - - - + Payment to yourself - Pago proprio + Pagar a usted mismo - + Mined Minado - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. Estado de transacción. Pasa el raton sobre este campo para ver el numero de confirmaciónes. - + Date and time that the transaction was received. Fecha y hora cuando se recibió la transaccion - + Type of transaction. Tipo de transacción. - + Destination address of transaction. Dirección de destino para la transacción - + Amount removed from or added to balance. Cantidad restada o añadida al balance @@ -1314,67 +1357,67 @@ p, li { white-space: pre-wrap; } Muestra detalles... - + Export Transaction Data Exportar datos de transacción - + 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 Error exportando - + Could not write to file %1. No se pudo escribir en el archivo %1. - + Range: Rango: - + to para @@ -1390,220 +1433,220 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Versión Bitcoin - + Usage: Uso: - + Send command to -server or bitcoind Envia comando a bitcoin lanzado con -server u bitcoind - + List commands Muestra comandos - + Get help for a command Recibir ayuda para un comando - + Options: Opciones: - + Specify configuration file (default: bitcoin.conf) Especifica archivo de configuración (predeterminado: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Especifica archivo pid (predeterminado: bitcoin.pid) - + Generate coins Genera monedas - - Don't generate coins + + Don't generate coins No generar monedas - + Start minimized Arranca minimizado - + Specify data directory Especifica directorio para los datos - + Specify connection timeout (in milliseconds) Especifica tiempo de espera para conexion (en milisegundos) - + Connect through socks4 proxy Conecta mediante proxy socks4 - + Allow DNS lookups for addnode and connect Permite búsqueda DNS para addnode y connect - + Add a node to connect to Agrega un nodo para conectarse - + Connect only to the specified node Conecta solo al nodo especificado - - Don't accept connections from outside + + Don't accept connections from outside No aceptar conexiones desde el exterior - - Don't attempt to use UPnP to map the listening port + + Don't attempt to use UPnP to map the listening port No intentar usar UPnP para mapear el puerto de entrada - + Attempt to use UPnP to map the listening port Intenta usar UPnP para mapear el puerto de escucha. - + Fee per kB to add to transactions you send Comisión por kB para agregar a las transacciones que envias - + Accept command line and JSON-RPC commands Aceptar comandos consola y JSON-RPC - + Run in the background as a daemon and accept commands Correr como demonio y acepta comandos - + Use the test network Usa la red de pruebas - + Username for JSON-RPC connections 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: 8332) Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) - + Allow JSON-RPC connections from specified IP address Permite conexiones JSON-RPC desde la dirección IP especificada - + Send commands to node running on <ip> (default: 127.0.0.1) Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - + Set key pool size to <n> (default: 100) Ajusta el numero de claves en reserva <n> (predeterminado: 100) - + Rescan the block chain for missing wallet transactions Rescanea la cadena de bloques para transacciones perdidas de la cartera - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1611,722 +1654,155 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Use OpenSSL (https) for JSON-RPC connections Usa OpenSSL (https) para las conexiones JSON-RPC - + Server certificate file (default: server.cert) Certificado del servidor (Predeterminado: server.cert) - + Server private key (default: server.pem) Clave privada del servidor (Predeterminado: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Este mensaje de ayuda - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. - + Loading addresses... Cargando direcciónes... - + Error loading addr.dat Error cargando addr.dat - + Loading block index... Cargando el index de bloques... - + Error loading blkindex.dat Error cargando blkindex.dat - + Loading wallet... Cargando cartera... - + Error loading wallet.dat: Wallet corrupted Error cargando wallet.dat: Cartera dañada - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Error cargando el archivo wallet.dat: Se necesita una versión mas nueva de Bitcoin - + Error loading wallet.dat Error cargando wallet.dat - + Rescanning... Rescaneando... - + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Done loading Carga completa - + Invalid -proxy address Dirección -proxy invalida - + Invalid amount for -paytxfee=<amount> Cantidad inválida para -paytxfee=<amount> - + 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. - + Error: CreateThread(StartNode) failed Error: CreateThread(StartNode) fallido - + Warning: Disk space is low Atención: Poco espacio en el disco duro - + Unable to bind to port %d on this computer. Bitcoin is probably already running. No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. - - - This transaction is over the size limit. You can still send it for a fee of %s, 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 supera el límite. Puedes seguir enviandola incluyendo una comisión de %s que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Quieres seguir con la transacción? - - - - Enter the current passphrase to the wallet. - Introduce la contraseña actual de la cartera. - - - - Passphrase - Contraseña - - - - Please supply the current wallet decryption passphrase. - Por favor introduce la contraseña actual de la cartera. - - - - The passphrase entered for the wallet decryption was incorrect. - La contraseña introducida para decriptar la cartera es incorrecta. - - - - Status - Estado - - Date - Fecha - - - - Description - Descripción - - - - Debit - Debito - - - - Credit - Credito - - - - Open for %d blocks - Abierto para %d bloques - - - - Open until %s - Abierto hasta %s - - - - %d/offline? - %d/fuera de linea? - - - - %d/unconfirmed - %d/no confirmado - - - - %d confirmations - %d confirmaciónes - - - - Generated - Generado - - - - Generated (%s matures in %d more blocks) - Generado (%s madura en %d bloques) - - - - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - Generado - Cuidado: Este bloque no se recibió de otros nodos y probablemente no sea aceptado! - - - - Generated (not accepted) - Generado (no aceptado) - - - - From: - De: - - - - Received with: - Recibido con: - - - - Payment to yourself - Pago a ti mismo - - - - To: - Para: - - - - Generating - Generando - - - - (not connected) - (no conectado) - - - - %d connections %d blocks %d transactions - %d conexiones %d bloques %d transacciones - - - - Wallet already encrypted. - La cartera ya esta encriptada. - - - - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - Introduce la nueva contraseña de cartera. -Por favor utiliza un contraseña de 10 o mas caracteres aleatorios, u ocho o mas palabras. - - - - Error: The supplied passphrase was too short. - Error: La contraseña introducida es demasiado corta. - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - ATENCION: ¡Si encriptas tu cartera y pierdes la contraseña perderas TODOS TUS BITCOINS! -¿Estas seguro que quieres seguir encriptando la cartera? - - - - Please re-enter your new wallet passphrase. - Por favor vuelve introducir la nueva contraseña. - - - - Error: the supplied passphrases didn't match. - Error: las contraseñas no son identicas. - - - - Wallet encryption failed. - Encriptacion de cartera fallida. - - - - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Cartera Encriptada. -Recuerda que encriptando tu cartera no garantiza mantener a salvo tus bitcoins en caso de tener viruses en el ordenador. - - - - Wallet is unencrypted, please encrypt it first. - Cartera no encriptada, intenta encriptar primero. - - - - Enter the new passphrase for the wallet. - Introduce la nueva contraseña para la cartera. - - - - Re-enter the new passphrase for the wallet. - Reintroduce la nueva contraseña para la cartera. - - - - Wallet Passphrase Changed. - Contraseña de cartera cambiada. - - - - New Receiving Address - Nueva dirección de recepción - - - - You should use a new address for each payment you receive. - -Label - Debes usar una nueva dirección para cada pago que usted recibe. - -Etiqueta - - - - <b>Status:</b> - <b>Estado:</b> - - - - , has not been successfully broadcast yet - , no ha sido emitido satisfactoriamente todavía - - - - , broadcast through %d node - , emitido mediante %d nodo - - - - , broadcast through %d nodes - , emitido mediante %d nodos - - - - <b>Date:</b> - <b>Fecha:</b> - - - - <b>Source:</b> Generated<br> - <b>Fuente:</b> Generado<br> - - - - <b>From:</b> - <b>De:</b> - - - - unknown - desconocido - - - - <b>To:</b> - <b>Para:</b> - - - - (yours, label: - (tuya, etiqueta: - - - - (yours) - (tuya) - - - - <b>Credit:</b> - <b>Crédito:</b> - - - - (%s matures in %d more blocks) - (%s madura en %d bloques) - - - - (not accepted) - (no aceptada) - - - - <b>Debit:</b> - <b>Débito:</b> - - - - <b>Transaction fee:</b> - <b>Comisión transacción:</b> - - - - <b>Net amount:</b> - <b>Cantidad total:</b> - - - - Message: - Mensaje: - - - - Comment: - Comentario: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Las monedas generadas deben esperar 120 bloques antes de ser gastadas. Cuando has generado este bloque se emitió a la red para ser agregado en la cadena de bloques. Si falla al incluirse en la cadena, cambiará a "no aceptado" y las monedas no se podrán gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque casi al mismo tiempo que el tuyo. - - - - Cannot write autostart/bitcoin.desktop file - No se puede escribir el fichero autostart/bitcoin.desktop - - - - Main - Principal - - - - &Start Bitcoin on window system startup - &Arranca Bitcoin al iniciar el sistema - - - - &Minimize on close - &Minimiza al cerrar - - - - version %s - versión %s - - - - Error in amount - Error en la cantidad - - - - Send Coins - Envia monedas - - - - Amount exceeds your balance - La cantidad sobrepasa tu balance - - - - Total exceeds your balance when the - El total sobrepasa tu balance cuando se - - - - transaction fee is included - incluyen las tasas de transacción - - - - Payment sent - Pago enviado - - - - Sending... - Enviando... - - - - Invalid address - Dirección inválida - - - - Sending %s to %s - Enviando %s a %s - - - - CANCELLED - CANCELADO - - - - Cancelled - Cancelado - - - - Transfer cancelled - Transferencia cancelada - - - - Error: - Error: - - - - Insufficient funds - Fondos insuficientes - - - - Connecting... - Conectando... - - - - Unable to connect - No es posible conectar - - - - Requesting public key... - Pidiendo clave pública... - - - - Received public key... - Clave pública recibida... - - - - Recipient is not accepting transactions sent by IP address - El destinatario no accepta transacciones enviadas a direcciones IP - - - - Transfer was not accepted - La transferencia no fue aceptada - - - - Invalid response received - Respuesta inválida recibida - - - - Creating transaction... - Creando transacción... - - - - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - Esta transacción requiere una comisión de al menos %s por su cantidad, complejidad o uso de fondos recibidos recientemente - - - - Transaction creation failed - Fallo al crear la transacción. - - - - Transaction aborted - Transacción abortada - - - - Lost connection, transaction cancelled - Conexión perdida, transacción cancelada - - - - Sending payment... - Enviando pago... - - - - The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - La transacción fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. - - - - Waiting for confirmation... - Esperando confirmación... - - - - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - El pago se ha enviado, pero el receptor no pudo verificarlo. -La transacción se grabó y el saldo fue transferido, -pero la información de los comentarios quedará en blanco. - - - - Payment was sent, but an invalid response was received - El pago fue enviado, pero se recibió una respuesta inválida - - - - Payment completed - Pago completado - - - - Name - Nombre - - - - Address - Dirección - - - - Label - Etiqueta - - - - Bitcoin Address - Dirección Bitcoin - - - - This is one of your own addresses for receiving payments and cannot be entered in the address book. - Esta es una de sus direcciones para recibir pagos y no puede incluirse en la libreta de direcciones. - - - - Edit Address - Edita dirección - - - - Edit Address Label - Edita etiqueta dirección - - - - Add Address - Agrega dirección - - - - Bitcoin - Bitcoin - - - - Bitcoin - Generating - Bitcoin - Generando - - - - Bitcoin - (not connected) - Bitcoin - (no conectado) - - - - &Open Bitcoin - &Abre Bitcoin - - - - &Send Bitcoins - &Envia Bitcoins - - - - O&ptions... - O&pciones - - - - E&xit - S&alir - - - - Program has crashed and will terminate. - El programa ha detectado un error y va a cerrarse. - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Precaución: Por favor revisa que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal Bitcoin no funcionará correctamente. + Precaución: Por favor revise que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal configurado Bitcoin no funcionará correctamente. - + beta beta @@ -2334,9 +1810,9 @@ pero la información de los comentarios quedará en blanco. main - - Bitcoin Qt - Bitcoin Qt + + Bitcoin-Qt + diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index bc48ed889a..d39ab42bb5 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -14,14 +16,14 @@ - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - Szerzői jog © 2009-2011 Bitcoin Developers + Szerzői jog © 2009-2012 Bitcoin Developers Ez egy kísérleti program. MIT/X11 szoftverlicenc alatt kiadva, lásd a mellékelt fájlt license.txt vagy http://www.opensource.org/licenses/mit-license.php. @@ -77,22 +79,22 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt &Törlés - + Export Address Book Data Címjegyzék adatainak exportálása - + Comma separated file (*.csv) Vesszővel elválasztott fájl (*. csv) - + Error exporting Hiba exportálás közben - + Could not write to file %1. %1 nevű fájl nem írható. @@ -100,17 +102,17 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt AddressTableModel - + Label Címke - + Address Cím - + (no label) (nincs címke) @@ -124,125 +126,132 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt + TextLabel SzövegCímke - + Enter passphrase Add meg a jelszót - + New passphrase Új jelszó - + Repeat new passphrase Új jelszó újra - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Írd be az új jelszót a tárcához.<br/>Használj legalább 10<br/>véletlenszerű karaktert</b> vagy <b>legalább nyolc szót</b>. - + Encrypt wallet Tárca kódolása - + This operation needs your wallet passphrase to unlock the wallet. A tárcád megnyitásához a műveletnek szüksége van a tárcád jelszavára. - + Unlock wallet Tárca megnyitása - + This operation needs your wallet passphrase to decrypt the wallet. A tárcád dekódolásához a műveletnek szüksége van a tárcád jelszavára. - + Decrypt wallet Tárca dekódolása - + Change passphrase Jelszó megváltoztatása - + Enter the old and new passphrase to the wallet. Írd be a tárca régi és új jelszavát. - + Confirm wallet encryption Biztosan kódolni akarod a tárcát? - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? FIGYELEM: Ha kódolod a tárcát, és elveszíted a jelszavad, akkor <b>AZ ÖSSZES BITCOINODAT IS EL FOGOD VESZÍTENI!</b> Biztosan kódolni akarod a tárcát? - - + + Wallet encrypted Tárca kódolva - - Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. + + + Warning: The Caps Lock key is on. + - - - - + + + + Wallet encryption failed Tárca kódolása sikertelen. - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Tárca kódolása belső hiba miatt sikertelen. A tárcád nem lett kódolva. - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. + + + + The supplied passphrases do not match. A megadott jelszavak nem egyeznek. - + Wallet unlock failed Tárca megnyitása sikertelen - - + + The passphrase entered for the wallet decryption was incorrect. Hibás jelszó. - + Wallet decryption failed Dekódolás sikertelen. - + Wallet passphrase was succesfully changed. Jelszó megváltoztatva. @@ -250,247 +259,268 @@ Biztosan kódolni akarod a tárcát? BitcoinGUI - + Bitcoin Wallet Bitcoin-tárca - + + Synchronizing with network... Szinkronizálás a hálózattal... - + Block chain synchronization in progress Blokklánc-szinkronizálás folyamatban - + &Overview &Áttekintés - + Show general overview of wallet Tárca általános áttekintése - + &Transactions &Tranzakciók - + Browse transaction history Tranzakciótörténet megtekintése - + &Address Book Cím&jegyzék - + Edit the list of stored addresses and labels Tárolt címek és címkék listájának szerkesztése - + &Receive coins Érmék &fogadása - + Show the list of addresses for receiving payments Kiizetést fogadó címek listája - + &Send coins Érmék &küldése - + Send coins to a bitcoin address Érmék küldése megadott címre - + E&xit &Kilépés - + Quit application Kilépés - + &About %1 &A %1-ról - + Show information about Bitcoin Információk a Bitcoinról - + &Options... &Opciók... - + Modify configuration options for bitcoin Bitcoin konfigurációs opciók - + Open &Bitcoin A &Bitcoin megnyitása - + Show the Bitcoin window A Bitcoin-ablak mutatása - + &Export... &Exportálás... - + Export the current view to a file Jelenlegi nézet exportálása fájlba - + &Encrypt Wallet Tárca &kódolása - + Encrypt or decrypt wallet Tárca kódolása vagy dekódolása - + &Change Passphrase Jelszó &megváltoztatása - + Change the passphrase used for wallet encryption Tárcakódoló jelszó megváltoztatása - + + About &Qt + A &Qt-ról + + + + Show information about Qt + Információk a Qt ról + + + &File &Fájl - + &Settings &Beállítások - + &Help &Súgó - + Tabs toolbar Fül eszköztár - + Actions toolbar Parancsok eszköztár - + [testnet] [teszthálózat] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n aktív kapcsolat a Bitcoin-hálózattal%n aktív kapcsolat a Bitcoin-hálózattal + + %n aktív kapcsolat a Bitcoin-hálózattal + - + Downloaded %1 of %2 blocks of transaction history. %1 blokk letöltve a tranzakciótörténet %2 blokkjából. - + Downloaded %1 blocks of transaction history. %1 blokk letöltve a tranzakciótörténetből. - + %n second(s) ago - %n másodperccel ezelőtt%n másodperccel ezelőtt + + %n másodperccel ezelőtt + - + %n minute(s) ago - %n perccel ezelőtt%n perccel ezelőtt + + %n perccel ezelőtt + - + %n hour(s) ago - %n órával ezelőtt%n órával ezelőtt + + %n órával ezelőtt + - + %n day(s) ago - %n nappal ezelőtt%n nappal ezelőtt + + %n nappal ezelőtt + - + Up to date Naprakész - + Catching up... Frissítés... - + Last received block was generated %1. Az utolsóként kapott blokk generálva: %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? Ez a tranzakció túllépi a mérethatárt, de %1 tranzakciós díj ellenében így is elküldheted. Ezt a plusz összeget a tranzakcióidat feldolgozó csomópontok kapják, így magát a hálózatot támogatod vele. Hajlandó vagy megfizetni a díjat? - + Sending... Küldés... - + Sent transaction Tranzakció elküldve. - + Incoming transaction Beérkező tranzakció - + Date: %1 Amount: %2 Type: %3 @@ -503,15 +533,20 @@ Cím: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Tárca <b>kódolva</b> és jelenleg <b>nyitva</b>. - + Wallet is <b>encrypted</b> and currently <b>locked</b> Tárca <b>kódolva</b> és jelenleg <b>zárva</b>. + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -527,8 +562,13 @@ Cím: %4 - Display addresses in transaction list - Címek megjelenítése a tranzakciólistában + &Display addresses in transaction list + &Címek megjelenítése a tranzakciólistában + + + + Whether to show Bitcoin addresses in the transaction list + @@ -579,22 +619,22 @@ Cím: %4 Küldő cím szerkesztése - + The entered address "%1" is already in the address book. A megadott "%1" cím már szerepel a címjegyzékben. - + The entered address "%1" is not a valid bitcoin address. A megadott "%1" cím nem egy érvényes Bitcoin-cím. - + Could not unlock wallet. Tárca feloldása sikertelen - + New key generation failed. Új kulcs generálása sikertelen @@ -673,7 +713,7 @@ Cím: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Opcionális, kB-onkénti tranzakciós díj a tranzakcióid minél gyorsabb feldolgozásának elősegítésére. A legtöbb tranzakció 1 kB-os. 0,01 BTC ajánlott. @@ -683,7 +723,7 @@ Cím: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Opcionális, kB-onkénti tranzakciós díj a tranzakcióid minél gyorsabb feldolgozásának elősegítésére. A legtöbb tranzakció 1 kB-os. 0,01 BTC ajánlott. @@ -743,20 +783,12 @@ Cím: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + - + <b>Recent transactions</b> <b>Legutóbbi tranzakciók</b> @@ -780,13 +812,13 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins Érmék küldése @@ -801,82 +833,87 @@ p, li { white-space: pre-wrap; } &Címzett hozzáadása ... - + Clear all Mindent töröl - + + Remove all transaction fields + + + + Balance: Egyenleg: - + 123.456 BTC 123.456 BTC - + Confirm the send action Küldés megerősítése - + &Send &Küldés - + <b>%1</b> to %2 (%3) <b>%1</b> %2-re (%3) - + Confirm send coins Küldés megerősítése - + Are you sure you want to send %1? Valóban el akarsz küldeni %1-t? - + and és - + The recepient 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. - + Amount exceeds your balance Nincs ennyi bitcoin az egyenlegeden. - + 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 in one send operation 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 Hiba: nem sikerült létrehozni a tranzakciót - + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból - például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. @@ -1098,54 +1135,58 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Dátum - + Type Típus - + Address Cím - + Amount Összeg - + Open for %n block(s) - %n blokkra megnyitva%n blokkra megnyitva + + %n blokkra megnyitva + - + Open until %1 %1-ig megnyitva - + Offline (%1 confirmations) Offline (%1 megerősítés) - + Unconfirmed (%1 of %2 confirmations) Megerősítetlen (%1 %2 megerősítésből) - + Confirmed (%1 confirmations) Megerősítve (%1 megerősítés) Mined balance will be available in %n more blocks - %n blokk múlva lesz elérhető a bányászott egyenleg.%n blokk múlva lesz elérhető a bányászott egyenleg. + + %n blokk múlva lesz elérhető a bányászott egyenleg. + @@ -1164,56 +1205,51 @@ p, li { white-space: pre-wrap; } - Received from IP - Erről az IP-címről + Received from + Erről az - + Sent to Erre a címre - - Sent to IP - Erre az IP-címre: - - - + Payment to yourself Magadnak kifizetve - + Mined Kibányászva - + (n/a) (nincs) - + Transaction status. Hover over this field to show number of confirmations. Tranzakció állapota. Húzd ide a kurzort, hogy lásd a megerősítések számát. - + Date and time that the transaction was received. Tranzakció fogadásának dátuma és időpontja. - + Type of transaction. Tranzakció típusa. - + Destination address of transaction. A tranzakció címzettjének címe. - + Amount removed from or added to balance. Az egyenleghez jóváírt vagy ráterhelt összeg. @@ -1312,67 +1348,67 @@ p, li { white-space: pre-wrap; } Részletek... - + Export Transaction Data Tranzakció adatainak exportálása - + 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 lépett fel exportálás közben - + Could not write to file %1. %1 fájlba való kiírás sikertelen. - + Range: Tartomány: - + to meddig @@ -1388,220 +1424,220 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoin verzió - + Usage: Használat: - + Send command to -server or bitcoind Parancs küldése a -serverhez vagy a bitcoindhez - + List commands Parancsok kilistázása - + Get help for a command Segítség egy parancsról - + Options: Opciók - + Specify configuration file (default: bitcoin.conf) Konfigurációs fájl (alapértelmezett: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) pid-fájl (alapértelmezett: bitcoind.pid) - + Generate coins Érmék generálása - - Don't generate coins + + Don't generate coins Bitcoin-generálás leállítása - + Start minimized Indítás lekicsinyítve - + Specify data directory Adatkönyvtár - + Specify connection timeout (in milliseconds) Csatlakozás időkerete (milliszekundumban) - + Connect through socks4 proxy Csatlakozás SOCKS4 proxyn keresztül - + Allow DNS lookups for addnode and connect DNS-kikeresés engedélyezése az addnode-nál és a connect-nél - + Add a node to connect to Elérendő csomópont megadása - + Connect only to the specified node Csatlakozás csak a megadott csomóponthoz - - Don't accept connections from outside + + Don't accept connections from outside Külső csatlakozások elutasítása - - Don't attempt to use UPnP to map the listening port + + Don't attempt to use UPnP to map the listening port UPnP-használat letiltása a figyelő port feltérképezésénél - + Attempt to use UPnP to map the listening port UPnP-használat engedélyezése a figyelő port feltérképezésénél - + Fee per kB to add to transactions you send kB-onként felajánlandó díj az általad küldött tranzakciókhoz - + Accept command line and JSON-RPC commands Parancssoros és JSON-RPC parancsok elfogadása - + Run in the background as a daemon and accept commands Háttérben futtatás daemonként és parancsok elfogadása - + Use the test network Teszthálózat használata - + Username for JSON-RPC connections Felhasználói név JSON-RPC csatlakozásokhoz - + Password for JSON-RPC connections Jelszó JSON-RPC csatlakozásokhoz - + Listen for JSON-RPC connections on <port> (default: 8332) JSON-RPC csatlakozásokhoz figyelendő <port> (alapértelmezett: 8332) - + Allow JSON-RPC connections from specified IP address JSON-RPC csatlakozások engedélyezése meghatározott IP-címről - + Send commands to node running on <ip> (default: 127.0.0.1) Parancsok küldése <ip> címen működő csomóponthoz (alapértelmezett: 127.0.0.1) - + Set key pool size to <n> (default: 100) Kulcskarika mérete <n> (alapértelmezett: 100) - + Rescan the block chain for missing wallet transactions Blokklánc újraszkennelése hiányzó tárca-tranzakciók után - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1610,721 +1646,154 @@ SSL-opciók: (lásd a Bitcoin Wiki SSL-beállítási instrukcióit) - + Use OpenSSL (https) for JSON-RPC connections OpenSSL (https) használata JSON-RPC csatalkozásokhoz - + Server certificate file (default: server.cert) Szervertanúsítvány-fájl (alapértelmezett: server.cert) - + Server private key (default: server.pem) Szerver titkos kulcsa (alapértelmezett: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Elfogadható rejtjelkulcsok (alapértelmezett: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH ) - + This help message Ez a súgó-üzenet - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Az %s adatkönyvtár nem zárható. A Bitcoin valószínűleg fut már. - + Loading addresses... Címek betöltése... - + Error loading addr.dat Hiba az addr.dat betöltése közben - + Loading block index... Blokkindex betöltése... - + Error loading blkindex.dat Hiba a blkindex.dat betöltése közben - + Loading wallet... Tárca 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 Bitcoin Hiba a wallet.dat betöltése közben: ehhez a tárcához újabb verziójú Bitcoin-kliens szükséges - + Error loading wallet.dat Hiba a wallet.dat betöltése közben - + Rescanning... Újraszkennelés... - + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Done loading Betöltés befejezve. - + Invalid -proxy address Érvénytelen -proxy cím - + Invalid amount for -paytxfee=<amount> Étvénytelen -paytxfee=<összeg> összeg - + 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. - + Error: CreateThread(StartNode) failed Hiba: CreateThread(StartNode) sikertelen - + Warning: Disk space is low Figyelem: kevés a hely a lemezen. - + Unable to bind to port %d on this computer. Bitcoin is probably already running. A %d port nem elérhető ezen a gépen. A Bitcoin valószínűleg fut már. - - - This transaction is over the size limit. You can still send it for a fee of %s, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Ez a tranzakció túllépi a mérethatárt, de %s tranzakciós díj ellenében így is elküldheted. Ezt a plusz összeget a tranzakcióidat feldolgozó csomópontok kapják, így magát a hálózatot támogatod vele. Hajlandó vagy megfizetni a díjat? - - - - Enter the current passphrase to the wallet. - Add meg a tárca jelenlegi jelszavát. - - - - Passphrase - Jelszó: - - - - Please supply the current wallet decryption passphrase. - Add meg a tárca jelenlegi dekódoló jelszavát. - - - - The passphrase entered for the wallet decryption was incorrect. - A megadott tárca-dekódoló jelszó helytelen. - - - - Status - Állapot - - Date - Dátum - - - - Description - Leírás - - - - Debit - Terhelés - - - - Credit - Jóváírás - - - - Open for %d blocks - %d blokkra megnyitva - - - - Open until %s - %s-ig megnyitva - - - - %d/offline? - %d/offline? - - - - %d/unconfirmed - %d/megerősítetlen - - - - %d confirmations - %d megerősítés - - - - Generated - Legenerálva - - - - Generated (%s matures in %d more blocks) - Legenerálva (%s érett %d blokkból) - - - - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - Legenerálva - Figyelem: Ezt a blokkot egyetlen másik csomópont sem kapta meg, így valószínűleg nem lesz elfogadva! - - - - Generated (not accepted) - Legenerálva (elutasítva) - - - - From: - Küldő: - - - - Received with: - Erre a címre: - - - - Payment to yourself - Magadnak kifizetve - - - - To: - Címzett: - - - - Generating - Generálás - - - - (not connected) - (nincs kapcsolat) - - - - %d connections %d blocks %d transactions - %d kapcsolat %d blokk %d tranzakció - - - - Wallet already encrypted. - A tárca már kódolt. - - - - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - Add meg a tárca új jelszavát. -Használj 10 vagy több véletlenszerű karaktert, vagy nyolc vagy több szót. - - - - Error: The supplied passphrase was too short. - Hiba: a megadott jelszó túl rövid. - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - FIGYELEM: Ha lekódolod a tárcátm és elveszíted a jelszavad, úgy AZ ÖSSZES BITCOINODAT IS EL FOGOD VESZÍTENI! -Valóban szeretnéd lekódolni a tárcádat? - - - - Please re-enter your new wallet passphrase. - Add meg az új jelszavadat a tárcádhoz. - - - - Error: the supplied passphrases didn't match. - Hiba: a megadott jelszavak nem egyeznek. - - - - Wallet encryption failed. - Tárcakódolás sikertelen. - - - - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Tárca lekódolva. -Ne feledd, hogy a gépedet megfertőző ártalmas programokkal szemben a tárcakódolás sem nyújt teljes védelmet. - - - - Wallet is unencrypted, please encrypt it first. - A tárca még nincs lekódolva. Előbb kódold le. - - - - Enter the new passphrase for the wallet. - Add meg a tárca új jelszavát. - - - - Re-enter the new passphrase for the wallet. - Add meg újra a tárca jelszavát. - - - - Wallet Passphrase Changed. - Tárca jelszava megváltoztatva. - - - - New Receiving Address - Új fogadó cím. - - - - You should use a new address for each payment you receive. - -Label - Érdemes minden fizetést új címmel fogadnod. - -Címke - - - - <b>Status:</b> - <b>Állapot</b> - - - - , has not been successfully broadcast yet - , még nem sikerült elküldeni. - - - - , broadcast through %d node - , elküldve %d csomóponton keresztül - - - - , broadcast through %d nodes - , elküldve %d csomóponton keresztül - - - - <b>Date:</b> - <b>Dátum:</b> - - - - <b>Source:</b> Generated<br> - <b>Forrás:</b> Legenerálva<br> - - - - <b>From:</b> - <b>Küldő:</b> - - - - unknown - ismeretlen - - - - <b>To:</b> - <b>Címzett:</b> - - - - (yours, label: - (tiéd, címke: - - - - (yours) - (tiéd) - - - - <b>Credit:</b> - <b>Jóváírás:</b> - - - - (%s matures in %d more blocks) - (%s, %d blokk múlva készül el) - - - - (not accepted) - (elutasítva) - - - - <b>Debit:</b> - <b>Terhelés:</b> - - - - <b>Transaction fee:</b> - <b>Tranzakciós díj:</b> - - - - <b>Net amount:</b> - <b>Nettó összeg:</b> - - - - Message: - Üzenet: - - - - Comment: - Megjegyzés: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - A frissen generált érméket csak 120 blokkal később tudod elkölteni. Ez a blokk nyomban szétküldésre került a hálózatba, amint legeneráltad, hogy hozzáadhassák a blokklánchoz. Ha nem kerül be a láncba, úgy az állapota "elutasítva"-ra módosul, és nem költheted el az érméket. Ez akkor következhet be időnként, ha egy másik csomópont mindössze néhány másodperc különbséggel generált le egy blokkot a tiédhez képest. - - - - Cannot write autostart/bitcoin.desktop file - Az autostart/bitcoin.desktop fájl nem írható. - - - - Main - - - - - &Start Bitcoin on window system startup - A Bitcoin &indítása a rendszer indulásakor - - - - &Minimize on close - &Kicsinyítés záráskor - - - - version %s - %s verzió - - - - Error in amount - Hiba az összegben - - - - Send Coins - Érmék küldése - - - - Amount exceeds your balance - Nincs ennyi bitcoinod. - - - - Total exceeds your balance when the - Az összeg és a tranzakciós díj együtt - - - - transaction fee is included - meghaladja az egyenlegedet. - - - - Payment sent - Elküldve. - - - - Sending... - Küldés... - - - - Invalid address - Érvénytelen cím - - - - Sending %s to %s - %s küldése ide: %s - - - - CANCELLED - MEGSZAKÍTVA - - - - Cancelled - Megszakítva - - - - Transfer cancelled - Átutalás megszakítva - - - - Error: - Hiba: - - - - Insufficient funds - Nincs elég bitcoinod. - - - - Connecting... - Csatlakozás... - - - - Unable to connect - Csatlakozás sikertelen. - - - - Requesting public key... - Nyilvános kulcs kérése... - - - - Received public key... - Nyilvános kulcs fogadva... - - - - Recipient is not accepting transactions sent by IP address - A címzett nem fogad IP-címre küldött tranzakciókat. - - - - Transfer was not accepted - Az átutalást elutasították. - - - - Invalid response received - Érvénytelen válasz - - - - Creating transaction... - Tranzakció létrehozása... - - - - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - Ehhez a tranzakcióhoz legalább %s díj szükséges az összege, az összetettsége vagy frissen kapott bitcoinok használata miatt. - - - - Transaction creation failed - Tranzakció létrehozása sikertelen. - - - - Transaction aborted - Tranzakció megszakítva. - - - - Lost connection, transaction cancelled - Megszakadt a kapcsolat, tranzakció megszakítva. - - - - Sending payment... - Küldés... - - - - The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - A tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból - például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. - - - - Waiting for confirmation... - Várakozás megerősítésre... - - - - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - A bitcoinok el lettek küldve, de a címzett nem tudta ellenőrizni. -A tranzakció feljegyzésre került és jóvá lesz írva a címzettnek, -de a megjegyzés-információ üres lesz. - - - - Payment was sent, but an invalid response was received - A bitcoinok el lettek küldve, de érvénytelen válasz érkezett a küldésre. - - - - Payment completed - Sikeresen elküldve. - - - - Name - Név - - - - Address - Cím - - - - Label - Címke - - - - Bitcoin Address - Bitcoin-cím - - - - This is one of your own addresses for receiving payments and cannot be entered in the address book. - Ez az egyik saját fogadó címed, ezért nem jegyezhető be a címtárba. - - - - Edit Address - Cím szerkesztése - - - - Edit Address Label - Cím címkéjének szerkesztése - - - - Add Address - Cím hozzáadása - - - - Bitcoin - Bitcoin - - - - Bitcoin - Generating - Bitcoin - generálás - - - - Bitcoin - (not connected) - Bitcoin - (nincs kapcsolat) - - - - &Open Bitcoin - Bitcoin megnyitása - - - - &Send Bitcoins - Küldés - - - - O&ptions... - O&pciók... - - - - E&xit - &Kilépés - - - - Program has crashed and will terminate. - A program összeomlott és kikapcsol. - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Figyelem: Ellenőrizd, hogy helyesen van-e beállítva a gépeden a dátum és az idő. A Bitcoin nem fog megfelelően működni, ha rosszul van beállítvaaz órád. - + beta béta @@ -2332,9 +1801,9 @@ de a megjegyzés-információ üres lesz. main - - Bitcoin Qt - Bitcoin Qt + + Bitcoin-Qt + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts index 02d0baa120..b163f35865 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -14,20 +16,20 @@ - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers Questo è un software sperimentale. -Distribuito sotto la licenza software MIT/X11, guarda il file license.txt incluso oppure su http://www.opensource.org/licenses/mit-license.php. +Distribuito sotto la licenza software MIT/X11, vedi il file license.txt incluso oppure su http://www.opensource.org/licenses/mit-license.php. -Questo prodotto include software sviluppato dal progetto OpenSSL per l&apos;uso del Toolkit OpenSSL (http://www.openssl.org/), software crittografico scritto da Eric Young (eay@cryptsoft.com) e software UPnP scritto da Thomas Bernard. +Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso del Toolkit OpenSSL (http://www.openssl.org/), software crittografico scritto da Eric Young (eay@cryptsoft.com) e software UPnP scritto da Thomas Bernard. @@ -78,22 +80,22 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l&apos; &Cancella - + Export Address Book Data Esporta gli indirizzi della rubrica - + Comma separated file (*.csv) Testo CSV (*.csv) - + Error exporting Errore nell'esportazione - + Could not write to file %1. Impossibile scrivere sul file %1. @@ -101,17 +103,17 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l&apos; AddressTableModel - + Label Etichetta - + Address Indirizzo - + (no label) (nessuna etichetta) @@ -125,125 +127,132 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l&apos; + TextLabel Etichetta - + Enter passphrase Inserisci la passphrase - + New passphrase Nuova passphrase - + Repeat new passphrase Ripeti la passphrase - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Inserisci la passphrase per il portamonete.<br/>Per piacere usare unapassphrase di <b>10 o più caratteri casuali</b>, o <b>otto o più parole</b>. - + Encrypt wallet Cifra il portamonete - + This operation needs your wallet passphrase to unlock the wallet. Quest'operazione necessita della passphrase per sbloccare il portamonete. - + Unlock wallet Sblocca il portamonete - + This operation needs your wallet passphrase to decrypt the wallet. Quest'operazione necessita della passphrase per decifrare il portamonete, - + Decrypt wallet Decifra il portamonete - + Change passphrase Cambia la passphrase - + Enter the old and new passphrase to the wallet. Inserisci la vecchia e la nuova passphrase per il portamonete. - + Confirm wallet encryption Conferma la cifratura del portamonete - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? - ATTENZIONE: se si cifra il portamonete e si perde la frase d'ordine, <b>SI PERDERANNO TUTTI I PROPRI BITCOIN</b>! + ATTENZIONE: se si cifra il portamonete e si perde la frase d'ordine, <b>SI PERDERANNO TUTTI I PROPRI BITCOIN</b>! Si è sicuri di voler cifrare il portamonete? - - + + Wallet encrypted Portamonete cifrato - - Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Ricorda che la cifratura del portamonete non protegge del tutto i tuoi bitcoin dal furto da parte di malware che infettasse il tuo computer. + + + Warning: The Caps Lock key is on. + Attenzione: tasto Blocco maiuscole attivo. - - - - + + + + Wallet encryption failed Cifratura del portamonete fallita - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Cifratura del portamonete fallita a causa di un errore interno. Il portamonete non è stato cifrato. - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin verrà ora chiuso per finire il processo di crittazione. Ricorda che criptare il tuo portamonete non può fornire una protezione totale contro furti causati da malware che dovessero infettare il tuo computer. + + + + The supplied passphrases do not match. Le passphrase inserite non corrispondono. - + Wallet unlock failed Sblocco del portamonete fallito - - + + The passphrase entered for the wallet decryption was incorrect. La passphrase inserita per la decifrazione del portamonete è errata. - + Wallet decryption failed Decifrazione del portamonete fallita - + Wallet passphrase was succesfully changed. Passphrase del portamonete modificata con successo. @@ -251,247 +260,273 @@ Si è sicuri di voler cifrare il portamonete? BitcoinGUI - + Bitcoin Wallet Portamonete di bitcoin - + + Synchronizing with network... Sto sincronizzando con la rete... - + Block chain synchronization in progress sincronizzazione della catena di blocchi in corso - + &Overview &Sintesi - + Show general overview of wallet Mostra lo stato generale del portamonete - + &Transactions &Transazioni - + Browse transaction history Cerca nelle transazioni - + &Address Book &Rubrica - + Edit the list of stored addresses and labels Modifica la lista degli indirizzi salvati e delle etichette - + &Receive coins &Ricevi monete - + Show the list of addresses for receiving payments Mostra la lista di indirizzi su cui ricevere pagamenti - + &Send coins &Invia monete - + Send coins to a bitcoin address Invia monete ad un indirizzo bitcoin - + E&xit &Esci - + Quit application Chiudi applicazione - + &About %1 &Informazioni su %1 - + Show information about Bitcoin Mostra informazioni su Bitcoin - + &Options... &Opzioni... - + Modify configuration options for bitcoin Modifica configurazione opzioni per bitcoin - + Open &Bitcoin Apri &Bitcoin - + Show the Bitcoin window Mostra la finestra Bitcoin - + &Export... &Esporta... - + Export the current view to a file Esporta la visualizzazione corrente su file - + &Encrypt Wallet &Cifra il portamonete - + Encrypt or decrypt wallet Cifra o decifra il portamonete - + &Change Passphrase &Cambia la passphrase - + Change the passphrase used for wallet encryption Cambia la passphrase per la cifratura del portamonete - + + About &Qt + Informazioni su &Qt + + + + Show information about Qt + Mostra informazioni su Qt + + + &File &File - + &Settings &Impostazioni - + &Help &Aiuto - + Tabs toolbar Barra degli strumenti "Tabs" - + Actions toolbar Barra degli strumenti "Azioni" - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n connessione attiva alla rete Bitcoin%n connessioni attive alla rete Bitcoin + + %n connessione attiva alla rete Bitcoin + %n connessioni attive alla rete Bitcoin + - + Downloaded %1 of %2 blocks of transaction history. Scaricati %1 dei %2 blocchi dello storico transazioni. - + Downloaded %1 blocks of transaction history. Scaricati %1 blocchi dello storico transazioni. - + %n second(s) ago - %n secondo fa%n secondi fa + + %n secondo fa + %n secondi fa + - + %n minute(s) ago - %n minuto fa%n minuti fa + + %n minuto fa + %n minuti fa + - + %n hour(s) ago - %n ora fa%n ore fa + + %n ora fa + %n ore fa + - + %n day(s) ago - %n giorno fa%n giorni fa + + %n giorno fa + %n giorni fa + - + Up to date Aggiornato - + Catching up... In aggiornamento... - + Last received block was generated %1. L'ultimo blocco ricevuto è stato generato %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? Questa transazione è superiore al limite di dimensione. È comunque possibile inviarla con una commissione di %1, che va ai nodi che processano la tua transazione e contribuisce a sostenere la rete. Vuoi pagare la commissione? - + Sending... Invio... - + Sent transaction Transazione inviata - + Incoming transaction Transazione ricevuta - + Date: %1 Amount: %2 Type: %3 @@ -505,15 +540,20 @@ 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> + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -529,8 +569,13 @@ Indirizzo: %4 - Display addresses in transaction list - Mostra gli indirizzi nella lista delle transazioni + &Display addresses in transaction list + &Mostra gli indirizzi nella lista delle transazioni + + + + Whether to show Bitcoin addresses in the transaction list + @@ -581,22 +626,22 @@ Indirizzo: %4 Modifica indirizzo d'invio - + The entered address "%1" is already in the address book. L'indirizzo inserito "%1" è già in rubrica. - + The entered address "%1" is not a valid bitcoin address. L'indirizzo inserito "%1" non è un indirizzo bitcoin valido. - + Could not unlock wallet. Impossibile sbloccare il portamonete. - + New key generation failed. Generazione della nuova chiave non riuscita. @@ -675,8 +720,8 @@ Indirizzo: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Commissione di transazione per ogni kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. La maggior parte delle transazioni è 1kB. Commissione raccomandata 0,01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. @@ -685,8 +730,8 @@ Indirizzo: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Commissione di transazione per ogni kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. La maggior parte delle transazioni è 1kB. Commissione raccomandata 0,01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. @@ -745,20 +790,12 @@ Indirizzo: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;">⏎ -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + - + <b>Recent transactions</b> <b>Transazioni recenti</b> @@ -782,13 +819,13 @@ p, li { white-space: pre-wrap; }⏎ SendCoinsDialog - - - - - - - + + + + + + + Send Coins Spedisci Bitcoin @@ -803,82 +840,87 @@ p, li { white-space: pre-wrap; }⏎ &Aggiungi beneficiario... - + Clear all Cancella tutto - + + Remove all transaction fields + Rimuovi tutti i campi della transazione + + + Balance: Saldo: - + 123.456 BTC 123,456 BTC - + Confirm the send action Conferma la spedizione - + &Send &Spedisci - + <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) - + Confirm send coins Conferma la spedizione di bitcoin - + Are you sure you want to send %1? Si è sicuri di voler spedire %1? - + and e - + The recepient 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. - + Amount exceeds your balance L'importo è superiore al saldo attuale - + 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 in one send operation Trovato un indirizzo doppio, si può spedire solo una volta a ciascun indirizzo in una singola operazione. - + Error: Transaction creation failed Errore: creazione della transazione fallita - + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Errore: la transazione è stata rifiutata. Ciò accade se alcuni bitcoin nel portamonete sono stati già spesi, ad esempio se è stata usata una copia del file wallet.dat e i bitcoin sono stati spesi dalla copia ma non segnati come spesi qui. @@ -1099,54 +1141,60 @@ p, li { white-space: pre-wrap; }⏎ TransactionTableModel - + Date Data - + Type Tipo - + Address Indirizzo - + Amount Importo - + Open for %n block(s) - Aperto per %n bloccoAperto per %n blocchi + + Aperto per %n blocco + Aperto per %n blocchi + - + Open until %1 Aperto fino a %1 - + Offline (%1 confirmations) Offline (%1 conferme) - + Unconfirmed (%1 of %2 confirmations) Non confermati (%1 su %2 conferme) - + Confirmed (%1 confirmations) Confermato (%1 conferme) Mined balance will be available in %n more blocks - Il saldo generato sarà disponibile tra %n altro bloccoIl saldo generato sarà disponibile tra %n altri blocchi + + Il saldo generato sarà disponibile tra %n altro blocco + Il saldo generato sarà disponibile tra %n altri blocchi + @@ -1165,56 +1213,51 @@ p, li { white-space: pre-wrap; }⏎ - Received from IP - Ricevuto da IP + Received from + Ricevuto da - + Sent to Spedito a - - Sent to IP - Inviato a IP - - - + Payment to yourself Pagamento a te stesso - + Mined Ottenuto dal mining - + (n/a) (N / a) - + Transaction status. Hover over this field to show number of confirmations. Stato della transazione. Passare con il mouse su questo campo per vedere il numero di conferme. - + 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. @@ -1313,67 +1356,67 @@ p, li { white-space: pre-wrap; }⏎ Mostra i dettagli... - + Export Transaction Data Esporta i dati della transazione - + Comma separated file (*.csv) Testo CSV (*.csv) - + Confirmed Confermato - + Date Data - + Type Tipo - + Label Etichetta - + Address Indirizzo - + Amount Importo - + ID ID - + Error exporting Errore nell'esportazione - + Could not write to file %1. Impossibile scrivere sul file %1. - + Range: Intervallo: - + to a @@ -1389,220 +1432,220 @@ p, li { white-space: pre-wrap; }⏎ bitcoin-core - + Bitcoin version Versione di Bitcoin - + Usage: Utilizzo: - + Send command to -server or bitcoind Manda il comando a -server o bitcoind - + List commands Lista comandi - + Get help for a command Aiuto su un comando - + Options: Opzioni: - + Specify configuration file (default: bitcoin.conf) Specifica il file di configurazione (di default: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Specifica il file pid (default: bitcoind.pid) - + Generate coins Genera Bitcoin - - Don't generate coins + + Don't generate coins Non generare Bitcoin - + Start minimized Parti in icona - + Specify data directory Specifica la cartella dati - + Specify connection timeout (in milliseconds) Specifica il timeout di connessione (in millisecondi) - + Connect through socks4 proxy Connessione tramite socks4 proxy - + Allow DNS lookups for addnode and connect Consenti ricerche DNS per aggiungere nodi e collegare - + Add a node to connect to Aggiungi un nodo e connetti a - + Connect only to the specified node Connetti solo al nodo specificato - - Don't accept connections from outside + + Don't accept connections from outside - Non accettare connessioni dall'esterno + Non accettare connessioni dall'esterno - - Don't attempt to use UPnP to map the listening port + + Don't attempt to use UPnP to map the listening port - Non usare l'UPnP per mappare la porta + Non usare l'UPnP per mappare la porta - + Attempt to use UPnP to map the listening port - Prova ad usare l'UPnp per mappare la porta + Prova ad usare l'UPnp per mappare la porta - + Fee per kB to add to transactions you send Commissione al kB da aggiungere alle transazioni in uscita - + 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 - + 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: 8332) Attendi le connessioni JSON-RPC su <porta> (default: 8332) - + 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> (default: 127.0.0.1) - + Set key pool size to <n> (default: 100) Impostare la quantità di chiavi di riserva a <n> (default: 100) - + Rescan the block chain for missing wallet transactions Ripeti analisi della catena dei blocchi per cercare le transazioni mancanti dal portamonete - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1611,720 +1654,154 @@ Opzioni SSL: (vedi il wiki di Bitcoin per le istruzioni di configurazione SSL) - + Use OpenSSL (https) for JSON-RPC connections Utilizzare OpenSSL (https) per le connessioni JSON-RPC - + Server certificate file (default: server.cert) File certificato del server (default: server.cert) - + Server private key (default: server.pem) Chiave privata del server (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Cifrari accettabili (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Questo messaggio di aiuto - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Non è possibile ottenere i dati sulla directory %s. Probabilmente Bitcoin è già in esecuzione. - + Loading addresses... Caricamento indirizzi... - + Error loading addr.dat Errore nel caricamento di addr.dat - + Loading block index... Caricamento dell'indice del blocco... - + Error loading blkindex.dat Errore nel caricamento di blkindex.dat - + Loading wallet... Caricamento portamonete... - + Error loading wallet.dat: Wallet corrupted Errore nel caricamento di wallet.dat: il portamonete è danneggiato - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Errore nel caricamento di wallet.dat: il portamonete richiede una versione più recente di Bitcoin - + Error loading wallet.dat Errore nel caricamento di wallet.dat - + Rescanning... Ripetere la scansione... - + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Done loading Caricamento completato - + Invalid -proxy address Indirizzo -proxy non valido - + Invalid amount for -paytxfee=<amount> Importo non valido per -paytxfee=<amount> - + 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. - + Error: CreateThread(StartNode) failed Errore: CreateThread(StartNode) non riuscito - + Warning: Disk space is low Attenzione: lo spazio su disco è scarso - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Impossibile collegarsi alla porta %d su questo computer. Probabilmente Bitcoin è già in esecuzione. - - - This transaction is over the size limit. You can still send it for a fee of %s, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - La dimensione della transazione è fuori limite. Puoi ancora spedirla con una commissione di %s, che andrà ai nodi che processano la tua transazione e aiuterà a supportare il network. Vuoi pagare la commissione? - - - - Enter the current passphrase to the wallet. - Inserisci la frase d'ordine attuale per il portamonete. - - - - Passphrase - Passphrase - - - - Please supply the current wallet decryption passphrase. - Si prega di fornire la passphrase per la decifrazione del portamonete attuale. - - - - The passphrase entered for the wallet decryption was incorrect. - La passphrase inserita per la decifrazione del portamonete è errata. - - - - Status - Stato - - Date - Data - - - - Description - Descrizione - - - - Debit - Debito - - - - Credit - Credito - - - - Open for %d blocks - Aperto per %d blocchi - - - - Open until %s - Aperto fino a %s - - - - %d/offline? - %d/offline? - - - - %d/unconfirmed - %d/non confermati - - - - %d confirmations - %d conferme - - - - Generated - Generato - - - - Generated (%s matures in %d more blocks) - Generato (%s matura in altri %d blocchi) - - - - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - Generato - Attenzione: questo blocco non è stato ricevuto da altri nodi e probabilmente non sarà accettato! - - - - Generated (not accepted) - Generato (non accettato) - - - - From: - Da: - - - - Received with: - Ricevuto su: - - - - Payment to yourself - Pagamento a te stesso - - - - To: - Per: - - - - Generating - Generazione - - - - (not connected) - (non collegato) - - - - %d connections %d blocks %d transactions - %d connessioni %d blocchi %d transazioni - - - - Wallet already encrypted. - Portamonete già codificato. - - - - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - Inserisci una nuova passphrase per il portamonete. -Si prega di utilizzare una frase di 10 o più caratteri casuali, o di almeno otto parole. - - - - Error: The supplied passphrase was too short. - Errore: la passphrase è troppo breve. - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - ATTENZIONE: se si cifra il portamonete e si perde la propria passphrase, si perdono tutti i BITCOIN! Sei sicuro di voler cifrare il portamonete? - - - - Please re-enter your new wallet passphrase. - Si prega di inserire ancora la nuova passphrase per il portamonete. - - - - Error: the supplied passphrases didn't match. - Errore: le passphrase fornite non coincidono. - - - - Wallet encryption failed. - Cifratura del portamonete fallita. - - - - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Portamonete cifrato. -Ricorda che cifrare il portamonete non protegge completamente i bitcoin dal furto ad opera di malware che infettassero il computer. - - - - Wallet is unencrypted, please encrypt it first. - Il portamonete non è cifrato, per piacere prima cifralo. - - - - Enter the new passphrase for the wallet. - Inserisci la nuova passphrase per il portamonete. - - - - Re-enter the new passphrase for the wallet. - Inserisci ancora la nuova passphrase per il portamonete. - - - - Wallet Passphrase Changed. - Passphrase del portamonete cambiata. - - - - New Receiving Address - Nuovo indirizzo di ricezione - - - - You should use a new address for each payment you receive. - -Label - Si dovrebbe usare un nuovo indirizzo per ciascun pagamento che si riceve. - -Etichetta - - - - <b>Status:</b> - <b>Stato:</b> - - - - , has not been successfully broadcast yet - , non è stato ancora trasmesso con successo - - - - , broadcast through %d node - , trasmesso attraverso %d nodo - - - - , broadcast through %d nodes - , trasmesso attraverso %d nodi - - - - <b>Date:</b> - <b>Data:</b> - - - - <b>Source:</b> Generated<br> - <b>Fonte:</b> Generato<br> - - - - <b>From:</b> - <b>Da:</b> - - - - unknown - sconosciuto - - - - <b>To:</b> - <b>Per:</b> - - - - (yours, label: - (vostro, etichetta: - - - - (yours) - ( vostro) - - - - <b>Credit:</b> - <b>Credito:</b> - - - - (%s matures in %d more blocks) - (%s matura in altri %d blocchi) - - - - (not accepted) - (non accettata) - - - - <b>Debit:</b> - <b>Debito:</b> - - - - <b>Transaction fee:</b> - <b>Commissione:</b> - - - - <b>Net amount:</b> - <b>Importo netto:</b> - - - - Message: - Messaggio: - - - - Comment: - Commento: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Bisogna aspettare 120 blocchi prima di spendere i bitcoin generati. Quando hai generato questo blocco, è stato trasmesso al network per aggiungerlo alla catena dei blocchi. Se non entra nella catena, sarà modificato in "non accettato" e non risulterà spendibile. Questo potrebbe accadere a volte, quando un altro nodo genera un blocco entro pochi secondi da quando l'hai generato tu. - - - - Cannot write autostart/bitcoin.desktop file - Impossibile scrivere sul file autostart/bitcoin.desktop - - - - Main - Principale - - - - &Start Bitcoin on window system startup - &Fai partire Bitcoin all'avvio del sistema - - - - &Minimize on close - &Minimizza alla chiusura del programma - - - - version %s - versione %s - - - - Error in amount - Errore nell'importo - - - - Send Coins - Spedisci Bitcoin - - - - Amount exceeds your balance - L'importo supera la tua disponibilità - - - - Total exceeds your balance when the - L'importo supera la tua disponibilità se - - - - transaction fee is included - si include la commissione di transazione - - - - Payment sent - Pagamento inviato - - - - Sending... - Invio... - - - - Invalid address - Indirizzo non valido - - - - Sending %s to %s - Invio di %s a %s - - - - CANCELLED - ANNULLATO - - - - Cancelled - Annullato - - - - Transfer cancelled - Trasferimento annullato - - - - Error: - Errore: - - - - Insufficient funds - Fondi insufficienti - - - - Connecting... - Collegamento... - - - - Unable to connect - Impossibile connettersi - - - - Requesting public key... - Richiesta chiave pubblica... - - - - Received public key... - chiave pubblica ricevuta... - - - - Recipient is not accepting transactions sent by IP address - Il destinatario non accetta transazioni effettuate dall'indirizzo IP - - - - Transfer was not accepted - L'invio non è stato accettato - - - - Invalid response received - Risposta non valida ricevuta - - - - Creating transaction... - Creazione della transazione... - - - - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - Questa operazione richiede una commissione di transazione di almeno %s a causa del suo importo, della complessità, o per l'utilizzo di fondi ricevuti recentemente - - - - Transaction creation failed - Creazione transazione non riuscita - - - - Transaction aborted - Transazione interrotta - - - - Lost connection, transaction cancelled - Persa la connessione, operazione annullata - - - - Sending payment... - Invio del pagamento... - - - - The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - La transazione è stata rifiutata. Ciò può accadere se alcuni dei bitcoin nel tuo portamonete erano stati già spesi, ad esempio se hai usato una copia del wallet.dat e i bitcoin sono stati spesi nella copia ma non nella versione corrente. - - - - Waiting for confirmation... - In attesa di conferma... - - - - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - Il pagamento è stato spedito ma il destinatario non è riuscito a verificarlo. -La transazione è registrata e sarà trasferita al destinatario, -ma le informazioni a commento saranno vuote. - - - - Payment was sent, but an invalid response was received - Il pagamento è stato inviato, ma è stata ricevuta una risposta non valida - - - - Payment completed - Pagamento completato - - - - Name - Nome - - - - Address - Indirizzo - - - - Label - Etichetta - - - - Bitcoin Address - Indirizzo Bitcoin - - - - This is one of your own addresses for receiving payments and cannot be entered in the address book. - Questo è uno dei tuoi indirizzi per ricevere pagamenti e non può essere inserito nella rubrica. - - - - Edit Address - Modifica indirizzo - - - - Edit Address Label - Modifica etichetta indirizzo - - - - Add Address - Aggiungi indirizzo - - - - Bitcoin - Bitcoin - - - - Bitcoin - Generating - Bitcoin - Generazione - - - - Bitcoin - (not connected) - Bitcoin - (non collegato) - - - - &Open Bitcoin - &Apri Bitcoin - - - - &Send Bitcoins - &Invia Bitcoin - - - - O&ptions... - O&pzioni... - - - - E&xit - &Esci - - - - Program has crashed and will terminate. - Il programma è andato in crash e si concluderà. - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Attenzione: si prega di controllare che la data del computer e l'ora siano corrette. Se il vostro orologio è sbagliato Bitcoin non funziona correttamente. - + beta beta @@ -2332,9 +1809,9 @@ ma le informazioni a commento saranno vuote. main - - Bitcoin Qt - Bitcoin Qt + + Bitcoin-Qt + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index aa5dd54817..4b03d18c53 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -14,20 +16,20 @@ - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Utviklerne Dette er eksperimentell programvare. -Distribuert under MIT/X11 programvarelisens. Se den medfølgende filen license.txt eller http://www.opensource.org/licenses/mit-license.php. +Distribuert under MIT/X11 programvarelisensen, se medfølgende fil license.txt eller http://www.opensource.org/licenses/mit-license.php. -Dette produktet inneholder programvare utviklet av OpenSSL Prosjektet for bruk i OpenSSL Toolkit (http://www.openssl.org/) og kryptografisk programvare skrevet av Eric Young (eay@cryptsoft.com) og UPnP programvare skrevet av Thomas Bernard. +Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i OpenSSL Toolkit (http://www.openssl.org/) og kryptografisk programvare skrevet av Eric Young (eay@cryptsoft.com) og UPnP programvare skrevet av Thomas Bernard. @@ -78,22 +80,22 @@ Dette produktet inneholder programvare utviklet av OpenSSL Prosjektet for bruk i &Slett - + Export Address Book Data Eksporter adressebok - + Comma separated file (*.csv) Kommaseparert fil (*.csv) - + Error exporting Feil ved eksportering - + Could not write to file %1. Kunne ikke skrive til filen %1. @@ -101,17 +103,17 @@ Dette produktet inneholder programvare utviklet av OpenSSL Prosjektet for bruk i AddressTableModel - + Label Merkelapp - + Address Adresse - + (no label) (ingen merkelapp) @@ -125,125 +127,132 @@ Dette produktet inneholder programvare utviklet av OpenSSL Prosjektet for bruk i + TextLabel Merkelapp - + Enter passphrase Angi adgangsfrase - + New passphrase Ny adgangsfrase - + Repeat new passphrase Gjenta ny adgangsfrase - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Skriv inn den nye adgangsfrasen for lommeboken.<br/>Vennligst bruk en adgangsfrase med <b>10 eller flere tilfeldige tegn</b>, eller <b>åtte eller flere ord</b>. - + Encrypt wallet Krypter lommebok - + This operation needs your wallet passphrase to unlock the wallet. Denne operasjonen krever adgangsfrasen til lommeboken for å låse den opp. - + Unlock wallet Lås opp lommebok - + This operation needs your wallet passphrase to decrypt the wallet. Denne operasjonen krever adgangsfrasen til lommeboken for å dekryptere den. - + Decrypt wallet Dekrypter lommebok - + Change passphrase Endre adgangsfrase - + Enter the old and new passphrase to the wallet. Skriv inn gammel og ny adgangsfrase for lommeboken. - + Confirm wallet encryption Bekreft kryptering av lommebok - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? ADVARSEL: Hvis du krypterer lommeboken og mister adgangsfrasen vil du <b>MISTE ALLE DINE BITCOINS</b>! Er du sikker på at du vil kryptere lommeboken? - - + + Wallet encrypted Lommebok kryptert - - Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Husk at å kryptere lommeboken ikke vil beskytte dine bitcoins fullstendig fra å bli stjålet av skadevare som infiserer datamaskinen din. + + + Warning: The Caps Lock key is on. + Advarsel: Caps lock tasten er på. - - - - + + + + Wallet encryption failed Kryptering av lommebok feilet - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Kryptering av lommebok feilet på grunn av en intern feil. Din lommebok ble ikke kryptert. - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. + + + + The supplied passphrases do not match. De angitte adgangsfrasene er ulike. - + Wallet unlock failed Opplåsing av lommebok feilet - - + + The passphrase entered for the wallet decryption was incorrect. Adgangsfrasen angitt for dekryptering av lommeboken var feil. - + Wallet decryption failed Dekryptering av lommebok feilet - + Wallet passphrase was succesfully changed. Lommebokens adgangsfrase ble endret. @@ -251,247 +260,273 @@ Er du sikker på at du vil kryptere lommeboken? BitcoinGUI - + Bitcoin Wallet Bitcoin Lommebok - + + Synchronizing with network... Synkroniserer med nettverk... - + Block chain synchronization in progress Synkronisering av blokk-kjede igang - + &Overview &Oversikt - + Show general overview of wallet Vis generell oversikt over lommeboken - + &Transactions &Transaksjoner - + Browse transaction history Vis transaksjonshistorikk - + &Address Book &Adressebok - + Edit the list of stored addresses and labels Rediger listen over adresser og deres merkelapper - + &Receive coins &Motta bitcoins - + Show the list of addresses for receiving payments Vis listen over adresser for mottak av betalinger - + &Send coins &Send bitcoins - + Send coins to a bitcoin address Send bitcoins til en adresse - + E&xit &Avslutt - + Quit application Avslutt applikasjonen - + &About %1 &Om %1 - + Show information about Bitcoin Vis informasjon om Bitcoin - + &Options... &Innstillinger... - + Modify configuration options for bitcoin Endre innstillinger for bitcoin - + Open &Bitcoin Åpne &Bitcoin - + Show the Bitcoin window Vis Bitcoin-vinduet - + &Export... &Eksporter... - + Export the current view to a file Eksporter visningen til en fil - + &Encrypt Wallet &Krypter Lommebok - + Encrypt or decrypt wallet Krypter eller dekrypter lommebok - + &Change Passphrase &Endre Adgangsfrase - + Change the passphrase used for wallet encryption Endre adgangsfrasen brukt for kryptering av lommebok - + + About &Qt + Om &Qt + + + + Show information about Qt + Vis informasjon om Qt + + + &File &Fil - + &Settings &Innstillinger - + &Help &Hjelp - + Tabs toolbar Verktøylinje for faner - + Actions toolbar Verktøylinje for handlinger - + [testnet] [testnett] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n aktiv forbindelse til Bitcoin nettverket%n aktive forbindelser to Bitcoin nettverket + + %n aktiv forbindelse til Bitcoin-nettverket + %n aktive forbindelser til Bitcoin-nettverket + - + Downloaded %1 of %2 blocks of transaction history. Lastet ned %1 av %2 blokker med transaksjonshistorikk. - + Downloaded %1 blocks of transaction history. Lastet ned %1 blokker med transaksjonshistorikk. - + %n second(s) ago - %n sekund igjen%n sekunder igjen + + for %n sekund siden + for %n sekunder siden + - + %n minute(s) ago - %n minutt siden%n minutter siden + + for %n minutt siden + for %n minutter siden + - + %n hour(s) ago - %n time siden%n timer siden + + for %n time siden + for %n timer siden + - + %n day(s) ago - %n dag siden%n dager siden + + for %n dag siden + for %n dager siden + - + Up to date Ajour - + Catching up... Kommer ajour... - + Last received block was generated %1. Siste mottatte blokk ble generert %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 transaksjonen overstiger størrelsesbegrensningen. Du kan likevel sende den med et gebyr på %1, som går til nodene som prosesserer transaksjonen din og støtter nettverket. Vil du betale gebyret? - + Sending... Sender... - + Sent transaction Sendt transaksjon - + Incoming transaction Innkommende transaksjon - + Date: %1 Amount: %2 Type: %3 @@ -504,15 +539,20 @@ Adresse: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Lommeboken er <b>kryptert</b> og for tiden <b>ulåst</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Lommeboken er <b>kryptert</b> og for tiden <b>låst</b> + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -528,8 +568,13 @@ Adresse: %4 - Display addresses in transaction list - Vis adresser i transaksjonslisten + &Display addresses in transaction list + &Vis adresser i transaksjonslisten + + + + Whether to show Bitcoin addresses in the transaction list + @@ -580,22 +625,22 @@ Adresse: %4 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 bitcoin address. en oppgitte adressen "%1" er ikke en gyldig bitcoin-adresse. - + Could not unlock wallet. Kunne ikke låse opp lommeboken. - + New key generation failed. Generering av ny nøkkel feilet. @@ -674,8 +719,8 @@ Adresse: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Valgfritt transaksjonsgebyr per kB som hjelper for å sikre at transaksjonene dine blir raskt prosessert. De fleste transaksjoner er 1kB. Et gebyr på 0.01 anbefales. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. @@ -684,8 +729,8 @@ Adresse: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Valgfritt transaksjonsgebyr per kB som hjelper for å sikre at transaksjonene dine blir raskt prosessert. De fleste transaksjoner er 1kB. Et gebyr på 0.01 anbefales. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. @@ -744,20 +789,12 @@ Adresse: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Lommebok</span></p></body></html> + + Wallet + Lommebok - + <b>Recent transactions</b> <b>Siste transaksjoner</b> @@ -781,13 +818,13 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins Send Bitcoins @@ -802,82 +839,87 @@ p, li { white-space: pre-wrap; } &Legg til mottaker... - + Clear all Fjern alle - + + Remove all transaction fields + Fjern alle transaksjonsfelter + + + Balance: Saldo: - + 123.456 BTC 123.456 BTC - + Confirm the send action Bekreft sending - + &Send &Send - + <b>%1</b> to %2 (%3) <b>%1</b> til %2 (%3) - + Confirm send coins Bekreft sending av bitcoins - + Are you sure you want to send %1? Er du sikker på at du vil sende %1? - + and og - + The recepient address is not valid, please recheck. Mottaksadressen er ugyldig, prøv igjen. - + The amount to pay must be larger than 0. Beløpen som skal betales må være over 0. - + Amount exceeds your balance Beløpet overstiger saldoen din - + Total exceeds your balance when the %1 transaction fee is included Totalen overgår din saldo når transaksjonsgebyret på %1 tas med - + Duplicate address found, can only send to each address once in one send operation Duplikate adresser funnet, kan kun sende til hver adresse en gang i hver sendeoperasjon - + Error: Transaction creation failed Feil: Opprettelse av transaksjon feilet - + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Feil: Transaksjonen ble avvist. Dette kan skje hvis noen av myntene i lommeboken allerede var brukt, f.eks. hvis du kopierte wallet.dat og mynter ble brukt i kopien uten å bli markert brukt her. @@ -1098,54 +1140,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Dato - + Type Type - + Address Adresse - + Amount Beløp - + Open for %n block(s) - Åpen for %n blokkÅpen for %n blokker + + Åpen for %n blokk + Åpen for %n blokker + - + Open until %1 Åpen til %1 - + Offline (%1 confirmations) Frakoblet (%1 bekreftelser) - + Unconfirmed (%1 of %2 confirmations) Ubekreftet (%1 av %2 bekreftelser) - + Confirmed (%1 confirmations) Bekreftet (%1 bekreftelser) Mined balance will be available in %n more blocks - Utvunnet saldo vil bli tilgjengelig om %n blokkUtvunnet saldo vil bli tilgjengelig om %n blokker + + Utvunnet saldo vil bli tilgjengelig om %n blokk + Utvunnet saldo vil bli tilgjengelig om %n blokker + @@ -1164,56 +1212,51 @@ p, li { white-space: pre-wrap; } - Received from IP - Mottatt fra IP + Received from + Mottatt fra - + Sent to Sendt til - - Sent to IP - Sendt til IP - - - + Payment to yourself Betaling til deg selv - + Mined Utvunnet - + (n/a) - - + Transaction status. Hover over this field to show number of confirmations. Transaksjonsstatus. Hold muspekeren over dette feltet for å se antall bekreftelser. - + Date and time that the transaction was received. Dato og tid for da transaksjonen ble mottat. - + Type of transaction. Type transaksjon. - + Destination address of transaction. Mottaksadresse for transaksjonen - + Amount removed from or added to balance. Beløp fjernet eller lagt til saldo. @@ -1312,67 +1355,67 @@ p, li { white-space: pre-wrap; } Vis detaljer... - + Export Transaction Data Eksporter transaksjonsdata - + 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 ved eksport - + Could not write to file %1. Kunne ikke skrive til filen %1. - + Range: Intervall: - + to til @@ -1388,219 +1431,219 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoin versjon - + Usage: Bruk: - + Send command to -server or bitcoind Send kommando til -server eller bitcoind - + List commands Vis liste over kommandoer - + Get help for a command Få hjelp til kommando - + Options: Innstillinger: - + Specify configuration file (default: bitcoin.conf) Angi konfigurasjonsfil (standard: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Angi pid-fil (standard: bitcoind.pid) - + Generate coins Generer mynter - - Don't generate coins + + Don't generate coins Ikke generer mynter - + Start minimized Start minimert - + Specify data directory Angi mappe for data - + Specify connection timeout (in milliseconds) Angi tidsavbrudd for forbindelser (i millisekunder) - + Connect through socks4 proxy Koble til gjennom sock4 mellomtjener - + Allow DNS lookups for addnode and connect Tillat DNS-oppslag for addnode og connect - + Add a node to connect to Legg til node for tilkobling - + Connect only to the specified node Koble kun til en oppgitt node - - Don't accept connections from outside + + Don't accept connections from outside Ikke ta imot tilkoblinger fra utsiden - - Don't attempt to use UPnP to map the listening port + + Don't attempt to use UPnP to map the listening port Ikke forsøk å bruke UPnP for å sette opp lytteport - + Attempt to use UPnP to map the listening port Forsøk å bruke UPnP for å sette opp lytteport - + Fee per kB to add to transactions you send Gebyr per kB som skal legges til transaksjoner du sender - + Accept command line and JSON-RPC commands Ta imot kommandoer fra både kommandolinje og JSON-RPC - + Run in the background as a daemon and accept commands Kjør som bakgrunnsprosess og ta imot kommandoer - + Use the test network Bruk testnettet - + 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: 8332) Lytt etter JSON-RPC forbindelser på <port> (standard: 8332) - + Allow JSON-RPC connections from specified IP address Tillat JSON-RPC forbindelser fra oppgitt IP-adresse - + Send commands to node running on <ip> (default: 127.0.0.1) Send kommandoer til noden som kjører på <ip> (standard: 127.0.0.1) - + Set key pool size to <n> (default: 100) Sett størrelsen på lager for nye nøkler til <n> (standard: 100) - + Rescan the block chain for missing wallet transactions Se igjennom blokk-kjeden på nytt etter manglende lommebokstransaksjoner - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1608,721 +1651,154 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Use OpenSSL (https) for JSON-RPC connections Bruk OpenSSL (https) for JSON-RPC forbindelser - + Server certificate file (default: server.cert) Fil for tjenersertifikat (standard: server.cert) - + Server private key (default: server.pem) Privat nøkkel for tjener (standard: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Akseptable krypteringsmetoder (standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Denne hjelpemeldingen - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Kunne ikke låse datamappen %s. Bitcoin kjører sannsynligvis allerede. - + Loading addresses... Laster adresser... - + Error loading addr.dat Feil ved lasting av addr.dat - + Loading block index... Laster blokkindeks... - + Error loading blkindex.dat Feil ved lasting av blkindex.dat - + Loading wallet... Laster lommebok... - + Error loading wallet.dat: Wallet corrupted Feil ved lasting av wallet.dat: Skadde data i lommeboken - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Feil ved lasting av wallet.dat: Lommeboken krever en nyere versjon av Bitcoin - + Error loading wallet.dat Feil ved lasting av wallet.dat - + Rescanning... Leser gjennom... - + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Done loading Ferdig med lasting - + Invalid -proxy address Ugyldig -proxy adresse for mellomtjener - + Invalid amount for -paytxfee=<amount> Ugyldig gebyrbeløp for -paytxfee=<beløp> - + 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 en transaksjon. - + Error: CreateThread(StartNode) failed Feil: CreateThread(StartNode) feilet - + Warning: Disk space is low Advarsel: Lite ledig diskplass - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Klarer ikke binde til port %d på denne datamaskinen. Bitcoin kjører sannsynligvis allerede. - - - This transaction is over the size limit. You can still send it for a fee of %s, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Denne transaksjonen er over maks-størrelsen. Du kan likevel sende med et gebyr på %s, som vil bli gitt til noder som prosesserer transaksjonen din og støtter nettverket. Vil du betale gebyret? - - - - Enter the current passphrase to the wallet. - Skriv inn nåværende adgangsfrase for lommeboken. - - - - Passphrase - Adgangsfrase - - - - Please supply the current wallet decryption passphrase. - Vennligst oppgå nåværende adgangsfrase for dekryptering. - - - - The passphrase entered for the wallet decryption was incorrect. - Adgangsfrasen oppgitt for dekryptering av lommeboken var feil. - - - - Status - Status - - Date - Dato - - - - Description - Beskrivelse - - - - Debit - Debet - - - - Credit - Kredit - - - - Open for %d blocks - Åpen for %d blokker - - - - Open until %s - Åpen til %s - - - - %d/offline? - %d/frakoblet? - - - - %d/unconfirmed - %d/ubekreftet - - - - %d confirmations - %d bekreftelser - - - - Generated - Generert - - - - Generated (%s matures in %d more blocks) - Generert (%s modnes om %d blokker) - - - - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - Generert - Advarsel: Denne blokken ble ikke mottatt av noen andre noder og vil sannsynligvis ikke bli akseptert! - - - - Generated (not accepted) - Generert (ikke akseptert) - - - - From: - Fra: - - - - Received with: - Mottatt med: - - - - Payment to yourself - Betaling til deg selv - - - - To: - Til: - - - - Generating - Genererer - - - - (not connected) - (ikke tilkoblet) - - - - %d connections %d blocks %d transactions - %d forbindelser %d blokker %d transaksjoner - - - - Wallet already encrypted. - Lommebok allerede kryptert. - - - - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - Skriv inn adgangsfrasen for lommeboken. -Vennligst bruk en adgangsfrase på 10 eller flere tilfeldige tegn, eller åtte eller flere ord. - - - - Error: The supplied passphrase was too short. - Feil: Angitt adgangsfrase var for kort. - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - ADVARSEL: Hvis du krypterer lommeboken din og mister adgangsfrasen vil du MISTE ALLE DINE BITCOINS! -Er du sikker på at du vil kryptere lommeboken? - - - - Please re-enter your new wallet passphrase. - Vennligst gjenta adgangsfrasen for lommeboken. - - - - Error: the supplied passphrases didn't match. - Feil: de angitte adgangsfrasene er ulike. - - - - Wallet encryption failed. - Kryptering av lommebok feilet. - - - - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Lommebok kryptert. -Husk at det å kryptere lommeboken ikke kan beskytte dine bitcoins fullstendig fra å bli stjålet av skadevare som infiserer datamaskinen din. - - - - Wallet is unencrypted, please encrypt it first. - Lommeboken er ukryptert, vennligst krypter den først. - - - - Enter the new passphrase for the wallet. - Skriv inn ny adgangsfrase for lommeboken. - - - - Re-enter the new passphrase for the wallet. - Gjenta adgangsfrasen for lommeboken. - - - - Wallet Passphrase Changed. - Adgangsfrasen for Lommeboken er Endret. - - - - New Receiving Address - Ny Mottaksadresse - - - - You should use a new address for each payment you receive. - -Label - Du bør bruke en ny adresse for hver betaling du mottar. - -Merkelapp - - - - <b>Status:</b> - <b>Status:</b> - - - - , has not been successfully broadcast yet - , har ikke blitt kringkastet uten problemer enda - - - - , broadcast through %d node - , kringkastet gjennom %d node - - - - , broadcast through %d nodes - , kringkastet gjennom %d noder - - - - <b>Date:</b> - <b>Dato:</b> - - - - <b>Source:</b> Generated<br> - <b>Kilde:</b> Generert<br> - - - - <b>From:</b> - <b>Fra:</b> - - - - unknown - ukjent - - - - <b>To:</b> - <b>Til:</b> - - - - (yours, label: - (din, merkelapp: - - - - (yours) - (din) - - - - <b>Credit:</b> - <b>Kredit:</b> - - - - (%s matures in %d more blocks) - (%s modnes om %d blokker) - - - - (not accepted) - (ikke akseptert) - - - - <b>Debit:</b> - <b>Debet:</b> - - - - <b>Transaction fee:</b> - <b>Transaksjonsgebyr:</b> - - - - <b>Net amount:</b> - <b>Nettobeløp:</b> - - - - Message: - Melding: - - - - Comment: - Kommentar: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Genererte mynter må vente 120 blokker før de kan brukes. Da du genererte denne blokken ble den kringkastet til nettverket for å legges til i blokk-kjeden. Hvis den ikke kommer med i kjeden vil den endres til "ikke akseptert" og ikke kunne brukes. Dette vil skje noen ganger når en annen node genererer en blokk bare sekunder fra din egen i tid. - - - - Cannot write autostart/bitcoin.desktop file - Kan ikke skrive til autostart/bitcoin.desktop filen - - - - Main - Hoved - - - - &Start Bitcoin on window system startup - &Start Bitcoin når systemet starter - - - - &Minimize on close - &Minimer ved lukking - - - - version %s - versjon %s - - - - Error in amount - Feil i beløp - - - - Send Coins - Send bitcoins - - - - Amount exceeds your balance - Beløpet overstiger saldoen - - - - Total exceeds your balance when the - Totalbeløpet overstiger saldoen når - - - - transaction fee is included - transaksjonsgebyret tas med - - - - Payment sent - Betaling sendt - - - - Sending... - Sender... - - - - Invalid address - Ugyldig adresse - - - - Sending %s to %s - Sender %s til %s - - - - CANCELLED - AVBRUTT - - - - Cancelled - Avbrutt - - - - Transfer cancelled - Overføring avbrutt - - - - Error: - Feil: - - - - Insufficient funds - Utilstrekkelige midler - - - - Connecting... - Kobler til... - - - - Unable to connect - Kunne ikke koble til - - - - Requesting public key... - Ber om offentlig nøkkel... - - - - Received public key... - Mottok offentlig nøkkel... - - - - Recipient is not accepting transactions sent by IP address - Mottaker tar ikke imot transaksjoner sendt via IP-adresse - - - - Transfer was not accepted - Overføring ble ikke akseptert - - - - Invalid response received - Ugyldig svar mottatt - - - - Creating transaction... - Oppretter transaksjon... - - - - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - Denne transaksjonen krever et gebyr på minst %s pga. beløpet, kompleksiteten, eller bruk av nylig mottatte midler - - - - Transaction creation failed - Opprettelse av transaksjon feilet - - - - Transaction aborted - Transaksjon avbrutt - - - - Lost connection, transaction cancelled - Mistet forbindelsen, transaksjonen avbrutt - - - - Sending payment... - Sender betaling... - - - - The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Transaksjonen ble avvist. Dette kan skje hvis noen av myntene i lommeboken allerede er brukt, f.eks. hvis du kopierte wallet.dat og mynter ble brukt i kopien uten å bli markert som brukt her. - - - - Waiting for confirmation... - Venter på bekreftelse... - - - - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - Betalingen ble sendt, men mottaker kunne ikke verifisere den. -Transaksjonen er lagret og beløpet vil bli kreditert mottaker, -men kommentaren vil bli blank. - - - - Payment was sent, but an invalid response was received - Betaling ble sendt, men et ugyldig svar kom tilbake - - - - Payment completed - Betaling fullført - - - - Name - Navn - - - - Address - Adresse - - - - Label - Merkelapp - - - - Bitcoin Address - Bitcoin-Adresse - - - - This is one of your own addresses for receiving payments and cannot be entered in the address book. - Dette er en av dine egne adresser for mottak av betalinger og kan ikke legges inn i adresseboken. - - - - Edit Address - Rediger Adresse - - - - Edit Address Label - Rediger Merkelapp - - - - Add Address - Legg til Adresse - - - - Bitcoin - Bitcoin - - - - Bitcoin - Generating - Bitcoin - Genererer - - - - Bitcoin - (not connected) - Bitcoin - (ikke tilkoblet) - - - - &Open Bitcoin - &Åpne Bitcoin - - - - &Send Bitcoins - &Send Bitcoins - - - - O&ptions... - &Innstillinger... - - - - E&xit - &Avslutt - - - - Program has crashed and will terminate. - Programmet har kræsjet og vil avslutte. - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Advarsel: Vennligst sjekk at dato og klokke er riktig innstilt på datamaskinen. Hvis klokken er feil vil ikke Bitcoin fungere ordentlig. - + beta beta @@ -2330,9 +1806,9 @@ men kommentaren vil bli blank. main - - Bitcoin Qt - Bitcoin Qt + + Bitcoin-Qt + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index 1db112bfd3..5925bf25db 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -15,20 +17,20 @@ - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - Copyright © 2009-2011 Bitcoin-ontwikkelaars + Copyright © 2009-2012 Bitcoin Ontwikkelaars Dit is experimentele software. -Gedistributeerd onder de MIT/X11 software licentie, zie het bijgevoegde bestand license.txt of kijk op http://www.opensource.org/licenses/mit-license.php. +Gedistribueerd onder de MIT/X11 software licentie, zie het bijgevoegde bestand license.txt 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 geschreven door Eric Young (eay@cryptsoft.com) en UPnP software geschreven door Thomas Bernard. +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. @@ -46,7 +48,7 @@ Dit product bevat software ontwikkeld door het OpenSSL project voor gebruik in d Double-click to edit address or label - Dubbelklik om adres of etiket te wijzigen + Dubbelklik om adres of label te wijzigen @@ -71,7 +73,7 @@ Dit product bevat software ontwikkeld door het OpenSSL project voor gebruik in d Delete the currently selected address from the list. Only sending addresses can be deleted. - Verwijder het huidige geselecteerde adres van de lijst. Alleen afzenderadressen kunnen verwijderd worden. + Verwijder het huidige geselecteerde adres van de lijst. Alleen zend-adressen kunnen verwijderd worden, niet uw ontvangstadressen. @@ -79,22 +81,22 @@ Dit product bevat software ontwikkeld door het OpenSSL project voor gebruik in d &Verwijder - + Export Address Book Data Exporteer Gegevens van het Adresboek - + Comma separated file (*.csv) Kommagescheiden bestand (*.csv) - + Error exporting Fout bij exporteren - + Could not write to file %1. Kon niet schrijven naar bestand %1. @@ -102,19 +104,19 @@ Dit product bevat software ontwikkeld door het OpenSSL project voor gebruik in d AddressTableModel - + Label - Etiket + Label - + Address Adres - + (no label) - (geen etiket) + (geen label) @@ -126,373 +128,406 @@ Dit product bevat software ontwikkeld door het OpenSSL project voor gebruik in d + TextLabel - TekstEtiket + TekstLabel - + Enter passphrase - Enter wachtwoord + Huidig wachtwoord - + New passphrase Nieuwe wachtwoord - + Repeat new passphrase Herhaal wachtwoord - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Vul een nieuw wachtwoord in voor uw portemonnee. <br/> Gebruik een wachtwoord van <b>10 of meer lukrake karakters</b>, of <8> acht of meer woorden</b> . + Vul een nieuw wachtwoord in voor uw portemonnee. <br/> Gebruik een wachtwoord van <b>10 of meer lukrake karakters</b>, of <b> acht of meer woorden</b> . - + Encrypt wallet Versleutel portemonnee - + This operation needs your wallet passphrase to unlock the wallet. Deze operatie vereist uw portemonneewachtwoord om de portemonnee te openen. - + Unlock wallet Open portemonnee - + This operation needs your wallet passphrase to decrypt the wallet. Deze operatie vereist uw portemonneewachtwoord om de portemonnee te ontsleutelen - + Decrypt wallet Ontsleutel portemonnee - + Change passphrase - Verander wachtwoord + Wijzig wachtwoord - + Enter the old and new passphrase to the wallet. - vul uw oude en nieuwe portemonneewachtwoord in. + 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 BITCOINS</b>! Are you sure you wish to encrypt your wallet? WAARSCHUWING: Wanneer uw portemonnee wordt versleuteld en u verliest uw wachtwoord, dan verliest u<b>AL UW BITCOINS</b>! Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? - - + + Wallet encrypted Portemonnee versleuteld - - Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Onthoud dat het versleutelen van uw portemonnee uw bitcoins niet volledig kan beschermen tegen diefstal, bijvoorbeeld door malware die uw computer infecteert. + + + Warning: The Caps Lock key is on. + Waarschuwing: De Caps-Lock-toets staat aan. - - - - + + + + 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. - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. + + + + The supplied passphrases do not match. Het opgegeven wachtwoord is niet correct - + 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 succesfully changed. - Portemonneewachtwoord is succesvol veranderd + Portemonneewachtwoord is succesvol gewijzigd BitcoinGUI - + Bitcoin Wallet Bitcoin-portemonnee - + + Synchronizing with network... Synchroniseren met netwerk... - + Block chain synchronization in progress - Bezig met blokkenketting-synchronisatie + Bezig met blokkenketen-synchronisatie - + &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 - Bewerk de lijst van opgeslagen adressen en etiketten + Bewerk de lijst van opgeslagen adressen en labels - + &Receive coins &Ontvang munten - + Show the list of addresses for receiving payments Toon lijst van adressen om betalingen mee te ontvangen - + &Send coins &Verstuur munten - + Send coins to a bitcoin address Verstuur munten naar een bitcoin-adres - + E&xit &Afsluiten - + Quit application Programma afsluiten - + &About %1 &Over %1 - + Show information about Bitcoin Laat informatie zien over Bitcoin - + &Options... &Opties... - + Modify configuration options for bitcoin - Verander instellingen van Bitcoin + Wijzig instellingen van Bitcoin - + Open &Bitcoin Open &Bitcoin - + Show the Bitcoin window Toon Bitcoin-venster - + &Export... &Exporteer... - + Export the current view to a file Exporteer huidige overzicht naar een bestand - + &Encrypt Wallet &Versleutel Portemonnee - + Encrypt or decrypt wallet Versleutel of ontsleutel portemonnee - + &Change Passphrase - &Verander wachtwoord + &Wijzig Wachtwoord - + Change the passphrase used for wallet encryption - Verander het wachtwoord voor uw portemonneversleuteling + wijzig het wachtwoord voor uw portemonneversleuteling + + + + About &Qt + Over &Qt - + + Show information about Qt + Toon informatie over Qt + + + &File &Bestand - + &Settings &Instellingen - + &Help &Hulp - + Tabs toolbar Tab-werkbalk - + Actions toolbar Actie-werkbalk - + [testnet] [testnetwerk] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n actieve connectie(s) naar Bitcoinnetwerk%n actieve connectie(s) naar Bitcoinnetwerk + + %n actieve connectie naar Bitcoinnetwerk + %n actieve connecties naar Bitcoinnetwerk + - + Downloaded %1 of %2 blocks of transaction history. - %1 van %2 blokken van transactiehistorie opgehaald + %1 van %2 blokken van transactiehistorie opgehaald. - + Downloaded %1 blocks of transaction history. %1 blokken van transactiehistorie opgehaald. - + %n second(s) ago - %n seconde(n) geleden%n seconde(n) geleden + + %n seconde geleden + %n seconden geleden + - + %n minute(s) ago - %n minu(u)t(en) geleden%n minu(u)t(en) geleden + + %n minuut geleden + %n minuten geleden + - + %n hour(s) ago - %n u(u)r(en) geleden%n u(u)r(en) geleden + + %n uur geleden + %n uur geleden + - + %n day(s) ago - %n dag(en) geleden%n dag(en) geleden + + %n dag geleden + %n dagen geleden + - + Up to date Bijgewerkt - + Catching up... Aan het bijwerken... - + Last received block was generated %1. - Laatst ontvangen blok gegenereerd is %1 + Laatst ontvangen blok is %1 gegenereerd. - + 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? Deze transactie overschrijdt de groottelimiet. Om de transactie alsnog te versturen kunt u transactiekosten betalen van %1. Deze transactiekosten gaan naar de nodes die uw transactie verwerken en het helpt op deze manier bij het ondersteunen van het netwerk. Wilt u de transactiekosten betalen? - + Sending... Versturen... - + Sent transaction Verzonden transactie - + Incoming transaction Binnenkomende transactie - + Date: %1 Amount: %2 Type: %3 @@ -505,15 +540,20 @@ Adres: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Portemonnee is <b>versleuteld</b> en momenteel <b>geopend</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Portemonnee is <b>versleuteld</b> en momenteel <b>gesloten</b> + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -529,8 +569,13 @@ Adres: %4 - Display addresses in transaction list - Toon adressen in uw transactielijst + &Display addresses in transaction list + &Toon adressen in uw transactielijst + + + + Whether to show Bitcoin addresses in the transaction list + @@ -543,12 +588,12 @@ Adres: %4 &Label - &Etiket + &Label The label associated with this address book entry - Het etiket dat geassocieerd is met dit adres + Het label dat geassocieerd is met dit adres @@ -558,45 +603,45 @@ Adres: %4 The address associated with this address book entry. This can only be modified for sending addresses. - Het adres dat geassocieerd is met deze adresboek-opgave. Dit kan alleen worden veranderd voor afzenderadressen. + Het adres dat geassocieerd is met deze adresboek-opgave. Dit kan alleen worden veranderd voor zend-adressen. New receiving address - Nieuw ontvangst-adres + Nieuw ontvangstadres New sending address - Nieuw afzender-adres + Nieuw adres om naar te verzenden Edit receiving address - Bewerk ontvangst-adres + Bewerk ontvangstadres Edit sending address - Bewerk afzender-adres + 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 bitcoin address. Het opgegeven adres "%1" is een ongeldig bitcoinadres - + Could not unlock wallet. Kon de portemonnee niet openen. - + New key generation failed. Genereren nieuwe sleutel mislukt. @@ -606,7 +651,7 @@ Adres: %4 &Start Bitcoin on window system startup - &Start Bitcoin wanneer het systeem opstart + Start &Bitcoin wanneer het systeem opstart @@ -636,7 +681,7 @@ Adres: %4 M&inimize on close - &Minimaliseer bij sluiten van het venster + Minimaliseer bij &sluiten van het venster @@ -675,18 +720,18 @@ Adres: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Optionele transactiekosten per kB die helpen ervoor te zorgen dat uw transacties snel verwerkt worden. De meeste transacties zijn 1kB. Transactiekosten van 0.01 wordt aangeraden. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optionele transactiekosten per kB die helpen om uw transacties snel te verwerken. De meeste transacties zijn 1 kB. Transactiekosten van 0,01 wordt aangeraden Pay transaction &fee - Betaal transactie&kosten + Betaal &transactiekosten - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Optionele transactiekosten per kB die helpen ervoor te zorgen dat uw transacties snel verwerkt worden. De meeste transacties zijn 1kB. Transactiekosten van 0.01 wordt aangeraden. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optionele transactiekosten per kB die helpen om uw transacties snel te verwerken. De meeste transacties zijn 1 kB. Transactiekosten van 0,01 wordt aangeraden @@ -745,20 +790,12 @@ Adres: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Portemonnee</span></p></body></html> + + Wallet + Portemonnee - + <b>Recent transactions</b> <b>Recente transacties</b> @@ -782,13 +819,13 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins Verstuur munten @@ -800,85 +837,90 @@ p, li { white-space: pre-wrap; } &Add recipient... - &Voeg ontvanger toe... + Voeg &ontvanger toe... - + Clear all Verwijder alles - + + Remove all transaction fields + Verwijder alle transactievelden + + + Balance: Saldo: - + 123.456 BTC 123.456 BTC - + Confirm the send action Bevestig de verstuuractie - + &Send &Verstuur - + <b>%1</b> to %2 (%3) <b>%1</b> aan %2 (%3) - + Confirm send coins Bevestig versturen munten - + Are you sure you want to send %1? Weet u zeker dat u %1 wil versturen? - + and en - + The recepient address is not valid, please recheck. - Het ontvangstadres is niet geldig, controleer ingave. + Het ontvangstadres is niet geldig, controleer uw opgave. - + The amount to pay must be larger than 0. Het ingevoerde gedrag moet groter zijn dan 0. - + Amount exceeds your balance Bedrag overschrijdt uw huidige saldo - + 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 in one send operation Dubbel adres gevonden, u kunt slechts eenmaal naar een bepaald adres verzenden per verstuurtransactie - + Error: Transaction creation failed Fout: Aanmaak 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 afgewezen. Dit kan gebeuren als u eerder uitgegeven munten opnieuw wilt versturen, zoals wanneer u een kopie van uw wallet.dat heeft gebruikt en in de kopie deze munten zijn gemarkeerd als uitgegeven, maar in de huidige nog niet. @@ -893,7 +935,7 @@ p, li { white-space: pre-wrap; } A&mount: - B&edrag: + Bedra&g: @@ -904,12 +946,12 @@ p, li { white-space: pre-wrap; } Enter a label for this address to add it to your address book - Vul een etiket in voor dit adres om het toe te voegen aan uw adresboek + Vul een label in voor dit adres om het toe te voegen aan uw adresboek &Label: - &Etiket: + &Label: @@ -982,17 +1024,17 @@ p, li { white-space: pre-wrap; } , has not been successfully broadcast yet - ,is nog niet succesvol uitgezonden + , is nog niet succesvol uitgezonden , broadcast through %1 node - , uitzending langs %1 node + , uitgezonden naar %1 node , broadcast through %1 nodes - ,uitzending langs %1 nodes + , uitgezonden naar %1 nodes @@ -1025,7 +1067,7 @@ p, li { white-space: pre-wrap; } (yours, label: - (Uw, etiket: + (Uw adres, label: @@ -1038,12 +1080,12 @@ p, li { white-space: pre-wrap; } <b>Credit:</b> - <b>Tegoed:</b> + <b>Bij:</b> (%1 matures in %2 more blocks) - (%1 verwezenlijkt in %2 meer blokken) + (%1 komt beschikbaar na %2 blokken) @@ -1055,7 +1097,7 @@ p, li { white-space: pre-wrap; } <b>Debit:</b> - <b>Debet:</b> + <b>Af:</b> @@ -1080,7 +1122,7 @@ p, li { white-space: pre-wrap; } Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Gegeneerde munten moeten 120 blokken wachten voor ze kunnen worden uitgegeven. Je net gegenereerde blok is uitgezonden aan het netwerk om te worden toegevoegd aan de blokkenketting. Als het niet wordt geaccepteerd in de ketting, zal het blok als "ongeldig" worden aangemerkt en kan het niet worden uitgegeven. Dit kan soms gebeuren als een andere node net iets sneller een blok heeft gegenereerd; een paar seconden voor de uwe. + Gegeneerde munten moeten 120 blokken wachten voor ze kunnen worden uitgegeven. Uw net gegenereerde blok is uitgezonden aan het netwerk om te worden toegevoegd aan de blokkenketen. Als het niet wordt geaccepteerd in de keten, zal het blok als "ongeldig" worden aangemerkt en kan het niet worden uitgegeven. Dit kan soms gebeuren als een andere node net iets sneller een blok heeft gegenereerd; een paar seconden voor het uwe. @@ -1099,54 +1141,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Datum - + Type Type - + Address Adres - + Amount Bedrag - + Open for %n block(s) - Open gedurende %n blok(ken)Open gedurende %n blok(ken) + + Open gedurende %n blok + Open gedurende %n blokken + - + Open until %1 Open tot %1 - + Offline (%1 confirmations) Niet verbonden (%1 bevestigingen) - + Unconfirmed (%1 of %2 confirmations) Onbevestigd (%1 van %2 bevestigd) - + Confirmed (%1 confirmations) Bevestigd (%1 bevestigingen) Mined balance will be available in %n more blocks - Ontgonnen saldo word beschikbaar na %n blokken meerOntgonnen saldo word beschikbaar na %n blokken meer + + Ontgonnen saldo komt beschikbaar na %n blok + Ontgonnen saldo komt beschikbaar na %n blokken + @@ -1165,56 +1213,51 @@ p, li { white-space: pre-wrap; } - Received from IP - Ontvangen van IP + Received from + Ontvangen van - + Sent to Verzonden aan - - Sent to IP - Verzonden aan IP - - - + Payment to yourself Betaling aan uzelf - + Mined Ontgonnen - + (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 @@ -1285,7 +1328,7 @@ p, li { white-space: pre-wrap; } Enter address or label to search - Vul adres of etiket in om te zoeken + Vul adres of label in om te zoeken @@ -1300,12 +1343,12 @@ p, li { white-space: pre-wrap; } Copy label - Kopieer etiket + Kopieer label Edit label - Verander Etiket + Bewerk label @@ -1313,67 +1356,67 @@ p, li { white-space: pre-wrap; } Toon details... - + Export Transaction Data Exporteer transactiegegevens - + Comma separated file (*.csv) Kommagescheiden bestand (*.csv) - + Confirmed Bevestigd - + Date Datum - + Type Type - + Label - Etiket + Label - + Address Adres - + Amount Bedrag - + ID ID - + Error exporting Fout bij exporteren - + Could not write to file %1. Kon niet schrijven naar bestand %1. - + Range: Bereik: - + to naar @@ -1389,220 +1432,220 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoinversie - + Usage: Gebruik: - + Send command to -server or bitcoind Stuur commando naar -server of bitcoind - + List commands - List van commando's + List van commando's - + Get help for a command Toon hulp voor een commando - + Options: Opties: - + Specify configuration file (default: bitcoin.conf) Specifieer configuratiebestand (standaard: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Specifieer pid-bestand (standaard: bitcoind.pid) - + Generate coins Genereer munten - - Don't generate coins + + Don't generate coins Genereer geen munten - + Start minimized Geminimaliseerd starten - + Specify data directory Stel datamap in - + Specify connection timeout (in milliseconds) Specificeer de time-out tijd (in milliseconden) - + Connect through socks4 proxy Verbind via socks4 proxy - + Allow DNS lookups for addnode and connect Sta DNS-naslag toe voor addnode en connect - + Add a node to connect to Voeg een node toe om mee te verbinden - + Connect only to the specified node Verbind alleen met deze node - - Don't accept connections from outside + + Don't accept connections from outside Sta geen verbindingen van buitenaf toe - - Don't attempt to use UPnP to map the listening port + + Don't attempt to use UPnP to map the listening port Probeer geen UPnP te gebruiken om de poort waarop geluisterd wordt te mappen - + Attempt to use UPnP to map the listening port Probeer UPnP te gebruiken om de poort waarop geluisterd wordt te mappen - + Fee per kB to add to transactions you send Kosten per kB om aan transacties toe te voegen die u verstuurt - + Accept command line and JSON-RPC commands - Aanvaard commandoregel en JSON-RPC commando's + 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 + Draai in de achtergrond als daemon en aanvaard commando's - + Use the test network Gebruik het testnetwerk - + 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: 8332) Luister voor JSON-RPC verbindingen op <poort> (standaard: 8332) - + 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) + Verstuur commando's naar proces dat op <ip> draait (standaard: 127.0.0.1) - + 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 blokkenketting op ontbrekende portemonnee-transacties - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1611,717 +1654,152 @@ SSL opties: (zie de Bitcoin wiki voor SSL instructies) - + 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 ciphers (standaard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Dit helpbericht - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Kan geen lock op de gegevensdirectory %s verkrijgen. Bitcoin draait vermoedelijk reeds. - + Loading addresses... Adressen aan het laden... - + Error loading addr.dat Fout bij laden van bestand addr.dat - + Loading block index... Blokindex aan het laden... - + Error loading blkindex.dat Fout bij laden van bestand addr.dat - + Loading wallet... Portemonnee aan het laden... - + Error loading wallet.dat: Wallet corrupted Fout bij het laden van wallet.dat: Portemonnee corrupt - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Fout bij het laden van wallet.dat: Portemonnee vereist nieuwere versie van Bitcoin - + Error loading wallet.dat Fout bij laden van bestand wallet.dat - + Rescanning... Opnieuw aan het scannen ... - + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Done loading Klaar met laden - + Invalid -proxy address Foutief -proxy adres - + Invalid amount for -paytxfee=<amount> Ongeldig bedrag voor -paytxfee=<bedrag> - + 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. - + Error: CreateThread(StartNode) failed Fout: CreateThread(StartNode) is mislukt - + Warning: Disk space is low Waarschuwing: Weinig schijfruimte over - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Kan niet binden aan poort %d op deze computer. Bitcoin draait vermoedelijk reeds. - - - This transaction is over the size limit. You can still send it for a fee of %s, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Deze transactie overschrijdt de groottelimiet. Om de transactie alsnog te versturen kunt u transactiekosten betalen van %s. Deze transactiekosten gaan naar de nodes die uw transactie verwerken en het helpt op deze manier bij het ondersteunen van het netwerk. Wilt u de transactiekosten betalen? - - - - Enter the current passphrase to the wallet. - Voer het huidige portemonneewachtwoord in. - - - - Passphrase - Wachtwoordzin - - - - Please supply the current wallet decryption passphrase. - Voer het huidige portemonnee-ontsleutel-wachtwoord in. - - - - The passphrase entered for the wallet decryption was incorrect. - Het wachtwoord voor de portemonnee-ontsleuteling was incorrect. - - - - Status - Status - - Date - Datum - - - - Description - Omschrijving - - - - Debit - Debet - - - - Credit - Credit - - - - Open for %d blocks - Open voor %d blokken - - - - Open until %s - Open tot %s - - - - %d/offline? - %d/niet verbonden? - - - - %d/unconfirmed - %d/onbevestigd - - - - %d confirmations - %d bevestigingen - - - - Generated - Gegenereerd - - - - Generated (%s matures in %d more blocks) - Gegenereerd (%s wordt volwassen in %d meer blokken) - - - - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - Gegenereerd - Waarschuwing: Dit blok werd door geen enkele andere node ontvangen en zal waarschijnlijk niet worden geaccepteerd! - - - - Generated (not accepted) - Gegenereerd (niet geaccepteerd) - - - - From: - Van: - - - - Received with: - Ontvangen met: - - - - Payment to yourself - Betaling aan uzelf - - - - To: - Aan: - - - - Generating - Aan het genereren - - - - (not connected) - (Niet verbonden) - - - - %d connections %d blocks %d transactions - %d verbindingen %d blokken %d transacties - - - - Wallet already encrypted. - Portemonnee reeds versleuteld. - - - - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - Voer het nieuwe portemonneewachtwoord in. Gebruik een wachtwoord van 10 of meer willekeurige tekens, of acht of meer woorden. - - - - Error: The supplied passphrase was too short. - Fout: Het opgegeven wachtwoord was te kort. - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - WAARSCHUWING: Als u uw portemonnee versleutelt en uw wachtwoord verliest, verliest u AL UW BITCOINS! Bent u er zeker van dat u uw portemonnee wilt versleutelen? - - - - Please re-enter your new wallet passphrase. - Voer uw nieuwe portemonneewachtwoord nogmaals in. - - - - Error: the supplied passphrases didn't match. - Fout: De opgegeven wachtwoorden kwamen niet overeen. - - - - Wallet encryption failed. - Portemonneeversleuteling mislukt. - - - - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Portemonnee versleuteld. -Onthoud dat het versleutelen van uw portemonnee uw bitcoins niet volledig kan beschermen tegen diefstal, bijvoorbeeld door malware die uw computer infecteert. - - - - Wallet is unencrypted, please encrypt it first. - Portemonnee is onversleuteld, gelieve deze eerst te versleutelen. - - - - Enter the new passphrase for the wallet. - Voer het nieuwe portemonneewachtwoord in. - - - - Re-enter the new passphrase for the wallet. - Voer het nieuwe portemonneewachtwoord opnieuw in. - - - - Wallet Passphrase Changed. - Portemonnewachtwoord veranderd. - - - - New Receiving Address - Nieuw Ontvangstadres - - - - You should use a new address for each payment you receive. - -Label - Het is aan te raden om een nieuw adres te gebruiken voor elke betaling die u ontvangt. - -Etiket - - - - <b>Status:</b> - <b>Status:</b> - - - - , has not been successfully broadcast yet - , is nog niet succesvol uitgezonden - - - - , broadcast through %d node - , uitgezonden door %d node - - - - , broadcast through %d nodes - , uitgezonden door %d nodes - - - - <b>Date:</b> - <b>Datum:</b> - - - - <b>Source:</b> Generated<br> - <b>Bron:</b> Gegenereerd <br> - - - - <b>From:</b> - <b>Uit:</b> - - - - unknown - onbekend - - - - <b>To:</b> - <b>Aan:</b> - - - - (yours, label: - (uw, etiket: - - - - (yours) - (uw) - - - - <b>Credit:</b> - <b>Credit:</b> - - - - (%s matures in %d more blocks) - (%s wordt verwezenlijkt in %d meer blokken) - - - - (not accepted) - (Niet geaccepteerd) - - - - <b>Debit:</b> - <b>Debet:</b> - - - - <b>Transaction fee:</b> - <b>Transactiekosten:</b> - - - - <b>Net amount:</b> - <b>Netto bedrag:</b> - - - - Message: - Bericht: - - - - Comment: - Commentaar: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Gegeneerde munten moeten 120 blokken wachten voor ze kunnen worden uitgegeven. Je net gegenereerde blok is uitgezonden aan het netwerk om te worden toegevoegd aan de blokkenketting. Als het niet wordt geaccepteerd in de ketting, zal het blok als "ongeldig" worden aangemerkt en kan het niet worden uitgegeven. Dit kan soms gebeuren als een andere node net iets sneller een blok heeft gegenereerd; een paar seconden voor de uwe. - - - - Cannot write autostart/bitcoin.desktop file - Kan niet schrijven naar bestand autostart/bitcoin.desktop - - - - Main - Algemeen - - - - &Start Bitcoin on window system startup - &Start Bitcoin bij het opstarten van het systeem - - - - &Minimize on close - &Minimaliseer bij afsluiten - - - - version %s - versie %s - - - - Error in amount - Fout in bedrag - - - - Send Coins - Verstuur munten - - - - Amount exceeds your balance - Bedrag is hoger dan uw saldo - - - - Total exceeds your balance when the - Totaal is hoger dan uw saldo als de - - - - transaction fee is included - transactiekosten zijn meegerekend - - - - Payment sent - Betaling verzonden - - - - Sending... - Aan het versturen... - - - - Invalid address - Ongeldig adres - - - - Sending %s to %s - %s aan het versturen naar %s - - - - CANCELLED - GEANNULEERD - - - - Cancelled - Geannuleerd - - - - Transfer cancelled - Overschrijving geannuleerd - - - - Error: - Fout: - - - - Insufficient funds - Ontoereikend saldo - - - - Connecting... - Aan het verbinden... - - - - Unable to connect - Kan geen verbinding maken - - - - Requesting public key... - Publieke sleutel aan het aanvragen ... - - - - Received public key... - Publieke sleutel ontvangen... - - - - Recipient is not accepting transactions sent by IP address - Ontvanger accepteert geen transacties verzonden per IP-adres - - - - Transfer was not accepted - Overschrijving was niet geaccepteerd - - - - Invalid response received - Ongeldig antwoord ontvangen - - - - Creating transaction... - Transactie aan het creëren... - - - - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - Deze transactie vereist transactiekosten van tenminste %s vanwege het bedrag, de complexiteit, of het gebruik van recentelijk ontvangen munten - - - - Transaction creation failed - Transactiecreatie mislukt - - - - Transaction aborted - Transactie geannuleerd - - - - Lost connection, transaction cancelled - Verbinding verbroken, transactie geannuleerd - - - - Sending payment... - Betaling aan het versturen... - - - - The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - De transactie was afgewezen. Dit kan gebeuren als u eerder uitgegeven munten opnieuw wilt versturen, zoals wanneer u een kopie van uw wallet.dat heeft gebruikt en in de kopie deze munten zijn gemarkeerd als uitgegeven, maar in de huidige nog niet. - - - - Waiting for confirmation... - Aan het wachten voor bevestiging... - - - - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - De betaling was verzonden, maar de ontvanger was niet in staat om deze te verifiëren. -De transactie is opgeslagen en zal ten goede komen aan de ontvanger, -maar het commentaarveld zal leeg zijn - - - - Payment was sent, but an invalid response was received - Betaling is verzonden, maar een ongeldig antwoord was ontvangen - - - - Payment completed - Betaling voltooid - - - - Name - Naam - - - - Address - Adres - - - - Label - Etiket - - - - Bitcoin Address - Bitcoinadres - - - - This is one of your own addresses for receiving payments and cannot be entered in the address book. - Dit is een van uw eigen adressen voor het ontvangen van betalingen en kan niet worden ingevoerd in het adresboek. - - - - Edit Address - Bewerk Adres - - - - Edit Address Label - Bewerk Adresetiket - - - - Add Address - Voeg Adres Toe - - - - Bitcoin - Bitcoin - - - - Bitcoin - Generating - Bitcoin - Aan het genereren - - - - Bitcoin - (not connected) - Bitcoin - (niet verbonden) - - - - &Open Bitcoin - &Open Bitcoin - - - - &Send Bitcoins - &Verstuur Bitcoins - - - - O&ptions... - O&pties... - - - - E&xit - A&fsluiten - - - - Program has crashed and will terminate. - Het programma is gecrasht en zal worden beëindigd. - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Waarschuwing: Controleer dat de datum en tijd op uw computer correct zijn ingesteld. Als uw klok fout staat zal Bitcoin niet correct werken. - + beta beta @@ -2329,9 +1807,9 @@ maar het commentaarveld zal leeg zijn main - - Bitcoin Qt - Bitcoin Qt + + Bitcoin-Qt + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index 68bd057fe2..22037b881c 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -16,7 +16,7 @@ - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -51,7 +51,7 @@ This product includes software developed by the OpenSSL Project for use in the O &New Address... - &Novo endereço ... + & Novo endereço ... @@ -61,7 +61,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - &Copie para a área de transferência do sistema + & Copie para a área de transferência do sistema @@ -71,43 +71,43 @@ This product includes software developed by the OpenSSL Project for use in the O &Delete - &Excluir + & Excluir - + Export Address Book Data Exportação de dados do Catálogo de Endereços - + Comma separated file (*.csv) Arquivo separado por vírgulas (*. csv) - + Error exporting Erro ao exportar - + Could not write to file %1. - + Could not write to file %1. AddressTableModel - + Label Rótulo - + Address Endereço - + (no label) (Sem rótulo) @@ -121,124 +121,131 @@ This product includes software developed by the OpenSSL Project for use in the O + TextLabel TextoDoRótulo - + Enter passphrase Digite a frase de segurança - + New passphrase Nova frase de segurança - + Repeat new passphrase Repita a nova frase de segurança - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Digite a nova frase de seguraça da sua carteira. <br/> Por favor, use uma frase de <b>10 ou mais caracteres aleatórios,</b> ou <b>oito ou mais palavras.</b> - + Encrypt wallet Criptografar carteira - + This operation needs your wallet passphrase to unlock the wallet. Esta operação precisa de sua frase de segurança para desbloquear a carteira. - + Unlock wallet Desbloquear carteira - + This operation needs your wallet passphrase to decrypt the wallet. Esta operação precisa de sua frase de segurança para descriptografar a carteira. - + Decrypt wallet Descriptografar carteira - + Change passphrase Alterar frase de segurança - + Enter the old and new passphrase to the wallet. Digite a frase de segurança antiga e nova para a carteira. - + Confirm wallet encryption Confirmar criptografia da carteira - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? AVISO: Se você criptografar sua carteira e perder sua senha, você vai <b>perder todos os seus BITCOINS!</b> Tem certeza de que deseja criptografar sua carteira? - - + + Wallet encrypted Carteira criptografada - - Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Lembre-se que sua carteira criptografada não poderá proteger totalmente os seus bitcoins de serem roubados por softwares maldosos que infectem seu computador. + + + Warning: The Caps Lock key is on. + - - - - + + + + Wallet encryption failed A criptografia da carteira falhou - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. A criptografia da carteira falhou devido a um erro interno. Sua carteira não estava criptografada. - - - The supplied passphrases do not match. - A frase de segurança fornecida não confere. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Lembre-se que sua carteira criptografada não poderá proteger totalmente os seus bitcoins de serem roubados por softwares maldosos que infectem seu computador. + + The supplied passphrases do not match. + A frase de segurança fornecida não confere. + + + Wallet unlock failed A abertura da carteira falhou - - + + The passphrase entered for the wallet decryption was incorrect. A frase de segurança digitada para a descriptografia da carteira estava incorreta. - + Wallet decryption failed A descriptografia da carteira falhou - + Wallet passphrase was succesfully changed. A frase de segurança da carteira foi alterada com êxito. @@ -246,177 +253,188 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet Carteira Bitcoin - + + Synchronizing with network... Sincronizando com a rede... - + Block chain synchronization in progress Sincronização da corrente de blocos em andamento - + &Overview &Visão geral - + Show general overview of wallet Mostrar visão geral da carteira - + &Transactions &Transações - + Browse transaction history Navegar pelo histórico de transações - + &Address Book &Catálogo de endereços - + Edit the list of stored addresses and labels Editar a lista de endereços e rótulos - + &Receive coins &Receber moedas - + Show the list of addresses for receiving payments Mostrar a lista de endereços para receber pagamentos - + &Send coins &Enviar moedas - + Send coins to a bitcoin address Enviar moedas para um endereço bitcoin - + E&xit E&xit - + Quit application Sair da aplicação - + &About %1 &About %1 - + Show information about Bitcoin Mostrar informação sobre Bitcoin - + &Options... &Opções... - + Modify configuration options for bitcoin Modificar opções de configuração para bitcoin - + Open &Bitcoin Abrir &Bitcoin - + Show the Bitcoin window Mostrar a janela Bitcoin - + &Export... &Exportar... - + Export the current view to a file Export para arquivo - + &Encrypt Wallet &Criptografar Carteira - + Encrypt or decrypt wallet Criptografar ou decriptogravar carteira - + &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 - + + About &Qt + About &Qt + + + + Show information about Qt + Mostrar informação sobre Qt + + + &File - &Arquivo + & Arquivo - + &Settings E configurações - + &Help - &Ajuda + & Ajuda - + Tabs toolbar Barra de ferramentas - + Actions toolbar Barra de ações - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network %n conexão ativa na rede Bitcoin @@ -424,17 +442,17 @@ Are you sure you wish to encrypt your wallet? - + Downloaded %1 of %2 blocks of transaction history. Carregados %1 de %2 blocos do histórico de transações. - + Downloaded %1 blocks of transaction history. Carregados %1 blocos do histórico de transações. - + %n second(s) ago %n segundo atrás @@ -442,7 +460,7 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago %n minutos atrás @@ -450,7 +468,7 @@ Are you sure you wish to encrypt your wallet? - + %n hour(s) ago %n hora atrás @@ -458,7 +476,7 @@ Are you sure you wish to encrypt your wallet? - + %n day(s) ago %n dia atrás @@ -466,63 +484,67 @@ Are you sure you wish to encrypt your wallet? - + Up to date Atualizado - + Catching up... Recuperando o atraso ... - + 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? 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? - + Sending... Sending... - + Sent transaction Sent transaction - + Incoming transaction Incoming transaction - + Date: %1 Amount: %2 Type: %3 Address: %4 - 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> 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> + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -538,8 +560,13 @@ Address: %4 - Display addresses in transaction list - Display addresses in transaction list + &Display addresses in transaction list + + + + + Whether to show Bitcoin addresses in the transaction list + @@ -590,22 +617,22 @@ Address: %4 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 bitcoin address. The entered address "%1" is not a valid bitcoin address. - + Could not unlock wallet. Could not unlock wallet. - + New key generation failed. New key generation failed. @@ -684,8 +711,8 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + @@ -694,8 +721,8 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + @@ -754,20 +781,12 @@ Address: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + - + <b>Recent transactions</b> <b>Recent transactions</b> @@ -791,13 +810,13 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins Send Coins @@ -812,82 +831,87 @@ p, li { white-space: pre-wrap; } &Add recipient... - + Clear all Clear all - + + Remove all transaction fields + + + + Balance: Balance: - + 123.456 BTC 123.456 BTC - + Confirm the send action Confirm the send action - + &Send &Send - + <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 recepient address is not valid, please recheck. The recepient address is not valid, please recheck. - + The amount to pay must be larger than 0. The amount to pay must be larger than 0. - + Amount exceeds your balance Amount exceeds your balance - + Total exceeds your balance when the %1 transaction fee is included Total exceeds your balance when the %1 transaction fee is included - + Duplicate address found, can only send to each address once in one send operation Duplicate address found, can only send to each address once in one 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. @@ -1108,27 +1132,27 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Date - + Type Type - + Address Address - + Amount Amount - + Open for %n block(s) Open for %n block @@ -1136,22 +1160,22 @@ p, li { white-space: pre-wrap; } - + Open until %1 Open until %1 - + Offline (%1 confirmations) Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) Confirmed (%1 confirmations) @@ -1180,56 +1204,51 @@ p, li { white-space: pre-wrap; } - Received from IP - Received from IP + Received from + - + Sent to Sent to - - Sent to IP - Sent to IP - - - + Payment to yourself Payment to yourself - + 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. @@ -1328,67 +1347,67 @@ p, li { white-space: pre-wrap; } Show 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 @@ -1404,220 +1423,220 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoin version - + Usage: Usage: - + Send command to -server or bitcoind Send command to -server or bitcoind - + List commands List commands - + Get help for a command Get help for a command - + Options: Options: - + Specify configuration file (default: bitcoin.conf) Specify configuration file (default: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Specify pid file (default: bitcoind.pid) - + Generate coins Generate coins - + Don't generate coins Don't generate coins - + Start minimized Start minimized - + Specify data directory Specify data directory - + Specify connection timeout (in milliseconds) Specify connection timeout (in milliseconds) - + Connect through socks4 proxy Connect through socks4 proxy - + Allow DNS lookups for addnode and connect Allow DNS lookups for addnode and connect - + Add a node to connect to Add a node to connect to - + Connect only to the specified node Connect only to the specified node - + Don't accept connections from outside Don't accept connections from outside - + Don't attempt to use UPnP to map the listening port Don't attempt to use UPnP to map the listening port - + Attempt to use UPnP to map the listening port Attempt to use UPnP to map the listening port - + Fee per kB to add to transactions you send Fee per kB to add to transactions you send - + 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 - + 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: 8332) Listen for JSON-RPC connections on <port> (default: 8332) - + 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) - + 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 - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1626,721 +1645,154 @@ SSL options: (see the Bitcoin 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) - + This help message This help message - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + Loading addresses... Loading addresses... - + Error loading addr.dat Error loading addr.dat - + 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 - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Error loading wallet.dat: Wallet requires newer version of Bitcoin - + Error loading wallet.dat Error loading wallet.dat - + Rescanning... Rescanning... - + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Done loading Done loading - + Invalid -proxy address Invalid -proxy address - + Invalid amount for -paytxfee=<amount> Invalid amount for -paytxfee=<amount> - + 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. - + Error: CreateThread(StartNode) failed Error: CreateThread(StartNode) failed - + Warning: Disk space is low Warning: Disk space is low - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Unable to bind to port %d on this computer. Bitcoin is probably already running. - - - This transaction is over the size limit. You can still send it for a fee of %s, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - This transaction is over the size limit. You can still send it for a fee of %s, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - - - - Enter the current passphrase to the wallet. - Enter the current passphrase to the wallet. - - - - Passphrase - Passphrase - - - - Please supply the current wallet decryption passphrase. - Please supply the current wallet decryption passphrase. - - - - The passphrase entered for the wallet decryption was incorrect. - The passphrase entered for the wallet decryption was incorrect. - - - - Status - Status - - Date - Date - - - - Description - Description - - - - Debit - Debit - - - - Credit - Credit - - - - Open for %d blocks - Open for %d blocks - - - - Open until %s - Open until %s - - - - %d/offline? - %d/offline? - - - - %d/unconfirmed - %d/unconfirmed - - - - %d confirmations - %d confirmations - - - - Generated - Generated - - - - Generated (%s matures in %d more blocks) - Generated (%s matures in %d more blocks) - - - - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - - - - Generated (not accepted) - Generated (not accepted) - - - - From: - From: - - - - Received with: - Received with: - - - - Payment to yourself - Payment to yourself - - - - To: - To: - - - - Generating - Generating - - - - (not connected) - (not connected) - - - - %d connections %d blocks %d transactions - %d connections %d blocks %d transactions - - - - Wallet already encrypted. - Wallet already encrypted. - - - - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - - - - Error: The supplied passphrase was too short. - Error: The supplied passphrase was too short. - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - - - - Please re-enter your new wallet passphrase. - Please re-enter your new wallet passphrase. - - - - Error: the supplied passphrases didn't match. - Error: the supplied passphrases didn't match. - - - - Wallet encryption failed. - Wallet encryption failed. - - - - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Wallet is unencrypted, please encrypt it first. - Wallet is unencrypted, please encrypt it first. - - - - Enter the new passphrase for the wallet. - Enter the new passphrase for the wallet. - - - - Re-enter the new passphrase for the wallet. - Re-enter the new passphrase for the wallet. - - - - Wallet Passphrase Changed. - Wallet Passphrase Changed. - - - - New Receiving Address - New Receiving Address - - - - You should use a new address for each payment you receive. - -Label - You should use a new address for each payment you receive. - -Label - - - - <b>Status:</b> - <b>Status:</b> - - - - , has not been successfully broadcast yet - , has not been successfully broadcast yet - - - - , broadcast through %d node - , broadcast through %d node - - - - , broadcast through %d nodes - , broadcast through %d nodes - - - - <b>Date:</b> - <b>Date:</b> - - - - <b>Source:</b> Generated<br> - <b>Source:</b> Generated<br> - - - - <b>From:</b> - <b>From:</b> - - - - unknown - unknown - - - - <b>To:</b> - <b>To:</b> - - - - (yours, label: - (yours, label: - - - - (yours) - (yours) - - - - <b>Credit:</b> - <b>Credit:</b> - - - - (%s matures in %d more blocks) - (%s matures in %d more blocks) - - - - (not accepted) - (not accepted) - - - - <b>Debit:</b> - <b>Debit:</b> - - - - <b>Transaction fee:</b> - <b>Transaction fee:</b> - - - - <b>Net amount:</b> - <b>Net amount:</b> - - - - Message: - Message: - - - - Comment: - Comment: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - - - - Cannot write autostart/bitcoin.desktop file - Cannot write autostart/bitcoin.desktop file - - - - Main - Main - - - - &Start Bitcoin on window system startup - &Start Bitcoin on window system startup - - - - &Minimize on close - &Minimize on close - - - - version %s - version %s - - - - Error in amount - Error in amount - - - - Send Coins - Send Coins - - - - Amount exceeds your balance - Amount exceeds your balance - - - - Total exceeds your balance when the - Total exceeds your balance when the - - - - transaction fee is included - transaction fee is included - - - - Payment sent - Payment sent - - - - Sending... - Sending... - - - - Invalid address - Invalid address - - - - Sending %s to %s - Sending %s to %s - - - - CANCELLED - CANCELLED - - - - Cancelled - Cancelled - - - - Transfer cancelled - Transfer cancelled - - - - Error: - Error: - - - - Insufficient funds - Insufficient funds - - - - Connecting... - Connecting... - - - - Unable to connect - Unable to connect - - - - Requesting public key... - Requesting public key... - - - - Received public key... - Received public key... - - - - Recipient is not accepting transactions sent by IP address - Recipient is not accepting transactions sent by IP address - - - - Transfer was not accepted - Transfer was not accepted - - - - Invalid response received - Invalid response received - - - - Creating transaction... - Creating transaction... - - - - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - - - - Transaction creation failed - Transaction creation failed - - - - Transaction aborted - Transaction aborted - - - - Lost connection, transaction cancelled - Lost connection, transaction cancelled - - - - Sending payment... - Sending payment... - - - - The transaction was rejected. This might happen if some of the coins in your wallet were already 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 transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - - - - Waiting for confirmation... - Waiting for confirmation... - - - - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - - - - Payment was sent, but an invalid response was received - Payment was sent, but an invalid response was received - - - - Payment completed - Payment completed - - - - Name - Name - - - - Address - Address - - - - Label - Label - - - - Bitcoin Address - Bitcoin Address - - - - This is one of your own addresses for receiving payments and cannot be entered in the address book. - This is one of your own addresses for receiving payments and cannot be entered in the address book. - - - - Edit Address - Edit Address - - - - Edit Address Label - Edit Address Label - - - - Add Address - Add Address - - - - Bitcoin - Bitcoin - - - - Bitcoin - Generating - Bitcoin - Generating - - - - Bitcoin - (not connected) - Bitcoin - (not connected) - - - - &Open Bitcoin - &Open Bitcoin - - - - &Send Bitcoins - &Send Bitcoins - - - - O&ptions... - O&ptions... - - - - E&xit - E&xit - - - - Program has crashed and will terminate. - Program has crashed and will terminate. - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + beta beta @@ -2348,9 +1800,9 @@ but the comment information will be blank. main - - Bitcoin Qt - Bitcoin Qt + + Bitcoin-Qt + diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts index a87ec11609..10a4ce4afb 100644 --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -1,33 +1,35 @@ - + + + UTF-8 AboutDialog About Bitcoin - О Bitcoin'е + О Bitcoin <b>Bitcoin</b> version - Версия Bitcoin'а + <b>Bitcoin</b> версия - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - Copyright © 2009-2011 Разработчики сети Bitcoin + Все права защищены © 2009-2012 Разработчики Bitcoin -ВНИМАНИЕ: этот софт является экспериментальным! +Это экспериментальная программа. -Распространяется под лицензией MIT/X11, за дополнительной информацией обращайтесь к прилагающемуся файлу license.txt или документу по данной ссылке: http://www.opensource.org/licenses/mit-license.php. +Распространяется на правах лицензии MIT/X11, см. файл license.txt или http://www.opensource.org/licenses/mit-license.php. -Данный продукт включает в себя разработки проекта OpenSSL (http://www.openssl.org/), криптографические функции и алгоритмы, написанные Эриком Янгом (eay@cryptsoft.com) и функции для работы с UPnP за авторством Томаса Бернарда. +Этот продукт включате ПО, разработанное OpenSSL Project для использования в OpenSSL Toolkit (http://www.openssl.org/) и криптографическое ПО, написанное Eric Young (eay@cryptsoft.com) и ПО для работы с UPnP, написанное Thomas Bernard. @@ -78,22 +80,22 @@ This product includes software developed by the OpenSSL Project for use in the O &Удалить - + Export Address Book Data Экспортировать адресную книгу - + Comma separated file (*.csv) Текст, разделённый запятыми (*.csv) - + Error exporting Ошибка экспорта - + Could not write to file %1. Невозможно записать в файл %1. @@ -101,17 +103,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Метка - + Address Адрес - + (no label) [нет метки] @@ -125,125 +127,132 @@ This product includes software developed by the OpenSSL Project for use in the O + TextLabel TextLabel - + Enter passphrase Введите пароль - + New passphrase Новый пароль - + Repeat new passphrase Повторите новый пароль - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Введите новый пароль для бумажника. <br/> Пожалуйста, используйте фразы из <b>10 или более случайных символов,</b> или <b>восьми и более слов.</b> - + Encrypt wallet Зашифровать бумажник - + This operation needs your wallet passphrase to unlock the wallet. Для выполнения операции требуется пароль вашего бумажника. - + Unlock wallet Разблокировать бумажник - + This operation needs your wallet passphrase to decrypt the wallet. Для выполнения операции требуется пароль вашего бумажника. - + Decrypt wallet Расшифровать бумажник - + Change passphrase Сменить пароль - + Enter the old and new passphrase to the wallet. Введите старый и новый пароль для бумажника. - + Confirm wallet encryption Подтвердите шифрование бумажника - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? ВНИМАНИЕ: Если вы зашифруете бумажник и потеряете свой ​​пароль, вы <b>ПОТЕРЯЕТЕ ВСЕ ВАШИ БИТКОИНЫ!</b> Вы действительно хотите зашифровать ваш бумажник? - - + + Wallet encrypted Бумажник зашифрован - - Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Помните, что шифрование вашего бумажника не может полностью защитить ваши биткоины от кражи вредоносными программами, заражающими компьютер. + + + Warning: The Caps Lock key is on. + Внимание: Caps Lock включен. - - - - + + + + Wallet encryption failed Не удалось зашифровать бумажник - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Шифрование бумажника не удалось из-за внутренней ошибки. Ваш бумажник не был зашифрован. - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши биткоины от кражи с помощью инфицирования вашего компьютера вредоносным ПО. + + + + The supplied passphrases do not match. Введённые пароли не совпадают. - + Wallet unlock failed Разблокировка бумажника не удалась - - + + The passphrase entered for the wallet decryption was incorrect. Указанный пароль не подходит. - + Wallet decryption failed Расшифрование бумажника не удалось - + Wallet passphrase was succesfully changed. Пароль бумажника успешно изменён. @@ -251,247 +260,278 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet Bitcoin-бумажник - + + Synchronizing with network... Синхронизация с сетью... - + Block chain synchronization in progress Идёт синхронизация цепочки блоков - + &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 - Отп&равка + Отп&равка монет - + Send coins to a bitcoin address Отправить монеты на указанный адрес - + E&xit В&ыход - + Quit application Закрыть приложение - + &About %1 &О %1 - + Show information about Bitcoin Показать информацию о Bitcoin'е - + &Options... Оп&ции... - + Modify configuration options for bitcoin Изменить настройки - + Open &Bitcoin &Показать бумажник - + Show the Bitcoin window Показать окно бумажника - + &Export... &Экспорт... - + Export the current view to a file Экспортировать в файл - + &Encrypt Wallet &Зашифровать бумажник - + Encrypt or decrypt wallet Зашифровать или расшифровать бумажник - + &Change Passphrase &Изменить пароль - + Change the passphrase used for wallet encryption Изменить пароль шифрования бумажника - + + About &Qt + О &Qt + + + + Show information about Qt + Показать информацию о Qt + + + &File &Файл - + &Settings &Настройки - + &Help &Помощь - + Tabs toolbar Панель вкладок - + Actions toolbar Панель действий - + [testnet] [тестовая сеть] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n активное соединение с сетью%n активных соединений с сетью%n активных соединений с сетью + + %n активное соединение с сетью + %n активных соединений с сетью + %n активных соединений с сетью + - + Downloaded %1 of %2 blocks of transaction history. Загружено %1 из %2 блоков истории транзакций. - + Downloaded %1 blocks of transaction history. Загружено %1 блоков истории транзакций. - + %n second(s) ago - %n секунду назад%n секунды назад%n секунд назад + + %n секунду назад + %n секунды назад + %n секунд назад + - + %n minute(s) ago - %n минуту назад%n минуты назад%n минут назад + + %n минуту назад + %n минуты назад + %n минут назад + - + %n hour(s) ago - %n час назад%n часа назад%n часов назад + + %n час назад + %n часа назад + %n часов назад + - + %n day(s) ago - %n день назад%n дня назад%n дней назад + + %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, которая отправится тем узлам, которые обработают Вашу транзакцию и поможет поддержать сеть. Вы хотите добавить комиссию? - + Sending... Отправка... - + Sent transaction Исходящая транзакция - + Incoming transaction Входящая транзакция - + Date: %1 Amount: %2 Type: %3 @@ -504,15 +544,20 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Бумажник <b>зашифрован</b> и в настоящее время <b>разблокирован</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -528,8 +573,13 @@ Address: %4 - Display addresses in transaction list - Показывать адреса в списке транзакций + &Display addresses in transaction list + &Показывать адреса в списке транзакций + + + + Whether to show Bitcoin addresses in the transaction list + @@ -580,22 +630,22 @@ Address: %4 Изменение адреса для отправки - + The entered address "%1" is already in the address book. Введённый адрес «%1» уже находится в адресной книге. - + The entered address "%1" is not a valid bitcoin address. Введённый адрес «%1» не является правильным Bitcoin-адресом. - + Could not unlock wallet. Не удается разблокировать бумажник. - + New key generation failed. Генерация нового ключа не удалась. @@ -674,8 +724,8 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Опциональная комиссия за кадый kB транзакции, которое позволяет быть уверенным, что Ваша транзакция будет обработана быстро. Большинство транзакций занимают 1 kB. Рекомендованная комиссия: 0.01 BTC. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработано быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. @@ -684,8 +734,8 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Опциональная комиссия за кадый kB транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработана быстро. Большинство транзакций занимают 1 kB. Рекомендованная комиссия: 0.01 BTC. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработано быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. @@ -744,20 +794,12 @@ Address: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Бумажник</span></p></body></html> + + Wallet + Бумажник - + <b>Recent transactions</b> <b>Последние транзакции</b> @@ -774,20 +816,20 @@ p, li { white-space: pre-wrap; } Total number of transactions in wallet - Общая количество транзакций в Вашем бумажнике + Общее количество транзакций в Вашем бумажнике SendCoinsDialog - - - - - - - + + + + + + + Send Coins Отправка @@ -802,82 +844,87 @@ p, li { white-space: pre-wrap; } &Добавить получателя... - + Clear all Очистить всё - + + Remove all transaction fields + Удалить все поля транзакции + + + Balance: Баланс: - + 123.456 BTC 123.456 BTC - + Confirm the send action Подтвердить отправку - + &Send &Отправить - + <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 recepient address is not valid, please recheck. Адрес получателя неверный, пожалуйста, перепроверьте. - + The amount to pay must be larger than 0. Количество монет для отправки должно быть больше 0. - + Amount exceeds your balance Количество отправляемых монет превышает Ваш баланс - + Total exceeds your balance when the %1 transaction fee is included Сумма превысит Ваш баланс, если комиссия в %1 будет добавлена к транзакции - + Duplicate address found, can only send to each address once in one 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), а монеты были потрачены из другой копии, но не были отмечены как потраченные в этой. Или в случае кражи (компрометации) Вашего бумажника. @@ -918,7 +965,7 @@ p, li { white-space: pre-wrap; } Choose address from address book - Выбрать адрес из адресной книги + Выберите адрес из адресной книги @@ -1098,54 +1145,62 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Дата - + Type Тип - + Address Адрес - + Amount Количество - + Open for %n block(s) - Открыто для %n блокаОткрыто для %n блоковОткрыто для %n блоков + + Открыто для %n блока + Открыто для %n блоков + Открыто для %n блоков + - + Open until %1 Открыто до %1 - + Offline (%1 confirmations) Оффлайн (%1 подтверждений) - + Unconfirmed (%1 of %2 confirmations) Не подтверждено (%1 из %2 подтверждений) - + Confirmed (%1 confirmations) Подтверждено (%1 подтверждений) Mined balance will be available in %n more blocks - Добытыми монетами можно будет воспользоваться через %n блокДобытыми монетами можно будет воспользоваться через %n блокаДобытыми монетами можно будет воспользоваться через %n блоков + + Добытыми монетами можно будет воспользоваться через %n блок + Добытыми монетами можно будет воспользоваться через %n блока + Добытыми монетами можно будет воспользоваться через %n блоков + @@ -1164,56 +1219,51 @@ p, li { white-space: pre-wrap; } - Received from IP - Получено с IP-адреса + Received from + Получено от - + Sent to Отправлено - - Sent to IP - Отправлено на IP-адрес - - - + 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. Сумма, добавленная, или снятая с баланса. @@ -1312,67 +1362,67 @@ p, li { white-space: pre-wrap; } Показать детали... - + 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 до @@ -1388,219 +1438,219 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Версия - + Usage: Использование: - + Send command to -server or bitcoind Отправить команду на сервер ( -server ) или демону - + List commands Список команд - + Get help for a command Получить помощь по команде - + Options: Опции: - + Specify configuration file (default: bitcoin.conf) Указать конфигурационный файл вместо используемого по умолчанию (bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Указать pid-файл вместо используемого по умолчанию (bitcoin.pid) - + Generate coins Включить добычу монет - - Don't generate coins + + Don't generate coins Выключить добычу монет - + Start minimized Запускать минимизированным - + Specify data directory Указать рабочую директорию - + Specify connection timeout (in milliseconds) Указать таймаут соединения (в миллисекундах) - + Connect through socks4 proxy Соединяться через socks4-прокси - + Allow DNS lookups for addnode and connect Разрешить поиск в DNS для комманд "addnode" и "connect" - + Add a node to connect to Добавить узел для соединения - + Connect only to the specified node Соединяться только с указанным узлом - - Don't accept connections from outside + + Don't accept connections from outside Не принимать внешние соединения - - Don't attempt to use UPnP to map the listening port + + Don't attempt to use UPnP to map the listening port Не пытаться использовать UPnP - + Attempt to use UPnP to map the listening port Попытаться использовать UPnP для проброса прослушиваемого порта на роутере - + Fee per kB to add to transactions you send Комиссия (за каждый kB транзакции) - + Accept command line and JSON-RPC commands Принимать команды из командной строки и через JSON-RPC - + Run in the background as a daemon and accept commands Запустить в бекграунде (как демон) и принимать команды - + Use the test network Использовать тестовую сеть - + Username for JSON-RPC connections Имя пользователя для JSON-RPC соединений - + Password for JSON-RPC connections Пароль для JSON-RPC соединений - + Listen for JSON-RPC connections on <port> (default: 8332) Слушать <порт> для JSON-RPC соединений (по умолчанию: 8332) - + 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) - + Set key pool size to <n> (default: 100) - Установить размер key pool'а в <n> (по умолчанию: 100) + Установить размер key pool'а в <n> (по умолчанию: 100) - + Rescan the block chain for missing wallet transactions Просканировать цепочку блоков в поисках пропущенных транзакций для бумажника - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1608,720 +1658,153 @@ SSL options: (see the Bitcoin 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) - Допустимые Cipher'ы для сервера (по умолчанию: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Допустимые Cipher'ы для сервера (по умолчанию: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Данная справка - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Невозможно установить блокировку на рабочую директорию %s. Возможно, бумажник уже запущен. - + Loading addresses... Загрузка адресов... - + Error loading addr.dat Ошибка при загрузке addr.dat - + Loading block index... Загрузка индекса блоков... - + Error loading blkindex.dat Ошибка при загрузке blkindex.dat - + Loading wallet... Загрузка бумажника... - + Error loading wallet.dat: Wallet corrupted Ошибка загрузки wallet.dat: Бумажник повреждён - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Ошибка загрузки wallet.dat: Для данного бумажника требуется более новая версия Bitcoin - + Error loading wallet.dat Ошибка при загрузке wallet.dat - + Rescanning... Сканирование... - + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Done loading Загрузка завершена - + Invalid -proxy address Ошибка в адресе прокси - + Invalid amount for -paytxfee=<amount> Ошибка в сумме комиссии - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. ВНИМАНИЕ: Установлена слишком большая комиссия (-paytxfee=). Данный параметр отвечает за комиссию, которую Вы будете добавлять к сумме при осуществлении транзакций. - + Error: CreateThread(StartNode) failed Ошибка: Созданиние потока (запуск узла) не удался - + Warning: Disk space is low ВНИМАНИЕ: На диске заканчивается свободное пространство - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Невозможно забиндить порт %d на данном компьютере. Возможно, бумажник ужк запущен. - - - This transaction is over the size limit. You can still send it for a fee of %s, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Данная транзакция превышает предельно допустимый размер. Но Вы можете всё равно совершить ей, добавив комиссию в %s, которая отправится тем узлам, которые обработают Вашу транзакцию и поможет поддержать сеть. Вы хотите добавить комиссию? - - - - Enter the current passphrase to the wallet. - Введите текущий пароль от бумажника. - - - - Passphrase - Пароль - - - - Please supply the current wallet decryption passphrase. - Пожалуйста, укажите текущий пароль для расшифровки бумажника. - - - - The passphrase entered for the wallet decryption was incorrect. - Указанный пароль не подходит. - - - - Status - Статус - - Date - Дата - - - - Description - Описание - - - - Debit - Дебет - - - - Credit - Кредит - - - - Open for %d blocks - Открыто до получения %d блоков - - - - Open until %s - Открыто до %s - - - - %d/offline? - %d/оффлайн? - - - - %d/unconfirmed - %d/не подтверждено - - - - %d confirmations - %d подтверждений - - - - Generated - Сгенерированно - - - - Generated (%s matures in %d more blocks) - Сгенерированно (%s «созреет» через %d блоков) - - - - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - Сгенерированно - ВНИМАНИЕ: Данный блок не был получен ни одним другим узлом и, возможно, не будет подтверждён! - - - - Generated (not accepted) - Сгенерированно (не подтверждено) - - - - From: - Отправитель: - - - - Received with: - Получатель: - - - - Payment to yourself - Отправлено себе - - - - To: - Получатель: - - - - Generating - Генерация - - - - (not connected) - (не подключено) - - - - %d connections %d blocks %d transactions - %d подключений %d блоков %d транзакций - - - - Wallet already encrypted. - Бумажник уже зашифрован. - - - - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - Введите новый пароль для бумажника. -Пожалуйста, используейте пароль из 10 и более случайных символов или из 8 и более слов. - - - - Error: The supplied passphrase was too short. - ОШИБКА: Указанный пароль слишком короткий. - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - ВНИМАНИЕ: Если Вы зашифруете Ваш бумажник и потеряете Ваш пароль — Вы ПОТЕРЯЕТЕ ВСЕ ВАШИ БИТКОИНЫ!!! -Вы уверены, что хотите зашифровать бумажник? - - - - Please re-enter your new wallet passphrase. - Пожалуйста, повторите ввод нового пароля. - - - - Error: the supplied passphrases didn't match. - ОШИБКА: указанные пароли не совпадают. - - - - Wallet encryption failed. - Шифрование бумажника не удалось. - - - - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Бумажник зашифрован. -Запомните, что шифрование Вашего бумажника не может ПОЛНОСТЬЮ гарантировать защиту Ваших биткоинов от того, чтобы быть украденными с помощью шпионского ПО на Вашем компьютере. Пожалуйста, следите за безопасностью Вашего компьютера самостоятельно. - - - - Wallet is unencrypted, please encrypt it first. - Бумажник не зашифрован. Сначала зашифруйте его. - - - - Enter the new passphrase for the wallet. - Введите новый пароль для бумажника. - - - - Re-enter the new passphrase for the wallet. - Пожалуйста, повторите ввод нового пароля. - - - - Wallet Passphrase Changed. - Пароль от бумажника изменён. - - - - New Receiving Address - Новый адрес для получения - - - - You should use a new address for each payment you receive. - -Label - Вы должны использовать новый адрес для каждого платежа, который Вы получаете. - -Метка - - - - <b>Status:</b> - <b>Статус:</b> - - - - , has not been successfully broadcast yet - , ещё не было успешно разослано - - - - , broadcast through %d node - , разослано через %d узел - - - - , broadcast through %d nodes - , разослано через %d узлов - - - - <b>Date:</b> - <b>Дата:</b> - - - - <b>Source:</b> Generated<br> - <b>Источник:</b> [сгенерированно]<br> - - - - <b>From:</b> - <b>Отправитель:</b> - - - - unknown - неизвестно - - - - <b>To:</b> - <b>Получатель:</b> - - - - (yours, label: - (Ваш, метка: - - - - (yours) - (ваш) - - - - <b>Credit:</b> - <b>Кредит:</b> - - - - (%s matures in %d more blocks) - (%s «созреет» через %d блоков) - - - - (not accepted) - (не принято) - - - - <b>Debit:</b> - <b>Дебет:</b> - - - - <b>Transaction fee:</b> - <b>Комиссия:</b> - - - - <b>Net amount:</b> - <b>Общая сумма:</b> - - - - Message: - Сообщение: - - - - Comment: - Комментарий: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Сгенерированные монеты должны подождать 120 блоков прежде, чем они смогут быть отправлены. Когда Вы сгенерировали этот блок он был отправлен в сеть, чтобы он был добавлен к цепочке блоков. Если данная процедура не удастся, статус изменится на «не подтверждено» и монеты будут непередаваемыми. Такое может случайно происходить в случае, если другой узел сгенерирует блок на несколько секунд раньше. - - - - Cannot write autostart/bitcoin.desktop file - Не возможно записать файл autostart/bitcoin.desktop - - - - Main - Основное - - - - &Start Bitcoin on window system startup - &Запускать бумажник при входе в систему - - - - &Minimize on close - С&ворачивать вместо закрытия - - - - version %s - версия %s - - - - Error in amount - Ошибка в количестве - - - - Send Coins - Отправка - - - - Amount exceeds your balance - Сумма превышает Ваш баланс - - - - Total exceeds your balance when the - Общая сумма превысит Ваш баланс, если к транзакции будет добавлено ещё - - - - transaction fee is included - в качестве комиссии - - - - Payment sent - Платёж отправлен - - - - Sending... - Отправка... - - - - Invalid address - Ошибочный адрес - - - - Sending %s to %s - Отправка %s адресату %s - - - - CANCELLED - ОТМЕНЕНО - - - - Cancelled - Отменено - - - - Transfer cancelled - Транзакция отменена - - - - Error: - ОШИБКА: - - - - Insufficient funds - Недостаточно монет - - - - Connecting... - Подключение... - - - - Unable to connect - Невозможно подключиться - - - - Requesting public key... - Запрашивается открытый ключ... - - - - Received public key... - Получается публичный ключ... - - - - Recipient is not accepting transactions sent by IP address - Получатель не принимает транзакции, отправленные на IP адрес - - - - Transfer was not accepted - Передача была отвергнута - - - - Invalid response received - Получен неверный ответ - - - - Creating transaction... - Создание транзакции... - - - - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - Данная транзакция требует добавления комиссии (по крайней мере в %s) из-за её размера, сложности, или из-за использования недавно полученных монет - - - - Transaction creation failed - Создание транзакции провалилось - - - - Transaction aborted - Транзакция отменена - - - - Lost connection, transaction cancelled - Потеряно соединение, транзакция отменена - - - - Sending payment... - Отправка платежа... - - - - The transaction was rejected. This might happen if some of the coins in your wallet were already 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), а монеты были потрачены из другой копии, но не были отмечены как потраченные в этой. Или в случае кражи (компрометации) Вашего бумажника. - - - - Waiting for confirmation... - Ожидание подтверждения... - - - - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - Платёж был отправлен, но получатель не смог подтвердить его. -Транзакция записана и будет зачислена получателю, -но комментарий к платежу будет пустым. - - - - Payment was sent, but an invalid response was received - Платёж был отправлен, но был получен неверный ответ - - - - Payment completed - Платёж завершён - - - - Name - Имя - - - - Address - Адрес - - - - Label - Метка - - - - Bitcoin Address - Bitcoin-адрес - - - - This is one of your own addresses for receiving payments and cannot be entered in the address book. - Это один из Ваших личных адресов для получения платежей. Он не может быть добавлен в адресную книгу. - - - - Edit Address - Изменить адрес - - - - Edit Address Label - Изменить метку - - - - Add Address - Добавить адрес - - - - Bitcoin - Биткоин - - - - Bitcoin - Generating - Bitcoin - Генерация - - - - Bitcoin - (not connected) - Bitcoin - (нет связи) - - - - &Open Bitcoin - &Показать бумажник - - - - &Send Bitcoins - Отп&равка - - - - O&ptions... - Оп&ции... - - - - E&xit - Вы&ход - - - - Program has crashed and will terminate. - Программа экстренно завершилась и будет уничтожена. - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. ВНИМАНИЕ: Проверьте дату и время, установленные на Вашем компьютере. Если Ваши часы идут не правильно Bitcoin может наботать не корректно. - + beta бета @@ -2329,9 +1812,9 @@ but the comment information will be blank. main - - Bitcoin Qt - Bitcoin Qt + + Bitcoin-Qt + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts index 6cbb51633b..70a13aa63f 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -14,20 +16,20 @@ - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - Авторське право © 2009-2011 Розробники Bitcoin + Авторське право © 2009-2012 Розробники Bitcoin Це програмне забезпечення є експериментальним. Поширюється за ліцензією MIT/X11, додаткова інформація міститься у файлі license.txt, а також за адресою http://www.opensource.org/licenses/mit-license.php. -Цей продукт включає в себе програмне забезпечення, розроблене в рамках проекту OpenSSL (http://www.openssl.org/), криптографічне програмне забезпечення, написане Еріком Янгом (eay@cryptsoft.com) та функції для роботи з UPnP, написані Томасом Бернардом. +Цей продукт включає в себе програмне забезпечення, розроблене в рамках проекту OpenSSL (http://www.openssl.org/), криптографічне програмне забезпечення, написане Еріком Янгом (eay@cryptsoft.com), та функції для роботи з UPnP, написані Томасом Бернардом. @@ -78,22 +80,22 @@ This product includes software developed by the OpenSSL Project for use in the O &Видалити - + Export Address Book Data Експортувати адресну книгу - + Comma separated file (*.csv) Файли відділені комами (*.csv) - + Error exporting Помилка при експортуванні - + Could not write to file %1. Неможливо записати у файл %1. @@ -101,17 +103,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Назва - + Address Адреса - + (no label) (немає назви) @@ -125,125 +127,132 @@ This product includes software developed by the OpenSSL Project for use in the O + TextLabel Текстова мітка - + Enter passphrase Введіть пароль - + New passphrase Новий пароль - + Repeat new passphrase Повторіть пароль - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Введіть новий пароль для гаманця.<br/>Будь ласка, використовуйте паролі що містять <b> як мінімум 10 випадкових символів </b> або <b> як мінімум 8 слів</b>. - + Encrypt wallet Зашифрувати гаманець - + This operation needs your wallet passphrase to unlock the wallet. Ця операція потребує пароль для розблокування гаманця. - + Unlock wallet Розблокувати гаманець - + This operation needs your wallet passphrase to decrypt the wallet. Ця операція потребує пароль для дешифрування гаманця. - + Decrypt wallet Дешифрувати гаманець - + Change passphrase Змінити пароль - + Enter the old and new passphrase to the wallet. Ввести старий та новий паролі для гаманця. - + Confirm wallet encryption Підтвердити шифрування гаманця - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? УВАГА: Якщо ви зашифруєте гаманець і забудете пароль, ви <b>ВТРАТИТЕ ВСІ СВОЇ БІТКОІНИ</b>! Ви дійсно хочете зашифрувати свій гаманець? - - + + Wallet encrypted Гаманець зашифровано - - Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. + + + Warning: The Caps Lock key is on. + Увага: Ввімкнено Caps Lock - - - - + + + + Wallet encryption failed Не вдалося зашифрувати гаманець - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Виникла помилка під час шифрування гаманця. Ваш гаманець не було зашифровано. - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. + + + + The supplied passphrases do not match. Введені паролі не співпадають. - + Wallet unlock failed Не вдалося розблокувати гаманець - - + + The passphrase entered for the wallet decryption was incorrect. Введений пароль є невірним. - + Wallet decryption failed Не вдалося розшифрувати гаманець - + Wallet passphrase was succesfully changed. Пароль було успішно змінено. @@ -251,247 +260,278 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet Гаманець - + + Synchronizing with network... Синхронізація з мережею... - + Block chain synchronization in progress Відбувається синхронізація ланцюжка блоків... - + &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 В&ідправити - + Send coins to a bitcoin address Відправити монети на вказану адресу - + E&xit &Вихід - + Quit application Вийти - + &About %1 П&ро %1 - + Show information about Bitcoin Показати інформацію про Bitcoin - + &Options... &Параметри... - + Modify configuration options for bitcoin Редагувати параметри - + Open &Bitcoin Показати &гаманець - + Show the Bitcoin window Показати вікно гаманця - + &Export... &Експорт... - + Export the current view to a file Експортувати в файл - + &Encrypt Wallet &Шифрування гаманця - + Encrypt or decrypt wallet Зашифрувати чи розшифрувати гаманець - + &Change Passphrase Змінити парол&ь - + Change the passphrase used for wallet encryption Змінити пароль, який використовується для шифрування гаманця - + + About &Qt + &Про Qt + + + + Show information about Qt + Показати інформацію про Qt + + + &File &Файл - + &Settings &Налаштування - + &Help &Довідка - + Tabs toolbar Панель вкладок - + Actions toolbar Панель дій - + [testnet] [тестова мережа] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n активне з’єднання з мережею%n активні з’єднання з мережею%n активних з’єднань з мережею + + %n активне з’єднання з мережею + %n активні з’єднання з мережею + %n активних з’єднань з мережею + - + Downloaded %1 of %2 blocks of transaction history. Завантажено %1 з %2 блоків історії переказів. - + Downloaded %1 blocks of transaction history. Завантажено %1 блоків історії транзакцій. - + %n second(s) ago - %n секунду тому%n секунди тому%n секунд тому + + %n секунду тому + %n секунди тому + %n секунд тому + - + %n minute(s) ago - %n хвилину тому%n хвилини тому%n хвилин тому + + %n хвилину тому + %n хвилини тому + %n хвилин тому + - + %n hour(s) ago - %n годину тому%n години тому%n годин тому + + %n годину тому + %n години тому + %n годин тому + - + %n day(s) ago - %n день тому%n дня тому%n днів тому + + %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, яка відправиться тим вузлам що оброблять ваш переказ, та допоможе підтримати мережу. Ви хочете додати комісію? - + Sending... Відправлення... - + Sent transaction Надіслані перекази - + Incoming transaction Отримані перекази - + Date: %1 Amount: %2 Type: %3 @@ -504,15 +544,20 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> <b>Зашифрований</b> гаманець <b>розблоковано</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> <b>Зашифрований</b> гаманець <b>заблоковано</b> + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -528,8 +573,13 @@ Address: %4 - Display addresses in transaction list - Відображати адресу в списку переказів + &Display addresses in transaction list + &Відображати адресу в списку переказів + + + + Whether to show Bitcoin addresses in the transaction list + @@ -580,22 +630,22 @@ Address: %4 Редагувати адресу для відправлення - + The entered address "%1" is already in the address book. Введена адреса «%1» вже присутня в адресній книзі. - + The entered address "%1" is not a valid bitcoin address. Введена адреса «%1» не є коректною адресою в мережі Bitcoin. - + Could not unlock wallet. Неможливо розблокувати гаманець. - + New key generation failed. Не вдалося згенерувати нові ключі. @@ -674,8 +724,8 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Опціональна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Добровільна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. @@ -684,8 +734,8 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - Опціональна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Добровільна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. @@ -744,20 +794,12 @@ Address: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Гаманець</span></p></body></html> + + Wallet + Гаманець - + <b>Recent transactions</b> <b>Недавні перекази</b> @@ -781,13 +823,13 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins Відправити @@ -802,82 +844,87 @@ p, li { white-space: pre-wrap; } Дод&ати одержувача... - + Clear all Очистити все - + + Remove all transaction fields + Видалити всі поля транзакції + + + Balance: Баланс: - + 123.456 BTC 123.456 BTC - + Confirm the send action Підтвердити відправлення - + &Send &Відправити - + <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 recepient address is not valid, please recheck. Адреса отримувача невірна, будьласка перепровірте. - + The amount to pay must be larger than 0. Кількість монет для відправлення повинна бути більшою 0. - + Amount exceeds your balance Кількість монет для відправлення перевищує ваш баланс - + Total exceeds your balance when the %1 transaction fee is included Сума перевищить ваш баланс, якщо комісія %1 буде додана до вашого переказу - + Duplicate address found, can only send to each address once in one 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), а монети були використані з іншої копії, але не позначені як використані в цій. @@ -1098,54 +1145,62 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Дата - + Type Тип - + Address Адреса - + Amount Кількість - + Open for %n block(s) - Відкрити для %n блокуВідкрити для %n блоківВідкрити для %n блоків + + Відкрити для %n блоку + Відкрити для %n блоків + Відкрити для %n блоків + - + Open until %1 Відкрити до %1 - + Offline (%1 confirmations) Поза інтернетом (%1 підтверджень) - + Unconfirmed (%1 of %2 confirmations) Непідтверджено (%1 із %2 підтверджень) - + Confirmed (%1 confirmations) Підтверджено (%1 підтверджень) Mined balance will be available in %n more blocks - Добутими монетами можна буде скористатись через %n блокДобутими монетами можна буде скористатись через %n блокиДобутими монетами можна буде скористатись через %n блоків + + Добутими монетами можна буде скористатись через %n блок + Добутими монетами можна буде скористатись через %n блоки + Добутими монетами можна буде скористатись через %n блоків + @@ -1164,56 +1219,51 @@ p, li { white-space: pre-wrap; } - Received from IP - Отримано з IP-адреси + Received from + Отримано від - + Sent to Відправлено - - Sent to IP - Відправлено на IP-адресу - - - + 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. Сума, додана чи знята з балансу. @@ -1312,67 +1362,67 @@ p, li { white-space: pre-wrap; } Показати деталі... - + 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 до @@ -1388,220 +1438,220 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Версія - + Usage: Вкористання: - + Send command to -server or bitcoind Відправити команду серверу -server чи демону - + List commands Список команд - + Get help for a command Отримати довідку по команді - + Options: Параметри: - + Specify configuration file (default: bitcoin.conf) Вкажіть файл конфігурації (за промовчуванням: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Вкажіть pid-файл (за промовчуванням: bitcoind.pid) - + Generate coins Генерувати монети - - Don't generate coins + + Don't generate coins Не генерувати монети - + Start minimized Запускати згорнутим - + Specify data directory Вкажіть робочий каталог - + Specify connection timeout (in milliseconds) Вкажіть таймаут з’єднання (в мілісекундах) - + Connect through socks4 proxy Підключитись через SOCKS4-проксі - + Allow DNS lookups for addnode and connect Дозволити пошук в DNS для команд «addnode» і «connect» - + Add a node to connect to Додати вузол для підключення - + Connect only to the specified node Підключитись лише до вказаного вузла - - Don't accept connections from outside + + Don't accept connections from outside Не приймати підключення ззовні - - Don't attempt to use UPnP to map the listening port + + Don't attempt to use UPnP to map the listening port Не намагатись використовувати UPnP для відображення порту що прослуховується на роутері - + Attempt to use UPnP to map the listening port Намагатись використовувати UPnP для відображення порту що прослуховується на роутері - + Fee per kB to add to transactions you send Комісія за Кб - + Accept command line and JSON-RPC commands Приймати команди із командного рядка та команди JSON-RPC - + Run in the background as a daemon and accept commands Запустити в фоновому режимі (як демон) та приймати команди - + Use the test network Використовувати тестову мережу - + Username for JSON-RPC connections Ім’я користувача для JSON-RPC-з’єднань - + Password for JSON-RPC connections Пароль для JSON-RPC-з’єднань - + Listen for JSON-RPC connections on <port> (default: 8332) Прослуховувати <port> для JSON-RPC-з’єднань (за промовчуванням: 8332) - + 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) - + Set key pool size to <n> (default: 100) Встановити розмір пулу ключів <n> (за промовчуванням: 100) - + Rescan the block chain for missing wallet transactions Пересканувати ланцюжок блоків, в пошуку втрачених переказів - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1610,720 +1660,154 @@ SSL options: (see the Bitcoin 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) - + This help message Дана довідка - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Неможливо встановити блокування на робочий каталог %s. Можливо, гаманець вже запущено. - + Loading addresses... Завантаження адрес... - + Error loading addr.dat Помилка при завантаженні addr.dat - + Loading block index... Завантаження індексу блоків... - + Error loading blkindex.dat Помилка при завантаженні blkindex.dat - + Loading wallet... Завантаження гаманця... - + Error loading wallet.dat: Wallet corrupted Помилка при завантаженні wallet.dat: Гаманець пошкоджено - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - Помилка при завантаженні wallet.dat: Гаманець потребує новішої версії Bitcoin'а + Помилка при завантаженні wallet.dat: Гаманець потребує новішої версії Bitcoin'а - + Error loading wallet.dat Помилка при завантаженні wallet.dat - + Rescanning... Сканування... - + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Done loading Завантаження завершене - + Invalid -proxy address Помилка в адресі проксі-сервера - + Invalid amount for -paytxfee=<amount> Помилка у величині комісії - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. Увага: встановлено занадто велику комісію (-paytxfee). Комісія зніматиметься кожен раз коли ви проводитимете перекази. - + Error: CreateThread(StartNode) failed Помилка: CreateThread(StartNode) дала збій - + Warning: Disk space is low Увага: На диску мало вільного місця - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Неможливо прив’язати до порту %d на цьому комп’ютері. Молживо гаманець вже запущено. - - - This transaction is over the size limit. You can still send it for a fee of %s, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Цей переказ перевищує максимально допустимий розмір. Проте ви можете здійснити її, додавши комісію в %s, яка відправиться тим вузлам що оброблять ваш переказ, та допоможе підтримати мережу. Ви хочете додати комісію? - - - - Enter the current passphrase to the wallet. - Введіть пароль від гаманця. - - - - Passphrase - Пароль - - - - Please supply the current wallet decryption passphrase. - Будь ласка, вкажіть пароль для дешиврування гаманця. - - - - The passphrase entered for the wallet decryption was incorrect. - Пароль вказано невірно. - - - - Status - Статус - - Date - Дата - - - - Description - Опис - - - - Debit - Дебет - - - - Credit - Кредит - - - - Open for %d blocks - Відкрито до отримання %d блоків - - - - Open until %s - Відкрито до %s - - - - %d/offline? - %d/поза інтернетом? - - - - %d/unconfirmed - %d/не підтверджено - - - - %d confirmations - %d підтверджень - - - - Generated - Згенеровано - - - - Generated (%s matures in %d more blocks) - Згенеровано (%s «дозріє» через %d блоків) - - - - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - Згенеровано — увага: цей блок не був отриманий жодними іншими вузлами і, ймовірно, не буде прийнятий! - - - - Generated (not accepted) - Згенеровано (не підтверджено) - - - - From: - Відправник: - - - - Received with: - Отримувач: - - - - Payment to yourself - Відправлено собі - - - - To: - Отримувач: - - - - Generating - Генерація - - - - (not connected) - (не підключено) - - - - %d connections %d blocks %d transactions - %d з’єднань %d блоків %d переказів - - - - Wallet already encrypted. - Гаманець уже зашифровано. - - - - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - Введіть новий пароль для гаманця. -Будь ласка використовуйте пароль із як мінімум 10-и випадкових символів, або як мінімум із 8-и слів. - - - - Error: The supplied passphrase was too short. - Помилка: Вказаний пароль занадто короткий. - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - УВАГА: Якщо ви зашифруєте гаманець і забудете пароль, ви ВТРАТИТЕ ВСІ СВОЇ БІТКОІНИ! -Ви дійсно хочете зашифрувати свій гаманець? - - - - Please re-enter your new wallet passphrase. - Будь ласка, повторіть новий пароль. - - - - Error: the supplied passphrases didn't match. - Помилка: введені паролі не співпадають. - - - - Wallet encryption failed. - Не вдалося зашифрувати гаманець. - - - - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Гаманець зашифровано. -Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. - - - - Wallet is unencrypted, please encrypt it first. - Гаманець не зашифровано, спочатку зашифруйте його. - - - - Enter the new passphrase for the wallet. - Введіть новий пароль для гаманця. - - - - Re-enter the new passphrase for the wallet. - Повторіть ввід нового пароля. - - - - Wallet Passphrase Changed. - Змінено пароль від гаманця. - - - - New Receiving Address - Нова адреса для отримання - - - - You should use a new address for each payment you receive. - -Label - Ви повинні використовувати нову адресу для кожного переказу, який ви отримуєте. -Мітка - - - - <b>Status:</b> - <b>Статус:</b> - - - - , has not been successfully broadcast yet - , ще не було розіслано - - - - , broadcast through %d node - , розсилати через %d вузол - - - - , broadcast through %d nodes - , розсилати через %d вузлів - - - - <b>Date:</b> - <b>Дата:</b> - - - - <b>Source:</b> Generated<br> - <b>Джерело:</b> згенеровано<br> - - - - <b>From:</b> - <b>Відправник:</b> - - - - unknown - невідомо - - - - <b>To:</b> - <b>Отримувач:</b> - - - - (yours, label: - (ваша мітка: - - - - (yours) - (ваш) - - - - <b>Credit:</b> - <b>Кредит:</b> - - - - (%s matures in %d more blocks) - (%s «дозріє» через %d блоків) - - - - (not accepted) - (не прийнято) - - - - <b>Debit:</b> - <b>Дебет:</b> - - - - <b>Transaction fee:</b> - <b>Комісія:</b> - - - - <b>Net amount:</b> - <b>Загальна сума:</b> - - - - Message: - Повідомлення: - - - - Comment: - Коментар: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Після генерації монет, потрібно зачекати 120 блоків, перш ніж їх можна буде використати. Коли ви згенерували цей блок, його було відправлено в мережу для того, щоб він був доданий до ланцюжка блоків. Якщо ця процедура не вдасться, статус буде змінено на «не підтверджено» і ви не зможете потратити згенеровані монету. Таке може статись, якщо хтось інший згенерував блок на декілька секунд раніше. - - - - Cannot write autostart/bitcoin.desktop file - Неможливо записати файл autostart/bitcoin.desktop - - - - Main - Головне - - - - &Start Bitcoin on window system startup - &Запускати гаманець при вході в систему - - - - &Minimize on close - З&гортати замість закриття - - - - version %s - версія %s - - - - Error in amount - Помилка в кількості - - - - Send Coins - Відправка - - - - Amount exceeds your balance - Кількість монет для відправлення перевищує ваш баланс - - - - Total exceeds your balance when the - Сума перевищить ваш баланс, якщо комісія - - - - transaction fee is included - буде додана до вашого переказу - - - - Payment sent - Оплата відправлена - - - - Sending... - Відправлення... - - - - Invalid address - Помилкова адреса - - - - Sending %s to %s - Відправлення %s адресату %s - - - - CANCELLED - ВІДМІНЕНО - - - - Cancelled - Відмінено - - - - Transfer cancelled - Переказ відмінено - - - - Error: - Помилка: - - - - Insufficient funds - Недостатньо коштів - - - - Connecting... - Підключення... - - - - Unable to connect - Неможливо підключитись - - - - Requesting public key... - Запит публічного ключа... - - - - Received public key... - Отримання публічного ключа... - - - - Recipient is not accepting transactions sent by IP address - Одержувач не приймає перекази, відправлені на IP-адресу - - - - Transfer was not accepted - Переказ не підтверджено - - - - Invalid response received - Отримана помилкова відповідь - - - - Creating transaction... - Створення переказу... - - - - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - Цей переказ потребує додавання комісії як мінімум в %s, через його розмір, складність, або внаслідок використання недавно отриманих коштів - - - - Transaction creation failed - Не вдалося створити переказ - - - - Transaction aborted - Переказ відмінено - - - - Lost connection, transaction cancelled - Втрачено з’єднання, переказ відмінено - - - - Sending payment... - Відправка оплати... - - - - The transaction was rejected. This might happen if some of the coins in your wallet were already 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), а монети були використані з іншої копії, але не позначені як використані в цій. - - - - Waiting for confirmation... - Очікування підтвердження... - - - - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - Оплата була відправлена, але отримувач не зміг підтвердити її. -Переказ було записано і він буде нарахований отримувачу, -але коментар буде порожнім. - - - - Payment was sent, but an invalid response was received - Оплата була відправлена, але отримано неправильну відповідь - - - - Payment completed - Оплата завершена - - - - Name - Ім’я - - - - Address - Адреса - - - - Label - Мітка - - - - Bitcoin Address - Bitcoin-адреса - - - - This is one of your own addresses for receiving payments and cannot be entered in the address book. - Це одина із ваших власних адрес для отримання платежів. Вона не може бути додана в адресну книгу. - - - - Edit Address - Редагувати адресу - - - - Edit Address Label - Редагувати мітку - - - - Add Address - Додати адресу - - - - Bitcoin - Bitcoin - - - - Bitcoin - Generating - Генерація - - - - Bitcoin - (not connected) - Bitcoin - (не підключений) - - - - &Open Bitcoin - &Показати гаманець - - - - &Send Bitcoins - &Відправка - - - - O&ptions... - &Налаштування - - - - E&xit - &Вихід - - - - Program has crashed and will terminate. - Внаслідок виникнення помилки, програма буде закрита. - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Увага: будь ласка, перевірте дату і час на свому комп’ютері. Якщо ваш годинник йде неправильно, Bitcoin може працювати некоректно. - + beta бета @@ -2331,9 +1815,9 @@ but the comment information will be blank. main - - Bitcoin Qt - Bitcoin Qt + + Bitcoin-Qt + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index 832a86ed07..73e7e6c378 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -14,20 +16,20 @@ - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - 版权所有 © 2009-2011 比特币开发团队 + 版权归比特币开发者所有 © 2009-2012 -本软件目前尚属测试阶段 +这是一个实验性软件。 -本软件遵循 MIT/X11 软件协议,详细请查阅附带的 license.txt 文件,或访问 http://www.opensource.org/licenses/mit-license.php. +Distributed under the MIT/X11 software license, see the accompanying file license.txt or http://www.opensource.org/licenses/mit-license.php. -本软件包含 OpenSSL 项目开发的 OpenSSL Toolkit 组件(http://www.openssl.org/), Eric Young (eay@cryptsoft.com) 开发的加密软件以及 Thomas Bernard 开发的UPnP软件 +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. @@ -78,22 +80,22 @@ This product includes software developed by the OpenSSL Project for use in the O &删除 - + Export Address Book Data 导出地址薄数据 - + Comma separated file (*.csv) 逗号分隔文件 (*.csv) - + Error exporting 导出错误 - + Could not write to file %1. 无法写入文件 %1。 @@ -101,17 +103,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label 标签 - + Address 地址 - + (no label) (没有标签) @@ -125,125 +127,132 @@ This product includes software developed by the OpenSSL Project for use in the O + TextLabel 文本标签 - + Enter passphrase 输入口令 - + New passphrase 新口令 - + Repeat new passphrase 重复新口令 - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. 输入钱包的新口令。<br/>使用的口令请至少包含<b>10个以上随机字符</>,或者是<b>8个以上的单词</b>。 - + Encrypt wallet 加密钱包 - + This operation needs your wallet passphrase to unlock the wallet. 该操作需要您首先使用口令解锁钱包。 - + Unlock wallet 解锁钱包 - + This operation needs your wallet passphrase to decrypt the wallet. 该操作需要您首先使用口令解密钱包。 - + Decrypt wallet 解密钱包 - + Change passphrase 修改口令 - + Enter the old and new passphrase to the wallet. 请输入钱包的旧口令与新口令。 - + Confirm wallet encryption 确认加密钱包 - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? 警告:如果您加密了您的钱包之后忘记了口令,您将会<b>失去所有的比特币</b>! 确定要加密钱包吗? - - + + Wallet encrypted 钱包已加密 - - Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 请注意,当您的计算机感染恶意软件时,加密钱包并不能完全规避您的比特币被偷窃的可能。 + + + Warning: The Caps Lock key is on. + 警告:大写锁定键CapsLock开启 - - - - + + + + Wallet encryption failed 钱包加密失败 - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. 由于一个本地错误,加密钱包操作已经失败。您的钱包没有被加密。 - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的比特币还是有可能丢失。 + + + + The supplied passphrases do not match. 口令不匹配。 - + Wallet unlock failed 钱包解锁失败 - - + + The passphrase entered for the wallet decryption was incorrect. 用于解密钱包的口令不正确。 - + Wallet decryption failed 钱包解密失败。 - + Wallet passphrase was succesfully changed. 钱包口令修改成功 @@ -251,247 +260,268 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet 比特币钱包 - + + Synchronizing with network... 正在与网络同步... - + Block chain synchronization in progress 正在同步区域锁链 - + &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 &发送货币 - + Send coins to a bitcoin address 将货币发送到一个比特币地址 - + E&xit 退出 - + Quit application 退出程序 - + &About %1 &关于 %1 - + Show information about Bitcoin 显示比特币的相关信息 - + &Options... &选项... - + Modify configuration options for bitcoin 修改比特币配置选项 - + Open &Bitcoin 打开 &比特币 - + Show the Bitcoin window 显示比特币窗口 - + &Export... &导出... - + Export the current view to a file 导出当前视图到指定文件 - + &Encrypt Wallet &加密钱包 - + Encrypt or decrypt wallet 加密或解密钱包 - + &Change Passphrase &修改口令 - + Change the passphrase used for wallet encryption 修改钱包加密口令 - + + About &Qt + 关于 &Qt + + + + Show information about Qt + 显示Qt相关信息 + + + &File &文件 - + &Settings &设置 - + &Help &帮助 - + Tabs toolbar 分页工具栏 - + Actions toolbar 动作工具栏 - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n 个到比特币网络的活动连接 + + %n 个到比特币网络的活动连接 + - + Downloaded %1 of %2 blocks of transaction history. %1 / %2 个交易历史的区块已下载 - + Downloaded %1 blocks of transaction history. %1 个交易历史的区块已下载 - + %n second(s) ago - %n 秒前 + + %n 秒前 + - + %n minute(s) ago - %n 分种前 + + %n 分种前 + - + %n hour(s) ago - %n 小时前 + + %n 小时前 + - + %n day(s) ago - %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 交易费, 交易费将支付给处理该笔交易的网络节点,有助于维持比特币网络的运行. 您愿意支付交易费用吗? - + Sending... 发送中 - + Sent transaction 已发送交易 - + Incoming transaction 流入交易 - + Date: %1 Amount: %2 Type: %3 @@ -504,15 +534,20 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> 钱包已被<b>加密</b>,当前为<b>解锁</b>状态 - + Wallet is <b>encrypted</b> and currently <b>locked</b> 钱包已被<b>加密</b>,当前为<b>锁定</b>状态 + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -528,8 +563,13 @@ Address: %4 - Display addresses in transaction list - 在交易列表中显示地址 + &Display addresses in transaction list + &在交易列表中显示地址 + + + + Whether to show Bitcoin addresses in the transaction list + @@ -580,22 +620,22 @@ Address: %4 编辑发送地址 - + The entered address "%1" is already in the address book. 输入的地址 "%1" 已经存在于地址薄。 - + The entered address "%1" is not a valid bitcoin address. 输入的地址 "%1" 并不是一个有效的比特币地址 - + Could not unlock wallet. 无法解锁钱包 - + New key generation failed. 密钥创建失败. @@ -674,8 +714,8 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - 为每1kB交易数据支付交易费将保证您的交易尽快被处理.大部分交易数据都小于1kB. 建议支付0.01个比特币的交易费. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + 建议支付交易费用,有助于您的交易得到尽快处理. 绝大多数交易的字节数为 1 kB. 建议支付0.01个比特币. @@ -684,8 +724,8 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - 为每1kB交易数据支付交易费将保证您的交易尽快被处理.大部分交易数据都小于1kB. 建议支付0.01个比特币的交易费. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + 建议支付交易费用,有助于您的交易得到尽快处理. 绝大多数交易的字节数为 1 kB. 建议支付0.01个比特币. @@ -744,20 +784,12 @@ Address: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">钱包</span></p></body></html> + + Wallet + 钱包 - + <b>Recent transactions</b> <b>当前交易</b> @@ -781,13 +813,13 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins 发送货币 @@ -802,82 +834,87 @@ p, li { white-space: pre-wrap; } &添加接收者... - + Clear all 清除全部 - + + Remove all transaction fields + 移除所有交易项 + + + Balance: 余额 - + 123.456 BTC 123.456 BTC - + Confirm the send action 确认并发送货币 - + &Send &发送 - + <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 recepient address is not valid, please recheck. 接收者地址不合法,请检查。 - + The amount to pay must be larger than 0. 支付金额必须大于0. - + Amount exceeds your balance 余额不足。 - + Total exceeds your balance when the %1 transaction fee is included 计入 %1 的交易费后,您的余额不足以支付总价。 - + Duplicate address found, can only send to each address once in one 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的副本,而货币在那个副本中已经被消费,但在当前钱包中未被标记为已消费。 @@ -1098,54 +1135,58 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date 日期 - + Type 类型 - + Address 地址 - + Amount 数量 - + Open for %n block(s) - 开启 %n 个数据块 + + 开启 %n 个数据块 + - + Open until %1 至 %1 个数据块时开启 - + Offline (%1 confirmations) 离线 (%1 个确认项) - + Unconfirmed (%1 of %2 confirmations) 未确认 (%1 / %2 条确认信息) - + Confirmed (%1 confirmations) 已确认 (%1 条确认信息) Mined balance will be available in %n more blocks - 挖矿所得将在 %n 个数据块之后可用 + + 挖矿所得将在 %n 个数据块之后可用 + @@ -1164,56 +1205,51 @@ p, li { white-space: pre-wrap; } - Received from IP - 从IP接收 + Received from + 收款来自 - + Sent to 发送到 - - Sent to IP - 发送到IP - - - + 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. 从余额添加或移除的金额 @@ -1312,67 +1348,67 @@ p, li { white-space: pre-wrap; } 显示细节... - + 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 @@ -1388,155 +1424,155 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version 比特币版本 - + Usage: 使用: - + Send command to -server or bitcoind 发送命令到服务器或者 bitcoind - + List commands 列出命令 - + Get help for a command 获得某条命令的帮助 - + Options: 选项: - + Specify configuration file (default: bitcoin.conf) 指定配置文件 (默认为 bitcoin.conf) - + Specify pid file (default: bitcoind.pid) 指定 pid 文件 (默认为 bitcoind.pid) - + Generate coins 生成货币 - - Don't generate coins + + Don't generate coins 不要生成货币 - + Start minimized 启动时最小化 - + Specify data directory 指定数据目录 - + Specify connection timeout (in milliseconds) 指定连接超时时间 (微秒) - + Connect through socks4 proxy 通过 socks4 代理连接 - + Allow DNS lookups for addnode and connect 连接节点时允许DNS查找 - + Add a node to connect to 连接到指定节点 - + Connect only to the specified node 只连接到指定节点 - - Don't accept connections from outside + + Don't accept connections from outside 禁止接收外部连接 - - Don't attempt to use UPnP to map the listening port + + Don't attempt to use UPnP to map the listening port 禁止使用 UPnP 映射监听端口 - + Attempt to use UPnP to map the listening port 尝试使用 UPnP 映射监听端口 - + Fee per kB to add to transactions you send 每发送1kB交易所需的费用 - + Accept command line and JSON-RPC commands 接受命令行和 JSON-RPC 命令 - + Run in the background as a daemon and accept commands 在后台运行并接受命令 @@ -1544,63 +1580,63 @@ p, li { white-space: pre-wrap; } - + Use the test network 使用测试网络 - + Username for JSON-RPC connections JSON-RPC连接用户名 - + Password for JSON-RPC connections JSON-RPC连接密码 - + Listen for JSON-RPC connections on <port> (default: 8332) JSON-RPC连接监听<端口> (默认为 8332) - + 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) - + Set key pool size to <n> (default: 100) 设置密钥池大小为 <n> (缺省: 100) - + Rescan the block chain for missing wallet transactions 重新扫描数据链以查找遗漏的交易 - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1609,720 +1645,153 @@ SSL 选项: (SSL 安装教程具体见比特币维基百科) - + 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) - + This help message 该帮助信息 - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. 无法给数据目录 %s 加锁。比特币进程可能已在运行。 - + Loading addresses... 正在加载地址... - + Error loading addr.dat 加载 addr.dat 错误 - + Loading block index... 加载区块索引... - + Error loading blkindex.dat 加载 blkindex.dat 失败 - + Loading wallet... 正在加载钱包... - + Error loading wallet.dat: Wallet corrupted 加载 wallet.dat 失败:钱包崩溃 - + Error loading wallet.dat: Wallet requires newer version of Bitcoin 加载 wallet.dat 失败:运行钱包需要一个更新版本的比特币软件 - + Error loading wallet.dat 加载 wallet.dat 失败 - + Rescanning... 正在重新扫描... - + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Done loading 加载完成 - + Invalid -proxy address 代理地址不合法 - + Invalid amount for -paytxfee=<amount> 不合适的交易费 -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. 警告: -paytxfee 交易费设置过高. 每进行一笔交易您都将支付该数量的交易费. - + Error: CreateThread(StartNode) failed 错误:线程创建(StartNode)失败 - + Warning: Disk space is low 警告:磁盘空间不足 - + Unable to bind to port %d on this computer. Bitcoin is probably already running. 无法绑定端口 %d 到这台计算机。比特币进程可能已在运行。 - - - This transaction is over the size limit. You can still send it for a fee of %s, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - 交易超出大小限制。你可以继续以 %s 的费用发送。这笔费用将被发送到处理此次交易的节点用以帮助支持这个网络。你想要支付此笔费用吗? - - - - Enter the current passphrase to the wallet. - 输入当前钱包口令 - - - - Passphrase - 口令 - - - - Please supply the current wallet decryption passphrase. - 请提供当前钱包解密口令 - - - - The passphrase entered for the wallet decryption was incorrect. - 当前钱包解密口令不正确。 - - - - Status - 状态 - - Date - 日期 - - - - Description - 描述 - - - - Debit - 支出 - - - - Credit - 收入 - - - - Open for %d blocks - 开启 %d 个数据块 - - - - Open until %s - 至 %s 个数据块时开启 - - - - %d/offline? - %d/ 离线? - - - - %d/unconfirmed - %d/未确认 - - - - %d confirmations - %d 确认项 - - - - Generated - 生成 - - - - Generated (%s matures in %d more blocks) - (%s 成熟于 %d 以上数据块) - - - - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - 已生成 - 警告:此区块未被其他接收并可能不被接受 - - - - Generated (not accepted) - 已生成(未接受) - - - - From: - 从: - - - - Received with: - 接收于 - - - - Payment to yourself - 支付给自己 - - - - To: - 到: - - - - Generating - 生成中 - - - - (not connected) - (未连接) - - - - %d connections %d blocks %d transactions - %d 个连接 %d 个数据块 %d 笔交易 - - - - Wallet already encrypted. - 钱包已被加密。 - - - - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - 请输入新的钱包密码. -密码须包含10个以上字符,或8个以上单词. - - - - Error: The supplied passphrase was too short. - 错误:提供的口令过短。 - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - 警告:如果您在加密钱包后忘记密码, 你将会丢失钱包中所有的比特币! -您确定要对钱包进行加密吗? - - - - Please re-enter your new wallet passphrase. - 请重新输入您的新钱包口令 - - - - Error: the supplied passphrases didn't match. - 错误:提供的口令不匹配。 - - - - Wallet encryption failed. - 钱包加密失败。 - - - - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 钱包加密成功. -谨记:如果您的电脑感染病毒或木马,即使钱包已经加密,也不能保证您的比特币不被窃,请做好电脑防毒工作. - - - - Wallet is unencrypted, please encrypt it first. - 钱包未加密,请先加密. - - - - Enter the new passphrase for the wallet. - 为钱包输入新口令 - - - - Re-enter the new passphrase for the wallet. - 请再次输入新口令。 - - - - Wallet Passphrase Changed. - 钱包口令已改变 - - - - New Receiving Address - 新接收地址 - - - - You should use a new address for each payment you receive. - -Label - 你应该为每一笔支付使用一条新地址 - -标签 - - - - <b>Status:</b> - <b>状态:</b> - - - - , has not been successfully broadcast yet - ,还未被成功广播。 - - - - , broadcast through %d node - ,通过%d个节点广播 - - - - , broadcast through %d nodes - ,通过%d个节点组广播 - - - - <b>Date:</b> - <b>日期:</b> - - - - <b>Source:</b> Generated<br> - <b>来源:</b> 生成<br> - - - - <b>From:</b> - <b>从:</b> - - - - unknown - 未知 - - - - <b>To:</b> - <b>到:</b> - - - - (yours, label: - (您的,标签: - - - - (yours) - (你的) - - - - <b>Credit:</b> - <b>收入:</b> - - - - (%s matures in %d more blocks) - (%s 成熟于 %d 以上数据块) - - - - (not accepted) - (拒绝) - - - - <b>Debit:</b> - <b>支出:</b> - - - - <b>Transaction fee:</b> - <b>交易费:</b> - - - - <b>Net amount:</b> - <b>网络金额:</b> - - - - Message: - 消息: - - - - Comment: - 备注: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - 新生产的比特币必须等待120个数据块之后才能被使用. 当您生产出此数据块,它将被广播至比特币网络并添加至数据链. 如果添加到数据链失败, 它的状态将变成"不被接受",生产的比特币将不能使用. 在您生产新数据块的几秒钟内, 如果其它节点也生产出同样的数据块,有可能会发生这种情况. - - - - Cannot write autostart/bitcoin.desktop file - 无法写入 autostart/bitcoin.desktop 文件 - - - - Main - 主要的 - - - - &Start Bitcoin on window system startup - &系统启动时运行比特币 - - - - &Minimize on close - &关闭时最小化 - - - - version %s - 版本 %s - - - - Error in amount - 金额错误 - - - - Send Coins - 已发送的货币 - - - - Amount exceeds your balance - 余额不足 - - - - Total exceeds your balance when the - 总价超出您的余额: - - - - transaction fee is included - 已包含交易费 - - - - Payment sent - 支付已发送 - - - - Sending... - 正在发送... - - - - Invalid address - 地址不合法 - - - - Sending %s to %s - 正在发送 %s 到 %s - - - - CANCELLED - 已取消 - - - - Cancelled - 已取消 - - - - Transfer cancelled - 传输已取消 - - - - Error: - 错误: - - - - Insufficient funds - 金额不足 - - - - Connecting... - 正在连接... - - - - Unable to connect - 无法连接 - - - - Requesting public key... - 正在请求公钥... - - - - Received public key... - 公钥已接收... - - - - Recipient is not accepting transactions sent by IP address - 接收者拒绝接收该 IP 地址发送的交易 - - - - Transfer was not accepted - 传输被拒绝 - - - - Invalid response received - 收到非法应答 - - - - Creating transaction... - 创建交易... - - - - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - 由于交易量、复杂度或涉及新收到的比特币的原因,您需要为该笔交易支付至少 %s 个比特币的交易费. - - - - Transaction creation failed - 交易创建失败 - - - - Transaction aborted - 交易终止 - - - - Lost connection, transaction cancelled - 连接丢失,交易已被取消 - - - - Sending payment... - 发送支付... - - - - The transaction was rejected. This might happen if some of the coins in your wallet were already 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, 然后用复制的钱包花掉了钱, 您现在所用的原始钱包中却没有该笔交易记录. - - - - Waiting for confirmation... - 等待确认... - - - - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - 已付款, 但是无法验证收款人. -这笔交易已经被记录了, 金额也会被记入至收款人的账户, -但附注信息将会是空白. - - - - Payment was sent, but an invalid response was received - 支付已发送,但收到了一个非法应答。 - - - - Payment completed - 支付已完成 - - - - Name - 姓名 - - - - Address - 地址 - - - - Label - 标签 - - - - Bitcoin Address - 比特币地址 - - - - This is one of your own addresses for receiving payments and cannot be entered in the address book. - 这是一条您自己的用于接收支付的地址,不可以填入地址薄。 - - - - Edit Address - 编辑地址 - - - - Edit Address Label - 编辑地址标签 - - - - Add Address - 添加地址 - - - - Bitcoin - 比特币 - - - - Bitcoin - Generating - 比特币 - 生成中 - - - - Bitcoin - (not connected) - 比特币 - (未连接) - - - - &Open Bitcoin - &打开比特币 - - - - &Send Bitcoins - &发送比特币 - - - - O&ptions... - 选项 - - - - E&xit - 退出 - - - - Program has crashed and will terminate. - 程序崩溃,即将终止。 - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. 警告:请确定您当前计算机的日期和时间是正确的。比特币将无法在错误的时间下正常工作。 - + beta 测试 @@ -2330,9 +1799,9 @@ but the comment information will be blank. main - - Bitcoin Qt - 比特币 Qt + + Bitcoin-Qt + 比特币-Qt - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index fb5e533b25..980a24d8fb 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -14,20 +16,20 @@ - Copyright © 2009-2011 Bitcoin Developers + Copyright © 2009-2012 Bitcoin Developers This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - 版權為位元幣開發人員自公元 2009 至 2011 年起所有 + 版權為 Bitcoin 開發人員自西元 2009 至 2012 年起所有 -這是個實驗性質的軟體. +這是個實驗性的軟體. -這個軟體在 MIT/X11 執照規範下發行散佈, 詳情請見附帶的 license.txt 檔案, 或網站 http://www.opensource.org/licenses/mit-license.php. +此軟體依據 MIX/X11 軟體授權條款散布, 詳情請見附帶的 license.txt 檔案, 或是以下網站: http://www.opensource.org/licenses/mit-license.php. -這個產品中包含了 OpenSSL 專案所開發的 OpenSSL Toolkit 軟體 (http://www.openssl.org/), Eric Young (eay@cryptsoft.com) 所寫的加解密軟體, 以及 Thomas Bernard 所寫的 UPnP 軟體. +此產品也包含了由 OpenSSL Project 所開發的 OpenSSL Toolkit (http://www.openssl.org/) 軟體, 由 Eric Young (eay@cryptsoft.com) 撰寫的加解密軟體, 以及由 Thomas Bernard 所撰寫的 UPnP 軟體. @@ -78,22 +80,22 @@ This product includes software developed by the OpenSSL Project for use in the O 刪除 - + Export Address Book Data 匯出位址簿資料 - + Comma separated file (*.csv) 逗號區隔資料檔 (*.csv) - + Error exporting 資料匯出有誤 - + Could not write to file %1. 無法寫入檔案 %1. @@ -101,17 +103,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label 標記 - + Address 位址 - + (no label) (沒有標記) @@ -125,125 +127,132 @@ This product includes software developed by the OpenSSL Project for use in the O + TextLabel 文字標籤 - + Enter passphrase 輸入密碼 - + New passphrase 新的密碼 - + Repeat new passphrase 重複新密碼 - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. 輸入錢包的新密碼.<br/>請用<b>10個以上的字元</b>, 或是<b>8個以上的字詞</b>. - + Encrypt wallet 錢包加密 - + This operation needs your wallet passphrase to unlock the wallet. 這個動作需要用你的錢包密碼來解鎖 - + Unlock wallet 錢包解鎖 - + This operation needs your wallet passphrase to decrypt the wallet. 這個動作需要用你的錢包密碼來解密 - + Decrypt wallet 錢包解密 - + Change passphrase 變更密碼 - + Enter the old and new passphrase to the wallet. 輸入錢包的新舊密碼. - + Confirm wallet encryption 錢包加密確認 - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? 警告: 如果將錢包加密後忘記密碼, 你會<b>失去其中所有的位元幣</b>! 你確定要將錢包加密嗎? - - + + Wallet encrypted 錢包已加密 - - Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 請記得, 即使將錢包加密, 也不能完全防止因惡意軟體入侵, 而導致位元幣被偷. + + + Warning: The Caps Lock key is on. + 警告: 鍵盤輸入鎖定為大寫字母中. - - - - + + + + Wallet encryption failed 錢包加密失敗 - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. 錢包加密因程式內部有誤而失敗. 你的錢包還是沒有加密. - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 位元幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的位元幣. + + + + The supplied passphrases do not match. 提供的密碼不符. - + Wallet unlock failed 錢包解鎖失敗 - - + + The passphrase entered for the wallet decryption was incorrect. 用來解密錢包的密碼輸入錯誤. - + Wallet decryption failed 錢包解密失敗 - + Wallet passphrase was succesfully changed. 錢包密碼變更成功. @@ -251,247 +260,268 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet 位元幣錢包 - + + Synchronizing with network... 網路同步中... - + Block chain synchronization in progress 正在進行區塊鎖鏈的同步中 - + &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 付錢 - + Send coins to a bitcoin address 付錢至某個位元幣位址 - + E&xit 結束 - + Quit application 結束應用程式 - + &About %1 關於%1 - + Show information about Bitcoin 顯示位元幣相關資訊 - + &Options... 選項... - + Modify configuration options for bitcoin 修改位元幣的設定選項 - + Open &Bitcoin 開啟位元幣 - + Show the Bitcoin window 顯示位元幣主視窗 - + &Export... 匯出... - + Export the current view to a file 將目前版面匯出至檔案 - + &Encrypt Wallet 錢包加密 - + Encrypt or decrypt wallet 將錢包加解密 - + &Change Passphrase 變更密碼 - + Change the passphrase used for wallet encryption 變更錢包加密用的密碼 - + + About &Qt + 關於 &Qt + + + + Show information about Qt + 顯示有關於 Qt 的資訊 + + + &File 檔案 - + &Settings 設定 - + &Help 求助 - + Tabs toolbar 分頁工具列 - + Actions toolbar 動作工具列 - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - 與位元幣網路有 %n 個連線在使用中 + + 與位元幣網路有 %n 個連線在使用中 + - + Downloaded %1 of %2 blocks of transaction history. 已下載了 %1/%2 個交易紀錄的區塊. - + Downloaded %1 blocks of transaction history. 已下載了 %1 個交易紀錄的區塊. - + %n second(s) ago - %n 秒鐘前 + + %n 秒鐘前 + - + %n minute(s) ago - %n 分鐘前 + + %n 分鐘前 + - + %n hour(s) ago - %n 小時前 + + %n 小時前 + - + %n day(s) ago - %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 的費用來傳送. 這筆費用會付給處理該筆交易的節點, 並幫助維持整個網路. 你願意支付這項費用嗎? - + Sending... 付出中... - + Sent transaction 付款交易 - + Incoming transaction 收款交易 - + Date: %1 Amount: %2 Type: %3 @@ -503,15 +533,20 @@ Address: %4 位址: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> 錢包<b>已加密</b>並且正<b>解鎖中</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> 錢包<b>已加密</b>並且正<b>上鎖中</b> + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -527,8 +562,13 @@ Address: %4 - Display addresses in transaction list - 在交易列表中顯示位址 + &Display addresses in transaction list + &在交易列表中顯示位址 + + + + Whether to show Bitcoin addresses in the transaction list + @@ -579,22 +619,22 @@ Address: %4 編輯付款位址 - + The entered address "%1" is already in the address book. 輸入的位址"%1"已存在於位址簿中. - + The entered address "%1" is not a valid bitcoin address. 輸入的位址"%1"並非有效的位元幣位址 - + Could not unlock wallet. 無法將錢包解鎖. - + New key generation failed. 新密鑰產生失敗. @@ -673,8 +713,8 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - 非必要的交易手續費, 有助於縮短你的交易處理時間. 以 kB 為計費單位, 而大部份交易的大小是 1kB. 建議設定為 0.01 元. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + 非必要的交易手續費, 以 kB 為計費單位, 且有助於縮短你的交易處理時間. 大部份交易的資料大小是 1 kB. 建議設定為 0.01 元. @@ -683,8 +723,8 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1kB. Fee 0.01 recommended. - 非必要的交易手續費, 有助於縮短你的交易處理時間. 以 kB 為計費單位, 而大部份交易的大小是 1kB. 建議設定為 0.01 元. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + 非必要的交易手續費, 以 kB 為計費單位, 且有助於縮短你的交易處理時間. 大部份交易的資料大小是 1 kB. 建議設定為 0.01 元. @@ -743,20 +783,12 @@ Address: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">錢包</span></p></body></html> + + Wallet + 錢包 - + <b>Recent transactions</b> <b>最近交易</b> @@ -780,13 +812,13 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins 付錢 @@ -801,82 +833,87 @@ p, li { white-space: pre-wrap; } 加收款人... - + Clear all 全部清掉 - + + Remove all transaction fields + 移除所有交易欄位 + + + Balance: 餘額: - + 123.456 BTC 123.456 BTC - + Confirm the send action 確認付款動作 - + &Send 付出 - + <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 recepient address is not valid, please recheck. 無效的收款位址, 請再檢查看看. - + The amount to pay must be larger than 0. 付款金額必須大於 0. - + Amount exceeds your balance 金額超過了你的餘額 - + Total exceeds your balance when the %1 transaction fee is included 加上交易手續費 %1 後的總金額超過了你的餘額 - + Duplicate address found, can only send to each address once in one 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, 然後用複製的錢包花掉了錢, 你現在所用的原來的錢包中卻沒有該筆交易紀錄. @@ -1097,54 +1134,58 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date 日期 - + Type 種類 - + Address 位址 - + Amount 金額 - + Open for %n block(s) - 在 %n 個區塊內未定 + + 在 %n 個區塊內未定 + - + Open until %1 在 %1 前未定 - + Offline (%1 confirmations) 離線中 (經確認 %1 次) - + Unconfirmed (%1 of %2 confirmations) 未確認 (經確認 %1 次, 應確認 %2 次) - + Confirmed (%1 confirmations) 已確認 (經確認 %1 次) Mined balance will be available in %n more blocks - 生產金額將在 %n 個區塊產出後可用 + + 生產金額將在 %n 個區塊產出後可用 + @@ -1163,56 +1204,51 @@ p, li { white-space: pre-wrap; } - Received from IP - 收受於網路位址 + Received from + 收受自 - + Sent to 付出至 - - Sent to IP - 付出至網路位址 - - - + 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. 減去或加入至餘額的金額 @@ -1311,67 +1347,67 @@ p, li { white-space: pre-wrap; } 顯示明細... - + 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 @@ -1387,214 +1423,214 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version 位元幣版本 - + Usage: 用法: - + Send command to -server or bitcoind 送指令至 -server 或 bitcoind - + List commands 列出指令 - + Get help for a command 取得指令說明 - + Options: 選項: - + Specify configuration file (default: bitcoin.conf) 指定設定檔 (預設: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) 指定行程識別碼檔案 (預設: bitcoind.pid) - + Generate coins 生產位元幣 - - Don't generate coins + + Don't generate coins 不生產位元幣 - + Start minimized 啓動時最小化 - + Specify data directory 指定資料目錄 - + Specify connection timeout (in milliseconds) 指定連線逾時時間 (毫秒) - + Connect through socks4 proxy 透過 socks4 代理伺服器連線 - + Allow DNS lookups for addnode and connect 允許 addnode 和 connect 時做域名解析 - + Add a node to connect to 新增連線節點 - + Connect only to the specified node 只連線至指定節點 - - Don't accept connections from outside + + Don't accept connections from outside 不接受外來連線 - - Don't attempt to use UPnP to map the listening port + + Don't attempt to use UPnP to map the listening port 不嘗試用 UPnP 來設定服務連接埠的對應 - + Attempt to use UPnP to map the listening port 嘗試用 UPnP 來設定服務連接埠的對應 - + Fee per kB to add to transactions you send 交易付款時每 kB 的交易手續費 - + Accept command line and JSON-RPC commands 接受命令列與 JSON-RPC 指令 - + Run in the background as a daemon and accept commands 以背景程式執行並接受指令 - + Use the test network 使用測試網路 - + Username for JSON-RPC connections JSON-RPC 連線使用者名稱 - + Password for JSON-RPC connections JSON-RPC 連線密碼 - + Listen for JSON-RPC connections on <port> (default: 8332) 在通訊埠 <port> 聽候 JSON-RPC 連線 (預設: 8332) - + 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) - + Set key pool size to <n> (default: 100) 設定密鑰池大小為 <n> (預設: 100) - + Rescan the block chain for missing wallet transactions 重新掃描區塊鎖鏈, 以尋找錢包所遺漏的交易. - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1603,721 +1639,154 @@ SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) - + 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 此協助訊息 - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. 無法鎖定資料目錄 %s. 也許位元幣已經在執行了. - + Loading addresses... 載入位址中... - + Error loading addr.dat 載入 addr.dat 錯誤 - + Loading block index... 載入區塊索引中... - + Error loading blkindex.dat 載入 blkindex.dat 失敗 - + Loading wallet... 載入錢包中... - + Error loading wallet.dat: Wallet corrupted 載入 wallet.dat 失敗: 錢包壞掉了 - + Error loading wallet.dat: Wallet requires newer version of Bitcoin 載入 wallet.dat 錯誤: 此錢包需要新版的 Bitcoin - + Error loading wallet.dat 載入 wallet.dat 錯誤 - + Rescanning... 重新掃描中... - + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Done loading 載入完成 - + Invalid -proxy address 無效的 -proxy 位址 - + Invalid amount for -paytxfee=<amount> -paytxfee=<金額> 中的金額無效 - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. 警告: -paytxfee 設定得很高. 這是當你交易付款時所要支付的手續費. - + Error: CreateThread(StartNode) failed 錯誤: CreateThread(StartNode) 失敗 - + Warning: Disk space is low 警告: 磁碟空間很少 - + Unable to bind to port %d on this computer. Bitcoin is probably already running. 無法與這台電腦上的通訊埠 %d 連結. 也許 Bitcoin 已經在執行了. - - - This transaction is over the size limit. You can still send it for a fee of %s, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - 這筆交易的資料大小超過限制了. 你還是可以付出 %s 的費用來傳送. 這項費用會付給處理該筆交易的節點, 並幫助維持整個網路. 你願意支付這項費用嗎? - - - - Enter the current passphrase to the wallet. - 輸入錢包目前的密碼. - - - - Passphrase - 密碼 - - - - Please supply the current wallet decryption passphrase. - 請提供錢包目前的解密密碼 - - - - The passphrase entered for the wallet decryption was incorrect. - 輸入的錢包解密密碼不對 - - - - Status - 狀態 - - Date - 日期 - - - - Description - 說明 - - - - Debit - 出帳 - - - - Credit - 入帳 - - - - Open for %d blocks - 在 %d 個區塊內未定 - - - - Open until %s - 在 %s 前未定 - - - - %d/offline? - %d/斷線中? - - - - %d/unconfirmed - %d/未確認 - - - - %d confirmations - 經確認 %d 次 - - - - Generated - 已產出 - - - - Generated (%s matures in %d more blocks) - 已產出 (%s 將在 %d 個區塊產出後熟成) - - - - Generated - Warning: This block was not received by any other nodes and will probably not be accepted! - 已產出 - 警告: 沒有任何的其他節點收到此區塊, 也許不會被接受! - - - - Generated (not accepted) - 已產出 (不被接受) - - - - From: - 來自: - - - - Received with: - 收受於: - - - - Payment to yourself - 付給自己 - - - - To: - 目的: - - - - Generating - 生產中 - - - - (not connected) - (未連線) - - - - %d connections %d blocks %d transactions - %d 個連線 %d 個區塊 %d 次交易 - - - - Wallet already encrypted. - 錢包已經加密了. - - - - Enter the new passphrase to the wallet. -Please use a passphrase of 10 or more random characters, or eight or more words. - 輸入錢包的新密碼. -密碼請用 10 個以上的字元, 或是 8 個以上的字詞. - - - - Error: The supplied passphrase was too short. - 錯誤: 提供的密碼太短了. - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS! -Are you sure you wish to encrypt your wallet? - 警告: 如果將錢包加密後忘記密碼, 你會失去其中所有的位元幣! -你確定要將錢包加密嗎? - - - - Please re-enter your new wallet passphrase. - 請再輸入一次新密碼. - - - - Error: the supplied passphrases didn't match. - 錯誤: 提供的密碼不相符. - - - - Wallet encryption failed. - 錢包加密失敗. - - - - Wallet Encrypted. -Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 錢包已加密. -請記得, 即使將錢包加密, 也不能完全防止因惡意軟體入侵, 而導致位元幣被偷. - - - - Wallet is unencrypted, please encrypt it first. - 錢包未加密, 請先加密. - - - - Enter the new passphrase for the wallet. - 輸入錢包的新密碼. - - - - Re-enter the new passphrase for the wallet. - 再輸入一次錢包的新密碼. - - - - Wallet Passphrase Changed. - 錢包密碼已變更. - - - - New Receiving Address - 新增收款位址 - - - - You should use a new address for each payment you receive. - -Label - 每次收款你都應該要用一個新的位址. - -標記 - - - - <b>Status:</b> - <b>狀態:</b> - - - - , has not been successfully broadcast yet - , 尚未成功公告出去 - - - - , broadcast through %d node - , 公告至 %d 個節點 - - - - , broadcast through %d nodes - , 公告至 %d 個節點 - - - - <b>Date:</b> - <b>日期:</b> - - - - <b>Source:</b> Generated<br> - <b>來源:</b> 生產所得<br> - - - - <b>From:</b> - <b>來自:</b> - - - - unknown - 不明 - - - - <b>To:</b> - <b>目的:</b> - - - - (yours, label: - (你的, 標記為: - - - - (yours) - (你的) - - - - <b>Credit:</b> - <b>入帳:</b> - - - - (%s matures in %d more blocks) - (%s 將在 %d 個區塊產出後熟成) - - - - (not accepted) - (不被接受) - - - - <b>Debit:</b> - <b>出帳:</b> - - - - <b>Transaction fee:</b> - <b>交易手續費:</b> - - - - <b>Net amount:</b> - <b>淨額:</b> - - - - Message: - 訊息: - - - - Comment: - 附註: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - 生產出來的錢要再等 120 個區塊產出之後, 才能夠花用. 當你產出區塊時, 它會被公布到網路上, 以被串連至區塊鎖鏈. 如果串連失敗了, 它的狀態就會變成"不被接受", 且不能被花用. 當你產出區塊的幾秒鐘內, 其他節點也產出了區塊的話, 有時候就會發生這種情形. - - - - Cannot write autostart/bitcoin.desktop file - 無法寫入 autostart/bitcoin.desktop 檔案 - - - - Main - 主要 - - - - &Start Bitcoin on window system startup - 視窗系統啓動時同時開啓位元幣 - - - - &Minimize on close - 關閉時最小化 - - - - version %s - %s 版 - - - - Error in amount - 金額有誤 - - - - Send Coins - 付錢 - - - - Amount exceeds your balance - 金額超過了餘額 - - - - Total exceeds your balance when the - 包含手續費 - - - - transaction fee is included - 後總額超過了餘額 - - - - Payment sent - 已付款 - - - - Sending... - 付出中... - - - - Invalid address - 無效的位址 - - - - Sending %s to %s - 付出 %s 給 %s - - - - CANCELLED - 已取消 - - - - Cancelled - 已取消 - - - - Transfer cancelled - 交易已取消 - - - - Error: - 錯誤: - - - - Insufficient funds - 累積金額不足 - - - - Connecting... - 連線中... - - - - Unable to connect - 無法連線 - - - - Requesting public key... - 請求公鑰中... - - - - Received public key... - 接收公鑰中... - - - - Recipient is not accepting transactions sent by IP address - 收款人不接受來自以下網路位址的交易: - - - - Transfer was not accepted - 轉帳不被接受 - - - - Invalid response received - 收到了無效的回應 - - - - Creating transaction... - 交易建立中... - - - - This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - 這筆交易因為金額或複雜度或最近累積收款的關係, 需要至少 %s 的手續費 - - - - Transaction creation failed - 交易建立失敗 - - - - Transaction aborted - 交易取消 - - - - Lost connection, transaction cancelled - 斷線了, 交易已取消 - - - - Sending payment... - 付款中... - - - - The transaction was rejected. This might happen if some of the coins in your wallet were already 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, 然後用複製的錢包花掉了錢, 你現在所用的原來的錢包中卻沒有該筆交易紀錄. - - - - Waiting for confirmation... - 等待確認中... - - - - The payment was sent, but the recipient was unable to verify it. -The transaction is recorded and will credit to the recipient, -but the comment information will be blank. - 已付款, 但是無法驗證收款人. -這筆交易已經被紀錄了, 金額也會被記入至收款人的帳戶, -然而附註資訊將會是空白. - - - - Payment was sent, but an invalid response was received - 已付款, 但是收到無效的回應 - - - - Payment completed - 付款完成 - - - - Name - 名稱 - - - - Address - 位址 - - - - Label - 標記 - - - - Bitcoin Address - 位元幣位址 - - - - This is one of your own addresses for receiving payments and cannot be entered in the address book. - 這是你的一個收款位址, 因而無法輸入於位址簿中. - - - - Edit Address - 編輯位址 - - - - Edit Address Label - 編輯位址標記 - - - - Add Address - 新增位址 - - - - Bitcoin - 位元幣 - - - - Bitcoin - Generating - 位元幣 - 生產中 - - - - Bitcoin - (not connected) - 位元幣 - (未連線) - - - - &Open Bitcoin - 開啓位元幣 - - - - &Send Bitcoins - 付位元幣 - - - - O&ptions... - 選項... - - - - E&xit - 結束 - - - - Program has crashed and will terminate. - 程式已當掉且將被終止. - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. 警告: 請檢查電腦時間日期是否正確. 位元幣無法在時鐘不準的情況下正常運作. - + beta 公測版 @@ -2325,9 +1794,9 @@ but the comment information will be blank. main - - Bitcoin Qt - 位元幣Qt版 + + Bitcoin-Qt + 位元幣Qt版 - \ No newline at end of file + -- cgit v1.2.3 From b4813730015b9d5f5d2f0fbf17bdc45a642d4f9f Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 7 May 2012 05:34:18 +0000 Subject: Update/fix translations --- src/qt/locale/bitcoin_ca_ES.ts | 1013 +++++++++++++++++++------------------ src/qt/locale/bitcoin_cs.ts | 391 ++++++++------- src/qt/locale/bitcoin_da.ts | 608 +++++++++++----------- src/qt/locale/bitcoin_de.ts | 510 ++++++++++--------- src/qt/locale/bitcoin_en.ts | 439 ++++++++-------- src/qt/locale/bitcoin_es.ts | 608 +++++++++++----------- src/qt/locale/bitcoin_es_CL.ts | 536 ++++++++++---------- src/qt/locale/bitcoin_et.ts | 1021 +++++++++++++++++++------------------ src/qt/locale/bitcoin_eu_ES.ts | 1079 ++++++++++++++++++++------------------- src/qt/locale/bitcoin_fa.ts | 407 ++++++++------- src/qt/locale/bitcoin_fa_IR.ts | 1089 ++++++++++++++++++++-------------------- src/qt/locale/bitcoin_fi.ts | 384 +++++++------- src/qt/locale/bitcoin_fr_CA.ts | 1067 ++++++++++++++++++++------------------- src/qt/locale/bitcoin_fr_FR.ts | 384 +++++++------- src/qt/locale/bitcoin_he.ts | 384 +++++++------- src/qt/locale/bitcoin_hr.ts | 513 ++++++++++--------- src/qt/locale/bitcoin_hu.ts | 601 +++++++++++----------- src/qt/locale/bitcoin_it.ts | 526 ++++++++++--------- src/qt/locale/bitcoin_lt.ts | 411 ++++++++------- src/qt/locale/bitcoin_nb.ts | 524 ++++++++++--------- src/qt/locale/bitcoin_nl.ts | 512 ++++++++++--------- src/qt/locale/bitcoin_pl.ts | 437 ++++++++-------- src/qt/locale/bitcoin_pt_BR.ts | 618 ++++++++++++----------- src/qt/locale/bitcoin_ro_RO.ts | 599 +++++++++++----------- src/qt/locale/bitcoin_ru.ts | 527 ++++++++++--------- src/qt/locale/bitcoin_sk.ts | 449 +++++++++-------- src/qt/locale/bitcoin_sr.ts | 911 +++++++++++++++++---------------- src/qt/locale/bitcoin_sv.ts | 540 ++++++++++---------- src/qt/locale/bitcoin_tr.ts | 377 +++++++------- src/qt/locale/bitcoin_uk.ts | 533 +++++++++++--------- src/qt/locale/bitcoin_zh_CN.ts | 505 ++++++++++--------- src/qt/locale/bitcoin_zh_TW.ts | 505 ++++++++++--------- 32 files changed, 9973 insertions(+), 9035 deletions(-) diff --git a/src/qt/locale/bitcoin_ca_ES.ts b/src/qt/locale/bitcoin_ca_ES.ts index 0340550960..e85456fbe7 100644 --- a/src/qt/locale/bitcoin_ca_ES.ts +++ b/src/qt/locale/bitcoin_ca_ES.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -34,7 +36,7 @@ This product includes software developed by the OpenSSL Project for use in the O These are your Bitcoin 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,27 +61,27 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - + Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + Delete the currently selected address from the list. Only sending addresses can be deleted. - + @@ -89,60 +91,60 @@ This product includes software developed by the OpenSSL Project for use in the O Copy address - + Copy label - + Edit - + Delete - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. - + AddressTableModel - + Label Etiqueta - + Address Direcció - + (no label) - + @@ -150,33 +152,33 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - + TextLabel - + Enter passphrase - + New passphrase - + Repeat new passphrase - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + @@ -186,60 +188,60 @@ This product includes software developed by the OpenSSL Project for use in the O 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 BITCOINS</b>! Are you sure you wish to encrypt your wallet? - + Wallet encrypted - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + Warning: The Caps Lock key is on. - + @@ -247,353 +249,368 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - + The supplied passphrases do not match. - + Wallet unlock failed - + The passphrase entered for the wallet decryption was incorrect. - + Wallet decryption failed - + Wallet passphrase was succesfully changed. - + BitcoinGUI - + Bitcoin Wallet - + - - + + Synchronizing with network... Sincronització amb la xarxa ... - + Block chain synchronization in progress Sincronització de la cadena en el progrés - + &Overview - + - + Show general overview of wallet Mostra panorama general de la cartera - + &Transactions - + - + Browse transaction history Cerca a l'historial de transaccions - + &Address Book - + - + Edit the list of stored addresses and labels Edita la llista d'adreces emmagatzemada i etiquetes - + &Receive coins &Rebre monedes - + Show the list of addresses for receiving payments - + - + &Send coins - + - + Send coins to a bitcoin address - + - + Sign &message - + - + Prove you control an address - + - + E&xit - + - + Quit application Sortir de l'aplicació - + &About %1 - + - + Show information about Bitcoin Mostra informació sobre Bitcoin - + About &Qt - + - + Show information about Qt - + - + &Options... &Opcions ... - + Modify configuration options for bitcoin Modificar les opcions de configuració per bitcoin - + Open &Bitcoin - + - + Show the Bitcoin window - + - + &Export... - + - + Export the data in the current tab to a file - + - + &Encrypt Wallet - + - + Encrypt or decrypt wallet - + - + &Backup Wallet - + - + Backup wallet to another location - + - + &Change Passphrase - + - + Change the passphrase used for wallet encryption - + - + &File - + - + &Settings - + - + &Help &Ajuda - + Tabs toolbar - + - + Actions toolbar Accions de la barra d'eines - + [testnet] - + - + bitcoin-qt - + - + %n active connection(s) to Bitcoin network - + + + - + Downloaded %1 of %2 blocks of transaction history. - + - + 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 Al dia - + Catching up... Posar-se 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? - + - + Sending... L'enviament de ... - + Sent transaction Transacció enviada - + Incoming transaction - + - + Date: %1 Amount: %2 Type: %3 Address: %4 - + - + 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. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -601,17 +618,22 @@ Address: %4 &Unit to show amounts in: - + Choose the default subdivision unit to show in the interface, and when sending coins - + - Display addresses in transaction list - + &Display addresses in transaction list + + + + + Whether to show Bitcoin addresses in the transaction list + @@ -624,62 +646,62 @@ Address: %4 &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 bitcoin address. - + Could not unlock wallet. - + New key generation failed. - + @@ -687,22 +709,22 @@ Address: %4 &Start Bitcoin on window system startup - + Automatically start Bitcoin after the computer is turned on - + &Minimize to the tray instead of the taskbar - + Show only a tray icon after minimizing the window - + @@ -712,62 +734,62 @@ Address: %4 Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - + M&inimize on close - + 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. - + &Connect through SOCKS4 proxy: - + Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &Port: - + Port of the proxy (e.g. 1234) - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + Pay transaction &fee - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -775,89 +797,89 @@ Address: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Choose adress from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - Copieu l'adreça seleccionada al porta-retalls del sistema + Copy the current signature to the system clipboard + &Copy to Clipboard - + Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + @@ -865,17 +887,17 @@ Address: %4 Main - + Display - + Options - + @@ -883,7 +905,7 @@ Address: %4 Form - + @@ -893,17 +915,17 @@ Address: %4 123.456 BTC - + Number of transactions: - + 0 - + @@ -913,21 +935,17 @@ Address: %4 0 BTC - + - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - + + Wallet + - + <b>Recent transactions</b> - + @@ -937,12 +955,12 @@ p, li { white-space: pre-wrap; } Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + Total number of transactions in wallet - + @@ -950,52 +968,57 @@ p, li { white-space: pre-wrap; } Dialog - + QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: - + - + &Save As... - + + + + + Error encoding URI into QR Code. + - + Save Image... - + - + PNG Images (*.png) - + @@ -1015,22 +1038,22 @@ p, li { white-space: pre-wrap; } Send to multiple recipients at once - + &Add recipient... - + Remove all transaction fields - + Clear all - + @@ -1040,42 +1063,42 @@ p, li { white-space: pre-wrap; } 123.456 BTC - + Confirm the send action - + &Send - + <b>%1</b> to %2 (%3) - + Confirm send coins - + Are you sure you want to send %1? - + and - + The recepient address is not valid, please recheck. - + @@ -1090,22 +1113,22 @@ p, li { white-space: pre-wrap; } Total exceeds your balance when the %1 transaction fee is included - + Duplicate address found, can only send to each address once in one 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. - + @@ -1113,63 +1136,63 @@ p, li { white-space: pre-wrap; } 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + @@ -1177,85 +1200,85 @@ p, li { white-space: pre-wrap; } Open for %1 blocks - + Open until %1 - + %1/offline? - + %1/unconfirmed - + %1 confirmations - + <b>Status:</b> - + , has not been successfully broadcast yet - + , broadcast through %1 node - + , broadcast through %1 nodes - + <b>Date:</b> - + <b>Source:</b> Generated<br> - + <b>From:</b> - + unknown - + <b>To:</b> - + (yours, label: - + (yours) - + @@ -1263,54 +1286,54 @@ p, li { white-space: pre-wrap; } <b>Credit:</b> - + (%1 matures in %2 more blocks) - + (not accepted) - + <b>Debit:</b> - + <b>Transaction fee:</b> - + <b>Net amount:</b> - + Message: - + Comment: - + Transaction ID: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + @@ -1318,130 +1341,134 @@ p, li { white-space: pre-wrap; } Transaction details - + This pane shows a detailed description of the transaction - + TransactionTableModel - + Date - + - + Type - + - + Address Direcció - + Amount - + - + Open for %n block(s) - + + + - + Open until %1 - + - + Offline (%1 confirmations) - + - + Unconfirmed (%1 of %2 confirmations) - + - + Confirmed (%1 confirmations) - + Mined balance will be available in %n more blocks - + + + 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. - + @@ -1450,122 +1477,122 @@ p, li { white-space: pre-wrap; } 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 - + Edit label - + Show details... - + Export Transaction Data - + Comma separated file (*.csv) - + Confirmed - + Date - + Type - + @@ -1580,32 +1607,32 @@ p, li { white-space: pre-wrap; } Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to - + @@ -1619,345 +1646,345 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version - + - + Usage: - + - + Send command to -server or bitcoind - + - + List commands - + - + Get help for a command - + - + Options: - + - + Specify configuration file (default: bitcoin.conf) - + - + Specify pid file (default: bitcoind.pid) - + - + Generate coins - + - + Don't generate coins - + - + Start minimized - + - + Specify data directory - + - + Specify connection timeout (in milliseconds) - + - + Connect through socks4 proxy - + - + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - + Add a node to connect to - + - + Connect only to the specified node - + - + Don't accept connections from outside - + - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port - + - + Attempt to use UPnP to map the listening port - + - + Fee per kB to add to transactions you send - + - + Accept command line and JSON-RPC commands - + - + Run in the background as a daemon and accept commands - + - + Use the test network - + - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections - + - + Password for JSON-RPC connections - + - + Listen for JSON-RPC connections on <port> (default: 8332) - + - + Allow JSON-RPC connections from specified IP address - + - + Send commands to node running on <ip> (default: 127.0.0.1) - + - + Set key pool size to <n> (default: 100) - + - + Rescan the block chain for missing wallet transactions - + - + SSL options: (see the Bitcoin 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) - + - + This help message - + - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + Loading addresses... - + - + Error loading addr.dat - + - + Error loading blkindex.dat - + - + Error loading wallet.dat: Wallet corrupted - + - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + - + Wallet needed to be rewritten: restart Bitcoin to complete - + - + Error loading wallet.dat - + - + Loading block index... - + - + Loading wallet... - + - + Rescanning... - + - + Done loading - + - + Invalid -proxy address - + - + Invalid amount for -paytxfee=<amount> - + - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + - + Error: CreateThread(StartNode) failed - + - + Warning: Disk space is low - + - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + - + beta - + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_cs.ts b/src/qt/locale/bitcoin_cs.ts index fafcf54d53..0e8a32f3db 100644 --- a/src/qt/locale/bitcoin_cs.ts +++ b/src/qt/locale/bitcoin_cs.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -136,17 +138,17 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open AddressTableModel - + Label Označení - + Address Adresa - + (no label) (bez označení) @@ -293,278 +295,298 @@ Jsi si jistý, že chceš peněženku zašifrovat? BitcoinGUI - + Bitcoin Wallet Bitcoinová peněženka - - + + Synchronizing with network... Synchronizuji se sítí... - + Block chain synchronization in progress Provádí se synchronizace řetězce bloků - + &Overview &Přehled - + Show general overview of wallet Zobraz celkový přehled peněženky - + &Transactions &Transakce - + Browse transaction history Procházet historii transakcí - + &Address Book &Adresář - + Edit the list of stored addresses and labels Uprav seznam uložených adres a jejich označení - + &Receive coins Pří&jem mincí - + Show the list of addresses for receiving payments Zobraz seznam adres pro příjem plateb - + &Send coins P&oslání mincí - + Send coins to a bitcoin address Pošli mince na Bitcoinovou adresu - + Sign &message Po&depiš zprávu - + Prove you control an address Prokaž vlastnictví adresy - + E&xit &Konec - + Quit application Ukončit aplikaci - + &About %1 &O %1 - + Show information about Bitcoin Zobraz informace o Bitcoinu - + About &Qt O &Qt - + Show information about Qt Zobraz informace o Qt - + &Options... &Možnosti... - + Modify configuration options for bitcoin Uprav nastavení Bitcoinu - + Open &Bitcoin Otevři &Bitcoin - + Show the Bitcoin window Zobraz okno Bitcoinu - + &Export... &Export... - + Export the data in the current tab to a file Exportovat data z tohoto panelu do souboru - + &Encrypt Wallet Zaši&fruj peněženku - + Encrypt or decrypt wallet Zašifruj nebo dešifruj peněženku - + &Backup Wallet &Zazálohovat 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 - + &File &Soubor - + &Settings &Nastavení - + &Help Ná&pověda - + Tabs toolbar Panel s listy - + Actions toolbar Panel akcí - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n aktivní spojení do Bitcoinové sítě%n aktivní spojení do Bitcoinové sítě%n aktivních spojení do Bitcoinové sítě + + %n aktivní spojení do Bitcoinové sítě + %n aktivní spojení do Bitcoinové sítě + %n aktivních spojení do Bitcoinové sítě + - + Downloaded %1 of %2 blocks of transaction history. Staženo %1 z %2 bloků transakční historie. - + Downloaded %1 blocks of transaction history. Staženo %1 bloků transakční historie. - + %n second(s) ago - před vteřinoupřed %n vteřinamipřed %n vteřinami + + před vteřinou + před %n vteřinami + před %n vteřinami + - + %n minute(s) ago - před minutoupřed %n minutamipřed %n minutami + + před minutou + před %n minutami + před %n minutami + - + %n hour(s) ago - před hodinoupřed %n hodinamipřed %n hodinami + + před hodinou + před %n hodinami + před %n hodinami + - + %n day(s) ago - včerapřed %n dnypřed %n dny + + včera + před %n dny + před %n dny + - + Up to date aktuální - + Catching up... Stahuji... - + Last received block was generated %1. Poslední stažený blok byl vygenerován %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? Tahle transakce přesahuje velikostní limit. I tak ji ale můžeš poslat, pokud za ni zaplatíš poplatek %1, který půjde uzlům, které tvou transakci zpracují, a navíc tak podpoříš síť. Chceš zaplatit poplatek? - + Sending... Posílám... - + Sent transaction Odeslané transakce - + Incoming transaction Příchozí transakce - + Date: %1 Amount: %2 Type: %3 @@ -577,35 +599,40 @@ Adresa: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Peněženka je <b>zašifrovaná</b> a momentálně <b>odemčená</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> - + Backup Wallet Záloha peněženky - + Wallet Data (*.dat) Data peněženky (*.dat) - + Backup Failed Zálohování selhalo - + There was an error trying to save the wallet data to the new location. Při ukládání peněženky na nové místo se přihodila nějaká chyba. + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -621,8 +648,13 @@ Adresa: %4 - Display addresses in transaction list - Ukazovat adresy ve výpisu transakcí + &Display addresses in transaction list + &Ukazovat adresy ve výpisu transakcí + + + + Whether to show Bitcoin addresses in the transaction list + @@ -795,8 +827,8 @@ Adresa: %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Tvá adresa (např. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -840,8 +872,8 @@ Adresa: %4 - Copy the currently selected address to the system clipboard - Zkopíruj podpis do systémové schránky + Copy the current signature to the system clipboard + @@ -927,20 +959,12 @@ Adresa: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Peněženka</span></p></body></html> + + Wallet + Peněženka - + <b>Recent transactions</b> <b>Poslední transakce</b> @@ -973,42 +997,47 @@ p, li { white-space: pre-wrap; } QR kód - + Request Payment Požadovat platbu - + Amount: Částka: - + BTC BTC - + Label: Označení: - + Message: Zpráva: - + &Save As... &Ulož jako... - + + Error encoding URI into QR Code. + + + + Save Image... Ulož obrázek... - + PNG Images (*.png) PNG obrázky (*.png) @@ -1344,54 +1373,62 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Datum - + Type Typ - + Address Adresa - + Amount Částka - + Open for %n block(s) - Otevřeno pro 1 blokOtevřeno pro %n blokyOtevřeno pro %n bloků + + Otevřeno pro 1 blok + Otevřeno pro %n bloky + Otevřeno pro %n bloků + - + Open until %1 Otřevřeno dokud %1 - + Offline (%1 confirmations) Offline (%1 potvrzení) - + Unconfirmed (%1 of %2 confirmations) Nepotvrzeno (%1 z %2 potvrzení) - + Confirmed (%1 confirmations) Potvrzeno (%1 potvrzení) Mined balance will be available in %n more blocks - Vytěžené mince budou použitelné po jednom blokuVytěžené mince budou použitelné po %n blocíchVytěžené mince budou použitelné po %n blocích + + Vytěžené mince budou použitelné po jednom bloku + Vytěžené mince budou použitelné po %n blocích + Vytěžené mince budou použitelné po %n blocích + @@ -1634,346 +1671,346 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Verze Bitcoinu - + Usage: Užití: - + Send command to -server or bitcoind Poslat příkaz pro -server nebo bitcoind - + List commands Výpis příkazů - + Get help for a command Získat nápovědu pro příkaz - + Options: Možnosti: - + Specify configuration file (default: bitcoin.conf) Konfigurační soubor (výchozí: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) PID soubor (výchozí: bitcoind.pid) - + Generate coins Generovat mince - + Don't generate coins Negenerovat mince - + Start minimized Startovat minimalizovaně - + Specify data directory Adresář pro data - + Specify connection timeout (in milliseconds) Zadej časový limit spojení (v milisekundách) - + Connect through socks4 proxy Připojovat se přes socks4 proxy - + Allow DNS lookups for addnode and connect Povolit DNS dotazy pro addnode (přidání uzlu) a connect (připojení) - + Listen for connections on <port> (default: 8333 or testnet: 18333) Čekat na spojení na <portu> (výchozí: 8333 nebo testnet: 18333) - + Maintain at most <n> connections to peers (default: 125) Povol nejvýše <n> připojení k uzlům (výchozí: 125) - + Add a node to connect to Přidat uzel, ke kterému se připojit - + Connect only to the specified node Připojovat se pouze k udanému uzlu - + Don't accept connections from outside Nepřijímat připojení zvenčí - + Don't bootstrap list of peers using DNS Nenačítat seznam uzlů z DNS - + Threshold for disconnecting misbehaving peers (default: 100) Práh pro odpojování nesprávně se chovající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 nesprávně se chovající uzly znovu připojit (výchozí: 86400) - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) Maximální velikost přijímacího bufferu pro každé spojení, <n>*1000 bytů (výchozí: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maximální velikost odesílacího bufferu pro každé spojení, <n>*1000 bytů (výchozí: 10000) - + Don't attempt to use UPnP to map the listening port Nesnažit se použít UPnP k namapování naslouchacího portu - + Attempt to use UPnP to map the listening port Snažit se použít UPnP k namapování naslouchacího portu - + Fee per kB to add to transactions you send Poplatek za kB, který se přidá ke každé odeslané transakci - + 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 Tisknout speciální ladící informace - + Prepend debug output with timestamp Připojit před ladící výstup časové razítko - + Send trace/debug info to console instead of debug.log file Posílat stopovací/ladící informace do konzole místo do souboru debug.log - + Send trace/debug info to debugger Posílat stopovací/ladící informace do debuggeru - + 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: 8332) Čekat na JSON-RPC spojení na <portu> (výchozí: 8332) - + 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) - + Set key pool size to <n> (default: 100) Nastavit zásobník klíčů na velikost <n> (výchozí: 100) - + Rescan the block chain for missing wallet transactions Přeskenovat řetězec bloků na chybějící transakce tvé pěněženky - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Možnosti SSL: (viz instrukce nastavení SSL v Bitcoin Wiki) - + Use OpenSSL (https) for JSON-RPC connections Použít OpenSSL (https) pro JSON-RPC spojení - + Server certificate file (default: server.cert) Soubor se serverovým certifikátem (výchozí: server.cert) - + Server private key (default: server.pem) Soubor se serverovým soukromým klíčem (výchozí: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Akceptovatelné šifry (výchozí: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Tato nápověda - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Nedaří se mi získat zámek na datový adresář %s. Bitcoin pravděpodobně už jednou běží. - + Loading addresses... Načítám adresy... - + Error loading addr.dat Chyba při načítání addr.dat - + Error loading blkindex.dat Chyba při načítání blkindex.dat - + Error loading wallet.dat: Wallet corrupted Chyba při načítání wallet.dat: peněženka je poškozená - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Chyba při načítání wallet.dat: peněženka vyžaduje novější verzi Bitcoinu - + Wallet needed to be rewritten: restart Bitcoin to complete Soubor s peněženkou potřeboval přepsat: restartuj Bitcoin, aby se operace dokončila - + Error loading wallet.dat Chyba při načítání wallet.dat - + Loading block index... Načítám index bloků... - + Loading wallet... Načítám peněženku... - + Rescanning... Přeskenovávám... - + Done loading Načítání dokončeno - + Invalid -proxy address Neplatná -proxy adresa - + Invalid amount for -paytxfee=<amount> Neplatná částka pro -paytxfee=<částka> - + 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. - + Error: CreateThread(StartNode) failed Chyba: Selhalo CreateThread(StartNode) - + Warning: Disk space is low Upozornění: Na disku je málo místa - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Nedaří se mi připojit na port %d na tomhle počítači. Bitcoin už pravděpodobně jednou běží. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Upozornění: Zkontroluj, že máš v počítači správně nastavený datum a čas. Pokud jsou nastaveny špatně, Bitcoin nebude fungovat správně. - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index 1a7f916ae0..9b909d8b6b 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -61,30 +63,30 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &Kopier til Udklipsholder + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Slet den valgte adresse fra listen. Kun adresser brugt til afsendelse kan slettes. + Show &QR Code - + + + + + &Delete + &Slet Sign a message to prove you own this address - + &Sign Message - - - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Slet den valgte adresse fra listen. Kun adresser brugt til afsendelse kan slettes. - - - - &Delete - &Slet + @@ -99,12 +101,12 @@ This product includes software developed by the OpenSSL Project for use in the O Edit - + Delete - + @@ -130,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Etiket - + Address Adresse - + (no label) (ingen etiket) @@ -231,16 +233,11 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Wallet encrypted Tegnebog krypteret - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - Warning: The Caps Lock key is on. - + @@ -255,6 +252,11 @@ Er du sikker på at du ønsker at kryptere din tegnebog? 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. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. + @@ -287,278 +289,293 @@ Er du sikker på at du ønsker at kryptere din tegnebog? BitcoinGUI - + Bitcoin Wallet Bitcoin Tegnebog - - + + Synchronizing with network... Synkroniserer med netværk ... - + Block chain synchronization in progress Blokkæde synkronisering i gang - + &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 Rediger listen over gemte adresser og etiketter - + &Receive coins &Modtag coins - + Show the list of addresses for receiving payments Vis listen over adresser for at modtage betalinger - + &Send coins &Send coins - + Send coins to a bitcoin address Send coins til en bitcoinadresse - + Sign &message - + - + Prove you control an address - + - + E&xit &Luk - + Quit application Afslut program - + &About %1 &Om %1 - + Show information about Bitcoin Vis oplysninger om Bitcoin - - About &Qt - - - - - Show information about Qt - - - - + &Options... &Indstillinger ... - + Modify configuration options for bitcoin Rediger konfigurationsindstillinger af bitcoin - + Open &Bitcoin Åbn &Bitcoin - + Show the Bitcoin window Vis Bitcoinvinduet - + &Export... &Eksporter... - - Export the data in the current tab to a file - - - - + &Encrypt Wallet &Kryptér tegnebog - + Encrypt or decrypt wallet Kryptér eller dekryptér tegnebog - - &Backup Wallet - + + &Change Passphrase + &Skift adgangskode - - Backup wallet to another location - + + Change the passphrase used for wallet encryption + Skift kodeord anvendt til tegnebogskryptering - - &Change Passphrase - &Skift adgangskode + + About &Qt + Om &Qt + + + + Show information about Qt + Vis oplysninger om Qt + + + + Export the data in the current tab to a file + - Change the passphrase used for wallet encryption - Skift kodeord anvendt til tegnebogskryptering + &Backup Wallet + &Backup tegnebog - + + Backup wallet to another location + + + + &File &Fil - + &Settings &Indstillinger - + &Help &Hjælp - + Tabs toolbar Faneværktøjslinje - + Actions toolbar Handlingsværktøjslinje - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n aktiv(e) forbindelse(r) til Bitcoinnetværket%n aktiv(e) forbindelse(r) til Bitcoinnetværket + + %n aktiv(e) forbindelse(r) til Bitcoinnetværket + %n aktiv(e) forbindelse(r) til Bitcoinnetværket + - + Downloaded %1 of %2 blocks of transaction history. Downloadet %1 af %2 blokke af transaktionshistorie. - + Downloaded %1 blocks of transaction history. Downloadet %1 blokke af transaktionshistorie. - + %n second(s) ago - %n sekund(er) siden%n sekund(er) siden + + %n sekund(er) siden + %n sekund(er) siden + - + %n minute(s) ago - %n minut(ter) siden%n minut(ter) siden + + %n minut(ter) siden + %n minut(ter) siden + - + %n hour(s) ago - %n time(r) siden%n time(r) siden + + %n time(r) siden + %n time(r) siden + - + %n day(s) ago - %n dag(e) siden%n dag(e) siden + + %n dag(e) siden + %n dag(e) 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 størrelsesbegrænsningen. Du kan stadig sende den for et gebyr på %1 som går til de noder der behandler din transaktion, og som hjælper med at støtte netværket. Ønsker du at betale gebyret? - + Sending... Sender... - + Sent transaction Afsendt transaktion - + Incoming transaction Indgående transaktion - + Date: %1 Amount: %2 Type: %3 @@ -571,34 +588,39 @@ Adresse: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Tegnebog er <b>krypteret</b> og i øjeblikket <b>ulåst</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> - + Backup Wallet - + - + Wallet Data (*.dat) - + - + Backup Failed - + - + There was an error trying to save the wallet data to the new location. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -615,8 +637,13 @@ Adresse: %4 - Display addresses in transaction list - Vis adresser i transaktionensliste + &Display addresses in transaction list + &Vis adresser i transaktionensliste + + + + Whether to show Bitcoin addresses in the transaction list + @@ -762,7 +789,7 @@ Adresse: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -772,7 +799,7 @@ Adresse: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -780,17 +807,17 @@ Adresse: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adresse som betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -815,27 +842,27 @@ Adresse: %4 Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - Kopier den valgte adresse til systemets udklipsholder + Copy the current signature to the system clipboard + @@ -847,22 +874,22 @@ Adresse: %4 Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + @@ -921,20 +948,12 @@ Adresse: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + - + <b>Recent transactions</b> <b>Nyeste transaktioner</b> @@ -964,47 +983,52 @@ p, li { white-space: pre-wrap; } QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: Besked: - + &Save As... - + - + + Error encoding URI into QR Code. + + + + Save Image... - + - + PNG Images (*.png) - + @@ -1031,16 +1055,16 @@ p, li { white-space: pre-wrap; } &Add recipient... &Tilføj modtager... - - - Remove all transaction fields - - Clear all Ryd alle + + + Remove all transaction fields + + Balance: @@ -1314,7 +1338,7 @@ p, li { white-space: pre-wrap; } Transaction ID: - + @@ -1338,54 +1362,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Dato - + Type Type - + Address Adresse - + Amount Beløb - + Open for %n block(s) - Åben for %n blok(ke)Åben for %n blok(ke) + + Åben for %n blok(ke) + Åben for %n blok(ke) + - + Open until %1 Åben indtil %1 - + Offline (%1 confirmations) Offline (%1 bekræftelser) - + Unconfirmed (%1 of %2 confirmations) Ubekræftet (%1 af %2 bekræftelser) - + Confirmed (%1 confirmations) Bekræftet (%1 bekræftelser) Mined balance will be available in %n more blocks - Minerede balance vil være tilgængelig om %n blok(ke)Minerede balance vil være tilgængelig om %n blok(ke) + + Minerede balance vil være tilgængelig om %n blok(ke) + Minerede balance vil være tilgængelig om %n blok(ke) + @@ -1405,7 +1435,7 @@ p, li { white-space: pre-wrap; } Received from - + @@ -1539,7 +1569,7 @@ p, li { white-space: pre-wrap; } Copy amount - + @@ -1628,377 +1658,377 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoinversion - + Usage: Anvendelse: - + Send command to -server or bitcoind Send kommando til -server eller bitcoind - + List commands Liste over kommandoer - + Get help for a command Få hjælp til en kommando - + Options: Indstillinger: - + Specify configuration file (default: bitcoin.conf) Angiv konfigurationsfil (standard: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Angiv pid-fil (default: bitcoind.pid) - + Generate coins Generér coins - + Don't generate coins Generér ikke coins - + Start minimized Start minimeret - + Specify data directory Angiv databibliotek - + Specify connection timeout (in milliseconds) Angiv tilslutningstimeout (i millisekunder) - + Connect through socks4 proxy Tilslut via SOCKS4 proxy - + Allow DNS lookups for addnode and connect Tillad DNS-opslag for addnode og connect - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - + Add a node to connect to Tilføj en node til at forbinde til - + Connect only to the specified node Tilslut kun til den angivne node - + Don't accept connections from outside Acceptér ikke forbindelser udefra - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port Forsøg ikke at bruge UPnP til at konfigurere den lyttende port - + Attempt to use UPnP to map the listening port Forsøg at bruge UPnP til at kofnigurere den lyttende port - + Fee per kB to add to transactions you send - + - + 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 acceptér kommandoer - + Use the test network Brug test-netværket - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections Brugernavn til JSON-RPC-forbindelser - + Password for JSON-RPC connections Password til JSON-RPC-forbindelser - + Listen for JSON-RPC connections on <port> (default: 8332) Lyt til JSON-RPC-forbindelser på <port> (standard: 8332) - + 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 node, der kører på <ip> (standard: 127.0.0.1) - + Set key pool size to <n> (default: 100) Sæt nøglepoolstørrelse til <n> (standard: 100) - + Rescan the block chain for missing wallet transactions Gennemsøg blokkæden for manglende tegnebogstransaktioner - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-indstillinger: (se Bitcoin Wiki for SSL opsætningsinstruktioner) - + 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) Server private nøgle (standard: server.pem) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Acceptabele ciphers (standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kan låse data-biblioteket %s. Bitcoin kører sikkert allerede. - - This help message - Denne hjælpebesked + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Acceptabele ciphers (standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kan låse data-biblioteket %s. Bitcoin kører sikkert allerede. - - - + Loading addresses... Indlæser adresser... - Error loading addr.dat - - - - - Error loading blkindex.dat - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - + This help message + Denne hjælpebesked + - Wallet needed to be rewritten: restart Bitcoin to complete - - - - - Error loading wallet.dat - - - - Loading block index... Indlæser blok-indeks... - + Loading wallet... Indlæser tegnebog... - + Rescanning... Genindlæser... + + + Error loading addr.dat + Fejl ved indlæsning af addr.dat + + + + 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 + + + Done loading Indlæsning gennemført + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Fejl ved indlæsning af wallet.dat: Tegnebog kræver en nyere version af Bitcoin + + + Invalid -proxy address Ugyldig -proxy adresse + Wallet needed to be rewritten: restart Bitcoin to complete + + + + Invalid amount for -paytxfee=<amount> Ugyldigt beløb for -paytxfee=<amount> + Error loading wallet.dat + Fejl ved indlæsning af wallet.dat + + + 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. - + Error: CreateThread(StartNode) failed Fejl: CreateThread(StartNode) mislykkedes - + Warning: Disk space is low Advarsel: Diskplads er lav - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Kunne ikke binde sig til port %d på denne computer. Bitcoin kører sikkert allerede. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Advarsel: Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet. Hvis der er fejl i disse vil Bitcoin ikke fungere korrekt. - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index 42cb17d64c..d133e71431 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -67,11 +69,21 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open &Copy to Clipboard In die Zwischenablage &kopieren + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Die ausgewählte Adresse aus der Liste entfernen. Sie können nur Zahlungsadressen entfernen. + Show &QR Code &QR-Code anzeigen + + + &Delete + &Löschen + Sign a message to prove you own this address @@ -82,16 +94,6 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open &Sign Message Nachricht &signieren - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Die ausgewählte Adresse aus der Liste entfernen. Sie können nur Zahlungsadressen entfernen. - - - - &Delete - &Löschen - Copy address @@ -136,17 +138,17 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open AddressTableModel - + Label Bezeichnung - + Address Adresse - + (no label) (keine Bezeichnung) @@ -236,11 +238,6 @@ Are you sure you wish to encrypt your wallet? Wallet encrypted Brieftasche verschlüsselt - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung Ihrer Brieftasche nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadsoftware schützt, die Ihren Computer befällt. - @@ -260,6 +257,11 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Die Verschlüsselung der Brieftasche ist aufgrund eines internen Fehlers fehlgeschlagen. Ihre Brieftasche wurde nicht verschlüsselt. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung Ihrer Brieftasche nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadsoftware schützt, die Ihren Computer befällt. + @@ -292,278 +294,293 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet Bitcoin-Brieftasche - - + + Synchronizing with network... Synchronisiere mit Netzwerk... - + Block chain synchronization in progress Synchronisation der Blockkette wird durchgeführt - + &Overview &Übersicht - + Show general overview of wallet Allgemeine Übersicht der Brieftasche anzeigen - + &Transactions &Transaktionen - + Browse transaction history Transaktionsverlauf durchsehen - + &Address Book &Adressbuch - + Edit the list of stored addresses and labels Liste der gespeicherten Zahlungsadressen und Bezeichnungen bearbeiten - + &Receive coins Bitcoins &empfangen - + Show the list of addresses for receiving payments Liste der Empfangsadressen anzeigen - + &Send coins Bitcoins &überweisen - + Send coins to a bitcoin address Bitcoins an eine Bitcoin-Adresse überweisen - + Sign &message &Nachricht signieren... - + Prove you control an address Beweisen Sie die Kontrolle einer Adresse - + E&xit &Beenden - + Quit application Anwendung beenden - + &About %1 &Über %1 - + Show information about Bitcoin Informationen über Bitcoin anzeigen - - About &Qt - Über &Qt - - - - Show information about Qt - Informationen über Qt anzeigen - - - + &Options... &Erweiterte Einstellungen... - + Modify configuration options for bitcoin Erweiterte Bitcoin-Einstellungen ändern - + Open &Bitcoin &Bitcoin öffnen - + Show the Bitcoin window Bitcoin-Fenster anzeigen - + &Export... &Exportieren nach... - - Export the data in the current tab to a file - Daten der aktuellen Ansicht in eine Datei exportieren - - - + &Encrypt Wallet Brieftasche &verschlüsseln... - + Encrypt or decrypt wallet Brieftasche ent- oder verschlüsseln - - &Backup Wallet - Brieftasche &sichern... + + &Change Passphrase + Passphrase &ändern... - - Backup wallet to another location - Eine Sicherungskopie der Brieftasche erstellen und abspeichern + + Change the passphrase used for wallet encryption + Ändert die Passphrase, die für die Verschlüsselung der Brieftasche benutzt wird - - &Change Passphrase - Passphrase &ändern... + + About &Qt + Über &Qt + + + + Show information about Qt + Informationen über Qt anzeigen + + + + Export the data in the current tab to a file + Daten der aktuellen Ansicht in eine Datei exportieren - Change the passphrase used for wallet encryption - Ändert die Passphrase, die für die Verschlüsselung der Brieftasche benutzt wird + &Backup Wallet + Brieftasche &sichern... - + + Backup wallet to another location + Eine Sicherungskopie der Brieftasche erstellen und abspeichern + + + &File &Datei - + &Settings &Einstellungen - + &Help &Hilfe - + Tabs toolbar Registerkarten-Leiste - + Actions toolbar Aktionen-Werkzeugleiste - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n aktive Verbindung zum Bitcoin-Netzwerk%n aktive Verbindungen zum Bitcoin-Netzwerk + + %n aktive Verbindung zum Bitcoin-Netzwerk + %n aktive Verbindungen zum Bitcoin-Netzwerk + - + Downloaded %1 of %2 blocks of transaction history. %1 von %2 Blöcken des Transaktionsverlaufs heruntergeladen. - + Downloaded %1 blocks of transaction history. %1 Blöcke des Transaktionsverlaufs heruntergeladen. - + %n second(s) ago - vor %n Sekundevor %n Sekunden + + vor %n Sekunde + vor %n Sekunden + - + %n minute(s) ago - vor %n Minutevor %n Minuten + + vor %n Minute + vor %n Minuten + - + %n hour(s) ago - vor %n Stundevor %n Stunden + + vor %n Stunde + vor %n Stunden + - + %n day(s) ago - vor %n Tagvor %n Tagen + + vor %n Tag + vor %n Tagen + - + Up to date Auf aktuellem Stand - + Catching up... Hole auf... - + Last received block was generated %1. Der letzte empfangene Block wurde %1 generiert. - + 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? Die Transaktion übersteigt das Größenlimit. Sie können sie trotzdem senden, wenn Sie eine zusätzliche Transaktionsgebühr in Höhe von %1 zahlen. Diese wird an die Knoten verteilt, die Ihre Transaktion bearbeiten und unterstützt damit das Bitcoin-Netzwerk.<br><br>Möchten Sie die Gebühr bezahlen? - + Sending... Transaktionsgebühr bestätigen - + Sent transaction Gesendete Transaktion - + Incoming transaction Eingehende Transaktion - + Date: %1 Amount: %2 Type: %3 @@ -575,35 +592,40 @@ Typ: %3 Adresse: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Brieftasche ist <b>verschlüsselt</b> und aktuell <b>entsperrt</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Brieftasche ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> - + Backup Wallet Brieftasche sichern - + Wallet Data (*.dat) Brieftaschen-Datei (*.dat) - + Backup Failed Sicherung der Brieftasche fehlgeschlagen - + There was an error trying to save the wallet data to the new location. Fehler beim abspeichern der Sicherungskopie der Brieftasche. + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -619,8 +641,13 @@ Adresse: %4 - Display addresses in transaction list - Adressen in der Transaktionsliste anzeigen + &Display addresses in transaction list + &Adressen in der Transaktionsliste anzeigen + + + + Whether to show Bitcoin addresses in the transaction list + @@ -793,8 +820,8 @@ Adresse: %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Die Adresse mit der die Nachricht signiert wird (z.B. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -838,8 +865,8 @@ Adresse: %4 - Copy the currently selected address to the system clipboard - Aktuelle Signatur in die Zwischenablage kopieren + Copy the current signature to the system clipboard + @@ -925,20 +952,12 @@ Adresse: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Brieftasche</span></p></body></html> + + Wallet + Brieftasche - + <b>Recent transactions</b> <b>Letzte Transaktionen</b> @@ -971,42 +990,47 @@ p, li { white-space: pre-wrap; } QR-Code - + Request Payment Zahlung anfordern - + Amount: Betrag: - + BTC BTC - + Label: Bezeichnung: - + Message: Nachricht: - + &Save As... &Speichern unter... - + + Error encoding URI into QR Code. + + + + Save Image... QR-Code abspeichern - + PNG Images (*.png) PNG Bild (*.png) @@ -1035,16 +1059,16 @@ p, li { white-space: pre-wrap; } &Add recipient... &Empfänger hinzufügen - - - Remove all transaction fields - Alle Überweisungsfelder zurücksetzen - Clear all Zurücksetzen + + + Remove all transaction fields + Alle Überweisungsfelder zurücksetzen + Balance: @@ -1342,54 +1366,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Datum - + Type Typ - + Address Adresse - + Amount Betrag - + Open for %n block(s) - Offen für %n BlockOffen für %n Blöcke + + Offen für %n Block + Offen für %n Blöcke + - + Open until %1 Offen bis %1 - + Offline (%1 confirmations) Nicht verbunden (%1 Bestätigungen) - + Unconfirmed (%1 of %2 confirmations) Unbestätigt (%1 von %2 Bestätigungen) - + Confirmed (%1 confirmations) Bestätigt (%1 Bestätigungen) Mined balance will be available in %n more blocks - Der erarbeitete Betrag wird in %n Block verfügbar seinDer erarbeitete Betrag wird in %n Blöcken verfügbar sein + + Der erarbeitete Betrag wird in %n Block verfügbar sein + Der erarbeitete Betrag wird in %n Blöcken verfügbar sein + @@ -1632,346 +1662,346 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoin Version - + Usage: Verwendung: - + Send command to -server or bitcoind Befehl an -server oder bitcoind senden - + List commands Befehle auflisten - + Get help for a command Hilfe zu einem Befehl erhalten - + Options: Einstellungen: - + Specify configuration file (default: bitcoin.conf) Konfigurationsdatei angeben (Standard: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) PID-Datei angeben (Standard: bitcoind.pid) - + Generate coins Bitcoins generieren - + Don't generate coins Keine Bitcoins generieren - + Start minimized Minimiert starten - + Specify data directory Datenverzeichnis angeben - + Specify connection timeout (in milliseconds) Verbindungstimeout angeben (in Millisekunden) - + Connect through socks4 proxy Über einen SOCKS4-Proxy verbinden: - + Allow DNS lookups for addnode and connect Erlaube DNS Namensauflösung für addnode und connect - + Listen for connections on <port> (default: 8333 or testnet: 18333) Verbindungen erwarten an <port> (Standard: 8333 oder test-Netzwerk: 18333) - + Maintain at most <n> connections to peers (default: 125) Maximal <n> Verbindungen zu Peers aufrechterhalten (Standard: 125) - + Add a node to connect to Einen Knoten hinzufügen, mit dem sich verbunden werden soll - + Connect only to the specified node Nur mit dem angegebenem Knoten verbinden - + Don't accept connections from outside Keine Verbindungen von außen akzeptieren - + Don't bootstrap list of peers using DNS Keine Peerliste durch die Nutzung von DNS erzeugen - + Threshold for disconnecting misbehaving peers (default: 100) Schwellenwert, um Verbindungen zu sich nicht konform verhaltenden Peers zu beenden (Standard: 100) - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Anzahl Sekunden, während denen sich nicht konform verhaltenden Peers die Wiederverbindung verweigert wird (Standard: 86400) - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) Maximale Größe des Empfangspuffers pro Verbindung, <n>*1000 Bytes (Standard: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maximale Größe des Sendepuffers pro Verbindung, <n>*1000 Bytes (Standard: 10000) - + Don't attempt to use UPnP to map the listening port Nicht versuchen UPnP zu verwenden, um den abgehörten Port weiterzuleiten - + Attempt to use UPnP to map the listening port Versuchen UPnP zu verwenden, um den abgehörten Port weiterzuleiten - + Fee per kB to add to transactions you send Gebühr pro kB, die gesendeten Transaktionen hinzugefügt wird - + 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 akzeptieren - + Use the test network Das test-Netzwerk verwenden - + Output extra debugging information Ausgabe zusätzlicher Debugging-Informationen - + Prepend debug output with timestamp Der Debug-Ausgabe einen Zeitstempel voranstellen - + Send trace/debug info to console instead of debug.log file Rückverfolgungs- und Debug-Informationen an die Konsole senden anstatt sie in die debug.log Datei zu schreiben - + Send trace/debug info to debugger Rückverfolgungs- und Debug-Informationen an den Debugger senden - + 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: 8332) JSON-RPC Verbindungen erwarten an <port> (Standard: 8332) - + 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) - + Set key pool size to <n> (default: 100) Setze Größe des Schlüsselpools auf <n> (Standard: 100) - + Rescan the block chain for missing wallet transactions Blockkette erneut nach fehlenden Transaktionen der Brieftasche durchsuchen - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL Einstellungen: (siehe Bitcoin-Wiki für SSL Installationsanweisungen) - + Use OpenSSL (https) for JSON-RPC connections OpenSSL (https) für JSON-RPC Verbindungen benutzen - + Server certificate file (default: server.cert) Server Zertifikat (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) - Akzeptierte Chiffren (Standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - This help message - Dieser Hilfetext - - - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Konnte das Datenverzeichnis %s nicht sperren. Evtl. wurde Bitcoin bereits gestartet. - - Loading addresses... - Lade Adressen... - - - - Error loading addr.dat - Fehler beim Laden von addr.dat - - - - Error loading blkindex.dat - Fehler beim Laden von blkindex.dat + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Akzeptierte Chiffren (Standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Error loading wallet.dat: Wallet corrupted - Fehler beim Laden von wallet.dat: Brieftasche beschädigt + Loading addresses... + Lade Adressen... - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Fehler beim Laden von wallet.dat: Brieftasche benötigt neuere Version von Bitcoin + + This help message + Dieser Hilfetext - Wallet needed to be rewritten: restart Bitcoin to complete - Brieftasche muss neu geschrieben werden: starten Sie Bitcoin zur Fertigstellung neu - - - - Error loading wallet.dat - Fehler beim Laden von wallet.dat (Brieftasche) - - - Loading block index... Lade Blockindex... - + Loading wallet... Lade Geldbörse... - + Rescanning... Durchsuche erneut... + + + Error loading addr.dat + Fehler beim Laden von addr.dat + + + + Error loading blkindex.dat + Fehler beim Laden von blkindex.dat + + Error loading wallet.dat: Wallet corrupted + Fehler beim Laden von wallet.dat: Brieftasche beschädigt + + + Done loading Laden abgeschlossen + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Fehler beim Laden von wallet.dat: Brieftasche benötigt neuere Version von Bitcoin + + + Invalid -proxy address Fehlerhafte Proxy-Adresse + Wallet needed to be rewritten: restart Bitcoin to complete + Brieftasche muss neu geschrieben werden: starten Sie Bitcoin zur Fertigstellung neu + + + Invalid amount for -paytxfee=<amount> Ungültige Angabe für -paytxfee=<Betrag> + Error loading wallet.dat + Fehler beim Laden von wallet.dat (Brieftasche) + + + 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 gesetzt. Dies ist die Gebühr die beim Senden einer Transaktion fällig wird. - + Error: CreateThread(StartNode) failed Fehler: CreateThread(StartNode) fehlgeschlagen - + Warning: Disk space is low Warnung: Festplattenplatz wird knapp - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Fehler beim registrieren des Ports %d auf diesem Computer. Evtl. wurde Bitcoin bereits gestartet. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Warnung: Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen Ihres Computers, da Bitcoin ansonsten nicht ordnungsgemäß funktionieren wird. - + beta Beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index d83d4bc2d1..7648e0dd1d 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -64,28 +64,28 @@ This product includes software developed by the OpenSSL Project for use in the O - - Show &QR Code + + Delete the currently selected address from the list. Only sending addresses can be deleted. - - Sign a message to prove you own this address + + Show &QR Code - - &Sign Message + + &Delete - - Delete the currently selected address from the list. Only sending addresses can be deleted. + + Sign a message to prove you own this address - - &Delete + + &Sign Message @@ -132,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label - + Address - + (no label) @@ -232,11 +232,6 @@ Are you sure you wish to encrypt your wallet? Wallet encrypted - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - @@ -256,6 +251,11 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + + @@ -288,293 +288,293 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet - - + + Synchronizing with network... - + Block chain synchronization in progress - + &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 - + Send coins to a bitcoin address - + Sign &message - + Prove you control an address - + E&xit - - - Quit application - - - &About %1 - - - - - Show information about Bitcoin + Quit application - About &Qt + &About %1 - Show information about Qt + Show information about Bitcoin - + &Options... - + Modify configuration options for bitcoin - + Open &Bitcoin - + Show the Bitcoin window - + &Export... - - Export the data in the current tab to a file + + &Encrypt Wallet - - &Encrypt Wallet + + Encrypt or decrypt wallet - - Encrypt or decrypt wallet + + &Change Passphrase - - &Backup Wallet + + Change the passphrase used for wallet encryption - - Backup wallet to another location + + About &Qt - - &Change Passphrase + + Show information about Qt + + + + + Export the data in the current tab to a file - Change the passphrase used for wallet encryption + &Backup Wallet + + + + + Backup wallet to another location - + &File - + &Settings - + &Help - + Tabs toolbar - + Actions toolbar - + [testnet] - + bitcoin-qt - + %n active connection(s) to Bitcoin network - + %n active connection to Bitcoin network %n active connections to Bitcoin network - + Downloaded %1 of %2 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 - + 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? - + Sending... - + Sent transaction - + Incoming transaction - + Date: %1 Amount: %2 Type: %3 @@ -583,35 +583,40 @@ Address: %4 - + 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. + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -627,7 +632,12 @@ Address: %4 - Display addresses in transaction list + &Display addresses in transaction list + + + + + Whether to show Bitcoin addresses in the transaction list @@ -801,7 +811,7 @@ Address: %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -846,7 +856,7 @@ Address: %4 - Copy the currently selected address to the system clipboard + Copy the current signature to the system clipboard @@ -933,16 +943,12 @@ Address: %4 - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet - + <b>Recent transactions</b> @@ -975,42 +981,47 @@ p, li { white-space: pre-wrap; } - + Request Payment - + Amount: - + BTC - + Label: - + Message: - + &Save As... - + + Error encoding URI into QR Code. + + + + Save Image... - + PNG Images (*.png) @@ -1040,13 +1051,13 @@ p, li { white-space: pre-wrap; } - - Remove all transaction fields + + Clear all - - Clear all + + Remove all transaction fields @@ -1346,57 +1357,57 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date - + Type - + Address - + Amount - + Open for %n block(s) - + Open for %n block Open for %n blocks - + Open until %1 - + Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) Mined balance will be available in %n more blocks - + Mined balance will be available in %n more block Mined balance will be available in %n more blocks @@ -1642,343 +1653,343 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version - + Usage: - + Send command to -server or bitcoind - + List commands - + Get help for a command - + Options: - + Specify configuration file (default: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) - + Generate coins - + Don't generate coins - + Start minimized - + Specify data directory - + Specify connection timeout (in milliseconds) - + Connect through socks4 proxy - + Allow DNS lookups for addnode and connect - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + Maintain at most <n> connections to peers (default: 125) - + Add a node to connect to - + Connect only to the specified node - + Don't accept connections from outside - + Don't bootstrap list of peers using DNS - + Threshold for disconnecting misbehaving peers (default: 100) - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + Don't attempt to use UPnP to map the listening port - + Attempt to use UPnP to map the listening port - + Fee per kB to add to transactions you send - + Accept command line and JSON-RPC commands - + Run in the background as a daemon and accept commands - + Use the test network - + Output extra debugging information - + Prepend debug output with timestamp - + Send trace/debug info to console instead of debug.log file - + Send trace/debug info to debugger - + Username for JSON-RPC connections - + Password for JSON-RPC connections - + Listen for JSON-RPC connections on <port> (default: 8332) - + Allow JSON-RPC connections from specified IP address - + Send commands to node running on <ip> (default: 127.0.0.1) - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + SSL options: (see the Bitcoin 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) - - - - - This help message + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Loading addresses... - Error loading addr.dat + This help message - - Error loading blkindex.dat + + Loading block index... - - Error loading wallet.dat: Wallet corrupted + + Loading wallet... - - Error loading wallet.dat: Wallet requires newer version of Bitcoin + + Rescanning... - - Wallet needed to be rewritten: restart Bitcoin to complete + + Error loading addr.dat - Error loading wallet.dat + Error loading blkindex.dat - - Loading block index... + + Error loading wallet.dat: Wallet corrupted - - Loading wallet... + + Done loading - - Rescanning... + + Error loading wallet.dat: Wallet requires newer version of Bitcoin - - Done loading + + Invalid -proxy address - - Invalid -proxy address + + Wallet needed to be rewritten: restart Bitcoin to complete - + Invalid amount for -paytxfee=<amount> + Error loading wallet.dat + + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + Error: CreateThread(StartNode) failed - + Warning: Disk space is low - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + beta diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index a388508ff8..2ac8dbafe0 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -61,30 +63,30 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &Copiar al portapapeles + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Borra la dirección seleccionada de la lista. Solo las direcciónes de envio se pueden borrar. + Show &QR Code - + + + + + &Delete + Bo&rrar Sign a message to prove you own this address - + &Sign Message - - - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Borra la dirección seleccionada de la lista. Solo las direcciónes de envio se pueden borrar. - - - - &Delete - Bo&rrar + @@ -99,12 +101,12 @@ This product includes software developed by the OpenSSL Project for use in the O Edit - + Delete - + @@ -130,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Etiqueta - + Address Dirección - + (no label) (sin etiqueta) @@ -231,16 +233,11 @@ Are you sure you wish to encrypt your wallet? Wallet encrypted Cartera encriptada - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - Warning: The Caps Lock key is on. - + @@ -255,6 +252,11 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Encriptación de cartera fallida debido a un error interno. Tu cartera no ha sido encriptada. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerda que encriptando tu cartera no garantiza mantener a salvo tus bitcoins en caso de tener viruses en el ordenador. + @@ -287,278 +289,293 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet Cartera Bitcoin - - + + Synchronizing with network... Sincronizando con la red... - + Block chain synchronization in progress Sincronización cadena de bloques en progreso - + &Overview &Vista general - + Show general overview of wallet Muestra una vista general de cartera - + &Transactions &Transacciónes - + Browse transaction history Visiona el historial de transacciónes - + &Address Book &Guia de direcciónes - + Edit the list of stored addresses and labels Edita la lista de las direcciónes y etiquetas almacenada - + &Receive coins &Recibe monedas - + Show the list of addresses for receiving payments Muestra la lista de direcciónes utilizadas para recibir pagos - + &Send coins &Envia monedas - + Send coins to a bitcoin address Envia monedas a una dirección bitcoin - + Sign &message - + - + Prove you control an address - + - + E&xit &Salir - + Quit application Salir de la aplicación - + &About %1 S&obre %1 - + Show information about Bitcoin Muestra información sobre Bitcoin - - About &Qt - - - - - Show information about Qt - - - - + &Options... &Opciones - + Modify configuration options for bitcoin Modifica opciones de configuración - + Open &Bitcoin Abre &Bitcoin - + Show the Bitcoin window Muestra la ventana de Bitcoin - + &Export... &Exporta... - - Export the data in the current tab to a file - - - - + &Encrypt Wallet &Encriptar cartera - + Encrypt or decrypt wallet Encriptar o decriptar cartera - - &Backup Wallet - + + &Change Passphrase + &Cambiar la contraseña - - Backup wallet to another location - + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para la encriptación de cartera - - &Change Passphrase - &Cambiar la contraseña + + About &Qt + Sobre &Qt + + + + Show information about Qt + Muestra información sobre Qt + + + + Export the data in the current tab to a file + - Change the passphrase used for wallet encryption - Cambiar la contraseña utilizada para la encriptación de cartera + &Backup Wallet + &Backup cartera + + + + Backup wallet to another location + - + &File &Archivo - + &Settings &Configuración - + &Help &Ayuda - + Tabs toolbar Barra de pestañas - + Actions toolbar Barra de acciónes - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n conexión activa hacia la red Bitcoin%n conexiones activas hacia la red Bitcoin + + %n conexión activa hacia la red Bitcoin + %n conexiones activas hacia la red Bitcoin + - + Downloaded %1 of %2 blocks of transaction history. Se han bajado %1 de %2 bloques de historial. - + Downloaded %1 blocks of transaction history. Se han bajado %1 bloques de historial. - + %n second(s) ago - Hace %n segundoHace %n segundos + + Hace %n segundo + Hace %n segundos + - + %n minute(s) ago - Hace %n minutoHace %n minutos + + Hace %n minuto + Hace %n minutos + - + %n hour(s) ago - Hace %n horaHace %n horas + + Hace %n hora + Hace %n horas + - + %n day(s) ago - Hace %n díaHace %n días + + Hace %n día + Hace %n días + - + Up to date Actualizado - + Catching up... Recuperando... - + Last received block was generated %1. El ultimo bloque recibido fue 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? Esta transacción supera el límite. Puedes seguir enviandola incluyendo una comisión de %s que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Quieres seguir con la transacción? - + Sending... Enviando... - + Sent transaction Transacción enviada - + Incoming transaction Transacción entrante - + Date: %1 Amount: %2 Type: %3 @@ -570,34 +587,39 @@ Tipo: %3 Dirección: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> La cartera esta <b>encriptada</b> y actualmente <b>desbloqueda</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> La cartera esta <b>encriptada</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. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -614,8 +636,13 @@ Dirección: %4 - Display addresses in transaction list - Muestra direcciones en el listado de movimientos + &Display addresses in transaction list + &Muestra direcciones en el listado de movimientos + + + + Whether to show Bitcoin addresses in the transaction list + @@ -761,7 +788,7 @@ Dirección: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -771,7 +798,7 @@ Dirección: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -779,17 +806,17 @@ Dirección: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - La dirección donde enviar el pago (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -814,27 +841,27 @@ Dirección: %4 Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - Copia la dirección seleccionada al portapapeles + Copy the current signature to the system clipboard + @@ -846,22 +873,22 @@ Dirección: %4 Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + @@ -920,20 +947,12 @@ Dirección: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Cartera</span></p></body></html> + + Wallet + Cartera - + <b>Recent transactions</b> <b>Movimientos recientes</b> @@ -963,47 +982,52 @@ p, li { white-space: pre-wrap; } QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: Mensaje: - + &Save As... - + + + + + Error encoding URI into QR Code. + - + Save Image... - + - + PNG Images (*.png) - + @@ -1030,16 +1054,16 @@ p, li { white-space: pre-wrap; } &Add recipient... &Agrega destinatario... - - - Remove all transaction fields - - Clear all &Borra todos + + + Remove all transaction fields + + Balance: @@ -1313,7 +1337,7 @@ p, li { white-space: pre-wrap; } Transaction ID: - + @@ -1337,54 +1361,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Fecha - + Type Tipo - + Address Dirección - + Amount Cantidad - + Open for %n block(s) - Abierto por %n bloqueAbierto por %n bloques + + Abierto por %n bloque + Abierto por %n bloques + - + Open until %1 Abierto hasta %1 - + Offline (%1 confirmations) Fuera de linea (%1 confirmaciónes) - + Unconfirmed (%1 of %2 confirmations) No confirmado (%1 de %2 confirmaciónes) - + Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) Mined balance will be available in %n more blocks - El balance minado estará disponible en %n bloque masEl balance minado estará disponible en %n bloques mas + + El balance minado estará disponible en %n bloque mas + El balance minado estará disponible en %n bloques mas + @@ -1404,7 +1434,7 @@ p, li { white-space: pre-wrap; } Received from - + @@ -1538,7 +1568,7 @@ p, li { white-space: pre-wrap; } Copy amount - + @@ -1627,380 +1657,380 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Versión Bitcoin - + Usage: Uso: - + Send command to -server or bitcoind Envia comando a bitcoin lanzado con -server u bitcoind - + List commands Muestra comandos - + Get help for a command Recibir ayuda para un comando - + Options: Opciones: - + Specify configuration file (default: bitcoin.conf) Especifica archivo de configuración (predeterminado: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Especifica archivo pid (predeterminado: bitcoin.pid) - + Generate coins Genera monedas - + Don't generate coins No generar monedas - + Start minimized Arranca minimizado - + Specify data directory Especifica directorio para los datos - + Specify connection timeout (in milliseconds) Especifica tiempo de espera para conexion (en milisegundos) - + Connect through socks4 proxy Conecta mediante proxy socks4 - + Allow DNS lookups for addnode and connect Permite búsqueda DNS para addnode y connect - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - + Add a node to connect to Agrega un nodo para conectarse - + Connect only to the specified node Conecta solo al nodo especificado - + Don't accept connections from outside No aceptar conexiones desde el exterior - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port No intentar usar UPnP para mapear el puerto de entrada - + Attempt to use UPnP to map the listening port Intenta usar UPnP para mapear el puerto de escucha. - + Fee per kB to add to transactions you send - + - + Accept command line and JSON-RPC commands Aceptar comandos consola y JSON-RPC - + Run in the background as a daemon and accept commands Correr como demonio y acepta comandos - + Use the test network Usa la red de pruebas - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections 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: 8332) Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) - + Allow JSON-RPC connections from specified IP address Permite conexiones JSON-RPC desde la dirección IP especificada - + Send commands to node running on <ip> (default: 127.0.0.1) Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - + Set key pool size to <n> (default: 100) Ajusta el numero de claves en reserva <n> (predeterminado: 100) - + Rescan the block chain for missing wallet transactions Rescanea la cadena de bloques para transacciones perdidas de la cartera - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) - + Use OpenSSL (https) for JSON-RPC connections Usa OpenSSL (https) para las conexiones JSON-RPC - + Server certificate file (default: server.cert) Certificado del servidor (Predeterminado: server.cert) - + Server private key (default: server.pem) Clave privada del servidor (Predeterminado: server.pem) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - This help message - Este mensaje de ayuda + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Loading addresses... Cargando direcciónes... - Error loading addr.dat - - - - - Error loading blkindex.dat - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - + This help message + Este mensaje de ayuda + - Wallet needed to be rewritten: restart Bitcoin to complete - - - - - Error loading wallet.dat - - - - Loading block index... Cargando el index de bloques... - + Loading wallet... Cargando cartera... - + Rescanning... Rescaneando... + + + Error loading addr.dat + Error cargando addr.dat + + + + Error loading blkindex.dat + Error cargando blkindex.dat + + Error loading wallet.dat: Wallet corrupted + Error cargando wallet.dat: Cartera dañada + + + Done loading Carga completa + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Error cargando el archivo wallet.dat: Se necesita una versión mas nueva de Bitcoin + + + Invalid -proxy address Dirección -proxy invalida + Wallet needed to be rewritten: restart Bitcoin to complete + + + + Invalid amount for -paytxfee=<amount> Cantidad inválida para -paytxfee=<amount> + Error loading wallet.dat + Error cargando wallet.dat + + + 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. - + Error: CreateThread(StartNode) failed Error: CreateThread(StartNode) fallido - + Warning: Disk space is low Atención: Poco espacio en el disco duro - + Unable to bind to port %d on this computer. Bitcoin is probably already running. No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Precaución: Por favor revisa que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal Bitcoin no funcionará correctamente. - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index d0986b691d..828376edd4 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -61,11 +63,21 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &Copiar al portapapeles + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Borra la dirección seleccionada de la lista. Solo las direcciónes de envio se pueden borrar. + Show &QR Code Mostrar Código &QR + + + &Delete + &Borrar + Sign a message to prove you own this address @@ -76,16 +88,6 @@ This product includes software developed by the OpenSSL Project for use in the O &Sign Message Firmar Mensaje - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Borra la dirección seleccionada de la lista. Solo las direcciónes de envio se pueden borrar. - - - - &Delete - &Borrar - Copy address @@ -130,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Etiqueta - + Address Dirección - + (no label) (sin etiqueta) @@ -231,11 +233,6 @@ Are you sure you wish to encrypt your wallet? Wallet encrypted Billetera codificada - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus bitcoins de ser robados por malware que infecte su computador - @@ -255,6 +252,11 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. La codificación de la billetera falló debido a un error interno. Tu billetera no ha sido codificada. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus bitcoins de ser robados por malware que infecte su computador + @@ -287,278 +289,293 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet Billetera Bitcoin - - + + Synchronizing with network... Sincronizando con la red... - + Block chain synchronization in progress Sincronización de la cadena de bloques en progreso - + &Overview &Vista general - + Show general overview of wallet Muestra una vista general de la billetera - + &Transactions &Transacciónes - + Browse transaction history Explora el historial de transacciónes - + &Address Book &Guia de direcciónes - + Edit the list of stored addresses and labels Edita la lista de direcciones y etiquetas almacenadas - + &Receive coins &Recibir monedas - + Show the list of addresses for receiving payments Muestra la lista de direcciónes utilizadas para recibir pagos - + &Send coins &Envíar monedas - + Send coins to a bitcoin address Enviar monedas a una dirección bitcoin - + Sign &message Firmar Mensaje - + Prove you control an address Suministre dirección de control - + E&xit &Salir - + Quit application Salir del programa - + &About %1 S&obre %1 - + Show information about Bitcoin Muestra información acerca de Bitcoin - - About &Qt - Acerca de - - - - Show information about Qt - Mostrar Información sobre QT - - - + &Options... &Opciones - + Modify configuration options for bitcoin Modifica las opciones de configuración de bitcoin - + Open &Bitcoin Abre &Bitcoin - + Show the Bitcoin window Muestra la ventana de Bitcoin - + &Export... &Exportar... - - Export the data in the current tab to a file - - - - + &Encrypt Wallet &Codificar la billetera - + Encrypt or decrypt wallet Codificar o decodificar la billetera - - &Backup Wallet - + + &Change Passphrase + &Cambiar la contraseña - - Backup wallet to another location - + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para la codificación de la billetera - - &Change Passphrase - &Cambiar la contraseña + + About &Qt + Acerca de + + + + Show information about Qt + Mostrar Información sobre QT + + + + Export the data in the current tab to a file + - Change the passphrase used for wallet encryption - Cambiar la contraseña utilizada para la codificación de la billetera + &Backup Wallet + &Backup billetera + + + + Backup wallet to another location + - + &File &Archivo - + &Settings &Configuración - + &Help &Ayuda - + Tabs toolbar Barra de pestañas - + Actions toolbar Barra de acciónes - + [testnet] [red-de-pruebas] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n conexión activa hacia la red Bitcoin%n conexiones activas hacia la red Bitcoin + + %n conexión activa hacia la red Bitcoin + %n conexiones activas hacia la red Bitcoin + - + Downloaded %1 of %2 blocks of transaction history. Descargados %1 de %2 bloques del historial de transacciones. - + Downloaded %1 blocks of transaction history. Descargado %1 bloques del historial de transacciones. - + %n second(s) ago - Hace %n segundoHace %n segundos + + Hace %n segundo + Hace %n segundos + - + %n minute(s) ago - Hace %n minutoHace %n minutos + + Hace %n minuto + Hace %n minutos + - + %n hour(s) ago - Hace %n horaHace %n horas + + Hace %n hora + Hace %n horas + - + %n day(s) ago - Hace %n díaHace %n días + + Hace %n día + Hace %n días + - + Up to date Actualizado - + Catching up... Recuperando... - + Last received block was generated %1. El ultimo bloque recibido fue 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? Esta transacción supera el límite. Puedes seguir enviandola incluyendo una comisión de %s que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Quieres seguir con la transacción? - + Sending... Enviando... - + Sent transaction Transacción enviada - + Incoming transaction Transacción entrante - + Date: %1 Amount: %2 Type: %3 @@ -570,34 +587,39 @@ Tipo: %3 Dirección: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> La billetera esta <b>codificada</b> y actualmente <b>desbloqueda</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> La billetera esta <b>codificada</b> y actualmente <b>bloqueda</b> - + Backup Wallet - + - + Wallet Data (*.dat) - + - + Backup Failed - + - + There was an error trying to save the wallet data to the new location. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -614,8 +636,13 @@ Dirección: %4 - Display addresses in transaction list - Muestra direcciones en el listado de transaccioines + &Display addresses in transaction list + &Muestra direcciones en el listado de transaccioines + + + + Whether to show Bitcoin addresses in the transaction list + @@ -784,12 +811,12 @@ Dirección: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - La dirección donde enviar el pago (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -833,8 +860,8 @@ Dirección: %4 - Copy the currently selected address to the system clipboard - Copiar la dirección seleccionada al portapapeles + Copy the current signature to the system clipboard + @@ -920,20 +947,12 @@ Dirección: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Cartera</span></p></body></html> + + Wallet + Cartera - + <b>Recent transactions</b> <b>Transacciones recientes</b> @@ -966,44 +985,49 @@ p, li { white-space: pre-wrap; } Código QR - + Request Payment Solicitar Pago - + Amount: Cantidad: - + BTC BTC - + Label: Etiqueta - + Message: Mensaje: - + &Save As... &Guardar Como... - + + Error encoding URI into QR Code. + + + + Save Image... - + - + PNG Images (*.png) - + @@ -1030,16 +1054,16 @@ p, li { white-space: pre-wrap; } &Add recipient... &Agrega destinatario... - - - Remove all transaction fields - Remover todos los campos de la transacción - Clear all &Borra todos + + + Remove all transaction fields + Remover todos los campos de la transacción + Balance: @@ -1337,54 +1361,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Fecha - + Type Tipo - + Address Dirección - + Amount Cantidad - + Open for %n block(s) - Abierto por %n bloqueAbierto por %n bloques + + Abierto por %n bloque + Abierto por %n bloques + - + Open until %1 Abierto hasta %1 - + Offline (%1 confirmations) Fuera de linea (%1 confirmaciónes) - + Unconfirmed (%1 of %2 confirmations) No confirmado (%1 de %2 confirmaciónes) - + Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) Mined balance will be available in %n more blocks - El balance minado estará disponible en %n bloque masEl balance minado estará disponible en %n bloques mas + + El balance minado estará disponible en %n bloque mas + El balance minado estará disponible en %n bloques mas + @@ -1627,380 +1657,380 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Versión Bitcoin - + Usage: Uso: - + Send command to -server or bitcoind Envia comando a bitcoin lanzado con -server u bitcoind - + List commands Muestra comandos - + Get help for a command Recibir ayuda para un comando - + Options: Opciones: - + Specify configuration file (default: bitcoin.conf) Especifica archivo de configuración (predeterminado: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Especifica archivo pid (predeterminado: bitcoin.pid) - + Generate coins Genera monedas - + Don't generate coins No generar monedas - + Start minimized Arranca minimizado - + Specify data directory Especifica directorio para los datos - + Specify connection timeout (in milliseconds) Especifica tiempo de espera para conexion (en milisegundos) - + Connect through socks4 proxy Conecta mediante proxy socks4 - + Allow DNS lookups for addnode and connect Permite búsqueda DNS para addnode y connect - + Listen for connections on <port> (default: 8333 or testnet: 18333) Escuchar por conecciones en <puerto> (Por defecto: 8333 o red de prueba: 18333) - + 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 Agrega un nodo para conectarse - + Connect only to the specified node Conecta solo al nodo especificado - + Don't accept connections from outside No aceptar conexiones desde el exterior - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) Umbral de desconección de clientes con mal comportamiento (por defecto: 100) - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port No intentar usar UPnP para mapear el puerto de entrada - + Attempt to use UPnP to map the listening port Intenta usar UPnP para mapear el puerto de escucha. - + Fee per kB to add to transactions you send Comisión por kB para adicionarla a las transacciones enviadas - + Accept command line and JSON-RPC commands Aceptar comandos consola y JSON-RPC - + Run in the background as a daemon and accept commands Correr como demonio y acepta comandos - + Use the test network Usa la red de pruebas - + Output extra debugging information Adjuntar informacion extra de depuracion - + Prepend debug output with timestamp Anteponer salida de depuracion con marca de tiempo - + Send trace/debug info to console instead of debug.log file Enviar informacion de seguimiento a la consola en vez del archivo debug.log - + Send trace/debug info to debugger Enviar informacion de seguimiento al depurador - + Username for JSON-RPC connections 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: 8332) Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) - + Allow JSON-RPC connections from specified IP address Permite conexiones JSON-RPC desde la dirección IP especificada - + Send commands to node running on <ip> (default: 127.0.0.1) Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - + Set key pool size to <n> (default: 100) Ajusta el numero de claves en reserva <n> (predeterminado: 100) - + Rescan the block chain for missing wallet transactions Rescanea la cadena de bloques para transacciones perdidas de la cartera - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) - + Use OpenSSL (https) for JSON-RPC connections Usa OpenSSL (https) para las conexiones JSON-RPC - + Server certificate file (default: server.cert) Certificado del servidor (Predeterminado: server.cert) - + Server private key (default: server.pem) Clave privada del servidor (Predeterminado: server.pem) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - This help message - Este mensaje de ayuda + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Loading addresses... Cargando direcciónes... - Error loading addr.dat - Error cargando addr.dat - - - - Error loading blkindex.dat - Error cargando blkindex.dat - - - - Error loading wallet.dat: Wallet corrupted - Error cargando wallet.dat: Billetera corrupta - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Error cargando wallet.dat: Billetera necesita una vercion reciente de Bitcoin + This help message + Este mensaje de ayuda + - Wallet needed to be rewritten: restart Bitcoin to complete - La billetera necesita ser reescrita: reinicie Bitcoin para completar - - - - Error loading wallet.dat - Error cargando wallet.dat - - - Loading block index... Cargando el index de bloques... - + Loading wallet... Cargando cartera... - + Rescanning... Rescaneando... + + + Error loading addr.dat + Error cargando addr.dat + + + + Error loading blkindex.dat + Error cargando blkindex.dat + + Error loading wallet.dat: Wallet corrupted + Error cargando wallet.dat: Billetera corrupta + + + Done loading Carga completa + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Error cargando wallet.dat: Billetera necesita una vercion reciente de Bitcoin + + + Invalid -proxy address Dirección -proxy invalida + Wallet needed to be rewritten: restart Bitcoin to complete + La billetera necesita ser reescrita: reinicie Bitcoin para completar + + + Invalid amount for -paytxfee=<amount> Cantidad inválida para -paytxfee=<amount> + Error loading wallet.dat + Error cargando wallet.dat + + + 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. - + Error: CreateThread(StartNode) failed Error: CreateThread(StartNode) fallido - + Warning: Disk space is low Atención: Poco espacio en el disco duro - + Unable to bind to port %d on this computer. Bitcoin is probably already running. No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Precaución: Por favor revise que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal configurado Bitcoin no funcionará correctamente. - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_et.ts b/src/qt/locale/bitcoin_et.ts index a14037f069..72cdafd25f 100644 --- a/src/qt/locale/bitcoin_et.ts +++ b/src/qt/locale/bitcoin_et.ts @@ -1,16 +1,18 @@ - + + + UTF-8 AboutDialog About Bitcoin - + <b>Bitcoin</b> version - + @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -29,17 +31,17 @@ This product includes software developed by the OpenSSL Project for use in the O Address Book - + These are your Bitcoin 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. - + Double-click to edit address or label - + @@ -54,7 +56,7 @@ This product includes software developed by the OpenSSL Project for use in the O Copy the currently selected address to the system clipboard - + @@ -64,22 +66,22 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + Delete the currently selected address from the list. Only sending addresses can be deleted. - + @@ -89,32 +91,32 @@ This product includes software developed by the OpenSSL Project for use in the O Copy address - + Copy label - + Edit - + Delete - + Export Address Book Data - + Comma separated file (*.csv) - + @@ -124,23 +126,23 @@ This product includes software developed by the OpenSSL Project for use in the O Could not write to file %1. - + AddressTableModel - + Label Silt - + Address Aadress - + (no label) (silti pole) @@ -156,90 +158,90 @@ This product includes software developed by the OpenSSL Project for use in the O TextLabel - + Enter passphrase - + New passphrase - + Repeat new passphrase - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + Encrypt wallet - + This operation needs your wallet passphrase to unlock the wallet. - + Unlock wallet - + This operation needs your wallet passphrase to decrypt the wallet. - + Decrypt wallet - + Change passphrase - + Enter the old and new passphrase to the wallet. - + Confirm wallet encryption - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? - + Wallet encrypted - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + Warning: The Caps Lock key is on. - + @@ -247,353 +249,368 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - + The supplied passphrases do not match. - + Wallet unlock failed - + The passphrase entered for the wallet decryption was incorrect. - + Wallet decryption failed - + Wallet passphrase was succesfully changed. - + BitcoinGUI - + Bitcoin Wallet - + - - + + Synchronizing with network... - + - + Block chain synchronization in progress - + - + &Overview &Ülevaade - + Show general overview of wallet - + - + &Transactions &Tehingud - + Browse transaction history Sirvi tehingute ajalugu - + &Address Book &Aadressiraamat - + Edit the list of stored addresses and labels - + - + &Receive coins - + - + Show the list of addresses for receiving payments - + - + &Send coins - + - + Send coins to a bitcoin address - + - + Sign &message - + - + Prove you control an address - + - + E&xit - + - + Quit application - + - + &About %1 - + - + Show information about Bitcoin - + - + About &Qt - + - + Show information about Qt - + - + &Options... &Valikud... - + Modify configuration options for bitcoin - + - + Open &Bitcoin - + - + Show the Bitcoin window - + - + &Export... &Ekspordi... - + Export the data in the current tab to a file - + - + &Encrypt Wallet - + - + Encrypt or decrypt wallet - + - + &Backup Wallet - + - + Backup wallet to another location - + - + &Change Passphrase - + - + Change the passphrase used for wallet encryption - + - + &File &Fail - + &Settings &Seaded - + &Help &Abiinfo - + Tabs toolbar - + - + Actions toolbar - + - + [testnet] - + - + bitcoin-qt - + - + %n active connection(s) to Bitcoin network - + + + - + Downloaded %1 of %2 blocks of transaction history. - + - + 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? - + - + Sending... - + - + Sent transaction - + - + Incoming transaction - + - + Date: %1 Amount: %2 Type: %3 Address: %4 - + - + 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. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -601,17 +618,22 @@ Address: %4 &Unit to show amounts in: - + Choose the default subdivision unit to show in the interface, and when sending coins - + - Display addresses in transaction list - + &Display addresses in transaction list + + + + + Whether to show Bitcoin addresses in the transaction list + @@ -629,57 +651,57 @@ Address: %4 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 bitcoin address. - + Could not unlock wallet. - + New key generation failed. - + @@ -687,87 +709,87 @@ Address: %4 &Start Bitcoin on window system startup - + Automatically start Bitcoin after the computer is turned on - + &Minimize to the tray instead of the taskbar - + Show only a tray icon after minimizing the window - + Map port using &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - + M&inimize on close - + 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. - + &Connect through SOCKS4 proxy: - + Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &Port: - + Port of the proxy (e.g. 1234) - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + Pay transaction &fee - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -775,62 +797,62 @@ Address: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Choose adress from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - + Copy the current signature to the system clipboard + @@ -842,22 +864,22 @@ Address: %4 Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + @@ -865,17 +887,17 @@ Address: %4 Main - + Display - + Options - + @@ -883,66 +905,62 @@ Address: %4 Form - + Balance: - + 123.456 BTC - + Number of transactions: - + 0 - + Unconfirmed: - + 0 BTC - + - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - + + Wallet + - + <b>Recent transactions</b> - + Your current balance - + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + Total number of transactions in wallet - + @@ -955,47 +973,52 @@ p, li { white-space: pre-wrap; } QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: Sõnum: - + &Save As... - + + + + + Error encoding URI into QR Code. + - + Save Image... - + - + PNG Images (*.png) - + @@ -1010,102 +1033,102 @@ p, li { white-space: pre-wrap; } Send Coins - + Send to multiple recipients at once - + &Add recipient... - + Remove all transaction fields - + Clear all - + Balance: - + 123.456 BTC - + Confirm the send action - + &Send - + <b>%1</b> to %2 (%3) - + Confirm send coins - + Are you sure you want to send %1? - + and - + The recepient address is not valid, please recheck. - + The amount to pay must be larger than 0. - + Amount exceeds your balance - + Total exceeds your balance when the %1 transaction fee is included - + Duplicate address found, can only send to each address once in one 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. - + @@ -1113,63 +1136,63 @@ p, li { white-space: pre-wrap; } 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + @@ -1177,63 +1200,63 @@ p, li { white-space: pre-wrap; } Open for %1 blocks - + Open until %1 - + %1/offline? - + %1/unconfirmed - + %1 confirmations - + <b>Status:</b> - + , has not been successfully broadcast yet - + , broadcast through %1 node - + , broadcast through %1 nodes - + <b>Date:</b> - + <b>Source:</b> Generated<br> - + <b>From:</b> - + @@ -1245,17 +1268,17 @@ p, li { white-space: pre-wrap; } <b>To:</b> - + (yours, label: - + (yours) - + @@ -1263,34 +1286,34 @@ p, li { white-space: pre-wrap; } <b>Credit:</b> - + (%1 matures in %2 more blocks) - + (not accepted) - + <b>Debit:</b> - + <b>Transaction fee:</b> - + <b>Net amount:</b> - + @@ -1305,12 +1328,12 @@ p, li { white-space: pre-wrap; } Transaction ID: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + @@ -1318,130 +1341,134 @@ p, li { white-space: pre-wrap; } Transaction details - + This pane shows a detailed description of the transaction - + TransactionTableModel - + Date Kuupäev - + Type Tüüp - + Address Aadress - + Amount Kogus - + Open for %n block(s) - + + + - + Open until %1 - + - + Offline (%1 confirmations) - + - + Unconfirmed (%1 of %2 confirmations) - + - + Confirmed (%1 confirmations) - + Mined balance will be available in %n more blocks - + + + 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. - + @@ -1450,112 +1477,112 @@ p, li { white-space: pre-wrap; } 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 - + Edit label - + Show details... - + Export Transaction Data - + Comma separated file (*.csv) - + Confirmed - + @@ -1585,7 +1612,7 @@ p, li { white-space: pre-wrap; } ID - + @@ -1595,17 +1622,17 @@ p, li { white-space: pre-wrap; } Could not write to file %1. - + Range: - + to - + @@ -1613,351 +1640,351 @@ p, li { white-space: pre-wrap; } Sending... - + bitcoin-core - + Bitcoin version - + - + Usage: - + - + Send command to -server or bitcoind - + - + List commands - + - + Get help for a command - + - + Options: - + - + Specify configuration file (default: bitcoin.conf) - + - + Specify pid file (default: bitcoind.pid) - + - + Generate coins - + - + Don't generate coins - + - + Start minimized - + - + Specify data directory - + - + Specify connection timeout (in milliseconds) - + - + Connect through socks4 proxy - + - + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - + Add a node to connect to - + - + Connect only to the specified node - + - + Don't accept connections from outside - + - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port - + - + Attempt to use UPnP to map the listening port - + - + Fee per kB to add to transactions you send - + - + Accept command line and JSON-RPC commands - + - + Run in the background as a daemon and accept commands - + - + Use the test network - + - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections - + - + Password for JSON-RPC connections - + - + Listen for JSON-RPC connections on <port> (default: 8332) - + - + Allow JSON-RPC connections from specified IP address - + - + Send commands to node running on <ip> (default: 127.0.0.1) - + - + Set key pool size to <n> (default: 100) - + - + Rescan the block chain for missing wallet transactions - + - + SSL options: (see the Bitcoin 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) - + - + This help message - + - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + Loading addresses... - + - + Error loading addr.dat - + - + Error loading blkindex.dat - + - + Error loading wallet.dat: Wallet corrupted - + - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + - + Wallet needed to be rewritten: restart Bitcoin to complete - + - + Error loading wallet.dat - + - + Loading block index... - + - + Loading wallet... - + - + Rescanning... - + - + Done loading - + - + Invalid -proxy address - + - + Invalid amount for -paytxfee=<amount> - + - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + - + Error: CreateThread(StartNode) failed - + - + Warning: Disk space is low - + - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + - + beta - + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_eu_ES.ts b/src/qt/locale/bitcoin_eu_ES.ts index b4e71af2e2..61a5ce4c09 100644 --- a/src/qt/locale/bitcoin_eu_ES.ts +++ b/src/qt/locale/bitcoin_eu_ES.ts @@ -1,11 +1,13 @@ - + + + UTF-8 AboutDialog About Bitcoin - + @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -34,12 +36,12 @@ This product includes software developed by the OpenSSL Project for use in the O These are your Bitcoin 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. - + Double-click to edit address or label - + @@ -49,37 +51,37 @@ This product includes software developed by the OpenSSL Project for use in the O &New Address... - + Copy the currently selected address to the system clipboard - + &Copy to Clipboard - + Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + Delete the currently selected address from the list. Only sending addresses can be deleted. - + @@ -89,60 +91,60 @@ This product includes software developed by the OpenSSL Project for use in the O Copy address - + Copy label - + Edit - + Delete - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. - + AddressTableModel - + Label - + - + Address Helbidea - + (no label) - + @@ -150,96 +152,96 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - + TextLabel - + Enter passphrase - + New passphrase - + Repeat new passphrase - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + Encrypt wallet - + This operation needs your wallet passphrase to unlock the wallet. - + Unlock wallet - + This operation needs your wallet passphrase to decrypt the wallet. - + Decrypt wallet - + Change passphrase - + Enter the old and new passphrase to the wallet. - + Confirm wallet encryption - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? - + Wallet encrypted - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + Warning: The Caps Lock key is on. - + @@ -247,353 +249,368 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - + The supplied passphrases do not match. - + Wallet unlock failed - + The passphrase entered for the wallet decryption was incorrect. - + Wallet decryption failed - + Wallet passphrase was succesfully changed. - + BitcoinGUI - + Bitcoin Wallet - + - - + + Synchronizing with network... - + - + Block chain synchronization in progress - + - + &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 - + - + Send coins to a bitcoin address - + - + Sign &message - + - + Prove you control an address - + - + E&xit - + - + Quit application - + - + &About %1 - + - + Show information about Bitcoin - + - + About &Qt - + - + Show information about Qt - + - + &Options... - + - + Modify configuration options for bitcoin - + - + Open &Bitcoin - + - + Show the Bitcoin window - + - + &Export... - + - + Export the data in the current tab to a file - + - + &Encrypt Wallet - + - + Encrypt or decrypt wallet - + - + &Backup Wallet - + - + Backup wallet to another location - + - + &Change Passphrase - + - + Change the passphrase used for wallet encryption - + - + &File - + - + &Settings - + - + &Help - + - + Tabs toolbar - + - + Actions toolbar - + - + [testnet] - + - + bitcoin-qt - + - + %n active connection(s) to Bitcoin network - + + + - + Downloaded %1 of %2 blocks of transaction history. - + - + 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? - + - + Sending... - + - + Sent transaction - + - + Incoming transaction - + - + Date: %1 Amount: %2 Type: %3 Address: %4 - + - + 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. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -601,17 +618,22 @@ Address: %4 &Unit to show amounts in: - + Choose the default subdivision unit to show in the interface, and when sending coins - + - Display addresses in transaction list - + &Display addresses in transaction list + + + + + Whether to show Bitcoin addresses in the transaction list + @@ -619,67 +641,67 @@ Address: %4 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 bitcoin address. - + Could not unlock wallet. - + New key generation failed. - + @@ -687,87 +709,87 @@ Address: %4 &Start Bitcoin on window system startup - + Automatically start Bitcoin after the computer is turned on - + &Minimize to the tray instead of the taskbar - + Show only a tray icon after minimizing the window - + Map port using &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - + M&inimize on close - + 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. - + &Connect through SOCKS4 proxy: - + Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &Port: - + Port of the proxy (e.g. 1234) - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + Pay transaction &fee - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -775,89 +797,89 @@ Address: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Choose adress from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - + Copy the current signature to the system clipboard + &Copy to Clipboard - + Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + @@ -865,17 +887,17 @@ Address: %4 Main - + Display - + Options - + @@ -883,66 +905,62 @@ Address: %4 Form - + Balance: - + 123.456 BTC - + Number of transactions: - + 0 - + Unconfirmed: - + 0 BTC - + - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - + + Wallet + - + <b>Recent transactions</b> - + Your current balance - + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + Total number of transactions in wallet - + @@ -950,52 +968,57 @@ p, li { white-space: pre-wrap; } Dialog - + QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: - + - + &Save As... - + + + + + Error encoding URI into QR Code. + - + Save Image... - + - + PNG Images (*.png) - + @@ -1010,102 +1033,102 @@ p, li { white-space: pre-wrap; } Send Coins - + Send to multiple recipients at once - + &Add recipient... - + Remove all transaction fields - + Clear all - + Balance: - + 123.456 BTC - + Confirm the send action - + &Send - + <b>%1</b> to %2 (%3) - + Confirm send coins - + Are you sure you want to send %1? - + and - + The recepient address is not valid, please recheck. - + The amount to pay must be larger than 0. - + Amount exceeds your balance - + Total exceeds your balance when the %1 transaction fee is included - + Duplicate address found, can only send to each address once in one 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. - + @@ -1113,63 +1136,63 @@ p, li { white-space: pre-wrap; } 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + @@ -1177,85 +1200,85 @@ p, li { white-space: pre-wrap; } Open for %1 blocks - + Open until %1 - + %1/offline? - + %1/unconfirmed - + %1 confirmations - + <b>Status:</b> - + , has not been successfully broadcast yet - + , broadcast through %1 node - + , broadcast through %1 nodes - + <b>Date:</b> - + <b>Source:</b> Generated<br> - + <b>From:</b> - + unknown - + <b>To:</b> - + (yours, label: - + (yours) - + @@ -1263,54 +1286,54 @@ p, li { white-space: pre-wrap; } <b>Credit:</b> - + (%1 matures in %2 more blocks) - + (not accepted) - + <b>Debit:</b> - + <b>Transaction fee:</b> - + <b>Net amount:</b> - + Message: - + Comment: - + Transaction ID: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + @@ -1318,130 +1341,134 @@ p, li { white-space: pre-wrap; } Transaction details - + This pane shows a detailed description of the transaction - + TransactionTableModel - + Date - + - + Type - + - + Address Helbidea - + Amount - + - + Open for %n block(s) - + + + - + Open until %1 - + - + Offline (%1 confirmations) - + - + Unconfirmed (%1 of %2 confirmations) - + - + Confirmed (%1 confirmations) - + Mined balance will be available in %n more blocks - + + + 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. - + @@ -1450,127 +1477,127 @@ p, li { white-space: pre-wrap; } 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 - + Edit label - + Show details... - + Export Transaction Data - + Comma separated file (*.csv) - + Confirmed - + Date - + Type - + Label - + @@ -1580,32 +1607,32 @@ p, li { white-space: pre-wrap; } Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to - + @@ -1613,351 +1640,351 @@ p, li { white-space: pre-wrap; } Sending... - + bitcoin-core - + Bitcoin version - + - + Usage: - + - + Send command to -server or bitcoind - + - + List commands - + - + Get help for a command - + - + Options: - + - + Specify configuration file (default: bitcoin.conf) - + - + Specify pid file (default: bitcoind.pid) - + - + Generate coins - + - + Don't generate coins - + - + Start minimized - + - + Specify data directory - + - + Specify connection timeout (in milliseconds) - + - + Connect through socks4 proxy - + - + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - + Add a node to connect to - + - + Connect only to the specified node - + - + Don't accept connections from outside - + - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port - + - + Attempt to use UPnP to map the listening port - + - + Fee per kB to add to transactions you send - + - + Accept command line and JSON-RPC commands - + - + Run in the background as a daemon and accept commands - + - + Use the test network - + - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections - + - + Password for JSON-RPC connections - + - + Listen for JSON-RPC connections on <port> (default: 8332) - + - + Allow JSON-RPC connections from specified IP address - + - + Send commands to node running on <ip> (default: 127.0.0.1) - + - + Set key pool size to <n> (default: 100) - + - + Rescan the block chain for missing wallet transactions - + - + SSL options: (see the Bitcoin 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) - + - + This help message - + - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + Loading addresses... - + - + Error loading addr.dat - + - + Error loading blkindex.dat - + - + Error loading wallet.dat: Wallet corrupted - + - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + - + Wallet needed to be rewritten: restart Bitcoin to complete - + - + Error loading wallet.dat - + - + Loading block index... - + - + Loading wallet... - + - + Rescanning... - + - + Done loading - + - + Invalid -proxy address - + - + Invalid amount for -paytxfee=<amount> - + - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + - + Error: CreateThread(StartNode) failed - + - + Warning: Disk space is low - + - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + - + beta - + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fa.ts b/src/qt/locale/bitcoin_fa.ts index ed2aff6ac2..0f95796c1f 100644 --- a/src/qt/locale/bitcoin_fa.ts +++ b/src/qt/locale/bitcoin_fa.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -138,17 +140,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label ر چسب - + Address ایل جدا - + (no label) خطای صادرت @@ -295,278 +297,288 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet پنجره بیتکویین - - + + Synchronizing with network... همگام سازی با شبکه ... - + Block chain synchronization in progress همگام زنجیر بلوک در حال پیشرفت - + &Overview بررسی اجمالی - + Show general overview of wallet نمای کلی پنجره نشان بده - + &Transactions - &amp;معاملات + &معاملات - + 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 رسال سکه ها - + Send coins to a bitcoin address ارسال سکه به آدرس بیتکویین - + Sign &message امضای &پیام - + Prove you control an address اثبات کنید که روی یک نشانی کنترل دارید - + E&xit خروج - + Quit application خروج از برنامه - + &About %1 &حدود%1 - + Show information about Bitcoin نمایش اطلاعات در مورد بیتکویین - + About &Qt درباره &Qt - + Show information about Qt نمایش اطلاعات درباره Qt - + &Options... تنظیمات... - + Modify configuration options for bitcoin صلاح تنظیمات برای بیتکویین - + Open &Bitcoin - باز کردن &amp;بیتکویین + باز کردن &بیتکویین - + Show the Bitcoin window نمایش پنجره بیتکویین - + &Export... &;صادرات - + Export the data in the current tab to a file - + - + &Encrypt Wallet &رمز بندی پنجره - + Encrypt or decrypt wallet رمز بندی یا رمز گشایی پنجره - + &Backup Wallet - + - + Backup wallet to another location - + - + &Change Passphrase تغییر عبارت عبور - + Change the passphrase used for wallet encryption عبارت عبور رمز گشایی پنجره تغییر کنید - + &File فایل - + &Settings تنظیمات - + &Help کمک - + Tabs toolbar نوار ابزار زبانه ها - + Actions toolbar نوار ابزار عملیت - + [testnet] آزمایش شبکه - + bitcoin-qt بیتکویین - + %n active connection(s) to Bitcoin network - در صد ارتباطات فعال بیتکویین با شبکه %n + + در صد ارتباطات فعال بیتکویین با شبکه %n + - + Downloaded %1 of %2 blocks of transaction history. %1 %2 دانلود 1% 2% بلوک معاملات - + Downloaded %1 blocks of transaction history. دانلود بلوکهای معملات %1 - + %n second(s) ago - %n بعد از چند دقیقه + + %n بعد از چند دقیقه + - + %n minute(s) ago - %n بعد از چند دقیقه + + %n بعد از چند دقیقه + - + %n hour(s) ago - %n بعد از چند دقیقه + + %n بعد از چند دقیقه + - + %n day(s) ago - %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% بفرستید که شامل گره معامله شما می باشد و به شبکه های اینترنتی کمک خواهد کردو آیا شما می خواهید این پول پر داخت%1 - + Sending... ارسال... - + Sent transaction معامله ارسال شده - + Incoming transaction معامله در یافت شده - + Date: %1 Amount: %2 Type: %3 @@ -578,34 +590,39 @@ Address: %4 آدرس %4 - + 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. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -622,8 +639,13 @@ Address: %4 - Display addresses in transaction list - نمایش آدرس ها در لیست معامله + &Display addresses in transaction list + &نمایش آدرس ها در لیست معامله + + + + Whether to show Bitcoin addresses in the transaction list + @@ -774,7 +796,7 @@ Address: %4 Pay transaction &fee - دستمزد&amp;پر داخت معامله + دستمزد&پر داخت معامله @@ -792,12 +814,12 @@ Address: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - آدرس برای ارسال پر داخت (bijvoorbeeld: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -841,8 +863,8 @@ Address: %4 - Copy the currently selected address to the system clipboard - آدرس انتخاب شده در سیستم تخته رسم گیره دار کپی کنید + Copy the current signature to the system clipboard + @@ -928,20 +950,12 @@ Address: %4 0 - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;">⏎ -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">کیف پول</span></p></body></html> + + Wallet + کیف پول - + <b>Recent transactions</b> اخرین معاملات&lt @@ -974,44 +988,49 @@ p, li { white-space: pre-wrap; }⏎ کد QR - + Request Payment درخواست پرداخت - + Amount: مقدار: - + BTC BTC - + Label: برچسب: - + Message: پیام - + &Save As... &ذخیره به عنوان... - + + Error encoding URI into QR Code. + + + + Save Image... - + - + PNG Images (*.png) - + @@ -1134,12 +1153,12 @@ p, li { white-space: pre-wrap; }⏎ A&mount: - A&amp;مبلغ : + A&مبلغ : Pay &To: - به&amp;پر داخت : + به&پر داخت : @@ -1345,54 +1364,58 @@ p, li { white-space: pre-wrap; }⏎ TransactionTableModel - + Date تاریخ - + Type نوع - + Address ایل جدا - + Amount مبلغ - + Open for %n block(s) - بلوک %n باز شده برای + + بلوک %n باز شده برای + - + Open until %1 از شده تا 1%1 - + Offline (%1 confirmations) افلایین (%1) - + Unconfirmed (%1 of %2 confirmations) تایید نشده (%1/%2) - + Confirmed (%1 confirmations) تایید شده (%1) Mined balance will be available in %n more blocks - و بیشتر باشند قابل قابول می شود %n تزار اصلی بعد از اینکه بلوکها + + و بیشتر باشند قابل قابول می شود %n تزار اصلی بعد از اینکه بلوکها + @@ -1635,346 +1658,346 @@ p, li { white-space: pre-wrap; }⏎ bitcoin-core - + Bitcoin version سخه بیتکویین - + Usage: ستفاده : - + Send command to -server or bitcoind ارسال فرمان به سرور یا باتکویین - + List commands لیست فومان ها - + Get help for a command کمک برای فرمان - + Options: تنظیمات - + Specify configuration file (default: bitcoin.conf) (: bitcoin.confپیش فرض: )فایل تنظیمی خاص - + Specify pid file (default: bitcoind.pid) (bitcoind.pidپیش فرض : ) فایل پید خاص - + Generate coins سکه های تولید شده - + Don't generate coins تولید سکه ها - + Start minimized شروع حد اقل - + Specify data directory دایرکتور اطلاعاتی خاص - + Specify connection timeout (in milliseconds) (میلی ثانیه )فاصله ارتباط خاص - + Connect through socks4 proxy socks4 proxy ارتباط توسط - + Allow DNS lookups for addnode and connect اجازه متغیر دی ان اس برای اضافه گره یا ارتباط - + Listen for connections on <port> (default: 8333 or testnet: 18333) برای اتصالات به <port> (پیش‌فرض: 8333 یا تست‌نت: 18333) گوش کنید - + Maintain at most <n> connections to peers (default: 125) حداکثر <n> اتصال با همکاران برقرار داشته باشید (پیش‌فرض: 125) - + Add a node to connect to ضافه گره برای ارتباط به - + Connect only to the specified node ارتباط فقط به گره خاص - + Don't accept connections from outside قابل ارتباطات از بیرون - + Don't bootstrap list of peers using DNS فهرست همکاران را با استفاده از DNS خودراه‌اندازی نکنید - + 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: 10000) حداکثر بافر دریافتی در هر اتصال، 1000*<n> (پیش‌فرض: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) حداکثر بافر ارسالی در هر اتصال، 1000*<n> (پیش‌فرض: 10000) - + Don't attempt to use UPnP to map the listening port برای ترسیم بندر شنیدنی UPnP استفاده - + Attempt to use UPnP to map the listening port برای ترسیم بندر شنیدنی UPnP استفاده - + Fee per kB to add to transactions you send نرخ هر کیلوبایت برای اضافه کردن به تراکنش‌هایی که می‌فرستید - + 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 اطلاعات اشکال‌زدایی اضافی خروجی - + Prepend debug output with timestamp به خروجی اشکال‌زدایی برچسب زمان بزنید - + Send trace/debug info to console instead of debug.log file اطلاعات ردگیری/اشکال‌زدایی را به جای فایل لاگ اشکال‌زدایی به کنسول بفرستید - + 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: 8332) ( 8332پیش فرض :) &lt;poort&gt; JSON-RPC شنوایی برای ارتباطات - + Allow JSON-RPC connections from specified IP address از آدرس آی پی خاص JSON-RPC قبول ارتباطات - + Send commands to node running on <ip> (default: 127.0.0.1) (127.0.0.1پیش فرض: ) &lt;ip&gt; دادن فرمانها برای استفاده گره ها روی - + Set key pool size to <n> (default: 100) (100پیش فرض:)&lt;n&gt; گذاشتن اندازه کلید روی - + Rescan the block chain for missing wallet transactions اسکان مجدد زنجیر بلوکها برای گم والت معامله - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) ( نگاه کنید Bitcoin Wiki در SSLتنظیمات ):SSL گزینه های - + 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) - + This help message پیام کمکی - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. رمز گشایی دایرکتور داده ها امکان پذیر نیست. شاید بیت کویین در حال فعال می باشد%s - + Loading addresses... بار گیری آدرس ها - + Error loading addr.dat خطا در بارگیری addr.dat - + Error loading blkindex.dat خطا در بارگیری blkindex.dat - + Error loading wallet.dat: Wallet corrupted خطا در بارگیری wallet.dat: کیف پول خراب شده است - + Error loading wallet.dat: Wallet requires newer version of Bitcoin خطا در بارگیری wallet.dat: کیف پول به ویرایش جدیدتری از Biticon نیاز دارد - + Wallet needed to be rewritten: restart Bitcoin to complete سلام - + Error loading wallet.dat خطا در بارگیری wallet.dat - + Loading block index... بار گیری شاخص بلوک - + Loading wallet... بار گیری والت - + Rescanning... اسکان مجدد - + Done loading بار گیری انجام شده است - + Invalid -proxy address آدرس پروکسی معتبر نیست - + Invalid amount for -paytxfee=<amount> paytxfee=&lt;بالغ &gt;مبلغ نا معتبر - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. خطا : پر داخت خیلی بالا است. این پر داخت معامله است که شما هنگام ارسال معامله باید پر داخت کنید - + Error: CreateThread(StartNode) failed خطا :ایجاد موضوع(گره) اشتباه بود - + Warning: Disk space is low هشدار: جای دیسک پایین است - + Unable to bind to port %d on this computer. Bitcoin is probably already running. وسل بندر به کامپیوتر امکان پذیر نیست. شاید بیتکویید در حال فعال است%d - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. هشدار: تاریخ و ساعت کامپیوتر شما چک کنید. اگر ساعت درست نیست بیتکویین مناسب نخواهد کار کرد - + beta بتا - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fa_IR.ts b/src/qt/locale/bitcoin_fa_IR.ts index 2e8df62f04..d8acb31ec0 100644 --- a/src/qt/locale/bitcoin_fa_IR.ts +++ b/src/qt/locale/bitcoin_fa_IR.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -29,120 +31,120 @@ This product includes software developed by the OpenSSL Project for use in the O Address Book - + These are your Bitcoin 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. - + Double-click to edit address or label - + Create a new address - + &New Address... - + Copy the currently selected address to the system clipboard - + &Copy to Clipboard - + Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + Delete the currently selected address from the list. Only sending addresses can be deleted. - + &Delete - + Copy address - + Copy label - + Edit - + Delete - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. - + AddressTableModel - + Label - + - + Address - + - + (no label) - + @@ -150,96 +152,96 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - + TextLabel - + Enter passphrase - + New passphrase - + Repeat new passphrase - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + Encrypt wallet - + This operation needs your wallet passphrase to unlock the wallet. - + Unlock wallet - + This operation needs your wallet passphrase to decrypt the wallet. - + Decrypt wallet - + Change passphrase - + Enter the old and new passphrase to the wallet. - + Confirm wallet encryption - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? - + Wallet encrypted - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + Warning: The Caps Lock key is on. - + @@ -247,353 +249,368 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - + The supplied passphrases do not match. - + Wallet unlock failed - + The passphrase entered for the wallet decryption was incorrect. - + Wallet decryption failed - + Wallet passphrase was succesfully changed. - + BitcoinGUI - + Bitcoin Wallet - + - - + + Synchronizing with network... - + - + Block chain synchronization in progress - + - + &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 - + - + Send coins to a bitcoin address - + - + Sign &message - + - + Prove you control an address - + - + E&xit - + - + Quit application - + - + &About %1 - + - + Show information about Bitcoin - + - + About &Qt - + - + Show information about Qt - + - + &Options... - + - + Modify configuration options for bitcoin - + - + Open &Bitcoin - + - + Show the Bitcoin window - + - + &Export... - + - + Export the data in the current tab to a file - + - + &Encrypt Wallet - + - + Encrypt or decrypt wallet - + - + &Backup Wallet - + - + Backup wallet to another location - + - + &Change Passphrase - + - + Change the passphrase used for wallet encryption - + - + &File - + - + &Settings - + - + &Help - + - + Tabs toolbar - + - + Actions toolbar - + - + [testnet] - + - + bitcoin-qt - + - + %n active connection(s) to Bitcoin network - + + + - + Downloaded %1 of %2 blocks of transaction history. - + - + 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? - + - + Sending... - + - + Sent transaction - + - + Incoming transaction - + - + Date: %1 Amount: %2 Type: %3 Address: %4 - + - + 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. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -601,17 +618,22 @@ Address: %4 &Unit to show amounts in: - + Choose the default subdivision unit to show in the interface, and when sending coins - + - Display addresses in transaction list - + &Display addresses in transaction list + &نمایش آدرس ها در لیست معامله + + + + Whether to show Bitcoin addresses in the transaction list + @@ -619,67 +641,67 @@ Address: %4 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 bitcoin address. - + Could not unlock wallet. - + New key generation failed. - + @@ -687,87 +709,87 @@ Address: %4 &Start Bitcoin on window system startup - + Automatically start Bitcoin after the computer is turned on - + &Minimize to the tray instead of the taskbar - + Show only a tray icon after minimizing the window - + Map port using &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - + M&inimize on close - + 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. - + &Connect through SOCKS4 proxy: - + Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &Port: - + Port of the proxy (e.g. 1234) - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + Pay transaction &fee - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -775,89 +797,89 @@ Address: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Choose adress from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - + Copy the current signature to the system clipboard + &Copy to Clipboard - + Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + @@ -865,17 +887,17 @@ Address: %4 Main - + Display - + Options - + @@ -883,66 +905,62 @@ Address: %4 Form - + Balance: - + 123.456 BTC - + Number of transactions: - + 0 - + Unconfirmed: - + 0 BTC - + - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - + + Wallet + کیف پول - + <b>Recent transactions</b> - + Your current balance - + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + Total number of transactions in wallet - + @@ -950,52 +968,57 @@ p, li { white-space: pre-wrap; } Dialog - + QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: - + - + &Save As... - + + + + + Error encoding URI into QR Code. + - + Save Image... - + - + PNG Images (*.png) - + @@ -1010,102 +1033,102 @@ p, li { white-space: pre-wrap; } Send Coins - + Send to multiple recipients at once - + &Add recipient... - + Remove all transaction fields - + Clear all - + Balance: - + 123.456 BTC - + Confirm the send action - + &Send - + <b>%1</b> to %2 (%3) - + Confirm send coins - + Are you sure you want to send %1? - + and - + The recepient address is not valid, please recheck. - + The amount to pay must be larger than 0. - + Amount exceeds your balance - + Total exceeds your balance when the %1 transaction fee is included - + Duplicate address found, can only send to each address once in one 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. - + @@ -1113,63 +1136,63 @@ p, li { white-space: pre-wrap; } 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + @@ -1177,85 +1200,85 @@ p, li { white-space: pre-wrap; } Open for %1 blocks - + Open until %1 - + %1/offline? - + %1/unconfirmed - + %1 confirmations - + <b>Status:</b> - + , has not been successfully broadcast yet - + , broadcast through %1 node - + , broadcast through %1 nodes - + <b>Date:</b> - + <b>Source:</b> Generated<br> - + <b>From:</b> - + unknown - + <b>To:</b> - + (yours, label: - + (yours) - + @@ -1263,54 +1286,54 @@ p, li { white-space: pre-wrap; } <b>Credit:</b> - + (%1 matures in %2 more blocks) - + (not accepted) - + <b>Debit:</b> - + <b>Transaction fee:</b> - + <b>Net amount:</b> - + Message: - + Comment: - + Transaction ID: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + @@ -1318,130 +1341,134 @@ p, li { white-space: pre-wrap; } Transaction details - + This pane shows a detailed description of the transaction - + TransactionTableModel - + Date - + - + Type - + - + Address - + - + Amount - + - + Open for %n block(s) - + + + - + Open until %1 - + - + Offline (%1 confirmations) - + - + Unconfirmed (%1 of %2 confirmations) - + - + Confirmed (%1 confirmations) - + Mined balance will be available in %n more blocks - + + + 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. - + @@ -1450,162 +1477,162 @@ p, li { white-space: pre-wrap; } 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 - + Edit label - + Show 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 - + @@ -1613,351 +1640,351 @@ p, li { white-space: pre-wrap; } Sending... - + bitcoin-core - + Bitcoin version - + - + Usage: - + - + Send command to -server or bitcoind - + - + List commands - + - + Get help for a command - + - + Options: - + - + Specify configuration file (default: bitcoin.conf) - + - + Specify pid file (default: bitcoind.pid) - + - + Generate coins - + - + Don't generate coins - + - + Start minimized - + - + Specify data directory - + - + Specify connection timeout (in milliseconds) - + - + Connect through socks4 proxy - + - + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - + Add a node to connect to - + - + Connect only to the specified node - + - + Don't accept connections from outside - + - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port - + - + Attempt to use UPnP to map the listening port - + - + Fee per kB to add to transactions you send - + - + Accept command line and JSON-RPC commands - + - + Run in the background as a daemon and accept commands - + - + Use the test network - + - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections - + - + Password for JSON-RPC connections - + - + Listen for JSON-RPC connections on <port> (default: 8332) - + - + Allow JSON-RPC connections from specified IP address - + - + Send commands to node running on <ip> (default: 127.0.0.1) - + - + Set key pool size to <n> (default: 100) - + - + Rescan the block chain for missing wallet transactions - + - + SSL options: (see the Bitcoin 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) - + - + This help message - + - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + Loading addresses... - + - + Error loading addr.dat - + - + Error loading blkindex.dat - + - + Error loading wallet.dat: Wallet corrupted - + - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + - + Wallet needed to be rewritten: restart Bitcoin to complete - + - + Error loading wallet.dat - + - + Loading block index... - + - + Loading wallet... - + - + Rescanning... - + - + Done loading - + - + Invalid -proxy address - + - + Invalid amount for -paytxfee=<amount> - + - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + - + Error: CreateThread(StartNode) failed - + - + Warning: Disk space is low - + - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + - + beta - + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fi.ts b/src/qt/locale/bitcoin_fi.ts index 8b6481930c..a74b0a1501 100644 --- a/src/qt/locale/bitcoin_fi.ts +++ b/src/qt/locale/bitcoin_fi.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -136,17 +138,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Nimi - + Address Osoite - + (no label) (ei nimeä) @@ -293,278 +295,293 @@ Tahdotko varmasti salata lompakon? BitcoinGUI - + Bitcoin Wallet Bitcoin-lompakko - - + + Synchronizing with network... Synkronoidaan verkon kanssa... - + Block chain synchronization in progress Block chainin synkronointi kesken - + &Overview &Yleisnäkymä - + Show general overview of wallet Näyttää kokonaiskatsauksen lompakon tilanteesta - + &Transactions &Rahansiirrot - + Browse transaction history Selaa rahansiirtohistoriaa - + &Address Book &Osoitekirja - + Edit the list of stored addresses and labels Muokkaa tallennettujen nimien ja osoitteiden listaa - + &Receive coins &Bitcoinien vastaanottaminen - + Show the list of addresses for receiving payments Näytä Bitcoinien vastaanottamiseen käytetyt osoitteet - + &Send coins &Lähetä Bitcoineja - + Send coins to a bitcoin address Lähetä Bitcoin-osoitteeseen - + Sign &message Allekirjoita &viesti - + Prove you control an address Todista että hallitset osoitetta - + E&xit L&opeta - + Quit application Lopeta ohjelma - + &About %1 &Tietoja %1 - + Show information about Bitcoin Näytä tietoa Bitcoin-projektista - + About &Qt Tietoja &Qt - + Show information about Qt Näytä tietoja QT:ta - + &Options... &Asetukset... - + Modify configuration options for bitcoin Muokkaa asetuksia - + Open &Bitcoin Avaa &Bitcoin - + Show the Bitcoin window Näytä Bitcoin-ikkuna - + &Export... &Vie... - + Export the data in the current tab to a file Vie aukiolevan välilehden tiedot tiedostoon - + &Encrypt Wallet &Salaa lompakko - + Encrypt or decrypt wallet Kryptaa tai dekryptaa lompakko - + &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 - + &File &Tiedosto - + &Settings &Asetukset - + &Help &Apua - + Tabs toolbar Välilehtipalkki - + Actions toolbar Toimintopalkki - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n aktiivinen yhteys Bitcoin-verkkoon%n aktiivista yhteyttä Bitcoin-verkkoon + + %n aktiivinen yhteys Bitcoin-verkkoon + %n aktiivista yhteyttä Bitcoin-verkkoon + - + Downloaded %1 of %2 blocks of transaction history. Ladattu %1 of %2 rahansiirtohistorian lohkoa. - + Downloaded %1 blocks of transaction history. Ladattu %1 lohkoa rahansiirron historiasta. - + %n second(s) ago - %n sekunti sitten%n sekuntia sitten + + %n sekunti sitten + %n sekuntia sitten + - + %n minute(s) ago - %n minuutti sitten%n minuuttia sitten + + %n minuutti sitten + %n minuuttia sitten + - + %n hour(s) ago - %n tunti sitten%n tuntia sitten + + %n tunti sitten + %n tuntia sitten + - + %n day(s) ago - %n päivä sitten%n päivää sitten + + %n päivä sitten + %n päivää sitten + - + Up to date Ohjelmisto on ajan tasalla - + Catching up... Kurotaan kiinni... - + Last received block was generated %1. Viimeisin vastaanotettu lohko tuotettu %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ää kokorajoituksen. Voit siitä huolimatta lähettää sen %1 siirtopalkkion mikä menee solmuille jotka käsittelevät rahansiirtosi tämä auttaa myös verkostoa. Haluatko maksaa siirtopalkkion? - + Sending... Lähetetään... - + Sent transaction Lähetetyt rahansiirrot - + Incoming transaction Saapuva rahansiirto - + Date: %1 Amount: %2 Type: %3 @@ -576,35 +593,40 @@ Tyyppi: %3 Osoite: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Lompakko on <b>salattu</b> ja tällä hetkellä <b>avoinna</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Lompakko on <b>salattu</b> ja tällä hetkellä <b>lukittuna</b> - + Backup Wallet Varmuuskopioi lompakko - + Wallet Data (*.dat) Lompakkodata (*.dat) - + Backup Failed Varmuuskopio epäonnistui - + There was an error trying to save the wallet data to the new location. Virhe tallennettaessa lompakkodataa uuteen sijaintiin. + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -620,8 +642,13 @@ Osoite: %4 - Display addresses in transaction list - Näytä osoitteet rahansiirtoluettelossa + &Display addresses in transaction list + &Näytä osoitteet rahansiirtoluettelossa + + + + Whether to show Bitcoin addresses in the transaction list + @@ -794,8 +821,8 @@ Osoite: %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Osoite, johon Bitcoinit lähetetään (esim. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -839,8 +866,8 @@ Osoite: %4 - Copy the currently selected address to the system clipboard - Kopioi valittu osoite leikepöydälle + Copy the current signature to the system clipboard + @@ -926,20 +953,12 @@ Osoite: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Lompakko</span></p></body></html> + + Wallet + Lompakko - + <b>Recent transactions</b> <b>Viimeisimmät rahansiirrot</b> @@ -972,42 +991,47 @@ p, li { white-space: pre-wrap; } QR-koodi - + Request Payment Vastaanota maksu - + Amount: Määrä: - + BTC BTC - + Label: Tunniste: - + Message: Viesti: - + &Save As... &Tallenna nimellä... - + + Error encoding URI into QR Code. + + + + Save Image... Tallenna kuva... - + PNG Images (*.png) PNG kuvat (*png) @@ -1343,54 +1367,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Päivämäärä - + Type Laatu - + Address Osoite - + Amount Määrä - + Open for %n block(s) - Auki %n lohkolleAuki %n lohkoille + + Auki %n lohkolle + Auki %n lohkoille + - + Open until %1 Avoinna %1 asti - + Offline (%1 confirmations) Ei yhteyttä verkkoon (%1 vahvistusta) - + Unconfirmed (%1 of %2 confirmations) Vahvistamatta (%1/%2 vahvistusta) - + Confirmed (%1 confirmations) Vahvistettu (%1 vahvistusta) Mined balance will be available in %n more blocks - Louhittu saldo tulee saataville %n lohkossaLouhittu saldo tulee saataville %n lohkossa + + Louhittu saldo tulee saataville %n lohkossa + Louhittu saldo tulee saataville %n lohkossa + @@ -1633,346 +1663,346 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoinin versio - + Usage: Käyttö: - + Send command to -server or bitcoind Lähetä käsky palvelimelle tai bitcoind:lle - + List commands Lista komennoista - + Get help for a command Hanki apua käskyyn - + Options: Asetukset: - + Specify configuration file (default: bitcoin.conf) Määritä asetustiedosto (oletus: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Määritä pid-tiedosto (oletus: bitcoin.pid) - + Generate coins Generoi kolikoita - + Don't generate coins Älä generoi kolikoita - + Start minimized Käynnistä pienennettynä - + Specify data directory Määritä data-hakemisto - + Specify connection timeout (in milliseconds) Määritä yhteyden aikakatkaisu (millisekunneissa) - + Connect through socks4 proxy Yhteys socks4-proxyn kautta - + Allow DNS lookups for addnode and connect Salli DNS haut lisäsolmulle ja yhdistä - + Listen for connections on <port> (default: 8333 or testnet: 18333) Kuuntele yhteyksiä portista <port> (oletus: 8333 tai testnet: 18333) - + Maintain at most <n> connections to peers (default: 125) Pidä enintään <n> yhteyttä verkkoihin (oletus: 125) - + Add a node to connect to Lisää solmu mihin yhdistetään - + Connect only to the specified node Ota yhteys vain tiettyyn solmuun - + Don't accept connections from outside Älä hyväksy ulkopuolisia yhteyksiä - + Don't bootstrap list of peers using DNS Älä alkulataa listaa verkoista DNS:ää käyttäen - + 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: 10000) Maksimi verkkoyhteyden vastaanottopuskuri, <n>*1000 tavua (oletus: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maksimi verkkoyhteyden lähetyspuskuri, <n>*1000 tavua (oletus: 10000) - + Don't attempt to use UPnP to map the listening port Älä käytä UPnP toimintoa kartoittamaan avointa porttia - + Attempt to use UPnP to map the listening port Yritä käyttää UPnP toimintoa kartoittamaan avointa porttia - + Fee per kB to add to transactions you send palkkio per kB lisätty lähettämiisi rahansiirtoihin - + 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 Tulosta ylimääräistä debuggaustietoa - + Prepend debug output with timestamp Lisää debuggaustiedon tulostukseen aikaleima - + 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ä jäljitys/debug-tieto debuggeriin - + 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: 8332) Kuuntele JSON-RPC -yhteyksiä portista <port> (oletus: 8332) - + 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) - + 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 - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-asetukset: (lisätietoja Bitcoin-Wikistä) - + 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äksyttävä salaus (oletus: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Tämä ohjeviesti - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. En pääse käsiksi data-hakemiston lukitukseen %s. Bitcoin on todennäköisesti jo käynnistetty. - + Loading addresses... Ladataan osoitteita... - + Error loading addr.dat Virhe ladattaessa addr.dat-tiedostoa - + 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 Bitcoin Virhe ladattaessa wallet.dat-tiedostoa: Tarvitset uudemman version Bitcoinista - + Wallet needed to be rewritten: restart Bitcoin to complete Lompakko tarvitsee uudelleenkirjoittaa: käynnistä Bitcoin uudelleen - + Error loading wallet.dat Virhe ladattaessa wallet.dat-tiedostoa - + Loading block index... Ladataan lohkoindeksiä... - + Loading wallet... Ladataan lompakkoa... - + Rescanning... Skannataan uudelleen... - + Done loading Lataus on valmis - + Invalid -proxy address Virheellinen proxy-osoite - + Invalid amount for -paytxfee=<amount> Virheellinen määrä -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. Varoitus:-paytxfee on erittäin korkea. Tämä on palkkio siirrosta minkä suoritat rahansiirrosta. - + Error: CreateThread(StartNode) failed Virhe: CreateThread(StartNode) epäonnistui - + Warning: Disk space is low Varoitus: Kiintolevytila on loppumassa - + Unable to bind to port %d on this computer. Bitcoin is probably already running. En pysty varaamaan porttia %d tähän koneeseen. Ehkä Bitcoin on jo käynnissä. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Varoitus: Tarkista, ovatko tietokoneesi päivämäärä ja aika oikein. Mikäli aika on väärin, Bitcoin-ohjelma ei toimi oikein. - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fr_CA.ts b/src/qt/locale/bitcoin_fr_CA.ts index cc0a0fd59f..8b99b7ea86 100644 --- a/src/qt/locale/bitcoin_fr_CA.ts +++ b/src/qt/locale/bitcoin_fr_CA.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -64,17 +66,17 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + @@ -89,22 +91,22 @@ This product includes software developed by the OpenSSL Project for use in the O Copy address - + Copy label - + Edit - + Delete - + @@ -114,35 +116,35 @@ This product includes software developed by the OpenSSL Project for use in the O Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. - + AddressTableModel - + Label - + - + Address - + - + (no label) - + @@ -150,96 +152,96 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - + TextLabel - + Enter passphrase - + New passphrase - + Repeat new passphrase - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + Encrypt wallet - + This operation needs your wallet passphrase to unlock the wallet. - + Unlock wallet - + This operation needs your wallet passphrase to decrypt the wallet. - + Decrypt wallet - + Change passphrase - + Enter the old and new passphrase to the wallet. - + Confirm wallet encryption - + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? - + Wallet encrypted - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + Warning: The Caps Lock key is on. - + @@ -247,353 +249,368 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - + The supplied passphrases do not match. - + Wallet unlock failed - + The passphrase entered for the wallet decryption was incorrect. - + Wallet decryption failed - + Wallet passphrase was succesfully changed. - + BitcoinGUI - + Bitcoin Wallet - + - - + + Synchronizing with network... - + - + Block chain synchronization in progress - + - + &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 - + - + Send coins to a bitcoin address - + - + Sign &message - + - + Prove you control an address - + - + E&xit - + - + Quit application - + - + &About %1 - + - + Show information about Bitcoin - + - + About &Qt - + - + Show information about Qt - + - + &Options... - + - + Modify configuration options for bitcoin - + - + Open &Bitcoin - + - + Show the Bitcoin window - + - + &Export... - + - + Export the data in the current tab to a file - + - + &Encrypt Wallet - + - + Encrypt or decrypt wallet - + - + &Backup Wallet - + - + Backup wallet to another location - + - + &Change Passphrase - + - + Change the passphrase used for wallet encryption - + - + &File - + - + &Settings - + - + &Help - + - + Tabs toolbar - + - + Actions toolbar - + - + [testnet] - + - + bitcoin-qt - + - + %n active connection(s) to Bitcoin network - + + + - + Downloaded %1 of %2 blocks of transaction history. - + - + 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? - + - + Sending... - + - + Sent transaction - + - + Incoming transaction - + - + Date: %1 Amount: %2 Type: %3 Address: %4 - + - + 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. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -601,17 +618,22 @@ Address: %4 &Unit to show amounts in: - + Choose the default subdivision unit to show in the interface, and when sending coins - + - Display addresses in transaction list - + &Display addresses in transaction list + + + + + Whether to show Bitcoin addresses in the transaction list + @@ -619,67 +641,67 @@ Address: %4 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 bitcoin address. - + Could not unlock wallet. - + New key generation failed. - + @@ -687,87 +709,87 @@ Address: %4 &Start Bitcoin on window system startup - + Automatically start Bitcoin after the computer is turned on - + &Minimize to the tray instead of the taskbar - + Show only a tray icon after minimizing the window - + Map port using &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - + M&inimize on close - + 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. - + &Connect through SOCKS4 proxy: - + Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &Port: - + Port of the proxy (e.g. 1234) - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + Pay transaction &fee - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -775,62 +797,62 @@ Address: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Choose adress from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - Copier l'adresse surligné a votre presse-papier + Copy the current signature to the system clipboard + @@ -842,22 +864,22 @@ Address: %4 Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + @@ -865,17 +887,17 @@ Address: %4 Main - + Display - + Options - + @@ -883,66 +905,62 @@ Address: %4 Form - + Balance: - + 123.456 BTC - + Number of transactions: - + 0 - + Unconfirmed: - + 0 BTC - + - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - + + Wallet + - + <b>Recent transactions</b> - + Your current balance - + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + Total number of transactions in wallet - + @@ -950,52 +968,57 @@ p, li { white-space: pre-wrap; } Dialog - + QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: - + - + &Save As... - + + + + + Error encoding URI into QR Code. + - + Save Image... - + - + PNG Images (*.png) - + @@ -1010,102 +1033,102 @@ p, li { white-space: pre-wrap; } Send Coins - + Send to multiple recipients at once - + &Add recipient... - + Remove all transaction fields - + Clear all - + Balance: - + 123.456 BTC - + Confirm the send action - + &Send - + <b>%1</b> to %2 (%3) - + Confirm send coins - + Are you sure you want to send %1? - + and - + The recepient address is not valid, please recheck. - + The amount to pay must be larger than 0. - + Amount exceeds your balance - + Total exceeds your balance when the %1 transaction fee is included - + Duplicate address found, can only send to each address once in one 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. - + @@ -1113,63 +1136,63 @@ p, li { white-space: pre-wrap; } 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + @@ -1177,85 +1200,85 @@ p, li { white-space: pre-wrap; } Open for %1 blocks - + Open until %1 - + %1/offline? - + %1/unconfirmed - + %1 confirmations - + <b>Status:</b> - + , has not been successfully broadcast yet - + , broadcast through %1 node - + , broadcast through %1 nodes - + <b>Date:</b> - + <b>Source:</b> Generated<br> - + <b>From:</b> - + unknown - + <b>To:</b> - + (yours, label: - + (yours) - + @@ -1263,54 +1286,54 @@ p, li { white-space: pre-wrap; } <b>Credit:</b> - + (%1 matures in %2 more blocks) - + (not accepted) - + <b>Debit:</b> - + <b>Transaction fee:</b> - + <b>Net amount:</b> - + Message: - + Comment: - + Transaction ID: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + @@ -1318,130 +1341,134 @@ p, li { white-space: pre-wrap; } Transaction details - + This pane shows a detailed description of the transaction - + TransactionTableModel - + Date - + - + Type - + - + Address - + - + Amount - + - + Open for %n block(s) - + + + - + Open until %1 - + - + Offline (%1 confirmations) - + - + Unconfirmed (%1 of %2 confirmations) - + - + Confirmed (%1 confirmations) - + Mined balance will be available in %n more blocks - + + + 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. - + @@ -1450,162 +1477,162 @@ p, li { white-space: pre-wrap; } 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 - + Edit label - + Show 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 - + @@ -1613,351 +1640,351 @@ p, li { white-space: pre-wrap; } Sending... - + bitcoin-core - + Bitcoin version - + - + Usage: - + - + Send command to -server or bitcoind - + - + List commands - + - + Get help for a command - + - + Options: - + - + Specify configuration file (default: bitcoin.conf) - + - + Specify pid file (default: bitcoind.pid) - + - + Generate coins - + - + Don't generate coins - + - + Start minimized - + - + Specify data directory - + - + Specify connection timeout (in milliseconds) - + - + Connect through socks4 proxy - + - + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - + Add a node to connect to - + - + Connect only to the specified node - + - + Don't accept connections from outside - + - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port - + - + Attempt to use UPnP to map the listening port - + - + Fee per kB to add to transactions you send - + - + Accept command line and JSON-RPC commands - + - + Run in the background as a daemon and accept commands - + - + Use the test network - + - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections - + - + Password for JSON-RPC connections - + - + Listen for JSON-RPC connections on <port> (default: 8332) - + - + Allow JSON-RPC connections from specified IP address - + - + Send commands to node running on <ip> (default: 127.0.0.1) - + - + Set key pool size to <n> (default: 100) - + - + Rescan the block chain for missing wallet transactions - + - + SSL options: (see the Bitcoin 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) - + - + This help message - + - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + Loading addresses... - + - + Error loading addr.dat - + - + Error loading blkindex.dat - + - + Error loading wallet.dat: Wallet corrupted - + - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + - + Wallet needed to be rewritten: restart Bitcoin to complete - + - + Error loading wallet.dat - + - + Loading block index... - + - + Loading wallet... - + - + Rescanning... - + - + Done loading - + - + Invalid -proxy address - + - + Invalid amount for -paytxfee=<amount> - + - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + - + Error: CreateThread(StartNode) failed - + - + Warning: Disk space is low - + - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + - + beta - + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fr_FR.ts b/src/qt/locale/bitcoin_fr_FR.ts index 08cea95b93..5473a2020a 100644 --- a/src/qt/locale/bitcoin_fr_FR.ts +++ b/src/qt/locale/bitcoin_fr_FR.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -136,17 +138,17 @@ Ce produit inclut des logiciels développés par OpenSSL Project pour utilisatio AddressTableModel - + Label Étiquette - + Address Adresse - + (no label) (aucune étiquette) @@ -293,278 +295,293 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet Porte-monnaie Bitcoin - - + + Synchronizing with network... Synchronisation avec le réseau... - + Block chain synchronization in progress Synchronisation de la chaîne de blocs en cours - + &Overview &Vue d'ensemble - + Show general overview of wallet Affiche une vue d'ensemble du porte-monnaie - + &Transactions &Transactions - + Browse transaction history Permet de parcourir l'historique des transactions - + &Address Book Carnet d'&adresses - + Edit the list of stored addresses and labels Éditer la liste des adresses et des étiquettes stockées - + &Receive coins &Recevoir des pièces - + Show the list of addresses for receiving payments Affiche la liste des adresses pour recevoir des paiements - + &Send coins &Envoyer des pièces - + Send coins to a bitcoin address Envoyer des pièces à une adresse bitcoin - + Sign &message Signer un &message - + Prove you control an address Prouver que vous contrôlez une adresse - + E&xit Q&uitter - + Quit application Quitter l'application - + &About %1 &À propos de %1 - + Show information about Bitcoin Afficher des informations à propos de Bitcoin - + About &Qt À propos de &Qt - + Show information about Qt Afficher des informations sur Qt - + &Options... &Options... - + Modify configuration options for bitcoin Modifier les options de configuration pour bitcoin - + Open &Bitcoin Ouvrir &Bitcoin - + Show the Bitcoin window Afficher la fenêtre de Bitcoin - + &Export... &Exporter... - + Export the data in the current tab to a file Exporter les données de l'onglet courant vers un fichier - + &Encrypt Wallet &Chiffrer le porte-monnaie - + Encrypt or decrypt wallet Chiffrer ou décrypter le porte-monnaie - + &Backup Wallet &Sauvegarder le porte-monnaie - + Backup wallet to another location Sauvegarder le porte-monnaie à un autre emplacement - + &Change Passphrase &Modifier la phrase de passe - + Change the passphrase used for wallet encryption Modifier la phrase de passe utilisée pour le cryptage du porte-monnaie - + &File &Fichier - + &Settings &Réglages - + &Help &Aide - + Tabs toolbar Barre d'outils des onglets - + Actions toolbar Barre d'outils des actions - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n connexion active avec le réseau Bitcoin%n connexions actives avec le réseau Bitcoin + + %n connexion active avec le réseau Bitcoin + %n connexions actives avec le réseau Bitcoin + - + Downloaded %1 of %2 blocks of transaction history. %1 blocs de l'historique des transactions téléchargés sur un total de %2. - + Downloaded %1 blocks of transaction history. %1 blocs de l'historique de transaction téléchargé. - + %n second(s) ago - il y a %n secondeil y a %n secondes + + il y a %n seconde + il y a %n secondes + - + %n minute(s) ago - il y a %n minuteil y a %n minutes + + il y a %n minute + il y a %n minutes + - + %n hour(s) ago - il y a %n heureil y a %n heures + + il y a %n heure + il y a %n heures + - + %n day(s) ago - il y a %n jouril y a %n jours + + il y a %n jour + il y a %n jours + - + Up to date À jour - + Catching up... Rattrapage... - + Last received block was generated %1. Le dernier bloc reçu a é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 de taille. Vous pouvez quand-même l'envoyer en vous acquittant de frais d'un montant de %1, qui iront aux nœuds qui traitent la transaction et aideront à soutenir le réseau. Voulez-vous payer les frais ? - + Sending... Envoi en cours... - + Sent transaction Transaction envoyée - + Incoming transaction Transaction entrante - + Date: %1 Amount: %2 Type: %3 @@ -577,35 +594,40 @@ Adresse : %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Le porte-monnaie est <b>chiffré</b> et est actuellement <b>déverrouillé</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Le porte-monnaie est <b>chiffré</b> et est actuellement <b>verrouillé</b> - + Backup Wallet Sauvegarder le porte-monnaie - + Wallet Data (*.dat) Données de porte-monnaie (*.dat) - + Backup Failed La sauvegarde a échoué - + There was an error trying to save the wallet data to the new location. Une erreur est survenue lors de l'enregistrement des données de porte-monnaie à un autre emplacement. + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -621,8 +643,13 @@ Adresse : %4 - Display addresses in transaction list - Afficher les adresses dans la liste des transactions + &Display addresses in transaction list + &Afficher les adresses dans la liste des transactions + + + + Whether to show Bitcoin addresses in the transaction list + @@ -795,8 +822,8 @@ Adresse : %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - L'adresse à laquelle le paiement sera envoyé (par ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -840,8 +867,8 @@ Adresse : %4 - Copy the currently selected address to the system clipboard - Copier l'adresse surlignée dans votre presse-papiers + Copy the current signature to the system clipboard + @@ -927,20 +954,12 @@ Adresse : %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Porte-monnaie</span></p></body></html> + + Wallet + Porte-monnaie - + <b>Recent transactions</b> <b>Transactions récentes</b> @@ -973,42 +992,47 @@ p, li { white-space: pre-wrap; } QR Code - + Request Payment Demande de paiement - + Amount: Montant : - + BTC BTC - + Label: Étiquette : - + Message: Message : - + &Save As... &Enregistrer sous... - + + Error encoding URI into QR Code. + + + + Save Image... Enregistrer l'image... - + PNG Images (*.png) Images PNG (*.png) @@ -1344,54 +1368,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Date - + Type Type - + Address Adresse - + Amount Montant - + Open for %n block(s) - Ouvert pour %n blocOuvert pour %n blocs + + Ouvert pour %n bloc + Ouvert pour %n blocs + - + Open until %1 Ouvert jusqu'à %1 - + Offline (%1 confirmations) Hors ligne (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) Non confirmée (%1 confirmations sur un total de %2) - + Confirmed (%1 confirmations) Confirmée (%1 confirmations) Mined balance will be available in %n more blocks - Le solde d'extraction (mined) sera disponible dans %n blocLe solde d'extraction (mined) sera disponible dans %n blocs + + Le solde d'extraction (mined) sera disponible dans %n bloc + Le solde d'extraction (mined) sera disponible dans %n blocs + @@ -1634,346 +1664,346 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Version de bitcoin - + Usage: Utilisation : - + Send command to -server or bitcoind Envoyer une commande à -server ou à bitcoind - + List commands Lister les commandes - + Get help for a command Obtenir de l'aide pour une commande - + Options: Options : - + Specify configuration file (default: bitcoin.conf) Spécifier le fichier de configuration (par défaut : bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Spécifier le fichier pid (par défaut : bitcoind.pid) - + Generate coins Générer des pièces - + Don't generate coins Ne pas générer de pièces - + Start minimized Démarrer sous forme minimisée - + Specify data directory Spécifier le répertoire de données - + Specify connection timeout (in milliseconds) Spécifier le délai d'expiration de la connexion (en millisecondes) - + Connect through socks4 proxy Connexion via un proxy socks4 - + Allow DNS lookups for addnode and connect Autoriser les recherches DNS pour l'ajout de nœuds et la connexion - + Listen for connections on <port> (default: 8333 or testnet: 18333) Écouter les connexions sur le <port> (par défaut : 8333 ou testnet : 18333) - + 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 Ajouter un nœud auquel se connecter - + Connect only to the specified node Ne se connecter qu'au nœud spécifié - + Don't accept connections from outside Ne pas accepter les connexion depuis l'extérieur - + Don't bootstrap list of peers using DNS Ne pas amorcer la liste des pairs en utilisant le DNS - + 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: 10000) Tampon maximal de réception par connexion, <n>*1000 octets (par défaut : 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Tampon maximal d'envoi par connexion, <n>*1000 octets (par défaut : 10000) - + Don't attempt to use UPnP to map the listening port Ne pas tenter d'utiliser l'UPnP pour ouvrir le port d'écoute - + Attempt to use UPnP to map the listening port Essayer d'utiliser l'UPnP pour ouvrir le port d'écoute - + Fee per kB to add to transactions you send Frais par ko à ajouter aux transactions que vous enverrez - + 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 Informations de débogage supplémentaires - + Prepend debug output with timestamp Faire précéder les données de débogage par un horodatage - + 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 au débogueur - + 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: 8332) Écouter les connexions JSON-RPC sur le <port> (par défaut : 8332) - + 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 à <ip> (par défaut : 127.0.0.1) - + Set key pool size to <n> (default: 100) Régler la taille de la plage 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 porte-monnaie manquantes - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Options SSL : (cf. le wiki Bitcoin pour les réglages SSL) - + 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) Clefs de chiffrement acceptables (par défaut : TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Ce message d'aide - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Impossible d'obtenir un verrou sur le répertoire de données %s. Bitcoin fonctionne probablement déjà. - + Loading addresses... Chargement des adresses... - + Error loading addr.dat Erreur lors du chargement de addr.dat - + Error loading blkindex.dat Erreur lors du chargement de blkindex.dat - + Error loading wallet.dat: Wallet corrupted Erreur lors du chargement de wallet.dat : porte-monnaie corrompu - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Erreur lors du chargement de wallet.dat : le porte-monnaie nécessite une version plus récente de Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete Le porte-monnaie nécessitait une réécriture. Veuillez redémarrer Bitcoin pour terminer l'opération - + Error loading wallet.dat Erreur lors du chargement de wallet.dat - + Loading block index... Chargement de l'index des blocs... - + Loading wallet... Chargement du porte-monnaie... - + Rescanning... Nouvelle analyse... - + Done loading Chargement terminé - + Invalid -proxy address Adresse -proxy invalide - + Invalid amount for -paytxfee=<amount> Montant invalide pour -paytxfee=<montant> - + 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. - + Error: CreateThread(StartNode) failed Erreur : CreateThread(StartNode) a échoué - + Warning: Disk space is low Attention : l'espace disque est faible - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Impossible de s'attacher au port %d sur cet ordinateur. Bitcoin fonctionne probablement déjà. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Attention : veuillez vérifier que l'heure et la date de votre ordinateur sont corrects. Si votre horloge n'est pas à l'heure, Bitcoin ne fonctionnera pas correctement. - + beta bêta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_he.ts b/src/qt/locale/bitcoin_he.ts index 627245092a..487dd6ab27 100644 --- a/src/qt/locale/bitcoin_he.ts +++ b/src/qt/locale/bitcoin_he.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -136,17 +138,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label תוית - + Address כתובת - + (no label) (ללא כתובת) @@ -293,278 +295,293 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet ארנק ביטקוין - - + + Synchronizing with network... מסתנכרן עם הרשת... - + Block chain synchronization in progress סנכרון עם שרשרת הבלוקים בעיצומו - + &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 &שלח מטבעות - + Send coins to a bitcoin address שלח מטבעות לכתובת ביטקוין - + Sign &message חתום על הו&דעה - + Prove you control an address הוכח שאתה שולט בכתובת - + E&xit י&ציאה - + Quit application סגור תוכנה - + &About %1 &אודות %1 - + Show information about Bitcoin הצג מידע על ביטקוין - + About &Qt אודות Qt - + Show information about Qt הצג מידע על Qt - + &Options... &אפשרויות - + Modify configuration options for bitcoin שנה הגדרות עבור ביטקוין - + Open &Bitcoin פתח את &ביטקוין - + Show the Bitcoin window הצג את חלון ביטקוין - + &Export... י&צא - + Export the data in the current tab to a file יצוא הנתונים בטאב הנוכחי לקובץ - + &Encrypt Wallet הצ&פן ארנק - + Encrypt or decrypt wallet הצפן או פענח ארנק - + &Backup Wallet &גיבוי ארנק - + Backup wallet to another location גיבוי הארנק למקום אחר - + &Change Passphrase שנה &סיסמה - + Change the passphrase used for wallet encryption שנה את הסיסמה להצפנת הארנק - + &File &קובץ - + &Settings ה&גדרות - + &Help &עזרה - + Tabs toolbar סרגל כלים טאבים - + Actions toolbar סרגל כלים פעולות - + [testnet] [רשת-בדיקה] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - חיבור פעיל אחד לרשת הביטקוין%n חיבורים פעילים לרשת הביטקוין + + חיבור פעיל אחד לרשת הביטקוין + %n חיבורים פעילים לרשת הביטקוין + - + Downloaded %1 of %2 blocks of transaction history. הורדו %1 מתוך %2 בלוקים של היסטוריית פעולות. - + Downloaded %1 blocks of transaction history. הורדו %1 בלוקים של היסטוריית פעולות. - + %n second(s) ago - לפני שניהלפני %n שניות + + לפני שניה + לפני %n שניות + - + %n minute(s) ago - לפני דקהלפני %n דקות + + לפני דקה + לפני %n דקות + - + %n hour(s) ago - לפני שעהלפני %n שעות + + לפני שעה + לפני %n שעות + - + %n day(s) ago - לפני יוםלפני %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, שמגיעה לצמתים שמעבדים את הפעולה ועוזרת לתמוך ברשת. האם אתה מעוניין לשלם את העמלה? - + Sending... שולח... - + Sent transaction פעולה שנשלחה - + Incoming transaction פעולה שהתקבלה - + Date: %1 Amount: %2 Type: %3 @@ -576,35 +593,40 @@ Address: %4 כתובת: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> הארנק <b>מוצפן</b> וכרגע <b>פתוח</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> הארנק <b>מוצפן</b> וכרגע <b>נעול</b> - + 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 occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -620,8 +642,13 @@ Address: %4 - Display addresses in transaction list - הצג כתובות ברשימת הפעולות + &Display addresses in transaction list + &הצג כתובות ברשימת הפעולות + + + + Whether to show Bitcoin addresses in the transaction list + @@ -794,8 +821,8 @@ Address: %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - הכתובת אליה יישלח התשלום (למשל 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -839,8 +866,8 @@ Address: %4 - Copy the currently selected address to the system clipboard - העתק את הכתובת שסומנה ללוח המערכת + Copy the current signature to the system clipboard + @@ -926,20 +953,12 @@ Address: %4 0 ביטקוין - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + - + <b>Recent transactions</b> <b>פעולות אחרונות</b> @@ -972,42 +991,47 @@ p, li { white-space: pre-wrap; } קוד QR - + Request Payment בקש תשלום - + Amount: כמות: - + BTC ביטקוין - + Label: תוית: - + Message: הודעה: - + &Save As... &שמור בשם... - + + Error encoding URI into QR Code. + + + + Save Image... שמור תמונה... - + PNG Images (*.png) תמונות PNG (*.png) @@ -1343,54 +1367,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date תאריך - + Type סוג - + Address כתובת - + Amount כמות - + Open for %n block(s) - פתוח למשך בלוק אחדפתוח למשך %n בלוקים + + פתוח למשך בלוק אחד + פתוח למשך %n בלוקים + - + Open until %1 פתוח עד %1 - + Offline (%1 confirmations) לא מחובר (%1 אישורים) - + Unconfirmed (%1 of %2 confirmations) ממתין לאישור (%1 מתוך %2 אישורים) - + Confirmed (%1 confirmations) מאושר (%1 אישורים) Mined balance will be available in %n more blocks - יתרה שנכרתה תהיה זמינה עוד בלוק אחדיתרה שנכרתה תהיה זמינה עוד %n בלוקים + + יתרה שנכרתה תהיה זמינה עוד בלוק אחד + יתרה שנכרתה תהיה זמינה עוד %n בלוקים + @@ -1633,345 +1663,345 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version גרסת ביטקוין - + Usage: שימוש: - + Send command to -server or bitcoind שלח פקודה ל -server או bitcoind - + List commands רשימת פקודות - + Get help for a command קבל עזרה עבור פקודה - + Options: אפשרויות: - + Specify configuration file (default: bitcoin.conf) ציין קובץ הגדרות (ברירת מחדל: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) ציין קובץ pid (ברירת מחדל: bitcoind.pid) - + Generate coins צור מטבעות - + Don't generate coins אל תייצר מטבעות - + Start minimized התחל ממוזער - + Specify data directory ציין תיקיית נתונים - + Specify connection timeout (in milliseconds) ציין הגבלת זמן לחיבור (במילישניות) - + Connect through socks4 proxy התחבר דרך פרוקסי socks4 - + Allow DNS lookups for addnode and connect אפשר עיון ב-DNS להוספת צומת וחיבור - + Listen for connections on <port> (default: 8333 or testnet: 18333) האזן לחיבורים ב<פורט> (ברירת מחדל: 8333 או ברשת הבדיקה: 18333) - + Maintain at most <n> connections to peers (default: 125) החזק לכל היותר <n> חיבורים לעמיתים (ברירת מחדל: 125) - + Add a node to connect to הוסף צומת להתחבר אליו - + Connect only to the specified node התחבר רק לצומת המצוין - + Don't accept connections from outside אל תקבל חיבורים מבחוץ - + Don't bootstrap list of peers using DNS אל תשתמש ב-DNS לאתחול רשימת עמיתים - + 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: 10000) חוצץ מירבי לקבלה לכל חיבור, <n>*1000 בתים (ברירת מחדל: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) חוצץ מירבי לשליחה לכל חיבור, <n>*1000 בתים (ברירת מחדל: 10000) - + Don't attempt to use UPnP to map the listening port אל תנסה להשתמש ב-UPnP כדי למפות את הפורט להאזנה - + Attempt to use UPnP to map the listening port נסה להשתמש ב-UPnP כדי למפות את הפורט להאזנה - + Fee per kB to add to transactions you send עמלה לכל kB להוסיף לפעולות שאתה שולח - + 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 פלוט מידע דיבאג נוסף - + Prepend debug output with timestamp הוסף חותמת זמן לפני פלט דיבאג - + 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: 8332) האזן לחיבורי JSON-RPC ב<פורט> (ברירת מחדל: 8332) - + 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) - + Set key pool size to <n> (default: 100) קבע את גודל המאגר ל -<n> (ברירת מחדל: 100) - + Rescan the block chain for missing wallet transactions סרוק מחדש את שרשרת הבלוקים למציאת פעולות חסרות בארנק - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) אפשרויות SSL: (ראה את הויקי של ביטקוין עבור הוראות להתקנת SSL) - + 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 הודעת העזרה הזו - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. אינו מסוגל לנעול את תיקיית הנתונים %s. כנראה שביטקוין כבר רץ. - + Loading addresses... טוען כתובות... - + Error loading addr.dat שגיאה בטעינת הקובץ addr.dat - + Error loading blkindex.dat שגיאה בטעינת הקובץ blkindex.dat - + Error loading wallet.dat: Wallet corrupted שגיאה בטעינת הקובץ wallet.dat: הארנק מושחת - + Error loading wallet.dat: Wallet requires newer version of Bitcoin שגיאה בטעינת הקובץ wallet.dat: הארנק דורש גרסה חדשה יותר של ביטקוין - + Wallet needed to be rewritten: restart Bitcoin to complete יש לכתוב מחדש את הארנק: אתחל את ביטקוין לסיום - + Error loading wallet.dat שגיאה בטעינת הקובץ wallet.dat - + Loading block index... טוען את אינדקס הבלוקים... - + Loading wallet... טוען ארנק... - + Rescanning... סורק מחדש... - + Done loading טעינה הושלמה - + Invalid -proxy address כתובת פרוקסי לא תקינה - + Invalid amount for -paytxfee=<amount> כמות לא תקינה בפרמטר -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. אזהרה: ערך גבוה מדי הושם בפרמטר -paytxfee. זו העמלה שתשלם אם אתה שולח פעולה. - + Error: CreateThread(StartNode) failed שגיאה: כישלון ב- CreateThread(StartNode) - + Warning: Disk space is low אזהרה: מעט מקום בדיסק - + Unable to bind to port %d on this computer. Bitcoin is probably already running. לא מסוגל להיקשר לפורט %d במחשב הזה. כנראה שביטקוין כבר רץ. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. אזהרה: אנא בדוק שהתאריך והשעה של המחשב הזה נכונים. אם השעון שלך שגוי ביטקוין לא יפעל כהלכה. - + beta בטא - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_hr.ts b/src/qt/locale/bitcoin_hr.ts index 9d9e2695ae..5b412bb3dd 100644 --- a/src/qt/locale/bitcoin_hr.ts +++ b/src/qt/locale/bitcoin_hr.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -64,17 +66,17 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + @@ -99,12 +101,12 @@ This product includes software developed by the OpenSSL Project for use in the O Edit - + Delete - + @@ -130,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Oznaka - + Address Adresa - + (no label) (bez oznake) @@ -234,13 +236,13 @@ Jeste li sigurni da želite šifrirati svoj novčanik? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + Warning: The Caps Lock key is on. - + @@ -287,278 +289,298 @@ Jeste li sigurni da želite šifrirati svoj novčanik? BitcoinGUI - + Bitcoin Wallet Bitcoin novčanik - - + + Synchronizing with network... Usklađivanje s mrežom ... - + Block chain synchronization in progress Sinkronizacija lanca blokova u tijeku - + &Overview &Pregled - + Show general overview of wallet Prikaži opći pregled novčanika - + &Transactions &Transakcije - + Browse transaction history Pretraži povijest transakcija - + &Address Book &Adresar - + Edit the list of stored addresses and labels Uređivanje popisa pohranjenih adresa i oznaka - + &Receive coins &Primanje novca - + Show the list of addresses for receiving payments Prikaži popis adresa za primanje isplate - + &Send coins &Pošalji novac - + Send coins to a bitcoin address Slanje novca na bitcoin adresu - + Sign &message - + - + Prove you control an address - + - + E&xit &Izlaz - + Quit application Izlazak iz programa - + &About %1 &Više o %1 - + Show information about Bitcoin Prikaži informacije o Bitcoinu - + About &Qt - + - + Show information about Qt - + - + &Options... &Postavke - + Modify configuration options for bitcoin Promijeni postavke konfiguracije za bitcoin - + Open &Bitcoin Otvori &Bitcoin - + Show the Bitcoin window Prikaži Bitcoin prozor - + &Export... &Izvoz... - + Export the data in the current tab to a file - + - + &Encrypt Wallet &Šifriraj novčanik - + Encrypt or decrypt wallet Šifriranje ili dešifriranje novčanika - + &Backup Wallet - + &Backup novčanika - + Backup wallet to another location - + - + &Change Passphrase &Promijena lozinke - + Change the passphrase used for wallet encryption Promijenite lozinku za šifriranje novčanika - + &File &Datoteka - + &Settings &Konfiguracija - + &Help &Pomoć - + Tabs toolbar Traka kartica - + Actions toolbar Traka akcija - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n aktivna veza na Bitcoin mrežu%n aktivne veze na Bitcoin mrežu%n aktivnih veza na Bitcoin mrežu + + %n aktivna veza na Bitcoin mrežu + %n aktivne veze na Bitcoin mrežu + %n aktivnih veza na Bitcoin mrežu + - + Downloaded %1 of %2 blocks of transaction history. Preuzeto %1 od %2 blokova povijesti transakcije. - + Downloaded %1 blocks of transaction history. Preuzeto %1 blokova povijesti transakcije. - + %n second(s) ago - prije %n sekundeprije %n sekundeprije %n sekundi + + prije %n sekunde + prije %n sekunde + prije %n sekundi + - + %n minute(s) ago - prije %n minuteprije %n minuteprije %n minuta + + prije %n minute + prije %n minute + prije %n minuta + - + %n hour(s) ago - prije %n sataprije %n sataprije %n sati + + prije %n sata + prije %n sata + prije %n sati + - + %n day(s) ago - prije %n danaprije %n danaprije %n dana + + prije %n dana + prije %n dana + prije %n dana + - + Up to date Ažurno - + Catching up... Ažuriranje... - + Last received block was generated %1. Zadnji primljeni blok je generiran %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? Ova transakcija je preko ograničenja veličine. Možete ju ipak poslati za naknadu od %1, koja se daje čvorovima koji procesiraju vaše transakcije i tako podržavate mrežu. Želite li platiti naknadu? - + Sending... Slanje... - + Sent transaction Poslana transakcija - + Incoming transaction Dolazna transakcija - + Date: %1 Amount: %2 Type: %3 @@ -571,34 +593,39 @@ Adresa:%4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Novčanik je <b>šifriran</b> i trenutno <b>otključan</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b> - + Backup Wallet - + - + Wallet Data (*.dat) - + - + Backup Failed - + - + There was an error trying to save the wallet data to the new location. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -615,8 +642,13 @@ Adresa:%4 - Display addresses in transaction list - Prikaži adrese u popisu transakcija + &Display addresses in transaction list + &Prikaži adrese u popisu transakcija + + + + Whether to show Bitcoin addresses in the transaction list + @@ -762,7 +794,7 @@ Adresa:%4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -772,7 +804,7 @@ Adresa:%4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -780,17 +812,17 @@ Adresa:%4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adresa za slanje plaćanja (npr. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -815,27 +847,27 @@ Adresa:%4 Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - Kopiraj trenutno odabranu adresu u međuspremnik + Copy the current signature to the system clipboard + @@ -847,22 +879,22 @@ Adresa:%4 Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + @@ -921,20 +953,12 @@ Adresa:%4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Lisnica</span></p></body></html> + + Wallet + Lisnica - + <b>Recent transactions</b> <b>Nedavne transakcije</b> @@ -964,47 +988,52 @@ p, li { white-space: pre-wrap; } QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: Poruka: - + &Save As... - + + + + + Error encoding URI into QR Code. + - + Save Image... - + - + PNG Images (*.png) - + @@ -1034,7 +1063,7 @@ p, li { white-space: pre-wrap; } Remove all transaction fields - + @@ -1314,7 +1343,7 @@ p, li { white-space: pre-wrap; } Transaction ID: - + @@ -1338,54 +1367,62 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Datum - + Type Tip - + Address Adresa - + Amount Iznos - + Open for %n block(s) - Otvoren za %n blokaOtvoren za %n blokovaOtvoren za %n blokova + + Otvoren za %n bloka + Otvoren za %n blokova + Otvoren za %n blokova + - + Open until %1 Otvoren do %1 - + Offline (%1 confirmations) Nije na mreži (%1 potvrda) - + Unconfirmed (%1 of %2 confirmations) Nepotvrđen (%1 od %2 potvrda) - + Confirmed (%1 confirmations) Potvrđen (%1 potvrda) Mined balance will be available in %n more blocks - Saldo iskovanih novčićća bit de dostupan nakon %n dodatnog blokaSaldo iskovanih novčićća bit de dostupan nakon %n dodatnih blokovaSaldo iskovanih novčićća bit de dostupan nakon %n dodatnih blokova + + Saldo iskovanih novčićća bit de dostupan nakon %n dodatnog bloka + Saldo iskovanih novčićća bit de dostupan nakon %n dodatnih blokova + Saldo iskovanih novčićća bit de dostupan nakon %n dodatnih blokova + @@ -1405,7 +1442,7 @@ p, li { white-space: pre-wrap; } Received from - + @@ -1539,7 +1576,7 @@ p, li { white-space: pre-wrap; } Copy amount - + @@ -1628,345 +1665,345 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoin verzija - + Usage: Upotreba: - + Send command to -server or bitcoind Pošalji komandu usluzi -server ili bitcoind - + List commands Prikaži komande - + Get help for a command Potraži pomoć za komandu - + Options: Postavke: - + Specify configuration file (default: bitcoin.conf) Odredi konfiguracijsku datoteku (ugrađeni izbor: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Odredi proces ID datoteku (ugrađeni izbor: bitcoin.pid) - + Generate coins Generiraj novčiće - + Don't generate coins Ne generiraj novčiće - + Start minimized Pokreni minimiziran - + Specify data directory Odredi direktorij za datoteke - + Specify connection timeout (in milliseconds) Odredi vremenski prozor za spajanje na mrežu (u milisekundama) - + Connect through socks4 proxy Poveži se kroz socks4 proxy - + Allow DNS lookups for addnode and connect Dozvoli DNS upite za dodavanje nodova i povezivanje - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - + Add a node to connect to Unesite nod s kojim se želite spojiti - + Connect only to the specified node Poveži se samo sa određenim nodom - + Don't accept connections from outside Ne prihvaćaj povezivanje izvana - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port Ne pokušaj koristiti UPnP da otvoriš port za uslugu - + Attempt to use UPnP to map the listening port Pokušaj koristiti UPnP da otvoriš port za uslugu - + Fee per kB to add to transactions you send - + - + Accept command line and JSON-RPC commands Prihvati komande iz tekst moda i JSON-RPC - + Run in the background as a daemon and accept commands Izvršavaj u pozadini kao uslužnik i prihvaćaj komande - + Use the test network Koristi test mrežu - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections Korisničko ime za JSON-RPC veze - + Password for JSON-RPC connections Lozinka za JSON-RPC veze - + Listen for JSON-RPC connections on <port> (default: 8332) Prihvaćaj JSON-RPC povezivanje na portu broj <port> (ugrađeni izbor: 8332) - + 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) - + 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 - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL postavke: (za detalje o podešavanju SSL opcija vidi Bitcoin Wiki) - + 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) Prihvaljivi načini šifriranja (ugrađeni izbor: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Ova poruka za pomoć - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Program ne može pristupiti direktoriju s datotekama %s. Bitcoin program je vjerojatno već pokrenut. - + Loading addresses... Učitavanje adresa... - + Error loading addr.dat - + - + Error loading blkindex.dat - + - + Error loading wallet.dat: Wallet corrupted - + - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + - + Wallet needed to be rewritten: restart Bitcoin to complete - + - + Error loading wallet.dat - + - + Loading block index... Učitavanje indeksa blokova... - + Loading wallet... Učitavanje novčanika... - + Rescanning... Rescaniranje - + Done loading Učitavanje gotovo - + Invalid -proxy address Nevaljala -proxy adresa - + Invalid amount for -paytxfee=<amount> Nevaljali iznos za opciju -paytxfee=<amount> - + 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. - + Error: CreateThread(StartNode) failed Greška: CreateThread(StartNode) nije uspjela - + Warning: Disk space is low Upozorenje: Malo diskovnog prostora - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Program ne može koristiti port %d na ovom računalu. Bitcoin program je vjerojatno već pokrenut. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Upozorenje: Molimo provjerite jesu li datum i vrijeme na vašem računalu točni. Ako vaš sat ide krivo, Bitcoin neće raditi ispravno. - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index 7a66fa6c10..8c867b082c 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -61,30 +63,30 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &Másolás a vágólapra + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + A kiválasztott cím törlése a listáról. Csak a küldő címek törölhetőek. + Show &QR Code - + + + + + &Delete + &Törlés Sign a message to prove you own this address - + &Sign Message - - - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - A kiválasztott cím törlése a listáról. Csak a küldő címek törölhetőek. - - - - &Delete - &Törlés + @@ -99,12 +101,12 @@ This product includes software developed by the OpenSSL Project for use in the O Edit - + Delete - + @@ -130,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Címke - + Address Cím - + (no label) (nincs címke) @@ -231,16 +233,11 @@ Biztosan kódolni akarod a tárcát? Wallet encrypted Tárca kódolva - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - Warning: The Caps Lock key is on. - + @@ -255,6 +252,11 @@ Biztosan kódolni akarod a tárcát? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Tárca kódolása belső hiba miatt sikertelen. A tárcád nem lett kódolva. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. + @@ -287,278 +289,288 @@ Biztosan kódolni akarod a tárcát? BitcoinGUI - + Bitcoin Wallet Bitcoin-tárca - - + + Synchronizing with network... Szinkronizálás a hálózattal... - + Block chain synchronization in progress Blokklánc-szinkronizálás folyamatban - + &Overview &Áttekintés - + Show general overview of wallet Tárca általános áttekintése - + &Transactions &Tranzakciók - + Browse transaction history Tranzakciótörténet megtekintése - + &Address Book Cím&jegyzék - + Edit the list of stored addresses and labels Tárolt címek és címkék listájának szerkesztése - + &Receive coins Érmék &fogadása - + Show the list of addresses for receiving payments Kiizetést fogadó címek listája - + &Send coins Érmék &küldése - + Send coins to a bitcoin address Érmék küldése megadott címre - + Sign &message - + - + Prove you control an address - + - + E&xit &Kilépés - + Quit application Kilépés - + &About %1 &A %1-ról - + Show information about Bitcoin Információk a Bitcoinról - - About &Qt - - - - - Show information about Qt - - - - + &Options... &Opciók... - + Modify configuration options for bitcoin Bitcoin konfigurációs opciók - + Open &Bitcoin A &Bitcoin megnyitása - + Show the Bitcoin window A Bitcoin-ablak mutatása - + &Export... &Exportálás... - - Export the data in the current tab to a file - - - - + &Encrypt Wallet Tárca &kódolása - + Encrypt or decrypt wallet Tárca kódolása vagy dekódolása - - &Backup Wallet - + + &Change Passphrase + Jelszó &megváltoztatása - - Backup wallet to another location - + + Change the passphrase used for wallet encryption + Tárcakódoló jelszó megváltoztatása - - &Change Passphrase - Jelszó &megváltoztatása + + About &Qt + A &Qt-ról + + + + Show information about Qt + Információk a Qt ról + + + + Export the data in the current tab to a file + - Change the passphrase used for wallet encryption - Tárcakódoló jelszó megváltoztatása + &Backup Wallet + - + + Backup wallet to another location + + + + &File &Fájl - + &Settings &Beállítások - + &Help &Súgó - + Tabs toolbar Fül eszköztár - + Actions toolbar Parancsok eszköztár - + [testnet] [teszthálózat] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n aktív kapcsolat a Bitcoin-hálózattal%n aktív kapcsolat a Bitcoin-hálózattal + + %n aktív kapcsolat a Bitcoin-hálózattal + - + Downloaded %1 of %2 blocks of transaction history. %1 blokk letöltve a tranzakciótörténet %2 blokkjából. - + Downloaded %1 blocks of transaction history. %1 blokk letöltve a tranzakciótörténetből. - + %n second(s) ago - %n másodperccel ezelőtt%n másodperccel ezelőtt + + %n másodperccel ezelőtt + - + %n minute(s) ago - %n perccel ezelőtt%n perccel ezelőtt + + %n perccel ezelőtt + - + %n hour(s) ago - %n órával ezelőtt%n órával ezelőtt + + %n órával ezelőtt + - + %n day(s) ago - %n nappal ezelőtt%n nappal ezelőtt + + %n nappal ezelőtt + - + Up to date Naprakész - + Catching up... Frissítés... - + Last received block was generated %1. Az utolsóként kapott blokk generálva: %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? Ez a tranzakció túllépi a mérethatárt, de %1 tranzakciós díj ellenében így is elküldheted. Ezt a plusz összeget a tranzakcióidat feldolgozó csomópontok kapják, így magát a hálózatot támogatod vele. Hajlandó vagy megfizetni a díjat? - + Sending... Küldés... - + Sent transaction Tranzakció elküldve. - + Incoming transaction Beérkező tranzakció - + Date: %1 Amount: %2 Type: %3 @@ -571,34 +583,39 @@ Cím: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Tárca <b>kódolva</b> és jelenleg <b>nyitva</b>. - + Wallet is <b>encrypted</b> and currently <b>locked</b> Tárca <b>kódolva</b> és jelenleg <b>zárva</b>. - + Backup Wallet - + - + Wallet Data (*.dat) - + - + Backup Failed - + - + There was an error trying to save the wallet data to the new location. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -615,8 +632,13 @@ Cím: %4 - Display addresses in transaction list - Címek megjelenítése a tranzakciólistában + &Display addresses in transaction list + &Címek megjelenítése a tranzakciólistában + + + + Whether to show Bitcoin addresses in the transaction list + @@ -762,7 +784,7 @@ Cím: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -772,7 +794,7 @@ Cím: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -780,17 +802,17 @@ Cím: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Címzett címe (pl.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L ) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -815,27 +837,27 @@ Cím: %4 Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - A kiválasztott cím másolása a vágólapra + Copy the current signature to the system clipboard + @@ -847,22 +869,22 @@ Cím: %4 Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + @@ -921,20 +943,12 @@ Cím: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + - + <b>Recent transactions</b> <b>Legutóbbi tranzakciók</b> @@ -964,47 +978,52 @@ p, li { white-space: pre-wrap; } QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: Üzenet: - + &Save As... - + - + + Error encoding URI into QR Code. + + + + Save Image... - + - + PNG Images (*.png) - + @@ -1031,16 +1050,16 @@ p, li { white-space: pre-wrap; } &Add recipient... &Címzett hozzáadása ... - - - Remove all transaction fields - - Clear all Mindent töröl + + + Remove all transaction fields + + Balance: @@ -1315,7 +1334,7 @@ p, li { white-space: pre-wrap; } Transaction ID: - + @@ -1339,54 +1358,58 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Dátum - + Type Típus - + Address Cím - + Amount Összeg - + Open for %n block(s) - %n blokkra megnyitva%n blokkra megnyitva + + %n blokkra megnyitva + - + Open until %1 %1-ig megnyitva - + Offline (%1 confirmations) Offline (%1 megerősítés) - + Unconfirmed (%1 of %2 confirmations) Megerősítetlen (%1 %2 megerősítésből) - + Confirmed (%1 confirmations) Megerősítve (%1 megerősítés) Mined balance will be available in %n more blocks - %n blokk múlva lesz elérhető a bányászott egyenleg.%n blokk múlva lesz elérhető a bányászott egyenleg. + + %n blokk múlva lesz elérhető a bányászott egyenleg. + @@ -1406,7 +1429,7 @@ p, li { white-space: pre-wrap; } Received from - + @@ -1540,7 +1563,7 @@ p, li { white-space: pre-wrap; } Copy amount - + @@ -1629,245 +1652,245 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoin verzió - + Usage: Használat: - + Send command to -server or bitcoind Parancs küldése a -serverhez vagy a bitcoindhez - + List commands Parancsok kilistázása - + Get help for a command Segítség egy parancsról - + Options: Opciók - + Specify configuration file (default: bitcoin.conf) Konfigurációs fájl (alapértelmezett: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) pid-fájl (alapértelmezett: bitcoind.pid) - + Generate coins Érmék generálása - + Don't generate coins Bitcoin-generálás leállítása - + Start minimized Indítás lekicsinyítve - + Specify data directory Adatkönyvtár - + Specify connection timeout (in milliseconds) Csatlakozás időkerete (milliszekundumban) - + Connect through socks4 proxy Csatlakozás SOCKS4 proxyn keresztül - + Allow DNS lookups for addnode and connect DNS-kikeresés engedélyezése az addnode-nál és a connect-nél - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - + Add a node to connect to Elérendő csomópont megadása - + Connect only to the specified node Csatlakozás csak a megadott csomóponthoz - + Don't accept connections from outside Külső csatlakozások elutasítása - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port UPnP-használat letiltása a figyelő port feltérképezésénél - + Attempt to use UPnP to map the listening port UPnP-használat engedélyezése a figyelő port feltérképezésénél - + Fee per kB to add to transactions you send - + - + Accept command line and JSON-RPC commands Parancssoros és JSON-RPC parancsok elfogadása - + Run in the background as a daemon and accept commands Háttérben futtatás daemonként és parancsok elfogadása - + Use the test network Teszthálózat használata - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections Felhasználói név JSON-RPC csatlakozásokhoz - + Password for JSON-RPC connections Jelszó JSON-RPC csatlakozásokhoz - + Listen for JSON-RPC connections on <port> (default: 8332) JSON-RPC csatlakozásokhoz figyelendő <port> (alapértelmezett: 8332) - + Allow JSON-RPC connections from specified IP address JSON-RPC csatlakozások engedélyezése meghatározott IP-címről - + Send commands to node running on <ip> (default: 127.0.0.1) Parancsok küldése <ip> címen működő csomóponthoz (alapértelmezett: 127.0.0.1) - + Set key pool size to <n> (default: 100) Kulcskarika mérete <n> (alapértelmezett: 100) - + Rescan the block chain for missing wallet transactions Blokklánc újraszkennelése hiányzó tárca-tranzakciók után - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1875,134 +1898,134 @@ SSL-opciók: (lásd a Bitcoin Wiki SSL-beállítási instrukcióit) - + Use OpenSSL (https) for JSON-RPC connections OpenSSL (https) használata JSON-RPC csatalkozásokhoz - + Server certificate file (default: server.cert) Szervertanúsítvány-fájl (alapértelmezett: server.cert) - + Server private key (default: server.pem) Szerver titkos kulcsa (alapértelmezett: server.pem) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Elfogadható rejtjelkulcsok (alapértelmezett: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH ) - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Az %s adatkönyvtár nem zárható. A Bitcoin valószínűleg fut már. - - This help message - Ez a súgó-üzenet + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Elfogadható rejtjelkulcsok (alapértelmezett: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH ) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Az %s adatkönyvtár nem zárható. A Bitcoin valószínűleg fut már. - - - + Loading addresses... Címek betöltése... - Error loading addr.dat - - - - - Error loading blkindex.dat - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - + This help message + Ez a súgó-üzenet + - Wallet needed to be rewritten: restart Bitcoin to complete - - - - - Error loading wallet.dat - - - - Loading block index... Blokkindex betöltése... - + Loading wallet... Tárca betöltése... - + Rescanning... Újraszkennelés... + + + Error loading addr.dat + Hiba az addr.dat betöltése közben + + + + Error loading blkindex.dat + Hiba az blkindex.dat betöltése közben + + Error loading wallet.dat: Wallet corrupted + Hiba a wallet.dat betöltése közben: meghibásodott tárca + + + Done loading Betöltés befejezve. + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Hiba a wallet.dat betöltése közben: ehhez a tárcához újabb verziójú Bitcoin-kliens szükséges + + + Invalid -proxy address Érvénytelen -proxy cím + Wallet needed to be rewritten: restart Bitcoin to complete + + + + Invalid amount for -paytxfee=<amount> Étvénytelen -paytxfee=<összeg> összeg + Error loading wallet.dat + Hiba az wallet.dat betöltése közben + + + 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. - + Error: CreateThread(StartNode) failed Hiba: CreateThread(StartNode) sikertelen - + Warning: Disk space is low Figyelem: kevés a hely a lemezen. - + Unable to bind to port %d on this computer. Bitcoin is probably already running. A %d port nem elérhető ezen a gépen. A Bitcoin valószínűleg fut már. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Figyelem: Ellenőrizd, hogy helyesen van-e beállítva a gépeden a dátum és az idő. A Bitcoin nem fog megfelelően működni, ha rosszul van beállítvaaz órád. - + beta béta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts index 98dc47e5ed..82d695391b 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -67,11 +69,21 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso &Copy to Clipboard &Copia nella clipboard + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Cancella l'indirizzo attualmente selezionato dalla lista. Solo indirizzi d'invio possono essere cancellati. + Show &QR Code Mostra il codice &QR + + + &Delete + &Cancella + Sign a message to prove you own this address @@ -82,16 +94,6 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso &Sign Message &Firma il messaggio - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Cancella l'indirizzo attualmente selezionato dalla lista. Solo indirizzi d'invio possono essere cancellati. - - - - &Delete - &Cancella - Copy address @@ -136,17 +138,17 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso AddressTableModel - + Label Etichetta - + Address Indirizzo - + (no label) (nessuna etichetta) @@ -237,11 +239,6 @@ Si è sicuri di voler cifrare il portamonete? Wallet encrypted Portamonete cifrato - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin verrà ora chiuso per finire il processo di crittazione. Ricorda che criptare il tuo portamonete non può fornire una protezione totale contro furti causati da malware che dovessero infettare il tuo computer. - @@ -261,6 +258,11 @@ Si è sicuri di voler cifrare il portamonete? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Cifratura del portamonete fallita a causa di un errore interno. Il portamonete non è stato cifrato. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin verrà ora chiuso per finire il processo di crittazione. Ricorda che criptare il tuo portamonete non può fornire una protezione totale contro furti causati da malware che dovessero infettare il tuo computer. + @@ -293,278 +295,293 @@ Si è sicuri di voler cifrare il portamonete? BitcoinGUI - + Bitcoin Wallet Portamonete di bitcoin - - + + Synchronizing with network... Sto sincronizzando con la rete... - + Block chain synchronization in progress sincronizzazione della catena di blocchi in corso - + &Overview &Sintesi - + Show general overview of wallet Mostra lo stato generale del portamonete - + &Transactions &Transazioni - + Browse transaction history Cerca nelle transazioni - + &Address Book &Rubrica - + Edit the list of stored addresses and labels Modifica la lista degli indirizzi salvati e delle etichette - + &Receive coins &Ricevi monete - + Show the list of addresses for receiving payments Mostra la lista di indirizzi su cui ricevere pagamenti - + &Send coins &Invia monete - + Send coins to a bitcoin address Invia monete ad un indirizzo bitcoin - + Sign &message Firma il &messaggio - + Prove you control an address Dimostra di controllare un indirizzo - + E&xit &Esci - + Quit application Chiudi applicazione - + &About %1 &Informazioni su %1 - + Show information about Bitcoin Mostra informazioni su Bitcoin - - About &Qt - Informazioni su &Qt - - - - Show information about Qt - Mostra informazioni su Qt - - - + &Options... &Opzioni... - + Modify configuration options for bitcoin Modifica configurazione opzioni per bitcoin - + Open &Bitcoin Apri &Bitcoin - + Show the Bitcoin window Mostra la finestra Bitcoin - + &Export... &Esporta... - - Export the data in the current tab to a file - - - - + &Encrypt Wallet &Cifra il portamonete - + Encrypt or decrypt wallet Cifra o decifra il portamonete - - &Backup Wallet - + + &Change Passphrase + &Cambia la passphrase - - Backup wallet to another location - + + Change the passphrase used for wallet encryption + Cambia la passphrase per la cifratura del portamonete - - &Change Passphrase - &Cambia la passphrase + + About &Qt + Informazioni su &Qt + + + + Show information about Qt + Mostra informazioni su Qt + + + + Export the data in the current tab to a file + - Change the passphrase used for wallet encryption - Cambia la passphrase per la cifratura del portamonete + &Backup Wallet + &Backup il portamonete - + + Backup wallet to another location + + + + &File &File - + &Settings &Impostazioni - + &Help &Aiuto - + Tabs toolbar Barra degli strumenti "Tabs" - + Actions toolbar Barra degli strumenti "Azioni" - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n connessione attiva alla rete Bitcoin%n connessioni attive alla rete Bitcoin + + %n connessione attiva alla rete Bitcoin + %n connessioni attive alla rete Bitcoin + - + Downloaded %1 of %2 blocks of transaction history. Scaricati %1 dei %2 blocchi dello storico transazioni. - + Downloaded %1 blocks of transaction history. Scaricati %1 blocchi dello storico transazioni. - + %n second(s) ago - %n secondo fa%n secondi fa + + %n secondo fa + %n secondi fa + - + %n minute(s) ago - %n minuto fa%n minuti fa + + %n minuto fa + %n minuti fa + - + %n hour(s) ago - %n ora fa%n ore fa + + %n ora fa + %n ore fa + - + %n day(s) ago - %n giorno fa%n giorni fa + + %n giorno fa + %n giorni fa + - + Up to date Aggiornato - + Catching up... In aggiornamento... - + Last received block was generated %1. L'ultimo blocco ricevuto è stato generato %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? Questa transazione è superiore al limite di dimensione. È comunque possibile inviarla con una commissione di %1, che va ai nodi che processano la tua transazione e contribuisce a sostenere la rete. Vuoi pagare la commissione? - + Sending... Invio... - + Sent transaction Transazione inviata - + Incoming transaction Transazione ricevuta - + Date: %1 Amount: %2 Type: %3 @@ -578,34 +595,39 @@ 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> - + Backup Wallet - + - + Wallet Data (*.dat) - + - + Backup Failed - + - + There was an error trying to save the wallet data to the new location. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -622,8 +644,13 @@ Indirizzo: %4 - Display addresses in transaction list - Mostra gli indirizzi nella lista delle transazioni + &Display addresses in transaction list + &Mostra gli indirizzi nella lista delle transazioni + + + + Whether to show Bitcoin addresses in the transaction list + @@ -792,12 +819,12 @@ Indirizzo: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - L'indirizzo del beneficiario cui inviare il pagamento (ad esempio 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -841,8 +868,8 @@ Indirizzo: %4 - Copy the currently selected address to the system clipboard - Copia l'indirizzo attualmente selezionato nella clipboard + Copy the current signature to the system clipboard + @@ -928,20 +955,12 @@ Indirizzo: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;">⏎ -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + - + <b>Recent transactions</b> <b>Transazioni recenti</b> @@ -974,44 +993,49 @@ p, li { white-space: pre-wrap; }⏎ Codice QR - + Request Payment Richiedi pagamento - + Amount: Importo: - + BTC BTC - + Label: Etichetta: - + Message: Messaggio: - + &Save As... &Salva come... - + + Error encoding URI into QR Code. + + + + Save Image... - + - + PNG Images (*.png) - + @@ -1038,16 +1062,16 @@ p, li { white-space: pre-wrap; }⏎ &Add recipient... &Aggiungi beneficiario... - - - Remove all transaction fields - Rimuovi tutti i campi della transazione - Clear all Cancella tutto + + + Remove all transaction fields + Rimuovi tutti i campi della transazione + Balance: @@ -1345,54 +1369,60 @@ p, li { white-space: pre-wrap; }⏎ TransactionTableModel - + Date Data - + Type Tipo - + Address Indirizzo - + Amount Importo - + Open for %n block(s) - Aperto per %n bloccoAperto per %n blocchi + + Aperto per %n blocco + Aperto per %n blocchi + - + Open until %1 Aperto fino a %1 - + Offline (%1 confirmations) Offline (%1 conferme) - + Unconfirmed (%1 of %2 confirmations) Non confermati (%1 su %2 conferme) - + Confirmed (%1 confirmations) Confermato (%1 conferme) Mined balance will be available in %n more blocks - Il saldo generato sarà disponibile tra %n altro bloccoIl saldo generato sarà disponibile tra %n altri blocchi + + Il saldo generato sarà disponibile tra %n altro blocco + Il saldo generato sarà disponibile tra %n altri blocchi + @@ -1635,245 +1665,245 @@ p, li { white-space: pre-wrap; }⏎ bitcoin-core - + Bitcoin version Versione di Bitcoin - + Usage: Utilizzo: - + Send command to -server or bitcoind Manda il comando a -server o bitcoind - + List commands Lista comandi - + Get help for a command Aiuto su un comando - + Options: Opzioni: - + Specify configuration file (default: bitcoin.conf) Specifica il file di configurazione (di default: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Specifica il file pid (default: bitcoind.pid) - + Generate coins Genera Bitcoin - + Don't generate coins Non generare Bitcoin - + Start minimized Parti in icona - + Specify data directory Specifica la cartella dati - + Specify connection timeout (in milliseconds) Specifica il timeout di connessione (in millisecondi) - + Connect through socks4 proxy Connessione tramite socks4 proxy - + Allow DNS lookups for addnode and connect Consenti ricerche DNS per aggiungere nodi e collegare - + Listen for connections on <port> (default: 8333 or testnet: 18333) Ascolta le connessioni JSON-RPC su <porta> (default: 8333 o testnet: 18333) - + Maintain at most <n> connections to peers (default: 125) Mantieni al massimo <n> connessioni ai peer (default: 125) - + Add a node to connect to Aggiungi un nodo e connetti a - + Connect only to the specified node Connetti solo al nodo specificato - + Don't accept connections from outside Non accettare connessioni dall'esterno - + Don't bootstrap list of peers using DNS Non avviare la lista dei peer usando il DNS - + Threshold for disconnecting misbehaving peers (default: 100) Soglia di disconnessione dei peer di cattiva qualità (default: 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 (default: 86400) - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) Buffer di ricezione massimo per connessione, <n>*1000 byte (default: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Buffer di invio massimo per connessione, <n>*1000 byte (default: 10000) - + Don't attempt to use UPnP to map the listening port Non usare l'UPnP per mappare la porta - + Attempt to use UPnP to map the listening port Prova ad usare l'UPnp per mappare la porta - + Fee per kB to add to transactions you send Commissione per kB da aggiungere alle transazioni in uscita - + 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 Produci informazioni extra utili al debug - + Prepend debug output with timestamp Anteponi all'output di debug una marca temporale - + 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 Invia le informazioni di trace/debug al 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: 8332) Attendi le connessioni JSON-RPC su <porta> (default: 8332) - + 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> (default: 127.0.0.1) - + Set key pool size to <n> (default: 100) Impostare la quantità di chiavi di riserva a <n> (default: 100) - + Rescan the block chain for missing wallet transactions Ripeti analisi della catena dei blocchi per cercare le transazioni mancanti dal portamonete - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1881,134 +1911,134 @@ Opzioni SSL: (vedi il wiki di Bitcoin per le istruzioni di configurazione SSL) - + Use OpenSSL (https) for JSON-RPC connections Utilizzare OpenSSL (https) per le connessioni JSON-RPC - + Server certificate file (default: server.cert) File certificato del server (default: server.cert) - + Server private key (default: server.pem) Chiave privata del server (default: server.pem) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Cifrari accettabili (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Non è possibile ottenere i dati sulla directory %s. Probabilmente Bitcoin è già in esecuzione. - - This help message - Questo messaggio di aiuto + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Cifrari accettabili (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Non è possibile ottenere i dati sulla directory %s. Probabilmente Bitcoin è già in esecuzione. - - - + Loading addresses... Caricamento indirizzi... - Error loading addr.dat - Errore caricamento addr.dat - - - - Error loading blkindex.dat - Errore caricamento blkindex.dat - - - - Error loading wallet.dat: Wallet corrupted - Errore caricamento wallet.dat: Wallet corrotto - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Errore caricamento wallet.dat: il wallet richiede una versione nuova di Bitcoin + This help message + Questo messaggio di aiuto + - Wallet needed to be rewritten: restart Bitcoin to complete - Il portamonete deve essere riscritto: riavviare Bitcoin per completare - - - - Error loading wallet.dat - Errore caricamento wallet.dat - - - Loading block index... Caricamento dell'indice del blocco... - + Loading wallet... Caricamento portamonete... - + Rescanning... Ripetere la scansione... + + + Error loading addr.dat + Errore caricamento addr.dat + + + + Error loading blkindex.dat + Errore caricamento blkindex.dat + + Error loading wallet.dat: Wallet corrupted + Errore caricamento wallet.dat: Wallet corrotto + + + Done loading Caricamento completato + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Errore caricamento wallet.dat: il wallet richiede una versione nuova di Bitcoin + + + Invalid -proxy address Indirizzo -proxy non valido + Wallet needed to be rewritten: restart Bitcoin to complete + Il portamonete deve essere riscritto: riavviare Bitcoin per completare + + + Invalid amount for -paytxfee=<amount> Importo non valido per -paytxfee=<amount> + Error loading wallet.dat + Errore caricamento wallet.dat + + + 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. - + Error: CreateThread(StartNode) failed Errore: CreateThread(StartNode) non riuscito - + Warning: Disk space is low Attenzione: lo spazio su disco è scarso - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Impossibile collegarsi alla porta %d su questo computer. Probabilmente Bitcoin è già in esecuzione. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Attenzione: si prega di controllare che la data del computer e l'ora siano corrette. Se il vostro orologio è sbagliato Bitcoin non funziona correttamente. - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_lt.ts b/src/qt/locale/bitcoin_lt.ts index d733f1a725..46f3ef3e2f 100644 --- a/src/qt/locale/bitcoin_lt.ts +++ b/src/qt/locale/bitcoin_lt.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -137,17 +139,17 @@ Platinama pagal licenziją MIT/X11, papildomą informaciją rasite faile license AddressTableModel - + Label Žymė - + Address Adresas - + (no label) (nėra žymės) @@ -294,278 +296,298 @@ Ar jūs tikrai norite užšifruoti savo piniginę? BitcoinGUI - + Bitcoin Wallet Bitkoinų piniginė - - + + Synchronizing with network... Sinchronizavimas su tinklu ... - + Block chain synchronization in progress Vyksta blokų grandinės sinchronizavimas - + &Overview &O Apžvalga - + Show general overview of wallet Rodyti piniginės bendrą apžvalgą - + &Transactions &T Sandoriai - + Browse transaction history Apžvelgti sandorių istoriją - + &Address Book &Adresų knygelė - + Edit the list of stored addresses and labels Redaguoti išsaugotus adresus bei žymes - + &Receive coins &R Gautos monetos - + Show the list of addresses for receiving payments Parodyti adresų sąraša mokėjimams gauti - + &Send coins &Siųsti monetas - + Send coins to a bitcoin address Siųsti monetas bitkoinų adresu - + Sign &message Registruoti praneši&mą - + Prove you control an address Įrodyti, kad jūs valdyti adresą - + E&xit &x išėjimas - + Quit application Išjungti programą - + &About %1 &Apie %1 - + Show information about Bitcoin Rodyti informaciją apie Bitkoiną - + About &Qt Apie &Qt - + Show information about Qt Rodyti informaciją apie Qt - + &Options... &Opcijos... - + Modify configuration options for bitcoin Keisti bitcoin konfigūracijos galimybes - + Open &Bitcoin Atidaryti &Bitcoin - + Show the Bitcoin window Rodyti Bitcoin langą - + &Export... &Eksportas... - + Export the data in the current tab to a file - + - + &Encrypt Wallet &E Užšifruoti piniginę - + Encrypt or decrypt wallet Užšifruoti ar iššifruoti piniginę - + &Backup Wallet - + &Backup piniginę - + Backup wallet to another location - + - + &Change Passphrase &C Pakeisti slaptažodį - + Change the passphrase used for wallet encryption Pakeisti slaptažodį naudojamą piniginės užšifravimui - + &File &Failas - + &Settings Nu&Statymai - + &Help &H Pagelba - + Tabs toolbar Tabs įrankių juosta - + Actions toolbar Veiksmų įrankių juosta - + [testnet] [testavimotinklas] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n Bitcoin tinklo aktyvus ryšys%n Bitcoin tinklo aktyvūs ryšiai%n Bitcoin tinklo aktyvūs ryšiai + + %n Bitcoin tinklo aktyvus ryšys + %n Bitcoin tinklo aktyvūs ryšiai + %n Bitcoin tinklo aktyvūs ryšiai + - + Downloaded %1 of %2 blocks of transaction history. Atsisiuntė %1 iš %2 sandorių istorijos blokų - + Downloaded %1 blocks of transaction history. Atsisiuntė %1 iš %2 sandorių istorijos blokų - + %n second(s) ago - Prieš %n sekundęPrieš %n sekundesPrieš %n sekundžių + + Prieš %n sekundę + Prieš %n sekundes + Prieš %n sekundžių + - + %n minute(s) ago - Prieš %n minutęPrieš %n minutesPrieš %n minutčių + + Prieš %n minutę + Prieš %n minutes + Prieš %n minutčių + - + %n hour(s) ago - Prieš %n valandąPrieš %n valandasPrieš %n valandų + + Prieš %n valandą + Prieš %n valandas + Prieš %n valandų + - + %n day(s) ago - Prieš %n dienąPrieš %n dienasPrieš %n dienų + + Prieš %n dieną + Prieš %n dienas + Prieš %n dienų + - + Up to date Iki šiol - + Catching up... Gaudo... - + Last received block was generated %1. Paskutinis gautas blokas buvo sukurtas %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? Šis sandoris viršija leistiną dydį. Jūs galite įvykdyti jį papildomai sumokėję %1 mokesčių, kurie bus išsiųsti tais pačiais mazgais kuriais vyko sandoris ir padės palaikyti tinklą. Ar jūs norite apmokėti papildomą mokestį? - + Sending... Siunčiama... - + Sent transaction Sandoris nusiųstas - + Incoming transaction Ateinantis sandoris - + Date: %1 Amount: %2 Type: %3 @@ -577,34 +599,39 @@ Tipas: %3 Adresas: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Piniginė <b>užšifruota</b> ir šiuo metu <b>atrakinta</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Piniginė <b>užšifruota</b> ir šiuo metu <b>užrakinta</b> - + Backup Wallet - + - + Wallet Data (*.dat) - + - + Backup Failed - + - + There was an error trying to save the wallet data to the new location. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -621,8 +648,13 @@ Adresas: %4 - Display addresses in transaction list - Rodyti adresus sandorių sąraše + &Display addresses in transaction list + &Rodyti adresus sandorių sąraše + + + + Whether to show Bitcoin addresses in the transaction list + @@ -791,12 +823,12 @@ Adresas: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Nurodyti adresą mokėjimui siųsti (pvz. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -840,8 +872,8 @@ Adresas: %4 - Copy the currently selected address to the system clipboard - Kopijuoti pasirinktą adresą į sistemos mainų atmintį + Copy the current signature to the system clipboard + @@ -927,20 +959,12 @@ Adresas: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + - + <b>Recent transactions</b> <b>Naujausi sandoris</b> @@ -973,44 +997,49 @@ p, li { white-space: pre-wrap; } QR kodas - + Request Payment Prašau išmokėti - + Amount: Suma: - + BTC BTC - + Label: Žymė: - + Message: Žinutė: - + &Save As... &S išsaugoti kaip... - + + Error encoding URI into QR Code. + + + + Save Image... - + - + PNG Images (*.png) - + @@ -1344,54 +1373,62 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Data - + Type Tipas - + Address Adresas - + Amount Suma - + Open for %n block(s) - Atidaryta %n blokuiAtidaryta %n blokamsAtidaryta %n blokų + + Atidaryta %n blokui + Atidaryta %n blokams + Atidaryta %n blokų + - + Open until %1 Atidaryta kol %n - + Offline (%1 confirmations) Atjungta (%1 patvirtinimai) - + Unconfirmed (%1 of %2 confirmations) Nepatvirtintos (%1 iš %2 patvirtinimų) - + Confirmed (%1 confirmations) Patvirtinta (%1 patvirtinimai) Mined balance will be available in %n more blocks - Išgautas balansas bus pasiekiamas po %n blokoIšgautas balansas bus pasiekiamas po %n blokųIšgautas balansas bus pasiekiamas po %n blokų + + Išgautas balansas bus pasiekiamas po %n bloko + Išgautas balansas bus pasiekiamas po %n blokų + Išgautas balansas bus pasiekiamas po %n blokų + @@ -1634,345 +1671,345 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoin versija - + Usage: Naudojimas: - + Send command to -server or bitcoind Siųsti komandą serveriui arba bitcoind - + List commands Komandų sąrašas - + Get help for a command Suteikti pagalba komandai - + Options: Opcijos: - + Specify configuration file (default: bitcoin.conf) Nurodyti konfigūracijos failą (pagal nutylėjimąt: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Nurodyti pid failą (pagal nutylėjimą: bitcoind.pid) - + Generate coins Sukurti monetas - + Don't generate coins Neišgavinėti monetų - + Start minimized Pradžia sumažinta - + Specify data directory Nustatyti duomenų direktoriją - + Specify connection timeout (in milliseconds) Nustatyti sujungimo trukmę (milisekundėmis) - + Connect through socks4 proxy Prisijungti per socks4 proxy - + Allow DNS lookups for addnode and connect Leisti DNS paiešką sujungimui ir mazgo pridėjimui - + Listen for connections on <port> (default: 8333 or testnet: 18333) Sujungimo klausymas prijungčiai <port> (pagal nutylėjimą: 8333 arba testnet: 18333) - + Maintain at most <n> connections to peers (default: 125) Palaikyti ne daugiau <n> jungčių kolegoms (pagal nutylėjimą: 125) - + Add a node to connect to Pridėti mazgą prie sujungti su - + Connect only to the specified node Prisijungti tik prie nurodyto mazgo - + Don't accept connections from outside Nepriimti išorinio sujungimo - + Don't bootstrap list of peers using DNS Neleisti kolegų sąrašo naudojant DNS - + Threshold for disconnecting misbehaving peers (default: 100) Atjungimo dėl netinkamo kolegų elgesio riba (pagal nutylėjimą: 100) - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Sekundžių kiekis eikiamas palaikyti ryšį dėl lygiarangių nestabilumo (pagal nutylėjimą: 86.400) - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) Maksimalus buferis priėmimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maksimalus buferis siuntimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 10000) - + Don't attempt to use UPnP to map the listening port Nenaudoti UPnP klausymo prievado struktūros - + Attempt to use UPnP to map the listening port Bandymas naudoti UPnP struktūra klausymosi prievadui - + Fee per kB to add to transactions you send Įtraukti mokestį už kB siunčiamiems sandoriams - + Accept command line and JSON-RPC commands Priimti komandinę eilutę ir JSON-RPC komandas - + Run in the background as a daemon and accept commands Dirbti fone kaip šešėlyje ir priimti komandas - + Use the test network Naudoti testavimo tinklą - + Output extra debugging information Išėjimo papildomas derinimo informacija - + Prepend debug output with timestamp Prideėti laiko žymę derinimo rezultatams - + Send trace/debug info to console instead of debug.log file Siųsti atsekimo/derinimo info į konsolę vietoj debug.log failo - + Send trace/debug info to debugger Siųsti sekimo/derinimo info derintojui - + Username for JSON-RPC connections Vartotojo vardas JSON-RPC jungimuisi - + Password for JSON-RPC connections Slaptažodis JSON-RPC sujungimams - + Listen for JSON-RPC connections on <port> (default: 8332) Klausymas JSON-RPC sujungimui prijungčiai <port> (pagal nutylėjimą: 8332) - + Allow JSON-RPC connections from specified IP address Leisti JSON-RPC tik iš nurodytų IP adresų - + Send commands to node running on <ip> (default: 127.0.0.1) Siųsti komandą mazgui dirbančiam <ip> (pagal nutylėjimą: 127.0.0.1) - + Set key pool size to <n> (default: 100) Nustatyti rakto apimties dydį <n> (pagal nutylėjimą: 100) - + Rescan the block chain for missing wallet transactions Ieškoti prarastų piniginės sandorių blokų grandinėje - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL opcijos (žr.e Bitcoin Wiki for SSL setup instructions) - + Use OpenSSL (https) for JSON-RPC connections Naudoti OpenSSL (https) jungimuisi JSON-RPC - + Server certificate file (default: server.cert) Serverio sertifikato failas (pagal nutylėjimą: server.cert) - + Server private key (default: server.pem) Serverio privatus raktas (pagal nutylėjimą: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Priimtini šifrai (pagal nutylėjimą: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Pagelbos žinutė - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Negali gauti duomenų katalogo %s rakto. Bitcoin tikriausiai jau veikia. - + Loading addresses... Užkraunami adresai... - + Error loading addr.dat addr.dat pakrovimo klaida - + Error loading blkindex.dat blkindex.dat pakrovimo klaida - + Error loading wallet.dat: Wallet corrupted wallet.dat pakrovimo klaida, wallet.dat sugadintas - + Error loading wallet.dat: Wallet requires newer version of Bitcoin wallet.dat pakrovimo klaida, wallet.dat reikalauja naujasnės Bitcoin versijos - + Wallet needed to be rewritten: restart Bitcoin to complete Piniginė turi būti prrašyta: įvykdymui perkraukite Bitcoin - + Error loading wallet.dat wallet.dat pakrovimo klaida - + Loading block index... Užkraunami blokų indeksai... - + Loading wallet... Užkraunama piniginė... - + Rescanning... Peržiūra - + Done loading Pakrovimas baigtas - + Invalid -proxy address Neteisingas proxy adresas - + Invalid amount for -paytxfee=<amount> Neteisinga suma -paytxfee=<amount> - + 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į. - + Error: CreateThread(StartNode) failed Klaida: nepasileidžia CreateThread(StartNode) - + Warning: Disk space is low Įspėjimas: nepakanka vietos diske - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Nepavyko susieti šiame kompiuteryje prievado %d. Bitcoin tikriausiai jau veikia. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Įspėjimas: Patikrinkite, kad kompiuterio data ir laikas yra teisingi.Jei Jūsų laikrodis neteisingai nustatytas Bitcoin, veiks netinkamai. - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index eac291c846..3914bc07fd 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -67,11 +69,21 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &Copy to Clipboard &Kopier til utklippstavle + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Slett den valgte adressen fra listen. Bare adresser for sending kan slettes. + Show &QR Code Vis &QR Kode + + + &Delete + &Slett + Sign a message to prove you own this address @@ -82,16 +94,6 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &Sign Message &Signér Melding - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Slett den valgte adressen fra listen. Bare adresser for sending kan slettes. - - - - &Delete - &Slett - Copy address @@ -136,17 +138,17 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i AddressTableModel - + Label Merkelapp - + Address Adresse - + (no label) (ingen merkelapp) @@ -237,11 +239,6 @@ Er du sikker på at du vil kryptere lommeboken? Wallet encrypted Lommebok kryptert - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. - @@ -261,6 +258,11 @@ Er du sikker på at du vil kryptere lommeboken? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Kryptering av lommebok feilet på grunn av en intern feil. Din lommebok ble ikke kryptert. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. + @@ -293,278 +295,293 @@ Er du sikker på at du vil kryptere lommeboken? BitcoinGUI - + Bitcoin Wallet Bitcoin Lommebok - - + + Synchronizing with network... Synkroniserer med nettverk... - + Block chain synchronization in progress Synkronisering av blokk-kjede igang - + &Overview &Oversikt - + Show general overview of wallet Vis generell oversikt over lommeboken - + &Transactions &Transaksjoner - + Browse transaction history Vis transaksjonshistorikk - + &Address Book &Adressebok - + Edit the list of stored addresses and labels Rediger listen over adresser og deres merkelapper - + &Receive coins &Motta bitcoins - + Show the list of addresses for receiving payments Vis listen over adresser for mottak av betalinger - + &Send coins &Send bitcoins - + Send coins to a bitcoin address Send bitcoins til en adresse - + Sign &message Signér &melding - + Prove you control an address Bevis at du kontrollerer en adresse - + E&xit &Avslutt - + Quit application Avslutt applikasjonen - + &About %1 &Om %1 - + Show information about Bitcoin Vis informasjon om Bitcoin - - About &Qt - Om &Qt - - - - Show information about Qt - Vis informasjon om Qt - - - + &Options... &Innstillinger... - + Modify configuration options for bitcoin Endre innstillinger for bitcoin - + Open &Bitcoin Åpne &Bitcoin - + Show the Bitcoin window Vis Bitcoin-vinduet - + &Export... &Eksporter... - - Export the data in the current tab to a file - - - - + &Encrypt Wallet &Krypter Lommebok - + Encrypt or decrypt wallet Krypter eller dekrypter lommebok - - &Backup Wallet - + + &Change Passphrase + &Endre Adgangsfrase - - Backup wallet to another location - + + Change the passphrase used for wallet encryption + Endre adgangsfrasen brukt for kryptering av lommebok - - &Change Passphrase - &Endre Adgangsfrase + + About &Qt + Om &Qt + + + + Show information about Qt + Vis informasjon om Qt + + + + Export the data in the current tab to a file + - Change the passphrase used for wallet encryption - Endre adgangsfrasen brukt for kryptering av lommebok + &Backup Wallet + &Backup Lommebok - + + Backup wallet to another location + + + + &File &Fil - + &Settings &Innstillinger - + &Help &Hjelp - + Tabs toolbar Verktøylinje for faner - + Actions toolbar Verktøylinje for handlinger - + [testnet] [testnett] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n aktiv forbindelse til Bitcoin-nettverket%n aktive forbindelser til Bitcoin-nettverket + + %n aktiv forbindelse til Bitcoin-nettverket + %n aktive forbindelser til Bitcoin-nettverket + - + Downloaded %1 of %2 blocks of transaction history. Lastet ned %1 av %2 blokker med transaksjonshistorikk. - + Downloaded %1 blocks of transaction history. Lastet ned %1 blokker med transaksjonshistorikk. - + %n second(s) ago - for %n sekund sidenfor %n sekunder siden + + for %n sekund siden + for %n sekunder siden + - + %n minute(s) ago - for %n minutt sidenfor %n minutter siden + + for %n minutt siden + for %n minutter siden + - + %n hour(s) ago - for %n time sidenfor %n timer siden + + for %n time siden + for %n timer siden + - + %n day(s) ago - for %n dag sidenfor %n dager siden + + for %n dag siden + for %n dager siden + - + Up to date Ajour - + Catching up... Kommer ajour... - + Last received block was generated %1. Siste mottatte blokk ble generert %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 transaksjonen overstiger størrelsesbegrensningen. Du kan likevel sende den med et gebyr på %1, som går til nodene som prosesserer transaksjonen din og støtter nettverket. Vil du betale gebyret? - + Sending... Sender... - + Sent transaction Sendt transaksjon - + Incoming transaction Innkommende transaksjon - + Date: %1 Amount: %2 Type: %3 @@ -577,34 +594,39 @@ Adresse: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Lommeboken er <b>kryptert</b> og for tiden <b>ulåst</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Lommeboken er <b>kryptert</b> og for tiden <b>låst</b> - + Backup Wallet - + - + Wallet Data (*.dat) - + - + Backup Failed - + - + There was an error trying to save the wallet data to the new location. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -621,8 +643,13 @@ Adresse: %4 - Display addresses in transaction list - Vis adresser i transaksjonslisten + &Display addresses in transaction list + &Vis adresser i transaksjonslisten + + + + Whether to show Bitcoin addresses in the transaction list + @@ -791,12 +818,12 @@ Adresse: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adressen betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -840,8 +867,8 @@ Adresse: %4 - Copy the currently selected address to the system clipboard - Kopier den valgte adressen til systemets utklippstavle + Copy the current signature to the system clipboard + @@ -927,20 +954,12 @@ Adresse: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Lommebok</span></p></body></html> + + Wallet + Lommebok - + <b>Recent transactions</b> <b>Siste transaksjoner</b> @@ -973,44 +992,49 @@ p, li { white-space: pre-wrap; } QR Kode - + Request Payment Etterspør Betaling - + Amount: Beløp: - + BTC BTC - + Label: Merkelapp: - + Message: Melding: - + &Save As... &Lagre Som... - + + Error encoding URI into QR Code. + + + + Save Image... - + - + PNG Images (*.png) - + @@ -1037,16 +1061,16 @@ p, li { white-space: pre-wrap; } &Add recipient... &Legg til mottaker... - - - Remove all transaction fields - Fjern alle transaksjonsfelter - Clear all Fjern alle + + + Remove all transaction fields + Fjern alle transaksjonsfelter + Balance: @@ -1344,54 +1368,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Dato - + Type Type - + Address Adresse - + Amount Beløp - + Open for %n block(s) - Åpen for %n blokkÅpen for %n blokker + + Åpen for %n blokk + Åpen for %n blokker + - + Open until %1 Åpen til %1 - + Offline (%1 confirmations) Frakoblet (%1 bekreftelser) - + Unconfirmed (%1 of %2 confirmations) Ubekreftet (%1 av %2 bekreftelser) - + Confirmed (%1 confirmations) Bekreftet (%1 bekreftelser) Mined balance will be available in %n more blocks - Utvunnet saldo vil bli tilgjengelig om %n blokkUtvunnet saldo vil bli tilgjengelig om %n blokker + + Utvunnet saldo vil bli tilgjengelig om %n blokk + Utvunnet saldo vil bli tilgjengelig om %n blokker + @@ -1634,347 +1664,347 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoin versjon - + Usage: Bruk: - + Send command to -server or bitcoind Send kommando til -server eller bitcoind - + List commands List opp kommandoer - + Get help for a command Vis hjelpetekst for en kommando - + Options: Innstillinger: - + Specify configuration file (default: bitcoin.conf) Angi konfigurasjonsfil (standardverdi: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Angi pid-fil (standardverdi: bitcoind.pid) - + Generate coins Generér bitcoins - + Don't generate coins Ikke generér bitcoins - + Start minimized Start minimert - + Specify data directory Angi mappe for datafiler - + Specify connection timeout (in milliseconds) Angi tidsavbrudd for forbindelse (i millisekunder) - + Connect through socks4 proxy Koble til gjennom socks4 proxy - + Allow DNS lookups for addnode and connect Tillat DNS-oppslag for addnode og connect - + Listen for connections on <port> (default: 8333 or testnet: 18333) Lytt etter tilkoblinger på <port> (standardverdi: 8333 eller testnet: 18333) - + 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 Legg til node for tilkobling - + Connect only to the specified node Koble kun til angitt node - + Don't accept connections from outside Ikke ta imot tilkoblinger fra omverden - + Don't bootstrap list of peers using DNS Ikke lag initiell nodeliste ved hjelp av DNS - + 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: 10000) Maksimum mottaksbuffer per tilkobling, <n>*1000 bytes (standardverdi: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maksimum sendebuffer per tilkobling, <n>*1000 bytes (standardverdi: 10000) - + Don't attempt to use UPnP to map the listening port Ikke sett opp port vha. UPnP - + Attempt to use UPnP to map the listening port Sett opp port vha. UPnP - + Fee per kB to add to transactions you send Gebyr per kB for transaksjoner du sender - + 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 Gi ut ekstra debuginformasjon - + Prepend debug output with timestamp Sett tidsstempel på debugmeldinger - + 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 Send spor/debug informasjon til 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: 8332) Lytt etter JSON-RPC tilkoblinger på <port> (standardverdi: 8332) - + 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) - + 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 - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL innstillinger: (se Bitcoin Wiki for instruksjoner om SSL oppsett) - + Use OpenSSL (https) for JSON-RPC connections Bruk OpenSSL (https) for JSON-RPC forbindelser - + Server certificate file (default: server.cert) Servers sertifikat (standardverdi: server.cert) - + Server private key (default: server.pem) Servers private nøkkel (standardverdi: server.pem) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Akseptable krypteringsmetoder (standardverdi: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - This help message - Denne hjelpemeldingen - - - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Kunne ikke låse datamappen %s. Bitcoin kjører sannsynligvis allerede. - - Loading addresses... - Laster adresser... - - - - Error loading addr.dat - Feil ved lasting av addr.dat - - - - Error loading blkindex.dat - Feil ved lasting av blkindex.dat + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Akseptable krypteringsmetoder (standardverdi: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Error loading wallet.dat: Wallet corrupted - Feil ved lasting av wallet.dat: Lommeboken er skadet + Loading addresses... + Laster adresser... - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Feil ved lasting av wallet.dat: Lommeboken krever en nyere versjon av Bitcoin + + This help message + Denne hjelpemeldingen - Wallet needed to be rewritten: restart Bitcoin to complete - Lommeboken måtte skrives om: start Bitcoin på nytt for å fullføre - - - - Error loading wallet.dat - Feil ved lasting av wallet.dat - - - Loading block index... Laster blokkindeks... - + Loading wallet... Laster lommebok... - + Rescanning... Leser gjennom... + + + Error loading addr.dat + Feil ved lasting av addr.dat + + + + Error loading blkindex.dat + Feil ved lasting av blkindex.dat + + Error loading wallet.dat: Wallet corrupted + Feil ved lasting av wallet.dat: Lommeboken er skadet + + + Done loading Ferdig med lasting + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Feil ved lasting av wallet.dat: Lommeboken krever en nyere versjon av Bitcoin + + + Invalid -proxy address Ugyldig -proxy adresse for mellomtjener + Wallet needed to be rewritten: restart Bitcoin to complete + Lommeboken måtte skrives om: start Bitcoin på nytt for å fullføre + + + Invalid amount for -paytxfee=<amount> Ugyldig gebyrbeløp for -paytxfee=<beløp> + Error loading wallet.dat + Feil ved lasting av wallet.dat + + + 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 en transaksjon. - + Error: CreateThread(StartNode) failed Feil: CreateThread(StartNode) feilet - + Warning: Disk space is low Advarsel: Lite ledig diskplass - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Klarer ikke binde til port %d på denne datamaskinen. Bitcoin kjører sannsynligvis allerede. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Advarsel: Vennligst sjekk at dato og klokke er riktig innstilt på datamaskinen. Hvis klokken er feil vil ikke Bitcoin fungere ordentlig. - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index 7425d21563..5af89a88fd 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -68,11 +70,21 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d &Copy to Clipboard &Kopieer naar Klembord + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Verwijder het huidige geselecteerde adres van de lijst. Alleen zend-adressen kunnen verwijderd worden, niet uw ontvangstadressen. + Show &QR Code Toon &QR-Code + + + &Delete + &Verwijder + Sign a message to prove you own this address @@ -83,16 +95,6 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d &Sign Message &Onderteken Bericht - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Verwijder het huidige geselecteerde adres van de lijst. Alleen zend-adressen kunnen verwijderd worden, niet uw ontvangstadressen. - - - - &Delete - &Verwijder - Copy address @@ -137,17 +139,17 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d AddressTableModel - + Label Label - + Address Adres - + (no label) (geen label) @@ -238,11 +240,6 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Wallet encrypted Portemonnee versleuteld - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. - @@ -262,6 +259,11 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Portemonneeversleuteling mislukt door een interne fout, Uw portemonnee is niet versleuteld. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. + @@ -294,278 +296,293 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? BitcoinGUI - + Bitcoin Wallet Bitcoin-portemonnee - - + + Synchronizing with network... Synchroniseren met netwerk... - + Block chain synchronization in progress Bezig met blokkenketen-synchronisatie - + &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 Bewerk de lijst van opgeslagen adressen en labels - + &Receive coins &Ontvang munten - + Show the list of addresses for receiving payments Toon lijst van adressen om betalingen mee te ontvangen - + &Send coins &Verstuur munten - + Send coins to a bitcoin address Verstuur munten naar een bitcoin-adres - + Sign &message &Onderteken Bericht - + Prove you control an address Bewijs dat u een adres bezit - + E&xit &Afsluiten - + Quit application Programma afsluiten - + &About %1 &Over %1 - + Show information about Bitcoin Laat informatie zien over Bitcoin - - About &Qt - Over &Qt - - - - Show information about Qt - Toon informatie over Qt - - - + &Options... &Opties... - + Modify configuration options for bitcoin Wijzig instellingen van Bitcoin - + Open &Bitcoin Open &Bitcoin - + Show the Bitcoin window Toon Bitcoin-venster - + &Export... &Exporteer... - - Export the data in the current tab to a file - Exporteer de data in de huidige tab naar een bestand - - - + &Encrypt Wallet &Versleutel Portemonnee - + Encrypt or decrypt wallet Versleutel of ontsleutel portemonnee - - &Backup Wallet - Backup &Portemonnee + + &Change Passphrase + &Wijzig Wachtwoord - - Backup wallet to another location - &Backup portemonnee naar een andere locatie + + Change the passphrase used for wallet encryption + wijzig het wachtwoord voor uw portemonneversleuteling - - &Change Passphrase - &Wijzig Wachtwoord + + About &Qt + Over &Qt + + + + Show information about Qt + Toon informatie over Qt + + + + Export the data in the current tab to a file + Exporteer de data in de huidige tab naar een bestand - Change the passphrase used for wallet encryption - wijzig het wachtwoord voor uw portemonneversleuteling + &Backup Wallet + Backup &Portemonnee - + + Backup wallet to another location + &Backup portemonnee naar een andere locatie + + + &File &Bestand - + &Settings &Instellingen - + &Help &Hulp - + Tabs toolbar Tab-werkbalk - + Actions toolbar Actie-werkbalk - + [testnet] [testnetwerk] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n actieve connectie naar Bitcoinnetwerk%n actieve connecties naar Bitcoinnetwerk + + %n actieve connectie naar Bitcoinnetwerk + %n actieve connecties naar Bitcoinnetwerk + - + Downloaded %1 of %2 blocks of transaction history. %1 van %2 blokken van transactiehistorie opgehaald. - + Downloaded %1 blocks of transaction history. %1 blokken van transactiehistorie opgehaald. - + %n second(s) ago - %n seconde geleden%n seconden geleden + + %n seconde geleden + %n seconden geleden + - + %n minute(s) ago - %n minuut geleden%n minuten geleden + + %n minuut geleden + %n minuten geleden + - + %n hour(s) ago - %n uur geleden%n uur geleden + + %n uur geleden + %n uur geleden + - + %n day(s) ago - %n dag geleden%n dagen geleden + + %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 %1 gegenereerd. - + 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? Deze transactie overschrijdt de groottelimiet. Om de transactie alsnog te versturen kunt u transactiekosten betalen van %1. Deze transactiekosten gaan naar de nodes die uw transactie verwerken en het helpt op deze manier bij het ondersteunen van het netwerk. Wilt u de transactiekosten betalen? - + Sending... Versturen... - + Sent transaction Verzonden transactie - + Incoming transaction Binnenkomende transactie - + Date: %1 Amount: %2 Type: %3 @@ -578,35 +595,40 @@ Adres: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Portemonnee is <b>versleuteld</b> en momenteel <b>geopend</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Portemonnee is <b>versleuteld</b> en momenteel <b>gesloten</b> - + Backup Wallet Backup Portemonnee - + Wallet Data (*.dat) Portemonnee-data (*.dat) - + Backup Failed Backup Mislukt - + There was an error trying to save the wallet data to the new location. Er is een fout opgetreden bij het wegschrijven van de portemonnee-data naar de nieuwe locatie. + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -622,8 +644,13 @@ Adres: %4 - Display addresses in transaction list - Toon adressen in uw transactielijst + &Display addresses in transaction list + &Toon adressen in uw transactielijst + + + + Whether to show Bitcoin addresses in the transaction list + @@ -796,8 +823,8 @@ Adres: %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Het adres waaraan u wilt betalen (bijv. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -841,8 +868,8 @@ Adres: %4 - Copy the currently selected address to the system clipboard - Kopieer het huidig geselecteerde adres naar het klembord + Copy the current signature to the system clipboard + @@ -928,20 +955,12 @@ Adres: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Portemonnee</span></p></body></html> + + Wallet + Portemonnee - + <b>Recent transactions</b> <b>Recente transacties</b> @@ -974,42 +993,47 @@ p, li { white-space: pre-wrap; } QR-code - + Request Payment Vraag betaling aan - + Amount: Bedrag: - + BTC BTC - + Label: Label: - + Message: Bericht: - + &Save As... &Opslaan Als... - + + Error encoding URI into QR Code. + + + + Save Image... Afbeelding Opslaan... - + PNG Images (*.png) PNG-Afbeeldingen (*.png) @@ -1038,16 +1062,16 @@ p, li { white-space: pre-wrap; } &Add recipient... Voeg &ontvanger toe... - - - Remove all transaction fields - Verwijder alle transactievelden - Clear all Verwijder alles + + + Remove all transaction fields + Verwijder alle transactievelden + Balance: @@ -1345,54 +1369,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Datum - + Type Type - + Address Adres - + Amount Bedrag - + Open for %n block(s) - Open gedurende %n blokOpen gedurende %n blokken + + Open gedurende %n blok + Open gedurende %n blokken + - + Open until %1 Open tot %1 - + Offline (%1 confirmations) Niet verbonden (%1 bevestigingen) - + Unconfirmed (%1 of %2 confirmations) Onbevestigd (%1 van %2 bevestigd) - + Confirmed (%1 confirmations) Bevestigd (%1 bevestigingen) Mined balance will be available in %n more blocks - Ontgonnen saldo komt beschikbaar na %n blokOntgonnen saldo komt beschikbaar na %n blokken + + Ontgonnen saldo komt beschikbaar na %n blok + Ontgonnen saldo komt beschikbaar na %n blokken + @@ -1635,244 +1665,244 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoinversie - + Usage: Gebruik: - + Send command to -server or bitcoind Stuur commando naar -server of bitcoind - + List commands List van commando's - + Get help for a command Toon hulp voor een commando - + Options: Opties: - + Specify configuration file (default: bitcoin.conf) Specifieer configuratiebestand (standaard: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Specifieer pid-bestand (standaard: bitcoind.pid) - + Generate coins Genereer munten - + Don't generate coins Genereer geen munten - + Start minimized Geminimaliseerd starten - + Specify data directory Stel datamap in - + Specify connection timeout (in milliseconds) Specificeer de time-out tijd (in milliseconden) - + Connect through socks4 proxy Verbind via socks4 proxy - + Allow DNS lookups for addnode and connect Sta DNS-naslag toe voor addnode en connect - + Listen for connections on <port> (default: 8333 or testnet: 18333) Luister voor verbindingen op <poort> (standaard: 8333 of testnet: 18333) - + Maintain at most <n> connections to peers (default: 125) Onderhoud maximaal <n> verbindingen naar peers (standaard: 125) - + Add a node to connect to Voeg een node toe om mee te verbinden - + Connect only to the specified node Verbind alleen met deze node - + Don't accept connections from outside Sta geen verbindingen van buitenaf toe - + Don't bootstrap list of peers using DNS Gebruik geen DNS om de lijst met peers op te starten - + 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: 10000) Maximale ontvangstbuffer per connectie, <n>*1000 bytes (standaard: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maximale zendbuffer per connectie, <n>*1000 bytes (standaard: 10000) - + Don't attempt to use UPnP to map the listening port Probeer geen UPnP te gebruiken om de poort waarop geluisterd wordt te mappen - + Attempt to use UPnP to map the listening port Probeer UPnP te gebruiken om de poort waarop geluisterd wordt te mappen - + Fee per kB to add to transactions you send Transactiekosten per kB om toe te voegen aan transacties die u verzendt - + 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 Toon extra debuggingsinformatie - + Prepend debug output with timestamp Voorzie de debuggingsuitvoer van een tijdsaanduiding - + 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 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: 8332) Luister voor JSON-RPC verbindingen op <poort> (standaard: 8332) - + 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) - + 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 blokkenketen op ontbrekende portemonnee-transacties - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1880,133 +1910,133 @@ SSL opties: (zie de Bitcoin wiki voor SSL instructies) - + 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 ciphers (standaard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - This help message - Dit helpbericht - - - - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Kan geen lock op de gegevensdirectory %s verkrijgen. Bitcoin draait vermoedelijk reeds. - - Loading addresses... - Adressen aan het laden... - - - - Error loading addr.dat - Fout bij laden addr.dat - - - - Error loading blkindex.dat - Fout bij laden blkindex.dat + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Aanvaardbare ciphers (standaard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Error loading wallet.dat: Wallet corrupted - Fout bij laden wallet.dat: Portemonnee corrupt + Loading addresses... + Adressen aan het laden... - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Fout bij laden wallet.dat: Portemonnee vereist een nieuwere versie van Bitcoin + + This help message + Dit helpbericht + - Wallet needed to be rewritten: restart Bitcoin to complete - Portemonnee moest herschreven worden: Herstart Bitcoin om te voltooien - - - - Error loading wallet.dat - Fout bij laden wallet.dat - - - Loading block index... Blokindex aan het laden... - + Loading wallet... Portemonnee aan het laden... - + Rescanning... Opnieuw aan het scannen ... + + + Error loading addr.dat + Fout bij laden addr.dat + + + + Error loading blkindex.dat + Fout bij laden blkindex.dat + + Error loading wallet.dat: Wallet corrupted + Fout bij laden wallet.dat: Portemonnee corrupt + + + Done loading Klaar met laden + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Fout bij laden wallet.dat: Portemonnee vereist een nieuwere versie van Bitcoin + + + Invalid -proxy address Foutief -proxy adres + Wallet needed to be rewritten: restart Bitcoin to complete + Portemonnee moest herschreven worden: Herstart Bitcoin om te voltooien + + + Invalid amount for -paytxfee=<amount> Ongeldig bedrag voor -paytxfee=<bedrag> + Error loading wallet.dat + Fout bij laden wallet.dat + + + 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. - + Error: CreateThread(StartNode) failed Fout: CreateThread(StartNode) is mislukt - + Warning: Disk space is low Waarschuwing: Weinig schijfruimte over - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Kan niet binden aan poort %d op deze computer. Bitcoin draait vermoedelijk reeds. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Waarschuwing: Controleer dat de datum en tijd op uw computer correct zijn ingesteld. Als uw klok fout staat zal Bitcoin niet correct werken. - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_pl.ts b/src/qt/locale/bitcoin_pl.ts index af42dc0249..693bc642b6 100644 --- a/src/qt/locale/bitcoin_pl.ts +++ b/src/qt/locale/bitcoin_pl.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -141,17 +143,17 @@ www.transifex.net/projects/p/bitcoin/ AddressTableModel - + Label Etykieta - + Address Adres - + (no label) (bez etykiety) @@ -245,7 +247,7 @@ Czy na pewno chcesz zaszyfrować swój portfel? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + @@ -298,278 +300,298 @@ Czy na pewno chcesz zaszyfrować swój portfel? BitcoinGUI - + Bitcoin Wallet Portfel Bitcoin - - + + Synchronizing with network... Synchronizacja z siecią... - + Block chain synchronization in progress Synchronizacja bloku łańcucha w toku. - + &Overview P&odsumowanie - + Show general overview of wallet Pokazuje ogólny zarys portfela - + &Transactions &Transakcje - + Browse transaction history Przeglądaj historię transakcji - + &Address Book Książka &adresowa - + Edit the list of stored addresses and labels Edytuj listę zapisanych adresów i i etykiet - + &Receive coins Odbie&rz monety - + Show the list of addresses for receiving payments Pokaż listę adresów do otrzymywania płatności - + &Send coins Wy&syłka monet - + Send coins to a bitcoin address Wyślij monety na adres bitcoin - + Sign &message Podpisz wiado&mość - + Prove you control an address Udowodnij, że kontrolujesz adres - + E&xit &Zakończ - + Quit application Zamknij program - + &About %1 &O %1 - + Show information about Bitcoin Pokaż informację o Bitcoin - + About &Qt O &Qt - + Show information about Qt Pokazuje informacje o Qt - + &Options... &Opcje... - + Modify configuration options for bitcoin Zmienia opcje konfiguracji bitcoina - + Open &Bitcoin Otwórz &Bitcoin - + Show the Bitcoin window Pokaż okno Bitcoin - + &Export... &Eksportuj... - + Export the data in the current tab to a file - + - + &Encrypt Wallet Zaszyfruj portf&el - + Encrypt or decrypt wallet Zaszyfruj lub odszyfruj portfel - + &Backup Wallet - + &Backup portfel - + Backup wallet to another location - + - + &Change Passphrase Zmień h&asło - + Change the passphrase used for wallet encryption Zmień hasło użyte do szyfrowania portfela - + &File &Plik - + &Settings P&referencje - + &Help Pomo&c - + Tabs toolbar Pasek zakładek - + Actions toolbar Pasek akcji - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n aktywne połączenie do sieci Bitcoin%n aktywne połączenia do sieci Bitcoin%n aktywnych połączeń do sieci Bitcoin + + %n aktywne połączenie do sieci Bitcoin + %n aktywne połączenia do sieci Bitcoin + %n aktywnych połączeń do sieci Bitcoin + - + Downloaded %1 of %2 blocks of transaction history. Pobrano %1 z %2 bloków z historią transakcji. - + Downloaded %1 blocks of transaction history. Pobrano %1 bloków z historią transakcji. - + %n second(s) ago - %n sekundę temu%n sekundy temu%n sekund temu + + %n sekundę temu + %n sekundy temu + %n sekund temu + - + %n minute(s) ago - %n minutę temu%n minuty temu%n minut temu + + %n minutę temu + %n minuty temu + %n minut temu + - + %n hour(s) ago - %n godzinę temu%n godziny temu%n godzin temu + + %n godzinę temu + %n godziny temu + %n godzin temu + - + %n day(s) ago - %n dzień temu%n dni temu%n dni temu + + %n dzień temu + %n dni temu + %n dni temu + - + Up to date Aktualny - + Catching up... Łapanie bloków... - + Last received block was generated %1. Ostatnio otrzymany blok została wygenerowany %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? - + - + Sending... Wysyłanie... - + Sent transaction Transakcja wysłana - + Incoming transaction Transakcja przychodząca - + Date: %1 Amount: %2 Type: %3 @@ -582,34 +604,39 @@ 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> - + Backup Wallet - + - + Wallet Data (*.dat) - + - + Backup Failed - + - + There was an error trying to save the wallet data to the new location. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -626,8 +653,13 @@ Adres: %4 - Display addresses in transaction list - Wyświetlaj adresy w liście transakcji + &Display addresses in transaction list + &Wyświetlaj adresy w liście transakcji + + + + Whether to show Bitcoin addresses in the transaction list + @@ -796,12 +828,12 @@ Adres: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adres do wysłania należności do (np. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -845,8 +877,8 @@ Adres: %4 - Copy the currently selected address to the system clipboard - Skopiuj aktualnie wybrany adres do schowka + Copy the current signature to the system clipboard + @@ -932,20 +964,12 @@ Adres: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Portfel</span></p></body></html> + + Wallet + Portfel - + <b>Recent transactions</b> <b>Ostatnie transakcje</b> @@ -978,44 +1002,49 @@ p, li { white-space: pre-wrap; } Kod QR - + Request Payment Prośba o płatność - + Amount: Kwota: - + BTC BTC - + Label: Etykieta: - + Message: Wiadomość: - + &Save As... Zapi&sz jako... - + + Error encoding URI into QR Code. + + + + Save Image... - + - + PNG Images (*.png) - + @@ -1125,7 +1154,7 @@ p, li { white-space: pre-wrap; } Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - + @@ -1288,7 +1317,7 @@ p, li { white-space: pre-wrap; } (%1 matures in %2 more blocks) - + @@ -1349,54 +1378,62 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Data - + Type Typ - + Address Adres - + Amount Kwota - + Open for %n block(s) - Otwórz dla %n blokuOtwórz dla %n blokówOtwórz dla %n bloków + + Otwórz dla %n bloku + Otwórz dla %n bloków + Otwórz dla %n bloków + - + Open until %1 Otwórz do %1 - + Offline (%1 confirmations) Offline (%1 potwierdzeń) - + Unconfirmed (%1 of %2 confirmations) Niezatwierdzony (%1 z %2 potwierdzeń) - + Confirmed (%1 confirmations) Zatwierdzony (%1 potwierdzeń) Mined balance will be available in %n more blocks - Wydobyta kwota będzie dostępna za %n blokWydobyta kwota będzie dostępna za %n blokówWydobyta kwota będzie dostępna za %n bloki + + Wydobyta kwota będzie dostępna za %n blok + Wydobyta kwota będzie dostępna za %n bloków + Wydobyta kwota będzie dostępna za %n bloki + @@ -1639,346 +1676,346 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Wersja Bitcoin - + Usage: Użycie: - + Send command to -server or bitcoind Wyślij polecenie do -server lub bitcoind - + List commands Lista poleceń - + Get help for a command Uzyskaj pomoc do polecenia - + Options: Opcje: - + Specify configuration file (default: bitcoin.conf) Wskaż plik konfiguracyjny (domyślnie: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Wskaż plik pid (domyślnie: bitcoin.pid) - + Generate coins Generuj monety - + Don't generate coins Nie generuj monet - + Start minimized Uruchom zminimalizowany - + Specify data directory Wskaż folder danych - + Specify connection timeout (in milliseconds) Wskaż czas oczekiwania bezczynności połączenia (w milisekundach) - + Connect through socks4 proxy Łączy przez proxy socks4 - + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) Nasłuchuj połączeń na <port> (domyślnie: 8333 lub testnet: 18333) - + 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 Dodaj węzeł do łączenia się - + Connect only to the specified node Łącz tylko do wskazanego węzła - + Don't accept connections from outside Nie akceptuj połączeń zewnętrznych - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) Maksymalny bufor odbioru na połączenie, <n>*1000 bajtów (domyślnie: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maksymalny bufor wysyłu na połączenie, <n>*1000 bajtów (domyślnie: 10000) - + Don't attempt to use UPnP to map the listening port Nie próbuj używać UPnP do mapowania portu nasłuchu - + Attempt to use UPnP to map the listening port Próbuj używać UPnP do mapowania portu nasłuchu - + Fee per kB to add to transactions you send Prowizja za kB dodawana do wysyłanej transakcji - + Accept command line and JSON-RPC commands - + - + 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 - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + 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: 8332) Nasłuchuj połączeń JSON-RPC na <port> (domyślnie: 8332) - + 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) - + Set key pool size to <n> (default: 100) Ustaw rozmiar puli kluczy na <n> (domyślnie: 100) - + Rescan the block chain for missing wallet transactions Przeskanuj blok łańcuchów żeby znaleźć zaginione transakcje portfela - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) opcje SSL: (sprawdź Bitcoin Wiki dla instrukcje konfiguracji SSL) - + Use OpenSSL (https) for JSON-RPC connections Użyj OpenSSL (https) do połączeń JSON-RPC - + Server certificate file (default: server.cert) Plik certyfikatu serwera (domyślnie: server.cert) - + Server private key (default: server.pem) Klucz prywatny serwera (domyślnie: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Aceptowalne szyfry (domyślnie: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Ta wiadomość pomocy - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Nie można zablokować folderu danych %s. Bitcoin prawdopodobnie już działa. - + Loading addresses... Wczytywanie adresów... - + Error loading addr.dat Błąd ładowania addr.dat - + Error loading blkindex.dat Błąd ładownia blkindex.dat - + Error loading wallet.dat: Wallet corrupted Błąd ładowania wallet.dat: Uszkodzony portfel - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Błąd ładowania wallet.dat: Portfel wymaga nowszej wersji Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete Portfel wymaga przepisania: zrestartuj Bitcoina żeby ukończyć - + Error loading wallet.dat Błąd ładowania wallet.dat - + Loading block index... Ładowanie indeksu bloku... - + Loading wallet... Wczytywanie portfela... - + Rescanning... Ponowne skanowanie... - + Done loading Wczytywanie zakończone - + Invalid -proxy address Nieprawidłowy adres -proxy - + Invalid amount for -paytxfee=<amount> Nieprawidłowa kwota dla -paytxfee=<amount> - + 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. - + Error: CreateThread(StartNode) failed Błąd: CreateThread(StartNode) nie powiodło się - + Warning: Disk space is low Ostrzeżenie: kończy się miejsce na dysku - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Nie można przywiązać portu %d na tym komputerze. Bitcoin prawdopodobnie już działa. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Ostrzeżenie: Proszę sprawdzić poprawność czasu i daty na tym komputerze. Jeśli czas jest zły Bitcoin może nie działać prawidłowo. - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index 69568f4a94..63b5ce47b9 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -49,7 +51,7 @@ This product includes software developed by the OpenSSL Project for use in the O &New Address... - &amp; Novo endereço ... + & Novo endereço ... @@ -59,32 +61,32 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - &amp; Copie para a área de transferência do sistema + & Copie para a área de transferência do sistema + + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Excluir o endereço selecionado da lista. Apenas endereços de envio podem ser excluídos. Show &QR Code - + + + + + &Delete + & Excluir Sign a message to prove you own this address - + &Sign Message - - - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Excluir o endereço selecionado da lista. Apenas endereços de envio podem ser excluídos. - - - - &Delete - &amp; Excluir + @@ -99,12 +101,12 @@ This product includes software developed by the OpenSSL Project for use in the O Edit - + Delete - + @@ -130,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Rótulo - + Address Endereço - + (no label) (Sem rótulo) @@ -230,16 +232,11 @@ Are you sure you wish to encrypt your wallet? Wallet encrypted Carteira criptografada - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - Warning: The Caps Lock key is on. - + @@ -254,6 +251,11 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. A criptografia da carteira falhou devido a um erro interno. Sua carteira não estava criptografada. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Lembre-se que sua carteira criptografada não poderá proteger totalmente os seus bitcoins de serem roubados por softwares maldosos que infectem seu computador. + @@ -286,278 +288,293 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet Carteira Bitcoin - - + + Synchronizing with network... Sincronizando com a rede... - + Block chain synchronization in progress Sincronização da corrente de blocos em andamento - + &Overview &Visão geral - + Show general overview of wallet Mostrar visão geral da carteira - + &Transactions &Transações - + Browse transaction history Navegar pelo histórico de transações - + &Address Book &Catálogo de endereços - + Edit the list of stored addresses and labels Editar a lista de endereços e rótulos - + &Receive coins &Receber moedas - + Show the list of addresses for receiving payments Mostrar a lista de endereços para receber pagamentos - + &Send coins &Enviar moedas - + Send coins to a bitcoin address Enviar moedas para um endereço bitcoin - + Sign &message - + - + Prove you control an address - + - + E&xit E&xit - + Quit application Sair da aplicação - + &About %1 &About %1 - + Show information about Bitcoin Mostrar informação sobre Bitcoin - - About &Qt - - - - - Show information about Qt - - - - + &Options... &Opções... - + Modify configuration options for bitcoin Modificar opções de configuração para bitcoin - + Open &Bitcoin Abrir &Bitcoin - + Show the Bitcoin window Mostrar a janela Bitcoin - + &Export... &Exportar... - - Export the data in the current tab to a file - - - - + &Encrypt Wallet &Criptografar Carteira - + Encrypt or decrypt wallet Criptografar ou decriptogravar carteira - - &Backup Wallet - + + &Change Passphrase + &Mudar frase de segurança - - Backup wallet to another location - + + Change the passphrase used for wallet encryption + Mudar a frase de segurança utilizada na criptografia da carteira - - &Change Passphrase - &Mudar frase de segurança + + About &Qt + + + + + Show information about Qt + Mostrar informação sobre Qt + + + + Export the data in the current tab to a file + - Change the passphrase used for wallet encryption - Mudar a frase de segurança utilizada na criptografia da carteira + &Backup Wallet + &Backup Carteira + + + + Backup wallet to another location + - + &File - &amp; Arquivo + & Arquivo - + &Settings E configurações - + &Help - &amp; Ajuda + & Ajuda - + Tabs toolbar Barra de ferramentas - + Actions toolbar Barra de ações - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n conexão ativa na rede Bitcoin%n conexões ativas na rede Bitcoin + + %n conexão ativa na rede Bitcoin + %n conexões ativas na rede Bitcoin + - + Downloaded %1 of %2 blocks of transaction history. Carregados %1 de %2 blocos do histórico de transações. - + Downloaded %1 blocks of transaction history. Carregados %1 blocos do histórico de transações. - + %n second(s) ago - %n segundo atrás%n segundos atrás + + %n segundo atrás + %n segundos atrás + - + %n minute(s) ago - %n minutos atrás%n minutos atrás + + %n minutos atrás + %n minutos atrás + - + %n hour(s) ago - %n hora atrás%n horas atrás + + %n hora atrás + %n horas atrás + - + %n day(s) ago - %n dia atrás%n dias atrás + + %n dia atrás + %n dias atrás + - + Up to date Atualizado - + Catching up... Recuperando o atraso ... - + 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? 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? - + Sending... Sending... - + Sent transaction Sent transaction - + Incoming transaction Incoming transaction - + Date: %1 Amount: %2 Type: %3 @@ -569,34 +586,39 @@ Tipo: %3 Endereço: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + Wallet is <b>encrypted</b> and currently <b>locked</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. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -613,8 +635,13 @@ Endereço: %4 - Display addresses in transaction list - Display addresses in transaction list + &Display addresses in transaction list + + + + + Whether to show Bitcoin addresses in the transaction list + @@ -760,7 +787,7 @@ Endereço: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -770,7 +797,7 @@ Endereço: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -778,17 +805,17 @@ Endereço: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -813,54 +840,54 @@ Endereço: %4 Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - Copie o endereço selecionado para a área de transferência do sistema + Copy the current signature to the system clipboard + &Copy to Clipboard - &amp; Copie para a área de transferência do sistema + & Copie para a área de transferência do sistema Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + @@ -919,20 +946,12 @@ Endereço: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + - + <b>Recent transactions</b> <b>Recent transactions</b> @@ -962,47 +981,52 @@ p, li { white-space: pre-wrap; } QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: Message: - + &Save As... - + + + + + Error encoding URI into QR Code. + - + Save Image... - + - + PNG Images (*.png) - + @@ -1029,16 +1053,16 @@ p, li { white-space: pre-wrap; } &Add recipient... &Add recipient... - - - Remove all transaction fields - - Clear all Clear all + + + Remove all transaction fields + + Balance: @@ -1312,7 +1336,7 @@ p, li { white-space: pre-wrap; } Transaction ID: - + @@ -1336,54 +1360,60 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Date - + Type Type - + Address Address - + Amount Amount - + Open for %n block(s) - Open for %n blockOpen for %n blocks + + Open for %n block + Open for %n blocks + - + Open until %1 Open until %1 - + Offline (%1 confirmations) Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) Confirmed (%1 confirmations) Mined balance will be available in %n more blocks - Mined balance will be available in %n more blockMined balance will be available in %n more blocks + + Mined balance will be available in %n more block + Mined balance will be available in %n more blocks + @@ -1403,7 +1433,7 @@ p, li { white-space: pre-wrap; } Received from - + @@ -1537,7 +1567,7 @@ p, li { white-space: pre-wrap; } Copy amount - + @@ -1626,245 +1656,245 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoin version - + Usage: Usage: - + Send command to -server or bitcoind Send command to -server or bitcoind - + List commands List commands - + Get help for a command Get help for a command - + Options: Options: - + Specify configuration file (default: bitcoin.conf) Specify configuration file (default: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Specify pid file (default: bitcoind.pid) - + Generate coins Generate coins - + Don't generate coins Don't generate coins - + Start minimized Start minimized - + Specify data directory Specify data directory - + Specify connection timeout (in milliseconds) Specify connection timeout (in milliseconds) - + Connect through socks4 proxy Connect through socks4 proxy - + Allow DNS lookups for addnode and connect Allow DNS lookups for addnode and connect - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - + Add a node to connect to Add a node to connect to - + Connect only to the specified node Connect only to the specified node - + Don't accept connections from outside Don't accept connections from outside - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port Don't attempt to use UPnP to map the listening port - + Attempt to use UPnP to map the listening port Attempt to use UPnP to map the listening port - + Fee per kB to add to transactions you send - + - + 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 - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + 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: 8332) Listen for JSON-RPC connections on <port> (default: 8332) - + 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) - + 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 - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1872,134 +1902,134 @@ SSL options: (see the Bitcoin 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) - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - - This help message - This help message + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - - - + Loading addresses... Loading addresses... - Error loading addr.dat - - - - - Error loading blkindex.dat - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - + This help message + This help message + - Wallet needed to be rewritten: restart Bitcoin to complete - - - - - Error loading wallet.dat - - - - Loading block index... Loading block index... - + Loading wallet... Loading wallet... - + Rescanning... Rescanning... + + + Error loading addr.dat + + + + + Error loading blkindex.dat + + + Error loading wallet.dat: Wallet corrupted + + + + Done loading Done loading + Error loading wallet.dat: Wallet requires newer version of Bitcoin + + + + Invalid -proxy address Invalid -proxy address + Wallet needed to be rewritten: restart Bitcoin to complete + + + + Invalid amount for -paytxfee=<amount> Invalid amount for -paytxfee=<amount> + Error loading wallet.dat + + + + 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. - + Error: CreateThread(StartNode) failed Error: CreateThread(StartNode) failed - + Warning: Disk space is low Warning: Disk space is low - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Unable to bind to port %d on this computer. Bitcoin is probably already running. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ro_RO.ts b/src/qt/locale/bitcoin_ro_RO.ts index 17c71e48f6..061db1878f 100644 --- a/src/qt/locale/bitcoin_ro_RO.ts +++ b/src/qt/locale/bitcoin_ro_RO.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -64,17 +66,17 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + @@ -99,12 +101,12 @@ This product includes software developed by the OpenSSL Project for use in the O Edit - + Delete - + @@ -130,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Etichetă - + Address Adresă - + (no label) (fără etichetă) @@ -234,13 +236,13 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + Warning: The Caps Lock key is on. - + @@ -287,314 +289,339 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? BitcoinGUI - + Bitcoin Wallet Portofel electronic Bitcoin - - + + Synchronizing with network... Se sincronizează cu reţeaua... - + Block chain synchronization in progress Se sincronizează blocurile. - + &Overview &Detalii - + Show general overview of wallet Afişează detalii despre portofelul electronic - + &Transactions &Tranzacţii - + Browse transaction history Istoricul tranzacţiilor - + &Address Book &Lista de adrese - + Edit the list of stored addresses and labels Editaţi lista de adrese şi etichete. - + &Receive coins &Primiţi Bitcoin - + Show the list of addresses for receiving payments Lista de adrese pentru recepţionarea plăţilor - + &Send coins &Trimiteţi Bitcoin - + Send coins to a bitcoin address &Trimiteţi Bitcoin către o anumită adresă - + Sign &message - + - + Prove you control an address - + - + E&xit - + - + Quit application Părăsiţi aplicaţia - + &About %1 - + - + Show information about Bitcoin Informaţii despre Bitcoin - + About &Qt - + - + Show information about Qt - + - + &Options... &Setări... - + Modify configuration options for bitcoin Modifică setările pentru Bitcoin - + Open &Bitcoin Deschide &Bitcoin - + Show the Bitcoin window Afişează fereastra Bitcoin - + &Export... &Exportă... - + Export the data in the current tab to a file - + - + &Encrypt Wallet Criptează portofelul electronic - + Encrypt or decrypt wallet Criptează şi decriptează portofelul electronic - + &Backup Wallet - + &Backup portofelul electronic - + Backup wallet to another location - + - + &Change Passphrase &Schimbă parola - + Change the passphrase used for wallet encryption &Schimbă parola folosită pentru criptarea portofelului electronic - + &File &Fişier - + &Settings &Setări - + &Help &Ajutor - + Tabs toolbar Bara de ferestre de lucru - + Actions toolbar Bara de acţiuni - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n active connections to Bitcoin network%n active connections to Bitcoin network%n active connections to Bitcoin network + + %n active connections to Bitcoin network + %n active connections to Bitcoin network + %n active connections to Bitcoin network + - + Downloaded %1 of %2 blocks of transaction history. S-au descărcat %1 din %2 blocuri din istoricul tranzaciilor. - + Downloaded %1 blocks of transaction history. S-au descărcat %1 blocuri din istoricul tranzaciilor. - + %n second(s) ago - %n seconds ago%n seconds ago%n seconds ago + + %n seconds ago + %n seconds ago + %n seconds ago + - + %n minute(s) ago - Acum %n minutAcum %n minuteAcum %n minute + + Acum %n minut + Acum %n minute + Acum %n minute + - + %n hour(s) ago - Acum %n orăAcum %n oreAcum %n ore + + Acum %n oră + Acum %n ore + Acum %n ore + - + %n day(s) ago - Acum %n ziAcum %n zileAcum %n zile + + Acum %n zi + Acum %n zile + Acum %n zile + - + 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ă tranzacţie depăşeşte limita. Puteţi iniţia tranzacţia platind un comision de %1, de care vor beneficia nodurile care procesează tranzacţia şi ajută la menţinerea reţelei. Acceptaţi plata comisionului? - + Sending... Expediază... - + Sent transaction Tranzacţie expediată - + Incoming transaction Tranzacţie recepţionată - + Date: %1 Amount: %2 Type: %3 Address: %4 - + - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Portofelul electronic este <b>criptat</b> iar in momentul de faţă este <b>deblocat</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Portofelul electronic este <b>criptat</b> iar in momentul de faţă este <b>blocat</b> - + Backup Wallet - + - + Wallet Data (*.dat) - + - + Backup Failed - + - + There was an error trying to save the wallet data to the new location. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -611,8 +638,13 @@ Address: %4 - Display addresses in transaction list - Afişează adresele în lista de tranzacţii + &Display addresses in transaction list + &Afişează adresele în lista de tranzacţii + + + + Whether to show Bitcoin addresses in the transaction list + @@ -758,7 +790,7 @@ Address: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -768,7 +800,7 @@ Address: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -776,17 +808,17 @@ Address: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adresa către care se va face plata (de exemplu: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -811,27 +843,27 @@ Address: %4 Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - Copiați adresa selectată în clipboard + Copy the current signature to the system clipboard + @@ -843,22 +875,22 @@ Address: %4 Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + @@ -917,20 +949,12 @@ Address: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + - + <b>Recent transactions</b> <b>Ultimele tranzacţii</b> @@ -960,47 +984,52 @@ p, li { white-space: pre-wrap; } QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: Mesaj: - + &Save As... - + + + + + Error encoding URI into QR Code. + - + Save Image... - + - + PNG Images (*.png) - + @@ -1030,7 +1059,7 @@ p, li { white-space: pre-wrap; } Remove all transaction fields - + @@ -1149,7 +1178,7 @@ p, li { white-space: pre-wrap; } Choose address from address book - + @@ -1310,7 +1339,7 @@ p, li { white-space: pre-wrap; } Transaction ID: - + @@ -1334,54 +1363,62 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Data - + Type Tipul - + Address Adresa - + Amount Cantitate - + Open for %n block(s) - Deschis pentru for %n blocDeschis pentru %n blocuriDeschis pentru %n blocuri + + Deschis pentru for %n bloc + Deschis pentru %n blocuri + Deschis pentru %n blocuri + - + Open until %1 Deschis până la %1 - + Offline (%1 confirmations) Neconectat (%1 confirmări) - + Unconfirmed (%1 of %2 confirmations) Neconfirmat (%1 din %2 confirmări) - + Confirmed (%1 confirmations) Confirmat (%1 confirmări) Mined balance will be available in %n more blocks - Soldul de bitcoin produs va fi disponibil după încă %n blocSoldul de bitcoin produs va fi disponibil după încă %n blocuriSoldul de bitcoin produs va fi disponibil după încă %n blocuri + + Soldul de bitcoin produs va fi disponibil după încă %n bloc + Soldul de bitcoin produs va fi disponibil după încă %n blocuri + Soldul de bitcoin produs va fi disponibil după încă %n blocuri + @@ -1401,7 +1438,7 @@ p, li { white-space: pre-wrap; } Received from - + @@ -1535,7 +1572,7 @@ p, li { white-space: pre-wrap; } Copy amount - + @@ -1624,345 +1661,345 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version versiunea Bitcoin - + Usage: Uz: - + Send command to -server or bitcoind Trimite comanda la -server sau bitcoind - + List commands Listă de comenzi - + Get help for a command Ajutor pentru o comandă - + Options: Setări: - + Specify configuration file (default: bitcoin.conf) - + - + Specify pid file (default: bitcoind.pid) - + - + Generate coins - + - + Don't generate coins - + - + Start minimized - + - + Specify data directory - + - + Specify connection timeout (in milliseconds) - + - + Connect through socks4 proxy - + - + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - + Add a node to connect to - + - + Connect only to the specified node - + - + Don't accept connections from outside - + - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port - + - + Attempt to use UPnP to map the listening port - + - + Fee per kB to add to transactions you send - + - + Accept command line and JSON-RPC commands - + - + Run in the background as a daemon and accept commands - + - + Use the test network - + - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections - + - + Password for JSON-RPC connections - + - + Listen for JSON-RPC connections on <port> (default: 8332) - + - + Allow JSON-RPC connections from specified IP address - + - + Send commands to node running on <ip> (default: 127.0.0.1) - + - + Set key pool size to <n> (default: 100) - + - + Rescan the block chain for missing wallet transactions - + - + SSL options: (see the Bitcoin 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) - + - + This help message - + - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + Loading addresses... Încarc adrese... - + Error loading addr.dat - + - + Error loading blkindex.dat - + - + Error loading wallet.dat: Wallet corrupted - + - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + - + Wallet needed to be rewritten: restart Bitcoin to complete - + - + Error loading wallet.dat - + - + Loading block index... Încarc indice bloc... - + Loading wallet... Încarc portofel... - + Rescanning... Rescanez... - + Done loading Încărcare terminată - + Invalid -proxy address - + - + Invalid amount for -paytxfee=<amount> - + - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + - + Error: CreateThread(StartNode) failed - + - + Warning: Disk space is low - + - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + - + beta - + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts index d706b33b97..877f91ce1e 100644 --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -67,11 +69,21 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &Kопировать + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Удалить выделенный адрес из списка (могут быть удалены только записи из адресной книги). + Show &QR Code Показать &QR код + + + &Delete + &Удалить + Sign a message to prove you own this address @@ -82,16 +94,6 @@ This product includes software developed by the OpenSSL Project for use in the O &Sign Message &Подписать сообщение - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Удалить выделенный адрес из списка (могут быть удалены только записи из адресной книги). - - - - &Delete - &Удалить - Copy address @@ -136,17 +138,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Метка - + Address Адрес - + (no label) [нет метки] @@ -237,11 +239,6 @@ Are you sure you wish to encrypt your wallet? Wallet encrypted Бумажник зашифрован - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши биткоины от кражи с помощью инфицирования вашего компьютера вредоносным ПО. - @@ -261,6 +258,11 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Шифрование бумажника не удалось из-за внутренней ошибки. Ваш бумажник не был зашифрован. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши биткоины от кражи с помощью инфицирования вашего компьютера вредоносным ПО. + @@ -293,278 +295,298 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet Bitcoin-бумажник - - + + Synchronizing with network... Синхронизация с сетью... - + Block chain synchronization in progress Идёт синхронизация цепочки блоков - + &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 Отп&равка монет - + Send coins to a bitcoin address Отправить монеты на указанный адрес - + Sign &message Подписать &сообщение - + Prove you control an address Доказать, что вы владеете адресом - + E&xit В&ыход - + Quit application Закрыть приложение - + &About %1 &О %1 - + Show information about Bitcoin Показать информацию о Bitcoin'е - - About &Qt - О &Qt - - - - Show information about Qt - Показать информацию о Qt - - - + &Options... Оп&ции... - + Modify configuration options for bitcoin Изменить настройки - + Open &Bitcoin &Показать бумажник - + Show the Bitcoin window Показать окно бумажника - + &Export... &Экспорт... - - Export the data in the current tab to a file - - - - + &Encrypt Wallet &Зашифровать бумажник - + Encrypt or decrypt wallet Зашифровать или расшифровать бумажник - - &Backup Wallet - + + &Change Passphrase + &Изменить пароль - - Backup wallet to another location - + + Change the passphrase used for wallet encryption + Изменить пароль шифрования бумажника - - &Change Passphrase - &Изменить пароль + + About &Qt + О &Qt + + + + Show information about Qt + Показать информацию о Qt + + + + Export the data in the current tab to a file + - Change the passphrase used for wallet encryption - Изменить пароль шифрования бумажника + &Backup Wallet + &Backup бумажник - + + Backup wallet to another location + + + + &File &Файл - + &Settings &Настройки - + &Help &Помощь - + Tabs toolbar Панель вкладок - + Actions toolbar Панель действий - + [testnet] [тестовая сеть] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n активное соединение с сетью%n активных соединений с сетью%n активных соединений с сетью + + %n активное соединение с сетью + %n активных соединений с сетью + %n активных соединений с сетью + - + Downloaded %1 of %2 blocks of transaction history. Загружено %1 из %2 блоков истории транзакций. - + Downloaded %1 blocks of transaction history. Загружено %1 блоков истории транзакций. - + %n second(s) ago - %n секунду назад%n секунды назад%n секунд назад + + %n секунду назад + %n секунды назад + %n секунд назад + - + %n minute(s) ago - %n минуту назад%n минуты назад%n минут назад + + %n минуту назад + %n минуты назад + %n минут назад + - + %n hour(s) ago - %n час назад%n часа назад%n часов назад + + %n час назад + %n часа назад + %n часов назад + - + %n day(s) ago - %n день назад%n дня назад%n дней назад + + %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, которая отправится тем узлам, которые обработают Вашу транзакцию и поможет поддержать сеть. Вы хотите добавить комиссию? - + Sending... Отправка... - + Sent transaction Исходящая транзакция - + Incoming transaction Входящая транзакция - + Date: %1 Amount: %2 Type: %3 @@ -577,34 +599,39 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Бумажник <b>зашифрован</b> и в настоящее время <b>разблокирован</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> - + 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 occured. Bitcoin can no longer continue safely and will quit. + @@ -621,8 +648,13 @@ Address: %4 - Display addresses in transaction list - Показывать адреса в списке транзакций + &Display addresses in transaction list + &Показывать адреса в списке транзакций + + + + Whether to show Bitcoin addresses in the transaction list + @@ -791,12 +823,12 @@ Address: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Адрес получателя платежа (например 1LA5FtQhnnWnkK6zjFfutR7Stiit4wKd63) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -840,8 +872,8 @@ Address: %4 - Copy the currently selected address to the system clipboard - Копировать текущий выделенный адрес в буфер обмена + Copy the current signature to the system clipboard + @@ -927,20 +959,12 @@ Address: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Бумажник</span></p></body></html> + + Wallet + Бумажник - + <b>Recent transactions</b> <b>Последние транзакции</b> @@ -973,44 +997,49 @@ p, li { white-space: pre-wrap; } QR код - + Request Payment Запросить платёж - + Amount: Количество: - + BTC BTC - + Label: Метка: - + Message: Сообщение: - + &Save As... &Сохранить как... - + + Error encoding URI into QR Code. + + + + Save Image... Сохранить изображение... - + PNG Images (*.png) - + @@ -1037,16 +1066,16 @@ p, li { white-space: pre-wrap; } &Add recipient... &Добавить получателя... - - - Remove all transaction fields - Удалить все поля транзакции - Clear all Очистить всё + + + Remove all transaction fields + Удалить все поля транзакции + Balance: @@ -1344,54 +1373,62 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Дата - + Type Тип - + Address Адрес - + Amount Количество - + Open for %n block(s) - Открыто для %n блокаОткрыто для %n блоковОткрыто для %n блоков + + Открыто для %n блока + Открыто для %n блоков + Открыто для %n блоков + - + Open until %1 Открыто до %1 - + Offline (%1 confirmations) Оффлайн (%1 подтверждений) - + Unconfirmed (%1 of %2 confirmations) Не подтверждено (%1 из %2 подтверждений) - + Confirmed (%1 confirmations) Подтверждено (%1 подтверждений) Mined balance will be available in %n more blocks - Добытыми монетами можно будет воспользоваться через %n блокДобытыми монетами можно будет воспользоваться через %n блокаДобытыми монетами можно будет воспользоваться через %n блоков + + Добытыми монетами можно будет воспользоваться через %n блок + Добытыми монетами можно будет воспользоваться через %n блока + Добытыми монетами можно будет воспользоваться через %n блоков + @@ -1634,347 +1671,347 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Версия - + Usage: Использование: - + Send command to -server or bitcoind Отправить команду на -server или bitcoind - + List commands Список команд - + Get help for a command Получить помощь по команде - + Options: Опции: - + Specify configuration file (default: bitcoin.conf) Указать конфигурационный файл (по умолчанию: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Указать pid-файл (по умолчанию: bitcoin.pid) - + Generate coins Генерировать монеты - + Don't generate coins Не генерировать монеты - + Start minimized Запускать свёрнутым - + Specify data directory Укажите каталог данных - + Specify connection timeout (in milliseconds) Укажите таймаут соединения (в миллисекундах) - + Connect through socks4 proxy Подключаться через socks4 прокси - + Allow DNS lookups for addnode and connect Разрешить обращения к DNS для addnode и подключения - + Listen for connections on <port> (default: 8333 or testnet: 18333) Принимать входящие подключения на <port> (по умолчанию: 8333 или 18333 в тестовой сети) - + Maintain at most <n> connections to peers (default: 125) Поддерживать не более <n> подключений к узлам (по умолчанию: 125) - + Add a node to connect to Добавить узел для подключения - + Connect only to the specified node Подключаться только к указанному узлу - + Don't accept connections from outside Не принимать входящие подключения - + Don't bootstrap list of peers using DNS Не получать начальный список узлов через DNS - + 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: 10000) Максимальный размер буфера приёма на соединение, <n>*1000 байт (по умолчанию: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Максимальный размер буфера отправки на соединение, <n>*1000 байт (по умолчанию: 10000) - + Don't attempt to use UPnP to map the listening port Не пытаться использовать UPnP для назначения входящего порта - + Attempt to use UPnP to map the listening port Пытаться использовать UPnP для назначения входящего порта - + Fee per kB to add to transactions you send Комиссия на Кб, добавляемая к вашим переводам - + 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 Выводить дополнительную отладочную информацию - + Prepend debug output with timestamp Дописывать отметки времени к отладочному выводу - + 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: 8332) Ожидать подключения JSON-RPC на <порт> (по умолчанию: 8332) - + 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) - + Set key pool size to <n> (default: 100) Установить размер запаса ключей в <n> (по умолчанию: 100) - + Rescan the block chain for missing wallet transactions Перепроверить цепь блоков на предмет отсутствующих в кошельке транзакций - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Параметры SSL: (см. Bitcoin Wiki для инструкций по настройке SSL) - + 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 - Эта справка - - - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Невозможно установить блокировку на рабочую директорию %s. Возможно, бумажник уже запущен. - - Loading addresses... - Загрузка адресов... - - - - Error loading addr.dat - Ошибка загрузки addr.dat - - - - Error loading blkindex.dat - Ошибка чтения blkindex.dat + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Разрешённые алгоритмы (по умолчанию: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Error loading wallet.dat: Wallet corrupted - Ошибка загрузки wallet.dat: Бумажник поврежден + Loading addresses... + Загрузка адресов... - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Ошибка загрузки wallet.dat: бумажник требует более новую версию Bitcoin + + This help message + Эта справка - Wallet needed to be rewritten: restart Bitcoin to complete - Необходимо перезаписать бумажник, перезапустите Bitcoin для завершения операции. - - - - Error loading wallet.dat - Ошибка при загрузке wallet.dat - - - Loading block index... Загрузка индекса блоков... - + Loading wallet... Загрузка бумажника... - + Rescanning... Сканирование... + + + Error loading addr.dat + Ошибка загрузки addr.dat + + + + Error loading blkindex.dat + Ошибка чтения blkindex.dat + + Error loading wallet.dat: Wallet corrupted + Ошибка загрузки wallet.dat: Бумажник поврежден + + + Done loading Загрузка завершена + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Ошибка загрузки wallet.dat: бумажник требует более новую версию Bitcoin + + + Invalid -proxy address Ошибка в адресе прокси + Wallet needed to be rewritten: restart Bitcoin to complete + Необходимо перезаписать бумажник, перезапустите Bitcoin для завершения операции. + + + Invalid amount for -paytxfee=<amount> Ошибка в сумме комиссии + Error loading wallet.dat + Ошибка при загрузке wallet.dat + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. ВНИМАНИЕ: Установлена слишком большая комиссия (-paytxfee=). Данный параметр отвечает за комиссию, которую Вы будете добавлять к сумме при осуществлении транзакций. - + Error: CreateThread(StartNode) failed Ошибка: Созданиние потока (запуск узла) не удался - + Warning: Disk space is low ВНИМАНИЕ: На диске заканчивается свободное пространство - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Невозможно забиндить порт %d на данном компьютере. Возможно, бумажник ужк запущен. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. ВНИМАНИЕ: Проверьте дату и время, установленные на Вашем компьютере. Если Ваши часы идут не правильно Bitcoin может наботать не корректно. - + beta бета - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_sk.ts b/src/qt/locale/bitcoin_sk.ts index c8b49a13e1..1dc430ea3c 100644 --- a/src/qt/locale/bitcoin_sk.ts +++ b/src/qt/locale/bitcoin_sk.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -130,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Popis - + Address Adresa - + (no label) (bez popisu) @@ -234,7 +236,7 @@ Ste si istí, že si želáte zašifrovať peňaženku? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + @@ -287,278 +289,288 @@ Ste si istí, že si želáte zašifrovať peňaženku? BitcoinGUI - + Bitcoin Wallet Bitcoin peňaženka - - + + Synchronizing with network... Synchronizácia so sieťou... - + Block chain synchronization in progress Prebieha synchronizácia blockchain. - + &Overview &Prehľad - + Show general overview of wallet Zobraziť celkový prehľad o peňaženke - + &Transactions &Preklady - + Browse transaction history Prechádzať históriu transakcií - + &Address Book &Adresár - + Edit the list of stored addresses and labels Editovať zoznam uložených adries a popisov - + &Receive coins &Prijať bitcoins - + Show the list of addresses for receiving payments Zobraziť zoznam adries pre prijímanie platieb. - + &Send coins &Poslať bitcoins - + Send coins to a bitcoin address Poslať bitcoins na adresu - + Sign &message Podpísať &správu - + Prove you control an address Dokázať že kontrolujete adresu - + E&xit U&končiť - + Quit application Ukončiť program - + &About %1 &O %1 - + Show information about Bitcoin Zobraziť informácie o Bitcoin - + About &Qt O &Qt - + Show information about Qt Zobrazit informácie o Qt - + &Options... &Možnosti... - + Modify configuration options for bitcoin Upraviť možnosti nastavenia pre bitcoin - + Open &Bitcoin Otvoriť &Bitcoin - + Show the Bitcoin window Zobraziť okno Bitcoin - + &Export... &Export... - + Export the data in the current tab to a file - + - + &Encrypt Wallet &Zašifrovať Peňaženku - + Encrypt or decrypt wallet Zašifrovať alebo dešifrovať peňaženku - + &Backup Wallet - + &Backup peňaženku - + Backup wallet to another location - + - + &Change Passphrase &Zmena Hesla - + Change the passphrase used for wallet encryption Zmeniť heslo použité na šifrovanie peňaženky - + &File &Súbor - + &Settings &Nastavenia - + &Help &Pomoc - + Tabs toolbar Lišta záložiek - + Actions toolbar Lišta aktvivít - + [testnet] [testovacia sieť] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - + + + - + Downloaded %1 of %2 blocks of transaction history. - + - + 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 Aktualizovaný - + Catching up... - + - + Last received block was generated %1. Posledný prijatý blok bol generovaný %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? - + - + Sending... Odosielanie... - + Sent transaction Odoslané transakcie - + Incoming transaction Prijaté transakcie - + Date: %1 Amount: %2 Type: %3 @@ -570,34 +582,39 @@ Typ: %3 Adresa: %4 - + 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. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -610,12 +627,17 @@ Adresa: %4 Choose the default subdivision unit to show in the interface, and when sending coins - + - Display addresses in transaction list - Zobraziť adresy zo zoznamu transakcií. + &Display addresses in transaction list + &Zobraziť adresy zo zoznamu transakcií + + + + Whether to show Bitcoin addresses in the transaction list + @@ -643,7 +665,7 @@ Adresa: %4 The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -701,7 +723,7 @@ Adresa: %4 &Minimize to the tray instead of the taskbar - + @@ -784,12 +806,12 @@ Adresa: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adresa pre odoslanie platby je (napr. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -833,8 +855,8 @@ Adresa: %4 - Copy the currently selected address to the system clipboard - Kopírovať práve zvolenú adresu do systémového klipbordu + Copy the current signature to the system clipboard + @@ -920,16 +942,12 @@ Adresa: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - + + Wallet + - + <b>Recent transactions</b> <b>Nedávne transakcie</b> @@ -962,44 +980,49 @@ p, li { white-space: pre-wrap; } QR kód - + Request Payment Vyžiadať platbu - + Amount: Suma: - + BTC BTC - + Label: Popis: - + Message: Správa: - + &Save As... &Uložiť ako... - + + Error encoding URI into QR Code. + + + + Save Image... - + - + PNG Images (*.png) - + @@ -1109,7 +1132,7 @@ p, li { white-space: pre-wrap; } Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - + @@ -1181,17 +1204,17 @@ p, li { white-space: pre-wrap; } Open for %1 blocks - + Open until %1 - + %1/offline? - + @@ -1314,7 +1337,7 @@ p, li { white-space: pre-wrap; } Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + @@ -1333,54 +1356,58 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Dátum - + Type Typ - + Address Adresa - + Amount Hodnota - + Open for %n block(s) - + + + - + Open until %1 - + - + Offline (%1 confirmations) - + - + Unconfirmed (%1 of %2 confirmations) Nepotvrdené (%1 z %2 potvrdení) - + Confirmed (%1 confirmations) Potvrdené (%1 potvrdení) Mined balance will be available in %n more blocks - + + + @@ -1623,345 +1650,345 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoin verzia - + Usage: Použitie: - + Send command to -server or bitcoind Odoslať príkaz -server alebo bitcoind - + List commands Zoznam príkazov - + Get help for a command Dostať pomoc pre príkaz - + Options: Možnosti: - + Specify configuration file (default: bitcoin.conf) Určiť súbor s nastaveniami (predvolené: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Určiť súbor pid (predvolené: bitcoind.pid) - + Generate coins Počítaj bitcoins - + Don't generate coins Nepočítaj bitcoins - + Start minimized Spustiť minimalizované - + Specify data directory Určiť priečinok s dátami - + Specify connection timeout (in milliseconds) Určiť aut spojenia (v milisekundách) - + Connect through socks4 proxy Pripojenie cez socks4 proxy - + Allow DNS lookups for addnode and connect Povoliť vyhľadávanie DNS pre pridanie nódy a spojenie - + Listen for connections on <port> (default: 8333 or testnet: 18333) Načúvať spojeniam na <port> (prednastavené: 8333 alebo testovacia sieť: 18333) - + Maintain at most <n> connections to peers (default: 125) Udržiavať maximálne <n> spojení (predvolené: 125) - + Add a node to connect to Pridať nódu a pripojiť sa - + Connect only to the specified node Pripojiť sa len k určenej nóde - + Don't accept connections from outside Neprijímať spojenia z vonku - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port Neskúsiť použiť UPnP pre mapovanie počúvajúceho portu - + Attempt to use UPnP to map the listening port Skúsiť použiť UPnP pre mapovanie počúvajúceho portu - + Fee per kB to add to transactions you send Poplatok za kB ktorý treba pridať k odoslanej transakcii - + 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 Produkovať extra ladiace informácie - + Prepend debug output with timestamp Pridať na začiatok ladiaceho výstupu časový údaj - + 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 Odoslať trace/debug informácie do ladiaceho programu - + 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: 8332) Počúvať JSON-RPC spojeniam na <port> (predvolené: 8332) - + 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) - + Set key pool size to <n> (default: 100) Nastaviť zásobu adries na <n> (predvolené: 100) - + Rescan the block chain for missing wallet transactions - + - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL možnosť: (pozrite Bitcoin Wiki pre návod na nastavenie SSL) - + 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) Prijateľné šifry (predvolené: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Táto pomocná správa - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + Loading addresses... Načítavanie adries... - + Error loading addr.dat Chyba načítania addr.dat - + Error loading blkindex.dat Chyba načítania 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 Bitcoin Chyba načítania wallet.dat: Peňaženka vyžaduje novšiu verziu Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete Bolo potrebné prepísať peňaženku: dokončite reštartovaním Bitcoin - + Error loading wallet.dat Chyba načítania wallet.dat - + Loading block index... Načítavanie zoznamu blokov... - + Loading wallet... Načítavam peňaženku... - + Rescanning... - + - + Done loading Dokončené načítavanie - + Invalid -proxy address Neplatná adresa proxy - + Invalid amount for -paytxfee=<amount> Neplatná suma pre -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. Varovanie: -paytxfee je nastavené veľmi vysoko. Toto sú transakčné poplatky ktoré zaplatíte ak odošlete transakciu. - + Error: CreateThread(StartNode) failed Chyba: zlyhalo CreateThread(StartNode) - + Warning: Disk space is low Varovanie: Málo voľného miesta na disku - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_sr.ts b/src/qt/locale/bitcoin_sr.ts index 59c0c99190..ed22deb319 100644 --- a/src/qt/locale/bitcoin_sr.ts +++ b/src/qt/locale/bitcoin_sr.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -64,17 +66,17 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + @@ -89,22 +91,22 @@ This product includes software developed by the OpenSSL Project for use in the O Copy address - + Copy label - + Edit - + Delete - + @@ -130,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Етикета - + Address Адреса - + (no label) (без етикете) @@ -234,13 +236,13 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + Warning: The Caps Lock key is on. - + @@ -287,314 +289,339 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet Bitcoin новчаник - - + + Synchronizing with network... Синхронизација са мрежом у току... - + Block chain synchronization in progress Синхронизовање ланца блоква је у току - + &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 &Слање новца - + Send coins to a bitcoin address Пошаљите новац на bitcoin адресу - + Sign &message - + - + Prove you control an address - + - + E&xit - + - + Quit application Напустите програм - + &About %1 - + - + Show information about Bitcoin Прегледајте информације о Bitcoin-у - + About &Qt - + - + Show information about Qt - + - + &Options... П&оставке... - + Modify configuration options for bitcoin Изаберите могућности bitcoin-а - + Open &Bitcoin Отвори &Bitcoin - + Show the Bitcoin window Приказује прозор Bitcoin-а - + &Export... &Извоз... - + Export the data in the current tab to a file - + - + &Encrypt Wallet &Шифровање новчаника - + Encrypt or decrypt wallet Шифровање и дешифровање новчаника - + &Backup Wallet - + &Backup новчаника - + Backup wallet to another location - + - + &Change Passphrase Промени &лозинку - + Change the passphrase used for wallet encryption Мењање лозинке којом се шифрује новчаник - + &File &Фајл - + &Settings &Подешавања - + &Help П&омоћ - + Tabs toolbar Трака са картицама - + Actions toolbar Трака са алаткама - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n активна веза са Bitcoin мрежом%n активне везе са Bitcoin мрежом%n активних веза са Bitcoin мрежом + + %n активна веза са Bitcoin мрежом + %n активне везе са Bitcoin мрежом + %n активних веза са Bitcoin мрежом + - + Downloaded %1 of %2 blocks of transaction history. Преузето је %1 од укупно %2 блокова историјата трансакција. - + Downloaded %1 blocks of transaction history. Преузето је %1 блокова историјата трансакција. - + %n second(s) ago - пре %n секундпре %n секундепре %n секунди + + пре %n секунд + пре %n секунде + пре %n секунди + - + %n minute(s) ago - пре %n минутпре %n минутапре %n минута + + пре %n минут + пре %n минута + пре %n минута + - + %n hour(s) ago - пре %n сатпре %n сатапре %n сати + + пре %n сат + пре %n сата + пре %n сати + - + %n day(s) ago - пре %n данпре %n данапре %n дана + + пре %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, која ће отићи чвору који прерађује трансакцију и помаже издржавању целе мреже. Да ли желите да дате напојницу? - + Sending... Слање... - + Sent transaction Послана трансакција - + Incoming transaction Придошла трансакција - + Date: %1 Amount: %2 Type: %3 Address: %4 - + - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Новчаник јс <b>шифрован</b> и тренутно <b>откључан</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Новчаник јс <b>шифрован</b> и тренутно <b>закључан</b> - + Backup Wallet - + - + Wallet Data (*.dat) - + - + Backup Failed - + - + There was an error trying to save the wallet data to the new location. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -607,12 +634,17 @@ Address: %4 Choose the default subdivision unit to show in the interface, and when sending coins - + - Display addresses in transaction list - + &Display addresses in transaction list + + + + + Whether to show Bitcoin addresses in the transaction list + @@ -620,57 +652,57 @@ Address: %4 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 bitcoin address. - + @@ -680,7 +712,7 @@ Address: %4 New key generation failed. - + @@ -688,87 +720,87 @@ Address: %4 &Start Bitcoin on window system startup - + Automatically start Bitcoin after the computer is turned on - + &Minimize to the tray instead of the taskbar - + Show only a tray icon after minimizing the window - + Map port using &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - + M&inimize on close - + 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. - + &Connect through SOCKS4 proxy: - + Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &Port: - + Port of the proxy (e.g. 1234) - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + Pay transaction &fee - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -776,62 +808,62 @@ Address: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Choose adress from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - Копира изабрану адресу на системски клипборд + Copy the current signature to the system clipboard + @@ -843,22 +875,22 @@ Address: %4 Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + @@ -866,17 +898,17 @@ Address: %4 Main - + Display - + Options - + @@ -884,65 +916,57 @@ Address: %4 Form - + Balance: - + 123.456 BTC - + Number of transactions: - + 0 - + Unconfirmed: - + 0 BTC - + - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Новчаник</span></p></body></html> + + Wallet + Новчаник - + <b>Recent transactions</b> - + Your current balance - + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + @@ -960,47 +984,52 @@ p, li { white-space: pre-wrap; } QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: - + - + &Save As... - + + + + + Error encoding URI into QR Code. + - + Save Image... - + - + PNG Images (*.png) - + @@ -1015,42 +1044,42 @@ p, li { white-space: pre-wrap; } Send Coins - + Send to multiple recipients at once - + &Add recipient... - + Remove all transaction fields - + Clear all - + Balance: - + 123.456 BTC - + Confirm the send action - + @@ -1060,12 +1089,12 @@ p, li { white-space: pre-wrap; } <b>%1</b> to %2 (%3) - + Confirm send coins - + @@ -1075,42 +1104,42 @@ p, li { white-space: pre-wrap; } and - + The recepient address is not valid, please recheck. - + The amount to pay must be larger than 0. - + Amount exceeds your balance - + Total exceeds your balance when the %1 transaction fee is included - + Duplicate address found, can only send to each address once in one 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. - + @@ -1118,63 +1147,63 @@ p, li { white-space: pre-wrap; } 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + @@ -1182,85 +1211,85 @@ p, li { white-space: pre-wrap; } Open for %1 blocks - + Open until %1 - + %1/offline? - + %1/unconfirmed - + %1 confirmations - + <b>Status:</b> - + , has not been successfully broadcast yet - + , broadcast through %1 node - + , broadcast through %1 nodes - + <b>Date:</b> - + <b>Source:</b> Generated<br> - + <b>From:</b> - + unknown - + <b>To:</b> - + (yours, label: - + (yours) - + @@ -1268,54 +1297,54 @@ p, li { white-space: pre-wrap; } <b>Credit:</b> - + (%1 matures in %2 more blocks) - + (not accepted) - + <b>Debit:</b> - + <b>Transaction fee:</b> - + <b>Net amount:</b> - + Message: - + Comment: - + Transaction ID: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + @@ -1323,130 +1352,134 @@ p, li { white-space: pre-wrap; } Transaction details - + This pane shows a detailed description of the transaction - + TransactionTableModel - + Date - + - + Type - + - + Address Адреса - + Amount - + - + Open for %n block(s) - + + + - + Open until %1 - + - + Offline (%1 confirmations) - + - + Unconfirmed (%1 of %2 confirmations) - + - + Confirmed (%1 confirmations) - + Mined balance will be available in %n more blocks - + + + 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. - + @@ -1455,102 +1488,102 @@ p, li { white-space: pre-wrap; } 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 - + Edit label - + Show details... - + Export Transaction Data - + @@ -1560,17 +1593,17 @@ p, li { white-space: pre-wrap; } Confirmed - + Date - + Type - + @@ -1585,12 +1618,12 @@ p, li { white-space: pre-wrap; } Amount - + ID - + @@ -1605,12 +1638,12 @@ p, li { white-space: pre-wrap; } Range: - + to - + @@ -1624,345 +1657,345 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version - + - + Usage: - + - + Send command to -server or bitcoind - + - + List commands - + - + Get help for a command - + - + Options: - + - + Specify configuration file (default: bitcoin.conf) - + - + Specify pid file (default: bitcoind.pid) - + - + Generate coins - + - + Don't generate coins - + - + Start minimized - + - + Specify data directory - + - + Specify connection timeout (in milliseconds) - + - + Connect through socks4 proxy - + - + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - + Add a node to connect to - + - + Connect only to the specified node - + - + Don't accept connections from outside - + - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port - + - + Attempt to use UPnP to map the listening port - + - + Fee per kB to add to transactions you send - + - + Accept command line and JSON-RPC commands - + - + Run in the background as a daemon and accept commands - + - + Use the test network - + - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections - + - + Password for JSON-RPC connections - + - + Listen for JSON-RPC connections on <port> (default: 8332) - + - + Allow JSON-RPC connections from specified IP address - + - + Send commands to node running on <ip> (default: 127.0.0.1) - + - + Set key pool size to <n> (default: 100) - + - + Rescan the block chain for missing wallet transactions - + - + SSL options: (see the Bitcoin 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) - + - + This help message - + - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + Loading addresses... - + - + Error loading addr.dat - + - + Error loading blkindex.dat - + - + Error loading wallet.dat: Wallet corrupted - + - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + - + Wallet needed to be rewritten: restart Bitcoin to complete - + - + Error loading wallet.dat - + - + Loading block index... - + - + Loading wallet... Новчаник се учитава... - + Rescanning... - + - + Done loading - + - + Invalid -proxy address - + - + Invalid amount for -paytxfee=<amount> - + - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + - + Error: CreateThread(StartNode) failed - + - + Warning: Disk space is low - + - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + - + beta - + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_sv.ts b/src/qt/locale/bitcoin_sv.ts index 7e5d127179..2a0b50e5da 100644 --- a/src/qt/locale/bitcoin_sv.ts +++ b/src/qt/locale/bitcoin_sv.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -59,17 +61,17 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - &amp; Kopiera till Urklipp + & Kopiera till Urklipp Show &QR Code - + Sign a message to prove you own this address - + @@ -84,7 +86,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Delete - &amp; Radera + & Radera @@ -130,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Etikett - + Address Adress - + (no label) (Ingen etikett) @@ -286,258 +288,273 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet Bitcoin-plånbok - - + + Synchronizing with network... Synkroniserar med nätverk ... - + Block chain synchronization in progress Synkronisering av blockkedja pågår - + &Overview - &amp; Översikt + & Översikt - + Show general overview of wallet Visa översiktsvy av plånbok - + &Transactions &Transaktioner - + Browse transaction history Bläddra i transaktionshistorik - + &Address Book &Adressbok - + Edit the list of stored addresses and labels Redigera listan med lagrade adresser och etiketter - + &Receive coins - &amp; Ta emot bitcoins + & Ta emot bitcoins - + Show the list of addresses for receiving payments Visa listan med adresser för att ta emot betalningar - + &Send coins - &amp; Skicka bitcoins + & Skicka bitcoins - + Send coins to a bitcoin address Skicka bitcoins till en bitcoinadress - + Sign &message Signera &meddelande - + Prove you control an address - + - + E&xit &Avsluta - + Quit application Avsluta programmet - + &About %1 &Om %1 - + Show information about Bitcoin Visa information om Bitcoin - + About &Qt Om &Qt - + Show information about Qt Visa information om Qt - + &Options... - &amp; Alternativ ... + & Alternativ ... - + Modify configuration options for bitcoin Ändra konfigurationsalternativ för bitcoin - + Open &Bitcoin - Öppna &amp;Bitcoin + Öppna &Bitcoin - + Show the Bitcoin window Visa Bitcoin-fönster - + &Export... - &amp;Exportera ... + &Exportera ... - + Export the data in the current tab to a file - + - + &Encrypt Wallet - &amp;Kryptera plånbok + &Kryptera plånbok - + Encrypt or decrypt wallet Kryptera eller dekryptera plånbok - + &Backup Wallet - + &Backup plånbok - + Backup wallet to another location - + - + &Change Passphrase - &amp;Byt lösenfras + &Byt lösenfras - + Change the passphrase used for wallet encryption Byt lösenfras för kryptering av plånbok - + &File &Arkiv - + &Settings &Inställningar - + &Help &Hjälp - + Tabs toolbar Verktygsfält för Tabbar - + Actions toolbar Verktygsfältet för Handlingar - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n aktiv anslutning till Bitcoin-nätverket.%n aktiva anslutningar till Bitcoin-nätverket. + + %n aktiv anslutning till Bitcoin-nätverket. + %n aktiva anslutningar till Bitcoin-nätverket. + - + Downloaded %1 of %2 blocks of transaction history. Laddat ner %1 av %2 block från transaktionshistoriken. - + Downloaded %1 blocks of transaction history. Laddat ner %1 block från transaktionshistoriken. - + %n second(s) ago - %n sekund sedan%n sekunder sedan + + %n sekund sedan + %n sekunder sedan + - + %n minute(s) ago - %n minut sedan%n minuter sedan + + %n minut sedan + %n minuter sedan + - + %n hour(s) ago - %n timme sedan%n timmar sedan + + %n timme sedan + %n timmar sedan + - + %n day(s) ago - %n dag sedan%n dagar sedan + + %n dag sedan + %n dagar sedan + - + Up to date Uppdaterad - + Catching up... Hämtar senaste - + Last received block was generated %1. Senast mottagna blocked 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? Transaktionen överskrider storleksgränsen. @@ -546,22 +563,22 @@ Du kan dock fortfarande skicka den mot en kostnad av %1. Denna avgift går till Vill du betala denna avgift? - + Sending... Skickar... - + Sent transaction Transaktion skickad - + Incoming transaction Inkommande transaktion - + Date: %1 Amount: %2 Type: %3 @@ -574,34 +591,39 @@ Adress:%4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Denna plånbok är <b>krypterad</b> och för närvarande <b>olåst</b>. - + Wallet is <b>encrypted</b> and currently <b>locked</b> Denna plånbok är <b>krypterad</b> och för närvarande <b>låst</b>. - + Backup Wallet - + - + Wallet Data (*.dat) - + - + Backup Failed - + - + There was an error trying to save the wallet data to the new location. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -618,8 +640,13 @@ Adress:%4 - Display addresses in transaction list - Visa adresser i transaktionslistan + &Display addresses in transaction list + &Visa adresser i transaktionslistan + + + + Whether to show Bitcoin addresses in the transaction list + @@ -765,7 +792,7 @@ Adress:%4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -775,7 +802,7 @@ Adress:%4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + @@ -783,17 +810,17 @@ Adress:%4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adressen som betalningen skall skickas till (t.ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -818,17 +845,17 @@ Adress:%4 Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + @@ -837,35 +864,35 @@ Adress:%4 - Copy the currently selected address to the system clipboard - Kopiera den markerade adressen till systemets Urklipp + Copy the current signature to the system clipboard + &Copy to Clipboard - &amp; Kopiera till Urklipp + & Kopiera till Urklipp Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + @@ -924,20 +951,12 @@ Adress:%4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + - + <b>Recent transactions</b> <b>Nyligen genomförda transaktioner</b> @@ -967,47 +986,52 @@ p, li { white-space: pre-wrap; } QR Code - + - + Request Payment - + - + Amount: Belopp: - + BTC BTC - + Label: Etikett: - + Message: Meddelande: - + &Save As... &Spara som... - + + Error encoding URI into QR Code. + + + + Save Image... - + - + PNG Images (*.png) - + @@ -1037,7 +1061,7 @@ p, li { white-space: pre-wrap; } Remove all transaction fields - + @@ -1280,7 +1304,7 @@ p, li { white-space: pre-wrap; } (%1 matures in %2 more blocks) - + @@ -1317,7 +1341,7 @@ p, li { white-space: pre-wrap; } Transaction ID: - + @@ -1341,54 +1365,58 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Datum - + Type Typ - + Address Adress - + Amount Mängd - + Open for %n block(s) - + + + - + Open until %1 Öppet till %1 - + Offline (%1 confirmations) Offline (%1 bekräftelser) - + Unconfirmed (%1 of %2 confirmations) Obekräftad (%1 av %2 bekräftelser) - + Confirmed (%1 confirmations) Bekräftad (%1 bekräftelser) Mined balance will be available in %n more blocks - + + + @@ -1408,7 +1436,7 @@ p, li { white-space: pre-wrap; } Received from - + @@ -1453,7 +1481,7 @@ p, li { white-space: pre-wrap; } Amount removed from or added to balance. - + @@ -1542,7 +1570,7 @@ p, li { white-space: pre-wrap; } Copy amount - + @@ -1631,345 +1659,345 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoin version - + Usage: Användning: - + Send command to -server or bitcoind Skicka kommando till -server eller bitcoind - + List commands Lista kommandon - + Get help for a command Få hjälp med ett kommando - + Options: Inställningar: - + Specify configuration file (default: bitcoin.conf) Ange konfigurationsfil (standard:bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Ange pid fil (standard:bitcoind.pid) - + Generate coins Generera mynt - + Don't generate coins Generera ej mynt - + Start minimized Starta som minimerad - + Specify data directory Ange katalog för data - + Specify connection timeout (in milliseconds) Ange timeout för uppkoppling (i millisekunder) - + Connect through socks4 proxy Koppla upp genom socks4 proxy - + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - + Add a node to connect to Lägg till en nod att koppla upp mot - + Connect only to the specified node Koppla enbart upp till den specifierade noden - + Don't accept connections from outside Acceptera ej anslutningar utifrån - + Don't bootstrap list of peers using DNS - + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - + Don't attempt to use UPnP to map the listening port - + - + Attempt to use UPnP to map the listening port - + - + Fee per kB to add to transactions you send - + - + Accept command line and JSON-RPC commands - + - + Run in the background as a daemon and accept commands - + - + Use the test network Använd test nätverket - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections - + - + Password for JSON-RPC connections - + - + Listen for JSON-RPC connections on <port> (default: 8332) - + - + Allow JSON-RPC connections from specified IP address - + - + Send commands to node running on <ip> (default: 127.0.0.1) - + - + Set key pool size to <n> (default: 100) - + - + Rescan the block chain for missing wallet transactions Sök i block-kedjan efter saknade wallet transaktioner - + SSL options: (see the Bitcoin 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) - + - + This help message Det här hjälp medelandet - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + Loading addresses... Laddar adresser... - + Error loading addr.dat - + - + Error loading blkindex.dat - + - + Error loading wallet.dat: Wallet corrupted Fel vid inläsningen av wallet.dat: Kontofilen verkar skadad - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Fel vid inläsningen av wallet.dat: Kontofilen kräver en senare version av Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete Kontot behöver sparas om: Starta om Programmet - + Error loading wallet.dat Fel vid inläsning av kontofilen wallet.dat - + Loading block index... Laddar block index... - + Loading wallet... Laddar konto... - + Rescanning... Söker igen... - + Done loading Klar med laddning - + Invalid -proxy address Ogiltig proxyadress - + Invalid amount for -paytxfee=<amount> Ogiltigt belopp för -paytxfee=<belopp> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + - + Error: CreateThread(StartNode) failed - + - + Warning: Disk space is low - + - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_tr.ts b/src/qt/locale/bitcoin_tr.ts index 89e2102a25..14747d5e06 100644 --- a/src/qt/locale/bitcoin_tr.ts +++ b/src/qt/locale/bitcoin_tr.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -136,17 +138,17 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) AddressTableModel - + Label Etiket - + Address Adres - + (no label) (boş etiket) @@ -293,278 +295,288 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? BitcoinGUI - + Bitcoin Wallet Bitcoin cüzdanı - - + + Synchronizing with network... Şebeke ile senkronizasyon... - + Block chain synchronization in progress Blok zinciri senkronizasyonu sürüyor - + &Overview &Genel bakış - + Show general overview of wallet Cüzdana genel bakışı gösterir - + &Transactions &Muameleler - + Browse transaction history Muamele tarihçesini tara - + &Address Book &Adres defteri - + Edit the list of stored addresses and labels Saklanan adres ve etiket listesini düzenler - + &Receive coins Para &al - + Show the list of addresses for receiving payments Ödeme alma adreslerinin listesini gösterir - + &Send coins Para &yolla - + Send coins to a bitcoin address Bir bitcoin adresine para (bitcoin) yollar - + Sign &message &Mesaj imzala - + Prove you control an address Bu adresin kontrolünüz altında olduğunu ispatlayın - + E&xit &Çık - + Quit application Uygulamadan çıkar - + &About %1 %1 &hakkında - + Show information about Bitcoin Bitcoin hakkında bilgi gösterir - + About &Qt &Qt hakkında - + Show information about Qt Qt hakkında bilgi görüntüler - + &Options... &Seçenekler... - + Modify configuration options for bitcoin Bitcoin seçeneklerinin yapılandırmasını değiştirir - + Open &Bitcoin &Bitcoin'i aç - + Show the Bitcoin window Bitcoin penceresini gösterir - + &Export... &Dışa aktar... - + Export the data in the current tab to a file Güncel sekmedeki verileri bir dosyaya aktar - + &Encrypt Wallet Cüzdanı &şifrele - + Encrypt or decrypt wallet Cüzdanı şifreler ya da şifreyi açar - + &Backup Wallet Cüzdanı &yedekle - + Backup wallet to another location Cüzdanı diğer bir konumda yedekle - + &Change Passphrase &Parolayı değiştir - + Change the passphrase used for wallet encryption Cüzdan şifrelemesi için kullanılan parolayı değiştirir - + &File &Dosya - + &Settings &Ayarlar - + &Help &Yardım - + Tabs toolbar Sekme araç çubuğu - + Actions toolbar Faaliyet araç çubuğu - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - Bitcoin şebekesine %n etkin bağlantı + + Bitcoin şebekesine %n etkin bağlantı + - + Downloaded %1 of %2 blocks of transaction history. Muamele tarihçesinin %2 sayıda blokundan %1 adet blok indirildi. - + Downloaded %1 blocks of transaction history. Muamele tarihçesinin %1 adet bloku indirildi. - + %n second(s) ago - %n saniye önce + + %n saniye önce + - + %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 şu vakit oluşturulmuştu: %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 muamele boyut sınırlarını aşmıştır. Gene de %1 ücret ödeyerek gönderebilirsiniz, ki bu ücret muamelenizi işleyen ve şebekeye yardım eden düğümlere ödenecektir. Ücreti ödemek istiyor musunuz? - + Sending... Yollanıyor... - + Sent transaction Muamele yollandı - + Incoming transaction Gelen muamele - + Date: %1 Amount: %2 Type: %3 @@ -577,35 +589,40 @@ Adres: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilidi açılmıştı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 verileri (*.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 verilerinin başka bir konumda kaydedilmesi sırasında bir hata meydana geldi. + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -621,8 +638,13 @@ Adres: %4 - Display addresses in transaction list - Muamele listesinde adresleri göster + &Display addresses in transaction list + &Muamele listesinde adresleri göster + + + + Whether to show Bitcoin addresses in the transaction list + @@ -795,8 +817,8 @@ Adres: %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Ödemenin gönderileceği adres (mesela 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -840,8 +862,8 @@ Adres: %4 - Copy the currently selected address to the system clipboard - Şu anda seçili olan adresi panoya kopyalar + Copy the current signature to the system clipboard + @@ -927,20 +949,12 @@ Adres: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Cüzdan</span></p></body></html> + + Wallet + Cüzdan - + <b>Recent transactions</b> <b>Son muameleler</b> @@ -973,42 +987,47 @@ p, li { white-space: pre-wrap; } QR Kod - + Request Payment Ödeme isteği - + Amount: Miktar: - + BTC BTC - + Label: Etiket: - + Message: Mesaj: - + &Save As... &Farklı kaydet... - + + Error encoding URI into QR Code. + + + + Save Image... Resmi kaydet... - + PNG Images (*.png) PNG resimleri (*.png) @@ -1344,54 +1363,58 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Tarih - + Type Tür - + Address Adres - + Amount Miktar - + Open for %n block(s) - %n blok için açık + + %n blok için açık + - + Open until %1 %1 değerine dek açık - + Offline (%1 confirmations) Çevrimdışı (%1 doğrulama) - + Unconfirmed (%1 of %2 confirmations) Doğrulanmadı (%1 (toplam %2 üzerinden) doğrulama) - + Confirmed (%1 confirmations) Doğrulandı (%1 doğrulama) Mined balance will be available in %n more blocks - Madenden çıkarılan bakiye %n ek blok sonrasında kullanılabilecektir + + Madenden çıkarılan bakiye %n ek blok sonrasında kullanılabilecektir + @@ -1634,346 +1657,346 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoin sürümü - + Usage: Kullanım: - + Send command to -server or bitcoind -server ya da bitcoind'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: bitcoin.conf) Yapılandırma dosyası belirt (varsayılan: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Pid dosyası belirt (varsayılan: bitcoind.pid) - + Generate coins Madenî para (coin) oluştur - + Don't generate coins Para oluşturma - + Start minimized Küçültülmüş olarak başla - + Specify data directory Veri dizinini belirt - + Specify connection timeout (in milliseconds) Bağlantı zaman aşım süresini milisaniye olarak belirt - + Connect through socks4 proxy Socks4 vekil sunucusu vasıtasıyla bağlan - + Allow DNS lookups for addnode and connect Düğüm ekleme ve bağlantı için DNS aramalarına izin ver - + Listen for connections on <port> (default: 8333 or testnet: 18333) Bağlantılar için dinlenecek <port> (varsayılan: 8333 ya da testnet: 18333) - + 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 Bağlanılacak düğüm ekle - + Connect only to the specified node Sadece belirtilen düğüme bağlan - + Don't accept connections from outside Dışarıdan bağlantıları reddet - + Don't bootstrap list of peers using DNS Eş listesini DNS kullanarak başlatma - + 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: 10000) Her bağlantı için alım tamponu, <n>*1000 bayt (varsayılan: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Her bağlantı için yollama tamponu, <n>*1000 bayt (varsayılan: 10000) - + Don't attempt to use UPnP to map the listening port Dinlenilecek portu haritalamak için UPnP kullanma - + Attempt to use UPnP to map the listening port Dinlenilecek portu haritalamak için UPnP kullan - + Fee per kB to add to transactions you send Yolladığınız muameleler için eklenecek kB başı ücret - + 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 İlâve hata ayıklama verisi çıkar - + Prepend debug output with timestamp Hata ayıklama çıktısına tarih ön ekleri ilâve et - + 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 -debugger- trace/hata ayıklama verileri 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: 8332) JSON-RPC bağlantıları için dinlenecek <port> (varsayılan: 8332) - + 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 - + 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 - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL seçenekleri: (SSL kurulum bilgisi için Bitcoin vikisine bakınız) - + 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) Kabul edilebilir şifreler (varsayılan: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Bu yardım mesajı - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. %s veri dizininde kilit elde edilemedi. Bitcoin muhtemelen hâlihazırda çalışmaktadır. - + Loading addresses... Adresler yükleniyor... - + Error loading addr.dat addr.dat dosyasının yüklenmesinde hata oluştu - + Error loading blkindex.dat blkindex.dat dosyasının yüklenmesinde hata oluştu - + Error loading wallet.dat: Wallet corrupted wallet.dat dosyasının yüklenmesinde hata oluştu: bozuk cüzdan - + Error loading wallet.dat: Wallet requires newer version of Bitcoin wallet.dat dosyasının yüklenmesinde hata oluştu: cüzdanın daha yeni bir Bitcoin sürümüne ihtiyacı var - + Wallet needed to be rewritten: restart Bitcoin to complete Cüzdanın tekrar yazılması gerekiyordu: işlemi tamamlamak için Bitcoin'i yeniden başlatınız - + Error loading wallet.dat wallet.dat dosyasının yüklenmesinde hata oluştu - + Loading block index... Blok indeksi yükleniyor... - + Loading wallet... Cüzdan yükleniyor... - + Rescanning... Yeniden tarama... - + Done loading Yükleme tamamlandı - + Invalid -proxy address Geçersiz -proxy adresi - + Invalid amount for -paytxfee=<amount> -paytxfee=<miktar> için geçersiz miktar - + 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. - + Error: CreateThread(StartNode) failed Hata: CreateThread(StartNode) başarısız oldu - + Warning: Disk space is low Uyarı: Disk alanı düşük - + Unable to bind to port %d on this computer. Bitcoin is probably already running. %d sayılı porta bu bilgisayarda bağlanılamadı. Bitcoin muhtemelen hâlihazırda çalışmaktadır. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Uyarı: Lütfen bilgisayarınızın tarih ve saatinin doğru olup olmadığını kontrol ediniz. Saatiniz doğru değilse Bitcoin gerektiği gibi çalışamaz. - + beta beta - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts index 006c2259b2..d27087c3aa 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -67,11 +69,21 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &Копіювати + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Видалити виділену адресу зі списку. Лише адреси з адресної книги можуть бути видалені. + Show &QR Code Показати QR-&Код + + + &Delete + &Видалити + Sign a message to prove you own this address @@ -82,16 +94,6 @@ This product includes software developed by the OpenSSL Project for use in the O &Sign Message &Підписати повідомлення - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Видалити виділену адресу зі списку. Лише адреси з адресної книги можуть бути видалені. - - - - &Delete - &Видалити - Copy address @@ -136,17 +138,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Назва - + Address Адреса - + (no label) (немає назви) @@ -237,11 +239,6 @@ Are you sure you wish to encrypt your wallet? Wallet encrypted Гаманець зашифровано - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. - @@ -261,6 +258,11 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Виникла помилка під час шифрування гаманця. Ваш гаманець не було зашифровано. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. + @@ -293,278 +295,298 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet Гаманець - - + + Synchronizing with network... Синхронізація з мережею... - + Block chain synchronization in progress Відбувається синхронізація ланцюжка блоків... - + &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 В&ідправити - + Send coins to a bitcoin address Відправити монети на вказану адресу - + Sign &message &Підписати повідомлення - + Prove you control an address Доведіть, що це ваша адреса - + E&xit &Вихід - + Quit application Вийти - + &About %1 П&ро %1 - + Show information about Bitcoin Показати інформацію про Bitcoin - - About &Qt - &Про Qt - - - - Show information about Qt - Показати інформацію про Qt - - - + &Options... &Параметри... - + Modify configuration options for bitcoin Редагувати параметри - + Open &Bitcoin Показати &гаманець - + Show the Bitcoin window Показати вікно гаманця - + &Export... &Експорт... - - Export the data in the current tab to a file - - - - + &Encrypt Wallet &Шифрування гаманця - + Encrypt or decrypt wallet Зашифрувати чи розшифрувати гаманець - - &Backup Wallet - + + &Change Passphrase + Змінити парол&ь - - Backup wallet to another location - + + Change the passphrase used for wallet encryption + Змінити пароль, який використовується для шифрування гаманця - - &Change Passphrase - Змінити парол&ь + + About &Qt + &Про Qt + + + + Show information about Qt + Показати інформацію про Qt + + + + Export the data in the current tab to a file + - Change the passphrase used for wallet encryption - Змінити пароль, який використовується для шифрування гаманця + &Backup Wallet + &Backup гаманця - + + Backup wallet to another location + + + + &File &Файл - + &Settings &Налаштування - + &Help &Довідка - + Tabs toolbar Панель вкладок - + Actions toolbar Панель дій - + [testnet] [тестова мережа] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n активне з’єднання з мережею%n активні з’єднання з мережею%n активних з’єднань з мережею + + %n активне з’єднання з мережею + %n активні з’єднання з мережею + %n активних з’єднань з мережею + - + Downloaded %1 of %2 blocks of transaction history. Завантажено %1 з %2 блоків історії переказів. - + Downloaded %1 blocks of transaction history. Завантажено %1 блоків історії транзакцій. - + %n second(s) ago - %n секунду тому%n секунди тому%n секунд тому + + %n секунду тому + %n секунди тому + %n секунд тому + - + %n minute(s) ago - %n хвилину тому%n хвилини тому%n хвилин тому + + %n хвилину тому + %n хвилини тому + %n хвилин тому + - + %n hour(s) ago - %n годину тому%n години тому%n годин тому + + %n годину тому + %n години тому + %n годин тому + - + %n day(s) ago - %n день тому%n дня тому%n днів тому + + %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, яка відправиться тим вузлам що оброблять ваш переказ, та допоможе підтримати мережу. Ви хочете додати комісію? - + Sending... Відправлення... - + Sent transaction Надіслані перекази - + Incoming transaction Отримані перекази - + Date: %1 Amount: %2 Type: %3 @@ -577,34 +599,39 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> <b>Зашифрований</b> гаманець <b>розблоковано</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> <b>Зашифрований</b> гаманець <b>заблоковано</b> - + Backup Wallet - + - + Wallet Data (*.dat) - + - + Backup Failed - + - + There was an error trying to save the wallet data to the new location. - + + + + + A fatal error occured. Bitcoin can no longer continue safely and will quit. + @@ -621,8 +648,13 @@ Address: %4 - Display addresses in transaction list - Відображати адресу в списку переказів + &Display addresses in transaction list + &Відображати адресу в списку переказів + + + + Whether to show Bitcoin addresses in the transaction list + @@ -791,12 +823,12 @@ Address: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Адреса для отримувача платежу (наприклад, 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -840,8 +872,8 @@ Address: %4 - Copy the currently selected address to the system clipboard - Копіювати виділену адресу в буфер обміну + Copy the current signature to the system clipboard + @@ -927,20 +959,12 @@ Address: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Гаманець</span></p></body></html> + + Wallet + Гаманець - + <b>Recent transactions</b> <b>Недавні перекази</b> @@ -973,44 +997,49 @@ p, li { white-space: pre-wrap; } QR-Код - + Request Payment Запросити Платіж - + Amount: Кількість: - + BTC BTC - + Label: Мітка: - + Message: Повідомлення: - + &Save As... &Зберегти як... - + + Error encoding URI into QR Code. + + + + Save Image... - + - + PNG Images (*.png) - + @@ -1037,16 +1066,16 @@ p, li { white-space: pre-wrap; } &Add recipient... Дод&ати одержувача... - - - Remove all transaction fields - Видалити всі поля транзакції - Clear all Очистити все + + + Remove all transaction fields + Видалити всі поля транзакції + Balance: @@ -1344,54 +1373,62 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Дата - + Type Тип - + Address Адреса - + Amount Кількість - + Open for %n block(s) - Відкрити для %n блокуВідкрити для %n блоківВідкрити для %n блоків + + Відкрити для %n блоку + Відкрити для %n блоків + Відкрити для %n блоків + - + Open until %1 Відкрити до %1 - + Offline (%1 confirmations) Поза інтернетом (%1 підтверджень) - + Unconfirmed (%1 of %2 confirmations) Непідтверджено (%1 із %2 підтверджень) - + Confirmed (%1 confirmations) Підтверджено (%1 підтверджень) Mined balance will be available in %n more blocks - Добутими монетами можна буде скористатись через %n блокДобутими монетами можна буде скористатись через %n блокиДобутими монетами можна буде скористатись через %n блоків + + Добутими монетами можна буде скористатись через %n блок + Добутими монетами можна буде скористатись через %n блоки + Добутими монетами можна буде скористатись через %n блоків + @@ -1634,245 +1671,245 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Версія - + Usage: Вкористання: - + Send command to -server or bitcoind Відправити команду серверу -server чи демону - + List commands Список команд - + Get help for a command Отримати довідку по команді - + Options: Параметри: - + Specify configuration file (default: bitcoin.conf) Вкажіть файл конфігурації (за промовчуванням: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Вкажіть pid-файл (за промовчуванням: bitcoind.pid) - + Generate coins Генерувати монети - + Don't generate coins Не генерувати монети - + Start minimized Запускати згорнутим - + Specify data directory Вкажіть робочий каталог - + Specify connection timeout (in milliseconds) Вкажіть таймаут з’єднання (в мілісекундах) - + Connect through socks4 proxy Підключитись через SOCKS4-проксі - + Allow DNS lookups for addnode and connect Дозволити пошук в DNS для команд «addnode» і «connect» - + Listen for connections on <port> (default: 8333 or testnet: 18333) Чекати на з'єднання на порту (по замовченню 8333 або тестова мережа 18333) - + Maintain at most <n> connections to peers (default: 125) Підтримувати не більше <n> зв'язків з колегами (за замовчуванням: 125) - + Add a node to connect to Додати вузол для підключення - + Connect only to the specified node Підключитись лише до вказаного вузла - + Don't accept connections from outside Не приймати підключення ззовні - + Don't bootstrap list of peers using DNS Не завантажувати список пірів за допомогою DNS - + 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: 10000) Максимальоий буфер , <n> * 1000 байт (за умовчанням: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Максимальній розмір виіхідного буферу на одне з'єднання (за замовчуванням 10000) - + Don't attempt to use UPnP to map the listening port Не намагатись використовувати UPnP для відображення порту що прослуховується на роутері - + Attempt to use UPnP to map the listening port Намагатись використовувати UPnP для відображення порту що прослуховується на роутері - + Fee per kB to add to transactions you send Комісія за Кб - + 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 Виводити більше налагоджувальної інформації - + Prepend debug output with timestamp Доповнювати налагоджувальний вивід відміткою часу - + 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: 8332) Прослуховувати <port> для JSON-RPC-з’єднань (за промовчуванням: 8332) - + 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) - + Set key pool size to <n> (default: 100) Встановити розмір пулу ключів <n> (за промовчуванням: 100) - + Rescan the block chain for missing wallet transactions Пересканувати ланцюжок блоків, в пошуку втрачених переказів - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1880,134 +1917,134 @@ SSL options: (see the Bitcoin 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) - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Неможливо встановити блокування на робочий каталог %s. Можливо, гаманець вже запущено. - - This help message - Дана довідка + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Допустимі шифри (за промовчуванням: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Неможливо встановити блокування на робочий каталог %s. Можливо, гаманець вже запущено. - - - + Loading addresses... Завантаження адрес... - Error loading addr.dat - Помилка при завантаженні addr.dat - - - - Error loading blkindex.dat - Помилка при завантаженні blkindex.dat - - - - Error loading wallet.dat: Wallet corrupted - Помилка при завантаженні wallet.dat: Гаманець пошкоджено - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Помилка при завантаженні wallet.dat: Гаманець потребує новішої версії Біткоін-клієнта + This help message + Дана довідка + - Wallet needed to be rewritten: restart Bitcoin to complete - Потрібно перезаписати гаманець: перезапустіть Біткоін-клієнт для завершення - - - - Error loading wallet.dat - Помилка при завантаженні wallet.dat - - - Loading block index... Завантаження індексу блоків... - + Loading wallet... Завантаження гаманця... - + Rescanning... Сканування... + + + Error loading addr.dat + Помилка при завантаженні addr.dat + + + + Error loading blkindex.dat + Помилка при завантаженні blkindex.dat + + Error loading wallet.dat: Wallet corrupted + Помилка при завантаженні wallet.dat: Гаманець пошкоджено + + + Done loading Завантаження завершене + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Помилка при завантаженні wallet.dat: Гаманець потребує новішої версії Біткоін-клієнта + + + Invalid -proxy address Помилка в адресі проксі-сервера + Wallet needed to be rewritten: restart Bitcoin to complete + Потрібно перезаписати гаманець: перезапустіть Біткоін-клієнт для завершення + + + Invalid amount for -paytxfee=<amount> Помилка у величині комісії + Error loading wallet.dat + Помилка при завантаженні wallet.dat + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. Увага: встановлено занадто велику комісію (-paytxfee). Комісія зніматиметься кожен раз коли ви проводитимете перекази. - + Error: CreateThread(StartNode) failed Помилка: CreateThread(StartNode) дала збій - + Warning: Disk space is low Увага: На диску мало вільного місця - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Неможливо прив’язати до порту %d на цьому комп’ютері. Молживо гаманець вже запущено. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Увага: будь ласка, перевірте дату і час на свому комп’ютері. Якщо ваш годинник йде неправильно, Bitcoin може працювати некоректно. - + beta бета - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index d059aa0351..bed8c3603f 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -67,11 +69,21 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &复制到剪贴板 + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + 从列表中删除当前选中地址。只有发送地址可以被删除。 + Show &QR Code 显示二维码 + + + &Delete + &删除 + Sign a message to prove you own this address @@ -82,16 +94,6 @@ This product includes software developed by the OpenSSL Project for use in the O &Sign Message &发送签名消息 - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - 从列表中删除当前选中地址。只有发送地址可以被删除。 - - - - &Delete - &删除 - Copy address @@ -136,17 +138,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label 标签 - + Address 地址 - + (no label) (没有标签) @@ -237,11 +239,6 @@ Are you sure you wish to encrypt your wallet? Wallet encrypted 钱包已加密 - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的比特币还是有可能丢失。 - @@ -261,6 +258,11 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. 由于一个本地错误,加密钱包操作已经失败。您的钱包没有被加密。 + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的比特币还是有可能丢失。 + @@ -293,278 +295,288 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet 比特币钱包 - - + + Synchronizing with network... 正在与网络同步... - + Block chain synchronization in progress 正在同步区域锁链 - + &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 &发送货币 - + Send coins to a bitcoin address 将货币发送到一个比特币地址 - + Sign &message 发送签名 &消息 - + Prove you control an address 证明您拥有某个比特币地址 - + E&xit 退出 - + Quit application 退出程序 - + &About %1 &关于 %1 - + Show information about Bitcoin 显示比特币的相关信息 - - About &Qt - 关于 &Qt - - - - Show information about Qt - 显示Qt相关信息 - - - + &Options... &选项... - + Modify configuration options for bitcoin 修改比特币配置选项 - + Open &Bitcoin 打开 &比特币 - + Show the Bitcoin window 显示比特币窗口 - + &Export... &导出... - - Export the data in the current tab to a file - 导出当前数据到文件 - - - + &Encrypt Wallet &加密钱包 - + Encrypt or decrypt wallet 加密或解密钱包 - - &Backup Wallet - &备份钱包 + + &Change Passphrase + &修改口令 - - Backup wallet to another location - 备份钱包到其它文件夹 + + Change the passphrase used for wallet encryption + 修改钱包加密口令 - - &Change Passphrase - &修改口令 + + About &Qt + 关于 &Qt + + + + Show information about Qt + 显示Qt相关信息 + + + + Export the data in the current tab to a file + 导出当前数据到文件 - Change the passphrase used for wallet encryption - 修改钱包加密口令 + &Backup Wallet + &备份钱包 - + + Backup wallet to another location + 备份钱包到其它文件夹 + + + &File &文件 - + &Settings &设置 - + &Help &帮助 - + Tabs toolbar 分页工具栏 - + Actions toolbar 动作工具栏 - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n 个到比特币网络的活动连接 + + %n 个到比特币网络的活动连接 + - + Downloaded %1 of %2 blocks of transaction history. %1 / %2 个交易历史的区块已下载 - + Downloaded %1 blocks of transaction history. %1 个交易历史的区块已下载 - + %n second(s) ago - %n 秒前 + + %n 秒前 + - + %n minute(s) ago - %n 分种前 + + %n 分种前 + - + %n hour(s) ago - %n 小时前 + + %n 小时前 + - + %n day(s) ago - %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 交易费, 交易费将支付给处理该笔交易的网络节点,有助于维持比特币网络的运行. 您愿意支付交易费用吗? - + Sending... 发送中 - + Sent transaction 已发送交易 - + Incoming transaction 流入交易 - + Date: %1 Amount: %2 Type: %3 @@ -577,35 +589,40 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> 钱包已被<b>加密</b>,当前为<b>解锁</b>状态 - + Wallet is <b>encrypted</b> and currently <b>locked</b> 钱包已被<b>加密</b>,当前为<b>锁定</b>状态 - + 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 occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -621,8 +638,13 @@ Address: %4 - Display addresses in transaction list - 在交易列表中显示地址 + &Display addresses in transaction list + &在交易列表中显示地址 + + + + Whether to show Bitcoin addresses in the transaction list + @@ -795,8 +817,8 @@ Address: %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - 付款地址 (例如: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -840,8 +862,8 @@ Address: %4 - Copy the currently selected address to the system clipboard - 复制当前选中地址到系统剪贴板 + Copy the current signature to the system clipboard + @@ -927,20 +949,12 @@ Address: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">钱包</span></p></body></html> + + Wallet + 钱包 - + <b>Recent transactions</b> <b>当前交易</b> @@ -973,42 +987,47 @@ p, li { white-space: pre-wrap; } 二维码 - + Request Payment 请求付款 - + Amount: 金额: - + BTC BTC - + Label: 标签: - + Message: 消息: - + &Save As... &另存为 - + + Error encoding URI into QR Code. + + + + Save Image... 保存图像... - + PNG Images (*.png) PNG图像文件(*.png) @@ -1037,16 +1056,16 @@ p, li { white-space: pre-wrap; } &Add recipient... &添加接收者... - - - Remove all transaction fields - 移除所有交易项 - Clear all 清除全部 + + + Remove all transaction fields + 移除所有交易项 + Balance: @@ -1344,54 +1363,58 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date 日期 - + Type 类型 - + Address 地址 - + Amount 数量 - + Open for %n block(s) - 开启 %n 个数据块 + + 开启 %n 个数据块 + - + Open until %1 至 %1 个数据块时开启 - + Offline (%1 confirmations) 离线 (%1 个确认项) - + Unconfirmed (%1 of %2 confirmations) 未确认 (%1 / %2 条确认信息) - + Confirmed (%1 confirmations) 已确认 (%1 条确认信息) Mined balance will be available in %n more blocks - 挖矿所得将在 %n 个数据块之后可用 + + 挖矿所得将在 %n 个数据块之后可用 + @@ -1634,245 +1657,245 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version 比特币版本 - + Usage: 使用: - + Send command to -server or bitcoind 发送命令到服务器或者 bitcoind - + List commands 列出命令 - + Get help for a command 获得某条命令的帮助 - + Options: 选项: - + Specify configuration file (default: bitcoin.conf) 指定配置文件 (默认为 bitcoin.conf) - + Specify pid file (default: bitcoind.pid) 指定 pid 文件 (默认为 bitcoind.pid) - + Generate coins 生成货币 - + Don't generate coins 不要生成货币 - + Start minimized 启动时最小化 - + Specify data directory 指定数据目录 - + Specify connection timeout (in milliseconds) 指定连接超时时间 (微秒) - + Connect through socks4 proxy 通过 socks4 代理连接 - + Allow DNS lookups for addnode and connect 连接节点时允许DNS查找 - + Listen for connections on <port> (default: 8333 or testnet: 18333) 监听端口连接 <port> (缺省: 8333 or testnet: 18333) - + Maintain at most <n> connections to peers (default: 125) 最大连接数 <n> (缺省: 125) - + Add a node to connect to 连接到指定节点 - + Connect only to the specified node 只连接到指定节点 - + Don't accept connections from outside 禁止接收外部连接 - + Don't bootstrap list of peers using DNS 不要用DNS启动 - + Threshold for disconnecting misbehaving peers (default: 100) Threshold for disconnecting misbehaving peers (缺省: 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: 10000) Maximum per-connection receive buffer, <n>*1000 bytes (缺省: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maximum per-connection send buffer, <n>*1000 bytes (缺省: 10000) - + Don't attempt to use UPnP to map the listening port 禁止使用 UPnP 映射监听端口 - + Attempt to use UPnP to map the listening port 尝试使用 UPnP 映射监听端口 - + Fee per kB to add to transactions you send 为付款交易支付比特币(每kb) - + 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 输出调试信息 - + Prepend debug output with timestamp 为调试输出信息添加时间戳 - + Send trace/debug info to console instead of debug.log file 跟踪/调试信息输出到控制台,不输出到debug.log文件 - + Send trace/debug info to debugger 跟踪/调试信息输出到 调试器debugger - + Username for JSON-RPC connections JSON-RPC连接用户名 - + Password for JSON-RPC connections JSON-RPC连接密码 - + Listen for JSON-RPC connections on <port> (default: 8332) JSON-RPC连接监听<端口> (默认为 8332) - + 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) - + Set key pool size to <n> (default: 100) 设置密钥池大小为 <n> (缺省: 100) - + Rescan the block chain for missing wallet transactions 重新扫描数据链以查找遗漏的交易 - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1880,133 +1903,133 @@ SSL 选项: (SSL 安装教程具体见比特币维基百科) - + 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) - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + 无法给数据目录 %s 加锁。比特币进程可能已在运行。 - - This help message - 该帮助信息 + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + 可接受的加密器 (默认为 TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - 无法给数据目录 %s 加锁。比特币进程可能已在运行。 - - - + Loading addresses... 正在加载地址... - Error loading addr.dat - addr.dat文件加载错误 - - - - Error loading blkindex.dat - blkindex.dat文件加载错误 - - - - Error loading wallet.dat: Wallet corrupted - wallet.dat钱包文件加载错误:钱包损坏 - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - wallet.dat钱包文件加载错误:请升级到最新Bitcoin客户端 + This help message + 该帮助信息 + - Wallet needed to be rewritten: restart Bitcoin to complete - 钱包文件需要重写:请退出并重新启动Bitcoin客户端 - - - - Error loading wallet.dat - wallet.dat钱包文件加载错误 - - - Loading block index... 加载区块索引... - + Loading wallet... 正在加载钱包... - + Rescanning... 正在重新扫描... + + + Error loading addr.dat + addr.dat文件加载错误 + + + + Error loading blkindex.dat + blkindex.dat文件加载错误 + + Error loading wallet.dat: Wallet corrupted + wallet.dat钱包文件加载错误:钱包损坏 + + + Done loading 加载完成 + Error loading wallet.dat: Wallet requires newer version of Bitcoin + wallet.dat钱包文件加载错误:请升级到最新Bitcoin客户端 + + + Invalid -proxy address 代理地址不合法 + Wallet needed to be rewritten: restart Bitcoin to complete + 钱包文件需要重写:请退出并重新启动Bitcoin客户端 + + + Invalid amount for -paytxfee=<amount> 不合适的交易费 -paytxfee=<amount> + Error loading wallet.dat + wallet.dat钱包文件加载错误 + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. 警告: -paytxfee 交易费设置过高. 每进行一笔交易您都将支付该数量的交易费. - + Error: CreateThread(StartNode) failed 错误:线程创建(StartNode)失败 - + Warning: Disk space is low 警告:磁盘空间不足 - + Unable to bind to port %d on this computer. Bitcoin is probably already running. 无法绑定端口 %d 到这台计算机。比特币进程可能已在运行。 - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. 警告:请确定您当前计算机的日期和时间是正确的。比特币将无法在错误的时间下正常工作。 - + beta 测试 - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index 83c3028eb9..84e77aa681 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -67,11 +69,21 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard 複製到剪貼簿 + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + 從列表中刪除目前選取的位址. 只能夠刪除付款位址. + Show &QR Code 顯示 &QR 條碼 + + + &Delete + 刪除 + Sign a message to prove you own this address @@ -82,16 +94,6 @@ This product includes software developed by the OpenSSL Project for use in the O &Sign Message 簽署訊息 - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - 從列表中刪除目前選取的位址. 只能夠刪除付款位址. - - - - &Delete - 刪除 - Copy address @@ -136,17 +138,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label 標記 - + Address 位址 - + (no label) (沒有標記) @@ -237,11 +239,6 @@ Are you sure you wish to encrypt your wallet? Wallet encrypted 錢包已加密 - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 位元幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的位元幣. - @@ -261,6 +258,11 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. 錢包加密因程式內部有誤而失敗. 你的錢包還是沒有加密. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 位元幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的位元幣. + @@ -293,278 +295,288 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - + Bitcoin Wallet 位元幣錢包 - - + + Synchronizing with network... 網路同步中... - + Block chain synchronization in progress 正在進行區塊鎖鏈的同步中 - + &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 付錢 - + Send coins to a bitcoin address 付錢至某個位元幣位址 - + Sign &message 訊息簽署 - + Prove you control an address 證明你控制一個位址 - + E&xit 結束 - + Quit application 結束應用程式 - + &About %1 關於%1 - + Show information about Bitcoin 顯示位元幣相關資訊 - - About &Qt - 關於 &Qt - - - - Show information about Qt - 顯示有關於 Qt 的資訊 - - - + &Options... 選項... - + Modify configuration options for bitcoin 修改位元幣的設定選項 - + Open &Bitcoin 開啟位元幣 - + Show the Bitcoin window 顯示位元幣主視窗 - + &Export... 匯出... - - Export the data in the current tab to a file - 將目前分頁的資料匯出存成檔案 - - - + &Encrypt Wallet 錢包加密 - + Encrypt or decrypt wallet 將錢包加解密 - - &Backup Wallet - 錢包備份 + + &Change Passphrase + 變更密碼 - - Backup wallet to another location - 將錢包備份到其它地方 + + Change the passphrase used for wallet encryption + 變更錢包加密用的密碼 - - &Change Passphrase - 變更密碼 + + About &Qt + 關於 &Qt + + + + Show information about Qt + 顯示有關於 Qt 的資訊 + + + + Export the data in the current tab to a file + 將目前分頁的資料匯出存成檔案 - Change the passphrase used for wallet encryption - 變更錢包加密用的密碼 + &Backup Wallet + 錢包備份 - + + Backup wallet to another location + 將錢包備份到其它地方 + + + &File 檔案 - + &Settings 設定 - + &Help 求助 - + Tabs toolbar 分頁工具列 - + Actions toolbar 動作工具列 - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - 與位元幣網路有 %n 個連線在使用中 + + 與位元幣網路有 %n 個連線在使用中 + - + Downloaded %1 of %2 blocks of transaction history. 已下載了 %1/%2 個交易紀錄的區塊. - + Downloaded %1 blocks of transaction history. 已下載了 %1 個交易紀錄的區塊. - + %n second(s) ago - %n 秒鐘前 + + %n 秒鐘前 + - + %n minute(s) ago - %n 分鐘前 + + %n 分鐘前 + - + %n hour(s) ago - %n 小時前 + + %n 小時前 + - + %n day(s) ago - %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 的費用來傳送. 這筆費用會付給處理該筆交易的節點, 並幫助維持整個網路. 你願意支付這項費用嗎? - + Sending... 付出中... - + Sent transaction 付款交易 - + Incoming transaction 收款交易 - + Date: %1 Amount: %2 Type: %3 @@ -576,35 +588,40 @@ Address: %4 位址: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> 錢包<b>已加密</b>並且正<b>解鎖中</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> 錢包<b>已加密</b>並且正<b>上鎖中</b> - + 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 occured. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage @@ -620,8 +637,13 @@ Address: %4 - Display addresses in transaction list - 在交易列表中顯示位址 + &Display addresses in transaction list + &在交易列表中顯示位址 + + + + Whether to show Bitcoin addresses in the transaction list + @@ -794,8 +816,8 @@ Address: %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - 付款的目標位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + @@ -839,8 +861,8 @@ Address: %4 - Copy the currently selected address to the system clipboard - 複製目前選取的位址到系統剪貼簿 + Copy the current signature to the system clipboard + @@ -926,20 +948,12 @@ Address: %4 0 BTC - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">錢包</span></p></body></html> + + Wallet + 錢包 - + <b>Recent transactions</b> <b>最近交易</b> @@ -972,42 +986,47 @@ p, li { white-space: pre-wrap; } QR 條碼 - + Request Payment 付款單 - + Amount: 金額: - + BTC BTC - + Label: 標記: - + Message: 訊息: - + &Save As... 儲存為... - + + Error encoding URI into QR Code. + + + + Save Image... 儲存圖片... - + PNG Images (*.png) PNG 圖檔 (*.png) @@ -1036,16 +1055,16 @@ p, li { white-space: pre-wrap; } &Add recipient... 加收款人... - - - Remove all transaction fields - 移除所有交易欄位 - Clear all 全部清掉 + + + Remove all transaction fields + 移除所有交易欄位 + Balance: @@ -1343,54 +1362,58 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date 日期 - + Type 種類 - + Address 位址 - + Amount 金額 - + Open for %n block(s) - 在 %n 個區塊內未定 + + 在 %n 個區塊內未定 + - + Open until %1 在 %1 前未定 - + Offline (%1 confirmations) 離線中 (經確認 %1 次) - + Unconfirmed (%1 of %2 confirmations) 未確認 (經確認 %1 次, 應確認 %2 次) - + Confirmed (%1 confirmations) 已確認 (經確認 %1 次) Mined balance will be available in %n more blocks - 生產金額將在 %n 個區塊產出後可用 + + 生產金額將在 %n 個區塊產出後可用 + @@ -1633,239 +1656,239 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version 位元幣版本 - + Usage: 用法: - + Send command to -server or bitcoind 送指令至 -server 或 bitcoind - + List commands 列出指令 - + Get help for a command 取得指令說明 - + Options: 選項: - + Specify configuration file (default: bitcoin.conf) 指定設定檔 (預設: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) 指定行程識別碼檔案 (預設: bitcoind.pid) - + Generate coins 生產位元幣 - + Don't generate coins 不生產位元幣 - + Start minimized 啓動時最小化 - + Specify data directory 指定資料目錄 - + Specify connection timeout (in milliseconds) 指定連線逾時時間 (毫秒) - + Connect through socks4 proxy 透過 socks4 代理伺服器連線 - + Allow DNS lookups for addnode and connect 允許 addnode 和 connect 時做域名解析 - + Listen for connections on <port> (default: 8333 or testnet: 18333) 在通訊埠 <port> 聽候連線 (預設: 8333, 或若為測試網路: 18333) - + Maintain at most <n> connections to peers (default: 125) 維持與節點連線數的上限為 <n> 個 (預設: 125) - + Add a node to connect to 新增連線節點 - + Connect only to the specified node 只連線至指定節點 - + Don't accept connections from outside 不接受外來連線 - + Don't bootstrap list of peers using DNS 初始化節點列表時不使用 DNS - + 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: 10000) 每個連線的接收緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) 每個連線的傳送緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) - + Don't attempt to use UPnP to map the listening port 不嘗試用 UPnP 來設定服務連接埠的對應 - + Attempt to use UPnP to map the listening port 嘗試用 UPnP 來設定服務連接埠的對應 - + Fee per kB to add to transactions you send 交易付款時每 kB 的交易手續費 - + 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 輸出額外的除錯資訊 - + Prepend debug output with timestamp 在除錯輸出內容前附加時間 - + 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: 8332) 在通訊埠 <port> 聽候 JSON-RPC 連線 (預設: 8332) - + 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) - + Set key pool size to <n> (default: 100) 設定密鑰池大小為 <n> (預設: 100) - + Rescan the block chain for missing wallet transactions 重新掃描區塊鎖鏈, 以尋找錢包所遺漏的交易. - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1873,134 +1896,134 @@ SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) - + 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) - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + 無法鎖定資料目錄 %s. 也許位元幣已經在執行了. - - This help message - 此協助訊息 + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + 可以接受的加密法 (預設: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - 無法鎖定資料目錄 %s. 也許位元幣已經在執行了. - - - + Loading addresses... 載入位址中... - Error loading addr.dat - 載入 addr.dat 失敗 - - - - Error loading blkindex.dat - 載入 blkindex.dat 失敗 - - - - Error loading wallet.dat: Wallet corrupted - 載入 wallet.dat 失敗: 錢包壞掉了 - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - 載入 wallet.dat 失敗: 此錢包需要新版的 Bitcoin + This help message + 此協助訊息 + - Wallet needed to be rewritten: restart Bitcoin to complete - 錢包需要重寫: 請重啟位元幣來完成 - - - - Error loading wallet.dat - 載入 wallet.dat 失敗 - - - Loading block index... 載入區塊索引中... - + Loading wallet... 載入錢包中... - + Rescanning... 重新掃描中... + + + Error loading addr.dat + 載入 addr.dat 失敗 + + + + Error loading blkindex.dat + 載入 blkindex.dat 失敗 + + Error loading wallet.dat: Wallet corrupted + 載入 wallet.dat 失敗: 錢包壞掉了 + + + Done loading 載入完成 + Error loading wallet.dat: Wallet requires newer version of Bitcoin + 載入 wallet.dat 失敗: 此錢包需要新版的 Bitcoin + + + Invalid -proxy address 無效的 -proxy 位址 + Wallet needed to be rewritten: restart Bitcoin to complete + 錢包需要重寫: 請重啟位元幣來完成 + + + Invalid amount for -paytxfee=<amount> -paytxfee=<金額> 中的金額無效 + Error loading wallet.dat + 載入 wallet.dat 失敗 + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. 警告: -paytxfee 設定得很高. 這是當你交易付款時所要支付的手續費. - + Error: CreateThread(StartNode) failed 錯誤: CreateThread(StartNode) 失敗 - + Warning: Disk space is low 警告: 磁碟空間很少 - + Unable to bind to port %d on this computer. Bitcoin is probably already running. 無法與這台電腦上的通訊埠 %d 連結. 也許 Bitcoin 已經在執行了. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. 警告: 請檢查電腦時間日期是否正確. 位元幣無法在時鐘不準的情況下正常運作. - + beta 公測版 - \ No newline at end of file + -- cgit v1.2.3 From 8ff1873096d29a105ea98d6cd03c4f8f7b9cea0f Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Sun, 6 May 2012 20:11:05 -0400 Subject: Bump versions for 0.6.2 --- bitcoin-qt.pro | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/version.h | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index f586c53372..e161911a93 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.6.1 +VERSION = 0.6.2 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/doc/README b/doc/README index a196a461e5..70ed4d5aee 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.6.1 BETA +Bitcoin 0.6.2 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index ec0225fd92..451aedbfd5 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.6.1 BETA +Bitcoin 0.6.2 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 10bf36b4cf..fb122efc1f 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.6.1 +!define VERSION 0.6.2 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.6.1-win32-setup.exe +OutFile bitcoin-0.6.2-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.6.1.3 +VIProductVersion 0.6.2.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/version.h b/src/version.h index 9b92bd618e..fec63cb7cc 100644 --- a/src/version.h +++ b/src/version.h @@ -12,8 +12,8 @@ static const int CLIENT_VERSION_MAJOR = 0; static const int CLIENT_VERSION_MINOR = 6; -static const int CLIENT_VERSION_REVISION = 1; -static const int CLIENT_VERSION_BUILD = 3; +static const int CLIENT_VERSION_REVISION = 2; +static const int CLIENT_VERSION_BUILD = 0; static const int CLIENT_VERSION = 1000000 * CLIENT_VERSION_MAJOR -- cgit v1.2.3 From 18b4eccddb7146522b18c5a6add113544a80df99 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 8 May 2012 19:53:29 +0000 Subject: Bump version to 0.4.7 --- contrib/Bitcoin.app/Contents/Info.plist | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/contrib/Bitcoin.app/Contents/Info.plist b/contrib/Bitcoin.app/Contents/Info.plist index 8271c15ef4..a7efd905f1 100644 --- a/contrib/Bitcoin.app/Contents/Info.plist +++ b/contrib/Bitcoin.app/Contents/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.4.6 + 0.4.7 CFBundleSignature ???? CFBundleVersion diff --git a/doc/README b/doc/README index 15f92bf4af..664a174736 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.4.6 BETA +Bitcoin 0.4.7 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 8dde1a9365..f611b6acd3 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.4.6 BETA +Bitcoin 0.4.7 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index 27c87db84b..c044083858 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.4.6 +!define VERSION 0.4.7 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.4.6-win32-setup.exe +OutFile bitcoin-0.4.7-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.4.6.0 +VIProductVersion 0.4.7.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index 959a3a694b..30cde6c38c 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -59,7 +59,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 40600; +static const int VERSION = 40700; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 35a07f8ec4abbd0f6848e53a35b9520b33085c63 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 8 May 2012 20:09:43 +0000 Subject: Bump version to 0.5.6 --- bitcoin-qt.pro | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 8af8895db1..b5cee48e9f 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.5.5 +VERSION = 0.5.6 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/doc/README b/doc/README index 41fecd7d47..9fe0a44a02 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.5.5 BETA +Bitcoin 0.5.6 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 9feb2faed0..fcb88bb473 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.5.5 BETA +Bitcoin 0.5.6 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index b2d0dd0529..83be1e0764 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.5.5 +!define VERSION 0.5.6 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.5.5-win32-setup.exe +OutFile bitcoin-0.5.6-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.5.5.0 +VIProductVersion 0.5.6.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index 6bdf378229..e414bd07aa 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -60,7 +60,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 50500; +static const int VERSION = 50600; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 8fa32596646312ec4c50e41b7832e8abd2f16948 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 8 May 2012 20:11:44 +0000 Subject: Bump version to 0.6.0.8 --- bitcoin-qt.pro | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/main.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 5f2e7c1cab..fbd03fe08e 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.6.0.7 +VERSION = 0.6.0.8 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/doc/README b/doc/README index 800c72c83c..efec77bf22 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.6.0.7 BETA +Bitcoin 0.6.0.8 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index a04aedcd78..58b8e3840c 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.6.0.7 BETA +Bitcoin 0.6.0.8 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index fb9a0c67f2..97863f7c16 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.6.0.7 +!define VERSION 0.6.0.8 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.6.0.7-win32-setup.exe +OutFile bitcoin-0.6.0.8-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.6.0.7 +VIProductVersion 0.6.0.8 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/main.h b/src/main.h index e74263ad8b..9ae4a1d391 100644 --- a/src/main.h +++ b/src/main.h @@ -26,7 +26,7 @@ class CInv; class CRequestTracker; class CNode; -static const int CLIENT_VERSION = 60007; +static const int CLIENT_VERSION = 60008; static const bool VERSION_IS_BETA = true; extern const std::string CLIENT_NAME; -- cgit v1.2.3 From 8f9123a157d0ef479f62eb3e05da2ba6613c5dfc Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 9 May 2012 18:24:34 -0400 Subject: Fix 100% cpu usage on osx bug --- src/util.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/util.h b/src/util.h index 5f8d0375da..c3a0efe0a7 100644 --- a/src/util.h +++ b/src/util.h @@ -274,8 +274,9 @@ typedef CMutexLock CWaitableCriticalBlock; typedef boost::interprocess::interprocess_condition CConditionVariable; /** Wait for a given condition inside a WAITABLE_CRITICAL_BLOCK */ +/** Sleep(1) is to workaround a 100% cpu-usage bug on OSX **/ #define WAIT(name,condition) \ - do { while(!(condition)) { (name).wait(waitablecriticalblock.GetLock()); } } while(0) + do { while(!(condition)) { (name).wait(waitablecriticalblock.GetLock()); Sleep(1);} } while(0) /** Notify waiting threads that a condition may hold now */ #define NOTIFY(name) \ -- cgit v1.2.3 From 91b13a0dff056b444d8fd0c2a5baae75e9d6208b Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 10 May 2012 16:14:15 -0400 Subject: Revert "Fix 100% cpu usage on osx bug" This reverts commit 8f9123a157d0ef479f62eb3e05da2ba6613c5dfc. --- src/util.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/util.h b/src/util.h index c3a0efe0a7..5f8d0375da 100644 --- a/src/util.h +++ b/src/util.h @@ -274,9 +274,8 @@ typedef CMutexLock CWaitableCriticalBlock; typedef boost::interprocess::interprocess_condition CConditionVariable; /** Wait for a given condition inside a WAITABLE_CRITICAL_BLOCK */ -/** Sleep(1) is to workaround a 100% cpu-usage bug on OSX **/ #define WAIT(name,condition) \ - do { while(!(condition)) { (name).wait(waitablecriticalblock.GetLock()); Sleep(1);} } while(0) + do { while(!(condition)) { (name).wait(waitablecriticalblock.GetLock()); } } while(0) /** Notify waiting threads that a condition may hold now */ #define NOTIFY(name) \ -- cgit v1.2.3 From ca0816152d91c929b51b2f644fcb9a69797a49fa Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Thu, 10 May 2012 18:44:07 +0200 Subject: Use semaphores instead of condition variables --- src/net.cpp | 69 +++++++++++++++++++++++++++++++++++-------------------------- src/net.h | 2 ++ src/util.h | 17 ++------------- 3 files changed, 44 insertions(+), 44 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index 92b4a3173f..88a3b436c7 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -35,7 +35,7 @@ void ThreadOpenAddedConnections2(void* parg); void ThreadMapPort2(void* parg); #endif void ThreadDNSAddressSeed2(void* parg); -bool OpenNetworkConnection(const CAddress& addrConnect); +bool OpenNetworkConnection(const CAddress& addrConnect, bool fUseGrant = true); @@ -64,10 +64,7 @@ map mapAlreadyAskedFor; set setservAddNodeAddresses; CCriticalSection cs_setservAddNodeAddresses; -static CWaitableCriticalSection csOutbound; -static int nOutbound = 0; -static CConditionVariable condOutbound; - +static CSemaphore *semOutbound = NULL; unsigned short GetListenPort() { @@ -368,10 +365,6 @@ CNode* ConnectNode(CAddress addrConnect, int64 nTimeout) LOCK(cs_vNodes); vNodes.push_back(pnode); } - { - WAITABLE_LOCK(csOutbound); - nOutbound++; - } pnode->nTimeConnected = GetTime(); return pnode; @@ -517,14 +510,9 @@ void ThreadSocketHandler2(void* parg) // remove from vNodes vNodes.erase(remove(vNodes.begin(), vNodes.end(), pnode), vNodes.end()); - if (!pnode->fInbound) - { - WAITABLE_LOCK(csOutbound); - nOutbound--; - - // Connection slot(s) were removed, notify connection creator(s) - NOTIFY(condOutbound); - } + if (pnode->fHasGrant) + semOutbound->post(); + pnode->fHasGrant = false; // close socket and cleanup pnode->CloseSocketDisconnect(); @@ -1201,7 +1189,7 @@ void ThreadOpenConnections2(void* parg) { CAddress addr(CService(strAddr, GetDefaultPort(), fAllowDNS)); if (addr.IsValid()) - OpenNetworkConnection(addr); + OpenNetworkConnection(addr, false); for (int i = 0; i < 10 && i < nLoop; i++) { Sleep(500); @@ -1222,13 +1210,9 @@ void ThreadOpenConnections2(void* parg) if (fShutdown) return; - // Limit outbound connections - int nMaxOutbound = min(MAX_OUTBOUND_CONNECTIONS, (int)GetArg("-maxconnections", 125)); + vnThreadsRunning[THREAD_OPENCONNECTIONS]--; - { - WAITABLE_LOCK(csOutbound); - WAIT(condOutbound, fShutdown || nOutbound < nMaxOutbound); - } + semOutbound->wait(); vnThreadsRunning[THREAD_OPENCONNECTIONS]++; if (fShutdown) return; @@ -1261,11 +1245,15 @@ void ThreadOpenConnections2(void* parg) // Only connect to one address per a.b.?.? range. // Do this here so we don't have to critsect vNodes inside mapAddresses critsect. + int nOutbound = 0; set > setConnected; { LOCK(cs_vNodes); - BOOST_FOREACH(CNode* pnode, vNodes) + BOOST_FOREACH(CNode* pnode, vNodes) { setConnected.insert(pnode->addr.GetGroup()); + if (!pnode->fInbound) + nOutbound++; + } } int64 nANow = GetAdjustedTime(); @@ -1296,6 +1284,8 @@ void ThreadOpenConnections2(void* parg) if (addrConnect.IsValid()) OpenNetworkConnection(addrConnect); + else + semOutbound->post(); } } @@ -1358,6 +1348,7 @@ void ThreadOpenAddedConnections2(void* parg) } BOOST_FOREACH(vector& vserv, vservConnectAddresses) { + semOutbound->wait(); OpenNetworkConnection(CAddress(*(vserv.begin()))); Sleep(500); if (fShutdown) @@ -1373,7 +1364,14 @@ void ThreadOpenAddedConnections2(void* parg) } } -bool OpenNetworkConnection(const CAddress& addrConnect) +bool static ReleaseGrant(bool fUseGrant) { + if (fUseGrant) + semOutbound->post(); + return false; +} + +// only call this function when semOutbound has been waited for +bool OpenNetworkConnection(const CAddress& addrConnect, bool fUseGrant) { // // Initiate outbound network connection @@ -1382,7 +1380,7 @@ bool OpenNetworkConnection(const CAddress& addrConnect) return false; if ((CNetAddr)addrConnect == (CNetAddr)addrLocalHost || !addrConnect.IsIPv4() || FindNode((CNetAddr)addrConnect) || CNode::IsBanned(addrConnect)) - return false; + return ReleaseGrant(fUseGrant); vnThreadsRunning[THREAD_OPENCONNECTIONS]--; CNode* pnode = ConnectNode(addrConnect); @@ -1390,7 +1388,13 @@ bool OpenNetworkConnection(const CAddress& addrConnect) if (fShutdown) return false; if (!pnode) - return false; + return ReleaseGrant(fUseGrant); + if (pnode->fHasGrant) { + // node already has connection grant, release the one that was passed to us + ReleaseGrant(fUseGrant); + } else { + pnode->fHasGrant = fUseGrant; + } pnode->fNetworkNode = true; return true; @@ -1567,6 +1571,12 @@ bool BindListenPort(string& strError) void StartNode(void* parg) { + if (semOutbound == NULL) { + // initialize semaphore + int nMaxOutbound = min(MAX_OUTBOUND_CONNECTIONS, (int)GetArg("-maxconnections", 125)); + semOutbound = new CSemaphore(nMaxOutbound); + } + #ifdef USE_UPNP #if USE_UPNP fUseUPnP = GetBoolArg("-upnp", true); @@ -1693,7 +1703,8 @@ bool StopNode() fShutdown = true; nTransactionsUpdated++; int64 nStart = GetTime(); - NOTIFY_ALL(condOutbound); + for (int i=0; ipost(); do { int nThreadsRunning = 0; diff --git a/src/net.h b/src/net.h index bad49a9f8f..4cc82b237e 100644 --- a/src/net.h +++ b/src/net.h @@ -127,6 +127,7 @@ public: bool fNetworkNode; bool fSuccessfullyConnected; bool fDisconnect; + bool fHasGrant; // whether to call semOutbound.post() at disconnect protected: int nRefCount; @@ -171,6 +172,7 @@ public: nVersion = 0; strSubVer = ""; fClient = false; // set by version message + fHasGrant = false; fInbound = fInboundIn; fNetworkNode = false; fSuccessfullyConnected = false; diff --git a/src/util.h b/src/util.h index 5f8d0375da..f90b95b9d5 100644 --- a/src/util.h +++ b/src/util.h @@ -23,7 +23,7 @@ typedef int pid_t; /* define for windows compatiblity */ #include #include #include -#include +#include #include #include #include @@ -270,24 +270,10 @@ public: }; typedef CMutexLock CCriticalBlock; -typedef CMutexLock CWaitableCriticalBlock; -typedef boost::interprocess::interprocess_condition CConditionVariable; - -/** Wait for a given condition inside a WAITABLE_CRITICAL_BLOCK */ -#define WAIT(name,condition) \ - do { while(!(condition)) { (name).wait(waitablecriticalblock.GetLock()); } } while(0) - -/** Notify waiting threads that a condition may hold now */ -#define NOTIFY(name) \ - do { (name).notify_one(); } while(0) - -#define NOTIFY_ALL(name) \ - do { (name).notify_all(); } while(0) #define LOCK(cs) CCriticalBlock criticalblock(cs, #cs, __FILE__, __LINE__) #define LOCK2(cs1,cs2) CCriticalBlock criticalblock1(cs1, #cs1, __FILE__, __LINE__),criticalblock2(cs2, #cs2, __FILE__, __LINE__) #define TRY_LOCK(cs,name) CCriticalBlock name(cs, #cs, __FILE__, __LINE__, true) -#define WAITABLE_LOCK(cs) CWaitableCriticalBlock waitablecriticalblock(cs, #cs, __FILE__, __LINE__) #define ENTER_CRITICAL_SECTION(cs) \ { \ @@ -301,6 +287,7 @@ typedef boost::interprocess::interprocess_condition CConditionVariable; LeaveCritical(); \ } +typedef boost::interprocess::interprocess_semaphore CSemaphore; inline std::string i64tostr(int64 n) { -- cgit v1.2.3 From f0f1b3775e5e0c7939c1131f831ce0334348ac72 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Thu, 10 May 2012 20:45:35 +0200 Subject: Use polling instead of boost's broken semaphore on OSX --- src/util.h | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/src/util.h b/src/util.h index f90b95b9d5..15ccf82f9a 100644 --- a/src/util.h +++ b/src/util.h @@ -287,7 +287,47 @@ typedef CMutexLock CCriticalBlock; LeaveCritical(); \ } +#ifdef MAC_OSX +// boost::interprocess::interprocess_semaphore seems to spinlock on OSX; prefer polling instead +class CSemaphore +{ +private: + CCriticalSection cs; + int val; + +public: + CSemaphore(int init) : val(init) {} + + void wait() { + do { + { + LOCK(cs); + if (val>0) { + val--; + return; + } + } + Sleep(100); + } while(1); + } + + bool try_wait() { + LOCK(cs); + if (val>0) { + val--; + return true; + } + return false; + } + + void post() { + LOCK(cs); + val++; + } +}; +#else typedef boost::interprocess::interprocess_semaphore CSemaphore; +#endif inline std::string i64tostr(int64 n) { -- cgit v1.2.3 From 40fd689eb1f72f78752d80e91425811d39a4d466 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Fri, 11 May 2012 10:09:45 -0400 Subject: Bump version to 0.6.2.2 for osx-special build --- bitcoin-qt.pro | 2 +- src/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index e161911a93..82bbfabc2b 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.6.2 +VERSION = 0.6.2.2 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/src/version.h b/src/version.h index fec63cb7cc..7cf82c395a 100644 --- a/src/version.h +++ b/src/version.h @@ -13,7 +13,7 @@ static const int CLIENT_VERSION_MAJOR = 0; static const int CLIENT_VERSION_MINOR = 6; static const int CLIENT_VERSION_REVISION = 2; -static const int CLIENT_VERSION_BUILD = 0; +static const int CLIENT_VERSION_BUILD = 2; static const int CLIENT_VERSION = 1000000 * CLIENT_VERSION_MAJOR -- cgit v1.2.3 From 93b5eff27427608d96c643d2f79ce490c2d705f1 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 7 May 2012 19:22:09 +0000 Subject: Bitcoin-Qt: Remove redundant tooltip on optional transaction fee. Fixes #1218 --- src/qt/optionsdialog.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index 0025337ab8..e4b486a901 100644 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -223,7 +223,6 @@ MainOptionsPage::MainOptionsPage(QWidget *parent): QLabel *fee_label = new QLabel(tr("Pay transaction &fee")); fee_hbox->addWidget(fee_label); fee_edit = new BitcoinAmountField(); - fee_edit->setToolTip(tr("Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended.")); fee_label->setBuddy(fee_edit); fee_hbox->addWidget(fee_edit); -- cgit v1.2.3 From 9e52f51223a0c61edde34d0a3cd184954f8ac5ba Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Tue, 8 May 2012 23:22:36 +0200 Subject: remove 2 obsolete functions from init.h that moved to util.h --- src/init.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/init.h b/src/init.h index e3971c85e3..0a2f0d8932 100644 --- a/src/init.h +++ b/src/init.h @@ -13,7 +13,4 @@ void Shutdown(void* parg); bool AppInit(int argc, char* argv[]); bool AppInit2(int argc, char* argv[]); -bool GetStartOnSystemStartup(); -bool SetStartOnSystemStartup(bool fAutoStart); - #endif -- cgit v1.2.3 From 7515f00aa36e5650aaca5db911e80536514678be Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Tue, 8 May 2012 09:31:25 +0200 Subject: remove 2 ugly spaces from a string used in translations --- src/qt/optionsdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index e4b486a901..bac01829a7 100644 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -214,7 +214,7 @@ MainOptionsPage::MainOptionsPage(QWidget *parent): proxy_hbox->addStretch(1); layout->addLayout(proxy_hbox); - QLabel *fee_help = new QLabel(tr("Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended.")); + QLabel *fee_help = new QLabel(tr("Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended.")); fee_help->setWordWrap(true); layout->addWidget(fee_help); -- cgit v1.2.3 From 7700b94d33f6b7b6c554aa6e623f6e3a86d0ef0f Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 9 May 2012 01:40:33 -0400 Subject: Fix DEBUG_LOCKCONTENTION --- src/util.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/util.h b/src/util.h index 15ccf82f9a..f2a70d839a 100644 --- a/src/util.h +++ b/src/util.h @@ -217,9 +217,11 @@ public: { printf("LOCKCONTENTION: %s\n", pszName); printf("Locker: %s:%d\n", pszFile, nLine); - } #endif lock.lock(); +#ifdef DEBUG_LOCKCONTENTION + } +#endif } } -- cgit v1.2.3 From d306fd833c0165dc6cfa4cd0415efe4e3c76658a Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 9 May 2012 13:56:53 -0400 Subject: Fix osx build --- src/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.cpp b/src/util.cpp index 3569f22ecd..3ad31dd6c2 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -843,7 +843,7 @@ boost::filesystem::path GetDefaultDataDir() #ifdef MAC_OSX // Mac pathRet /= "Library/Application Support"; - filesystem::create_directory(pathRet); + fs::create_directory(pathRet); return pathRet / "Bitcoin"; #else // Unix -- cgit v1.2.3 From 7532c476fe5ce004112dd501b4707578ab5f3432 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Fri, 11 May 2012 04:11:22 +0200 Subject: Fix version numbers of archive builds --- src/version.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/version.h b/src/version.h index 7cf82c395a..b54531f246 100644 --- a/src/version.h +++ b/src/version.h @@ -10,10 +10,11 @@ // client versioning // -static const int CLIENT_VERSION_MAJOR = 0; -static const int CLIENT_VERSION_MINOR = 6; -static const int CLIENT_VERSION_REVISION = 2; -static const int CLIENT_VERSION_BUILD = 2; +// These need to be macro's, as version.cpp's voodoo requires it +#define CLIENT_VERSION_MAJOR 0 +#define CLIENT_VERSION_MINOR 6 +#define CLIENT_VERSION_REVISION 2 +#define CLIENT_VERSION_BUILD 2 static const int CLIENT_VERSION = 1000000 * CLIENT_VERSION_MAJOR -- cgit v1.2.3 From 182738e1778ef73efc1e8801bd970b0fa10c89ee Mon Sep 17 00:00:00 2001 From: Fordy Date: Sat, 12 May 2012 11:32:03 +0800 Subject: Correct Date --- src/qt/bitcoingui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 1c4d665bee..69a28a2c15 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -2,7 +2,7 @@ * Qt4 bitcoin GUI. * * W.J. van der Laan 20011-2012 - * The Bitcoin Developers 20011-2012 + * The Bitcoin Developers 2011-2012 */ #include "checkpoints.h" -- cgit v1.2.3 From 0d174e130b8e89e6de9517d24498615d18d8f382 Mon Sep 17 00:00:00 2001 From: Fordy Date: Sat, 12 May 2012 11:36:37 +0800 Subject: Correct Date --- src/qt/bitcoingui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 69a28a2c15..e5e3572d24 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -1,7 +1,7 @@ /* * Qt4 bitcoin GUI. * - * W.J. van der Laan 20011-2012 + * W.J. van der Laan 2011-2012 * The Bitcoin Developers 2011-2012 */ -- cgit v1.2.3 From dc15d56b2df25f5ea2e4d1d9b16a3f6578524035 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 11 May 2012 20:17:09 +0200 Subject: Properly escape " in strings when exporting CSV --- src/qt/csvmodelwriter.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/qt/csvmodelwriter.cpp b/src/qt/csvmodelwriter.cpp index 84578b3322..8a50bbab3f 100644 --- a/src/qt/csvmodelwriter.cpp +++ b/src/qt/csvmodelwriter.cpp @@ -27,8 +27,9 @@ void CSVModelWriter::addColumn(const QString &title, int column, int role) static void writeValue(QTextStream &f, const QString &value) { - // TODO: quoting if " or \n in string - f << "\"" << value << "\""; + QString escaped = value; + escaped.replace('"', "\"\""); + f << "\"" << escaped << "\""; } static void writeSep(QTextStream &f) -- cgit v1.2.3 From 10593f3be185dda058b4e2c48a3e77e4a2e00246 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sun, 13 May 2012 00:16:50 +0200 Subject: remove string "TextLabel" from warningLabel, as this is unneeded and as such is a silly translation less to do :) --- src/qt/forms/askpassphrasedialog.ui | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/qt/forms/askpassphrasedialog.ui b/src/qt/forms/askpassphrasedialog.ui index 3f6b668e06..ff3a77165b 100644 --- a/src/qt/forms/askpassphrasedialog.ui +++ b/src/qt/forms/askpassphrasedialog.ui @@ -28,9 +28,6 @@ - - TextLabel - Qt::RichText -- cgit v1.2.3 From c455aec6997ad9164f1083e93bb51095a25180cd Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Mon, 7 May 2012 21:36:30 +0200 Subject: Hopefully final fix for the stuck blockchain issue Immediately issue a "getblocks", instead of a "getdata" (which will trigger the relevant "inv" to be sent anyway), and only do so when the previous set of invs led us into a known and attached part of the block tree. --- src/main.cpp | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index a2fc7387fb..0abba822a8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2180,8 +2180,10 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) // find last block in inv vector unsigned int nLastBlock = (unsigned int)(-1); for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) { - if (vInv[vInv.size() - 1 - nInv].type == MSG_BLOCK) + if (vInv[vInv.size() - 1 - nInv].type == MSG_BLOCK) { nLastBlock = vInv.size() - 1 - nInv; + break; + } } CTxDB txdb("r"); for (int nInv = 0; nInv < vInv.size(); nInv++) @@ -2196,19 +2198,19 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) if (fDebug) printf(" got inventory: %s %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new"); - // Always request the last block in an inv bundle (even if we already have it), as it is the - // trigger for the other side to send further invs. If we are stuck on a (very long) side chain, - // this is necessary to connect earlier received orphan blocks to the chain again. - if (fAlreadyHave && nInv == nLastBlock) { - // bypass mapAskFor, and send request directly; it must go through. - std::vector vGetData(1,inv); - pfrom->PushMessage("getdata", vGetData); - } - if (!fAlreadyHave) pfrom->AskFor(inv); - else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) + else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) { pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash])); + } else if (nInv == nLastBlock) { + // In case we are on a very long side-chain, it is possible that we already have + // the last block in an inv bundle sent in response to getblocks. Try to detect + // this situation and push another getblocks to continue. + std::vector vGetData(1,inv); + pfrom->PushGetBlocks(mapBlockIndex[inv.hash], uint256(0)); + if (fDebug) + printf("force request: %s\n", inv.ToString().c_str()); + } // Track requests for our stuff Inventory(inv.hash); -- cgit v1.2.3 From 738592a002003246849e4b3102aebdab738e976a Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Mon, 14 May 2012 01:11:11 -0400 Subject: Always check return values of TxnBegin() and TxnCommit() PARTIAL, since d68dcf7 isn't backported (yet) --- src/main.cpp | 7 +++++-- src/rpc.cpp | 6 ++++-- src/wallet.cpp | 3 ++- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 0abba822a8..abacbe5e63 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1336,7 +1336,9 @@ bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew) { uint256 hash = GetHash(); - txdb.TxnBegin(); + if (!txdb.TxnBegin()) + return error("SetBestChain() : TxnBegin failed"); + if (pindexGenesisBlock == NULL && hash == hashGenesisBlock) { txdb.WriteHashBestChain(hash); @@ -1416,7 +1418,8 @@ bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos) pindexNew->bnChainWork = (pindexNew->pprev ? pindexNew->pprev->bnChainWork : 0) + pindexNew->GetBlockWork(); CTxDB txdb; - txdb.TxnBegin(); + if (!txdb.TxnBegin()) + return false; txdb.WriteBlockIndex(CDiskBlockIndex(pindexNew)); if (!txdb.TxnCommit()) return false; diff --git a/src/rpc.cpp b/src/rpc.cpp index 8a02d95c1b..e2ae17e47b 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -723,7 +723,8 @@ Value movecmd(const Array& params, bool fHelp) strComment = params[4].get_str(); CWalletDB walletdb(pwalletMain->strWalletFile); - walletdb.TxnBegin(); + if (!walletdb.TxnBegin()) + throw JSONRPCError(-20, "database error"); int64 nNow = GetAdjustedTime(); @@ -745,7 +746,8 @@ Value movecmd(const Array& params, bool fHelp) credit.strComment = strComment; walletdb.WriteAccountingEntry(credit); - walletdb.TxnCommit(); + if (!walletdb.TxnCommit()) + throw JSONRPCError(-20, "database error"); return true; } diff --git a/src/wallet.cpp b/src/wallet.cpp index b3eb06a3f6..6bf8e582f8 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -165,7 +165,8 @@ bool CWallet::EncryptWallet(const string& strWalletPassphrase) if (fFileBacked) { pwalletdbEncryption = new CWalletDB(strWalletFile); - pwalletdbEncryption->TxnBegin(); + if (!pwalletdbEncryption->TxnBegin()) + return false; pwalletdbEncryption->WriteMasterKey(nMasterKeyMaxID, kMasterKey); } -- cgit v1.2.3 From 3a05f1d2ce45d5d9fbbd7b1b897f3c6e32f58720 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Mon, 14 May 2012 01:11:11 -0400 Subject: Always check return values of TxnBegin() and TxnCommit() --- src/bitcoinrpc.cpp | 6 ++++-- src/main.cpp | 12 +++++++++--- src/wallet.cpp | 3 ++- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 4426ac502e..93c9b4110a 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -840,7 +840,8 @@ Value movecmd(const Array& params, bool fHelp) strComment = params[4].get_str(); CWalletDB walletdb(pwalletMain->strWalletFile); - walletdb.TxnBegin(); + if (!walletdb.TxnBegin()) + throw JSONRPCError(-20, "database error"); int64 nNow = GetAdjustedTime(); @@ -862,7 +863,8 @@ Value movecmd(const Array& params, bool fHelp) credit.strComment = strComment; walletdb.WriteAccountingEntry(credit); - walletdb.TxnCommit(); + if (!walletdb.TxnCommit()) + throw JSONRPCError(-20, "database error"); return true; } diff --git a/src/main.cpp b/src/main.cpp index 7e4ed1100c..f13f6165b3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1496,7 +1496,9 @@ bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew) { uint256 hash = GetHash(); - txdb.TxnBegin(); + if (!txdb.TxnBegin()) + return error("SetBestChain() : TxnBegin failed"); + if (pindexGenesisBlock == NULL && hash == hashGenesisBlock) { txdb.WriteHashBestChain(hash); @@ -1545,7 +1547,10 @@ bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew) printf("SetBestChain() : ReadFromDisk failed\n"); break; } - txdb.TxnBegin(); + if (!txdb.TxnBegin()) { + printf("SetBestChain() : TxnBegin 2 failed\n"); + break; + } // errors now are not fatal, we still did a reorganisation to a new chain in a valid way if (!block.SetBestChainInner(txdb, pindex)) break; @@ -1603,7 +1608,8 @@ bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos) pindexNew->bnChainWork = (pindexNew->pprev ? pindexNew->pprev->bnChainWork : 0) + pindexNew->GetBlockWork(); CTxDB txdb; - txdb.TxnBegin(); + if (!txdb.TxnBegin()) + return false; txdb.WriteBlockIndex(CDiskBlockIndex(pindexNew)); if (!txdb.TxnCommit()) return false; diff --git a/src/wallet.cpp b/src/wallet.cpp index bd17bd926f..bb7f11c754 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -234,7 +234,8 @@ bool CWallet::EncryptWallet(const SecureString& strWalletPassphrase) if (fFileBacked) { pwalletdbEncryption = new CWalletDB(strWalletFile); - pwalletdbEncryption->TxnBegin(); + if (!pwalletdbEncryption->TxnBegin()) + return false; pwalletdbEncryption->WriteMasterKey(nMasterKeyMaxID, kMasterKey); } -- cgit v1.2.3 From fba681519a5b63cdda9e61980cc6e2acb6b8f738 Mon Sep 17 00:00:00 2001 From: Christian von Roques Date: Thu, 17 May 2012 11:33:59 -0400 Subject: Fix typo. libarcode => libqrcode --- doc/build-unix.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build-unix.txt b/doc/build-unix.txt index c5b4205084..a9bc551d3c 100644 --- a/doc/build-unix.txt +++ b/doc/build-unix.txt @@ -40,7 +40,7 @@ turned off by default. Set USE_UPNP to a different value to control this: libqrencode may be used for QRCode image generation. It can be downloaded from http://fukuchi.org/works/qrencode/index.html.en, or installed via your package manager. Set USE_QRCODE to control this: - USE_QRCODE=0 (the default) No QRCode support - libarcode not required + USE_QRCODE=0 (the default) No QRCode support - libqrcode not required USE_QRCODE=1 QRCode support enabled Licenses of statically linked libraries: -- cgit v1.2.3 From 77b0f86a43653dac51f97d57e5d450c9871372bf Mon Sep 17 00:00:00 2001 From: R E Broadley Date: Thu, 17 May 2012 16:15:28 +0100 Subject: Add /bin/sh to bitcoin-qt.pro - as some filesystems don't have the execute flag. --- bitcoin-qt.pro | 2 +- src/makefile.linux-mingw | 2 +- src/makefile.osx | 2 +- src/makefile.unix | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 82bbfabc2b..82d19faa34 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -83,7 +83,7 @@ contains(BITCOIN_NEED_QT_PLUGINS, 1) { # regenerate src/build.h !windows || contains(USE_BUILD_INFO, 1) { genbuild.depends = FORCE - genbuild.commands = cd $$PWD; share/genbuild.sh $$OUT_PWD/build/build.h + genbuild.commands = cd $$PWD; /bin/sh share/genbuild.sh $$OUT_PWD/build/build.h genbuild.target = genbuildhook PRE_TARGETDEPS += genbuildhook QMAKE_EXTRA_TARGETS += genbuild diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 81934187e2..540dacb2d1 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -69,7 +69,7 @@ OBJS= \ all: bitcoind.exe obj/build.h: FORCE - ../share/genbuild.sh obj/build.h + /bin/sh ../share/genbuild.sh obj/build.h version.cpp: obj/build.h DEFS += -DHAVE_BUILD_INFO diff --git a/src/makefile.osx b/src/makefile.osx index be95aab446..0df1519984 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -106,7 +106,7 @@ all: bitcoind -include obj-test/*.P obj/build.h: FORCE - ../share/genbuild.sh obj/build.h + /bin/sh ../share/genbuild.sh obj/build.h version.cpp: obj/build.h DEFS += -DHAVE_BUILD_INFO diff --git a/src/makefile.unix b/src/makefile.unix index 90be398976..5c452582b6 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -116,7 +116,7 @@ all: bitcoind -include obj-test/*.P obj/build.h: FORCE - ../share/genbuild.sh obj/build.h + /bin/sh ../share/genbuild.sh obj/build.h version.cpp: obj/build.h DEFS += -DHAVE_BUILD_INFO -- cgit v1.2.3 From c45c2c380de5a0591df94156367f057e37c41a09 Mon Sep 17 00:00:00 2001 From: R E Broadley Date: Thu, 17 May 2012 19:09:21 +0100 Subject: Add build directory to .gitignore, so that it's not tracked. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 66f93867d8..6ed527d5d4 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ qrc_*.cpp *.pro.user #mac specific .DS_Store +build -- cgit v1.2.3 From 334668cde4e63d08165aa95737cc95a00fbd252b Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Mon, 14 May 2012 07:49:17 +0200 Subject: remove 2 ugly spaces from a message string (PARTIAL of 966ae00) --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index abacbe5e63..510aca92b4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1637,7 +1637,7 @@ bool CheckDiskSpace(uint64 nAdditionalBytes) if (nFreeBytesAvailable < (uint64)15000000 + nAdditionalBytes) { fShutdown = true; - string strMessage = _("Warning: Disk space is low "); + string strMessage = _("Warning: Disk space is low"); strMiscWarning = strMessage; printf("*** %s\n", strMessage.c_str()); ThreadSafeMessageBox(strMessage, "Bitcoin", wxOK | wxICON_EXCLAMATION); -- cgit v1.2.3 From e10622d1297e638109bbf58c35ad008f7acbae7c Mon Sep 17 00:00:00 2001 From: Fordy Date: Fri, 18 May 2012 22:02:28 +0800 Subject: Update License in File Headers I originally created a pull to replace the "COPYING" in crypter.cpp and crypter.h, but it turned out that COPYING was actually the correct file. --- src/addrman.cpp | 2 +- src/addrman.h | 2 +- src/allocators.h | 2 +- src/base58.h | 2 +- src/bignum.h | 2 +- src/bitcoinrpc.cpp | 2 +- src/bitcoinrpc.h | 2 +- src/checkpoints.cpp | 2 +- src/checkpoints.h | 2 +- src/compat.h | 2 +- src/db.cpp | 2 +- src/db.h | 2 +- src/init.cpp | 2 +- src/init.h | 2 +- src/irc.cpp | 2 +- src/irc.h | 2 +- src/key.cpp | 2 +- src/key.h | 2 +- src/keystore.cpp | 2 +- src/keystore.h | 2 +- src/main.cpp | 3 ++- src/main.h | 2 +- src/mruset.h | 2 +- src/net.cpp | 2 +- src/net.h | 2 +- src/netbase.cpp | 2 +- src/netbase.h | 2 +- src/noui.cpp | 2 +- src/protocol.cpp | 2 +- src/protocol.h | 2 +- src/rpcdump.cpp | 2 +- src/script.cpp | 2 +- src/script.h | 2 +- src/serialize.h | 2 +- src/ui_interface.h | 2 +- src/uint256.h | 2 +- src/util.cpp | 2 +- src/util.h | 2 +- src/version.cpp | 2 +- src/version.h | 2 +- src/wallet.cpp | 2 +- src/wallet.h | 2 +- src/walletdb.cpp | 2 +- src/walletdb.h | 2 +- 44 files changed, 45 insertions(+), 44 deletions(-) diff --git a/src/addrman.cpp b/src/addrman.cpp index 10d005aae9..8257a46a15 100644 --- a/src/addrman.cpp +++ b/src/addrman.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2012 Pieter Wuille // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "addrman.h" diff --git a/src/addrman.h b/src/addrman.h index 3768614cfe..aa42025c07 100644 --- a/src/addrman.h +++ b/src/addrman.h @@ -1,6 +1,6 @@ // Copyright (c) 2012 Pieter Wuille // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef _BITCOIN_ADDRMAN #define _BITCOIN_ADDRMAN 1 diff --git a/src/allocators.h b/src/allocators.h index fa9534bc52..4b3356e874 100644 --- a/src/allocators.h +++ b/src/allocators.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_ALLOCATORS_H #define BITCOIN_ALLOCATORS_H diff --git a/src/base58.h b/src/base58.h index 90ce34b05b..bc681a08ca 100644 --- a/src/base58.h +++ b/src/base58.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin Developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. // diff --git a/src/bignum.h b/src/bignum.h index f0971e8850..307017b0ab 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_BIGNUM_H #define BITCOIN_BIGNUM_H diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 0b851c4e70..cf6e4fb6b7 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "main.h" #include "wallet.h" diff --git a/src/bitcoinrpc.h b/src/bitcoinrpc.h index 6b7293ed19..f8216867b6 100644 --- a/src/bitcoinrpc.h +++ b/src/bitcoinrpc.h @@ -1,7 +1,7 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef _BITCOINRPC_H_ #define _BITCOINRPC_H_ 1 diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index cf56fa0695..6679bc93d4 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include // for 'map_list_of()' #include diff --git a/src/checkpoints.h b/src/checkpoints.h index 5d3228f3fc..70e936564c 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -1,6 +1,6 @@ // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_CHECKPOINT_H #define BITCOIN_CHECKPOINT_H diff --git a/src/compat.h b/src/compat.h index 804a8141b5..79ebb9323a 100644 --- a/src/compat.h +++ b/src/compat.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef _BITCOIN_COMPAT_H #define _BITCOIN_COMPAT_H 1 diff --git a/src/db.cpp b/src/db.cpp index 12647e568a..4d2965fac9 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "db.h" #include "util.h" diff --git a/src/db.h b/src/db.h index 3ce8f1758f..ae0ffd277f 100644 --- a/src/db.h +++ b/src/db.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_DB_H #define BITCOIN_DB_H diff --git a/src/init.cpp b/src/init.cpp index 3fe6d1b091..96766f8b01 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "db.h" #include "walletdb.h" #include "bitcoinrpc.h" diff --git a/src/init.h b/src/init.h index 0a2f0d8932..4826ab167c 100644 --- a/src/init.h +++ b/src/init.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_INIT_H #define BITCOIN_INIT_H diff --git a/src/irc.cpp b/src/irc.cpp index 237497055d..d8129c6113 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "irc.h" #include "net.h" diff --git a/src/irc.h b/src/irc.h index 08d62b83d2..4a42f76512 100644 --- a/src/irc.h +++ b/src/irc.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_IRC_H #define BITCOIN_IRC_H diff --git a/src/key.cpp b/src/key.cpp index e0844412d9..dab1eed2eb 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include #include diff --git a/src/key.h b/src/key.h index 1579cdc40a..f687f334ce 100644 --- a/src/key.h +++ b/src/key.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_KEY_H #define BITCOIN_KEY_H diff --git a/src/keystore.cpp b/src/keystore.cpp index 313518711b..3cb95767bb 100644 --- a/src/keystore.cpp +++ b/src/keystore.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "keystore.h" #include "script.h" diff --git a/src/keystore.h b/src/keystore.h index 76820e204b..3f1f0ce9dd 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_KEYSTORE_H #define BITCOIN_KEYSTORE_H diff --git a/src/main.cpp b/src/main.cpp index c1c57d1d2b..ad5ab6e4be 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,7 +1,8 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "checkpoints.h" #include "db.h" #include "net.h" diff --git a/src/main.h b/src/main.h index 262e77e806..2439572e19 100644 --- a/src/main.h +++ b/src/main.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_MAIN_H #define BITCOIN_MAIN_H diff --git a/src/mruset.h b/src/mruset.h index b21f18563c..ad2e160d3a 100644 --- a/src/mruset.h +++ b/src/mruset.h @@ -1,6 +1,6 @@ // Copyright (c) 2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_MRUSET_H #define BITCOIN_MRUSET_H diff --git a/src/net.cpp b/src/net.cpp index 88a3b436c7..1227412fe4 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "irc.h" #include "db.h" diff --git a/src/net.h b/src/net.h index 4cc82b237e..65118a4574 100644 --- a/src/net.h +++ b/src/net.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NET_H #define BITCOIN_NET_H diff --git a/src/netbase.cpp b/src/netbase.cpp index 8b30ffc140..6cb8aa8b9c 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "netbase.h" #include "util.h" diff --git a/src/netbase.h b/src/netbase.h index 00b6850b2a..5bf3fdd2d2 100644 --- a/src/netbase.h +++ b/src/netbase.h @@ -1,6 +1,6 @@ // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NETBASE_H #define BITCOIN_NETBASE_H diff --git a/src/noui.cpp b/src/noui.cpp index 08a08b439a..6d984680b1 100644 --- a/src/noui.cpp +++ b/src/noui.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "ui_interface.h" #include diff --git a/src/protocol.cpp b/src/protocol.cpp index fda31966f2..d6e340e366 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "protocol.h" #include "util.h" diff --git a/src/protocol.h b/src/protocol.h index f7331c1923..b516f1b897 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef __cplusplus # error This header can only be compiled as C++. diff --git a/src/rpcdump.cpp b/src/rpcdump.cpp index 1bc87e9217..2db4882068 100644 --- a/src/rpcdump.cpp +++ b/src/rpcdump.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2012 Bitcoin Developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "init.h" // for pwalletMain #include "bitcoinrpc.h" diff --git a/src/script.cpp b/src/script.cpp index 65e9b7c9a2..9f453022cb 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include using namespace std; diff --git a/src/script.h b/src/script.h index e41e09b6b3..5397a1972f 100644 --- a/src/script.h +++ b/src/script.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef H_BITCOIN_SCRIPT #define H_BITCOIN_SCRIPT diff --git a/src/serialize.h b/src/serialize.h index fe2aebe7f5..349a40bfe8 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_SERIALIZE_H #define BITCOIN_SERIALIZE_H diff --git a/src/ui_interface.h b/src/ui_interface.h index 514768086d..63d2e5c1d0 100644 --- a/src/ui_interface.h +++ b/src/ui_interface.h @@ -1,6 +1,6 @@ // Copyright (c) 2010 Satoshi Nakamoto // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UI_INTERFACE_H #define BITCOIN_UI_INTERFACE_H diff --git a/src/uint256.h b/src/uint256.h index 9966a14ed7..fc5ed26592 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UINT256_H #define BITCOIN_UINT256_H diff --git a/src/util.cpp b/src/util.cpp index 3ad31dd6c2..ef8f755f54 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "util.h" #include "strlcpy.h" diff --git a/src/util.h b/src/util.h index f2a70d839a..780b9db22d 100644 --- a/src/util.h +++ b/src/util.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UTIL_H #define BITCOIN_UTIL_H diff --git a/src/version.cpp b/src/version.cpp index 0c1e8bfa80..60b7aae2e5 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include #include "version.h" diff --git a/src/version.h b/src/version.h index b54531f246..3b26c8f6ca 100644 --- a/src/version.h +++ b/src/version.h @@ -1,6 +1,6 @@ // Copyright (c) 2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_VERSION_H #define BITCOIN_VERSION_H diff --git a/src/wallet.cpp b/src/wallet.cpp index 998909897f..d0684130a6 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "wallet.h" #include "walletdb.h" diff --git a/src/wallet.h b/src/wallet.h index 44c11e2ec4..9e451f89d6 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_WALLET_H #define BITCOIN_WALLET_H diff --git a/src/walletdb.cpp b/src/walletdb.cpp index e5d57288e8..865911c434 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "walletdb.h" #include "wallet.h" diff --git a/src/walletdb.h b/src/walletdb.h index 46ba7967ca..dee1750262 100644 --- a/src/walletdb.h +++ b/src/walletdb.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_WALLETDB_H #define BITCOIN_WALLETDB_H -- cgit v1.2.3 From d11488abd05cb39a9f481e7c4c35f780197a3d28 Mon Sep 17 00:00:00 2001 From: Fordy Date: Fri, 18 May 2012 22:02:28 +0800 Subject: Update License in File Headers I originally created a pull to replace the "COPYING" in crypter.cpp and crypter.h, but it turned out that COPYING was actually the correct file. --- src/addrman.cpp | 2 +- src/addrman.h | 2 +- src/base58.h | 2 +- src/bignum.h | 2 +- src/bitcoinrpc.cpp | 2 +- src/bitcoinrpc.h | 2 +- src/checkpoints.cpp | 2 +- src/checkpoints.h | 2 +- src/compat.h | 2 +- src/db.cpp | 2 +- src/db.h | 2 +- src/headers.h | 2 +- src/init.cpp | 2 +- src/init.h | 2 +- src/irc.cpp | 2 +- src/irc.h | 2 +- src/key.cpp | 2 +- src/key.h | 2 +- src/keystore.cpp | 2 +- src/keystore.h | 2 +- src/main.cpp | 3 ++- src/main.h | 2 +- src/mruset.h | 2 +- src/net.cpp | 2 +- src/net.h | 2 +- src/netbase.cpp | 2 +- src/netbase.h | 2 +- src/noui.h | 2 +- src/protocol.cpp | 2 +- src/protocol.h | 2 +- src/qtui.h | 2 +- src/rpcdump.cpp | 2 +- src/script.cpp | 2 +- src/script.h | 2 +- src/serialize.h | 2 +- src/uint256.h | 2 +- src/util.cpp | 2 +- src/util.h | 2 +- src/wallet.cpp | 2 +- src/wallet.h | 2 +- 40 files changed, 41 insertions(+), 40 deletions(-) diff --git a/src/addrman.cpp b/src/addrman.cpp index 9edbcc3a5f..cdc5957726 100644 --- a/src/addrman.cpp +++ b/src/addrman.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2012 Pieter Wuille // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "addrman.h" diff --git a/src/addrman.h b/src/addrman.h index 5f1d7b2af9..950798784d 100644 --- a/src/addrman.h +++ b/src/addrman.h @@ -1,6 +1,6 @@ // Copyright (c) 2012 Pieter Wuille // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef _BITCOIN_ADDRMAN #define _BITCOIN_ADDRMAN 1 diff --git a/src/base58.h b/src/base58.h index 90ce34b05b..bc681a08ca 100644 --- a/src/base58.h +++ b/src/base58.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin Developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. // diff --git a/src/bignum.h b/src/bignum.h index e691dbe94e..abcc052efe 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_BIGNUM_H #define BITCOIN_BIGNUM_H diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 93c9b4110a..71725ac335 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "db.h" diff --git a/src/bitcoinrpc.h b/src/bitcoinrpc.h index a9cf3296f7..254def86b2 100644 --- a/src/bitcoinrpc.h +++ b/src/bitcoinrpc.h @@ -1,7 +1,7 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. void ThreadRPCServer(void* parg); int CommandLineRPC(int argc, char *argv[]); diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index f5ce053870..ee74d25930 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include // for 'map_list_of()' #include diff --git a/src/checkpoints.h b/src/checkpoints.h index 38902ac0a1..df3e373782 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -1,6 +1,6 @@ // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_CHECKPOINT_H #define BITCOIN_CHECKPOINT_H diff --git a/src/compat.h b/src/compat.h index 882610031a..0b4e2f8d43 100644 --- a/src/compat.h +++ b/src/compat.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef _BITCOIN_COMPAT_H #define _BITCOIN_COMPAT_H 1 diff --git a/src/db.cpp b/src/db.cpp index 6cf7e28b60..2dddcf095a 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "db.h" diff --git a/src/db.h b/src/db.h index 47fa40245e..38daad3e91 100644 --- a/src/db.h +++ b/src/db.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_DB_H #define BITCOIN_DB_H diff --git a/src/headers.h b/src/headers.h index 88f5476f8f..fb86a6fe02 100644 --- a/src/headers.h +++ b/src/headers.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifdef _MSC_VER #pragma warning(disable:4786) diff --git a/src/init.cpp b/src/init.cpp index 4078b7e0cb..8d8ce8f4af 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "db.h" #include "bitcoinrpc.h" diff --git a/src/init.h b/src/init.h index 0d60e7549f..80894827a0 100644 --- a/src/init.h +++ b/src/init.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_INIT_H #define BITCOIN_INIT_H diff --git a/src/irc.cpp b/src/irc.cpp index d535f59c4c..836ef0bee2 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "irc.h" diff --git a/src/irc.h b/src/irc.h index 08d62b83d2..4a42f76512 100644 --- a/src/irc.h +++ b/src/irc.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_IRC_H #define BITCOIN_IRC_H diff --git a/src/key.cpp b/src/key.cpp index e0844412d9..dab1eed2eb 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include #include diff --git a/src/key.h b/src/key.h index 8f220f1c75..ba68f0dd70 100644 --- a/src/key.h +++ b/src/key.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_KEY_H #define BITCOIN_KEY_H diff --git a/src/keystore.cpp b/src/keystore.cpp index 23f9e32fa2..5b8420674d 100644 --- a/src/keystore.cpp +++ b/src/keystore.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "crypter.h" diff --git a/src/keystore.h b/src/keystore.h index 52f5f21aa9..3e56919d3b 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_KEYSTORE_H #define BITCOIN_KEYSTORE_H diff --git a/src/main.cpp b/src/main.cpp index f13f6165b3..ad75892fb9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,7 +1,8 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "headers.h" #include "checkpoints.h" #include "db.h" diff --git a/src/main.h b/src/main.h index 9ae4a1d391..be67fbf82c 100644 --- a/src/main.h +++ b/src/main.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_MAIN_H #define BITCOIN_MAIN_H diff --git a/src/mruset.h b/src/mruset.h index b21f18563c..ad2e160d3a 100644 --- a/src/mruset.h +++ b/src/mruset.h @@ -1,6 +1,6 @@ // Copyright (c) 2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_MRUSET_H #define BITCOIN_MRUSET_H diff --git a/src/net.cpp b/src/net.cpp index e5cb6d4b24..6707d790e2 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "irc.h" diff --git a/src/net.h b/src/net.h index 82316917d2..bf8ed80666 100644 --- a/src/net.h +++ b/src/net.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NET_H #define BITCOIN_NET_H diff --git a/src/netbase.cpp b/src/netbase.cpp index 8b30ffc140..6cb8aa8b9c 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "netbase.h" #include "util.h" diff --git a/src/netbase.h b/src/netbase.h index 26c2140155..24e94f2a2d 100644 --- a/src/netbase.h +++ b/src/netbase.h @@ -1,6 +1,6 @@ // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NETBASE_H #define BITCOIN_NETBASE_H diff --git a/src/noui.h b/src/noui.h index 8888db69f8..819e9de5d1 100644 --- a/src/noui.h +++ b/src/noui.h @@ -1,7 +1,7 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NOUI_H #define BITCOIN_NOUI_H diff --git a/src/protocol.cpp b/src/protocol.cpp index 06306cf8e1..213e8a4d53 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "protocol.h" #include "util.h" diff --git a/src/protocol.h b/src/protocol.h index e639127355..69e3996956 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef __cplusplus # error This header can only be compiled as C++. diff --git a/src/qtui.h b/src/qtui.h index 05a56678d1..c25abf5e67 100644 --- a/src/qtui.h +++ b/src/qtui.h @@ -1,6 +1,6 @@ // Copyright (c) 2010 Satoshi Nakamoto // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_EXTERNUI_H #define BITCOIN_EXTERNUI_H diff --git a/src/rpcdump.cpp b/src/rpcdump.cpp index d59536e254..ae7f1cdd4c 100644 --- a/src/rpcdump.cpp +++ b/src/rpcdump.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2012 Bitcoin Developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "init.h" // for pwalletMain diff --git a/src/script.cpp b/src/script.cpp index 21f101e1c5..074d29914b 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" using namespace std; diff --git a/src/script.h b/src/script.h index 1aac324f62..bbc6498fbb 100644 --- a/src/script.h +++ b/src/script.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef H_BITCOIN_SCRIPT #define H_BITCOIN_SCRIPT diff --git a/src/serialize.h b/src/serialize.h index 2cb3563f8f..8b75cf8b83 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_SERIALIZE_H #define BITCOIN_SERIALIZE_H diff --git a/src/uint256.h b/src/uint256.h index 6215b9630e..c07bce4ea0 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UINT256_H #define BITCOIN_UINT256_H diff --git a/src/util.cpp b/src/util.cpp index bfc0eb81d4..393f927491 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "strlcpy.h" #include diff --git a/src/util.h b/src/util.h index 4fa5a08982..e0821cce19 100644 --- a/src/util.h +++ b/src/util.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UTIL_H #define BITCOIN_UTIL_H diff --git a/src/wallet.cpp b/src/wallet.cpp index bb7f11c754..04faef67b7 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "db.h" diff --git a/src/wallet.h b/src/wallet.h index c685345626..1b17dea9db 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_WALLET_H #define BITCOIN_WALLET_H -- cgit v1.2.3 From b2de28c74040595fa3fe5353ea063a8c3874f6b1 Mon Sep 17 00:00:00 2001 From: Fordy Date: Fri, 18 May 2012 22:02:28 +0800 Subject: Update License in File Headers I originally created a pull to replace the "COPYING" in crypter.cpp and crypter.h, but it turned out that COPYING was actually the correct file. --- src/base58.h | 2 +- src/bignum.h | 2 +- src/bitcoinrpc.cpp | 2 +- src/bitcoinrpc.h | 2 +- src/checkpoints.cpp | 2 +- src/checkpoints.h | 2 +- src/db.cpp | 2 +- src/db.h | 2 +- src/headers.h | 2 +- src/init.cpp | 2 +- src/init.h | 2 +- src/irc.cpp | 2 +- src/irc.h | 2 +- src/key.h | 2 +- src/keystore.cpp | 2 +- src/keystore.h | 2 +- src/main.cpp | 3 ++- src/main.h | 2 +- src/net.cpp | 2 +- src/net.h | 2 +- src/noui.h | 2 +- src/protocol.cpp | 2 +- src/protocol.h | 2 +- src/qtui.h | 2 +- src/script.cpp | 2 +- src/script.h | 2 +- src/serialize.h | 2 +- src/uint256.h | 2 +- src/util.cpp | 2 +- src/util.h | 2 +- src/wallet.cpp | 2 +- src/wallet.h | 2 +- 32 files changed, 33 insertions(+), 32 deletions(-) diff --git a/src/base58.h b/src/base58.h index d7fedb1a74..d92054da04 100644 --- a/src/base58.h +++ b/src/base58.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin Developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. // diff --git a/src/bignum.h b/src/bignum.h index fd5364e810..bd42f77ce0 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_BIGNUM_H #define BITCOIN_BIGNUM_H diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 2f42fae1ee..4003f525aa 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "db.h" diff --git a/src/bitcoinrpc.h b/src/bitcoinrpc.h index f267400797..890975eb2f 100644 --- a/src/bitcoinrpc.h +++ b/src/bitcoinrpc.h @@ -1,7 +1,7 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. void ThreadRPCServer(void* parg); int CommandLineRPC(int argc, char *argv[]); diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index f5ce053870..ee74d25930 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include // for 'map_list_of()' #include diff --git a/src/checkpoints.h b/src/checkpoints.h index 9d52da404f..e38b8b5f89 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -1,6 +1,6 @@ // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_CHECKPOINT_H #define BITCOIN_CHECKPOINT_H diff --git a/src/db.cpp b/src/db.cpp index db206c7842..02b3327bee 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "db.h" diff --git a/src/db.h b/src/db.h index 15bfb29c8e..8f6c42d733 100644 --- a/src/db.h +++ b/src/db.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_DB_H #define BITCOIN_DB_H diff --git a/src/headers.h b/src/headers.h index ea011c5656..cef2718c9a 100644 --- a/src/headers.h +++ b/src/headers.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifdef _MSC_VER #pragma warning(disable:4786) diff --git a/src/init.cpp b/src/init.cpp index 168ebee67d..5f1e4f5307 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "db.h" #include "bitcoinrpc.h" diff --git a/src/init.h b/src/init.h index 4017f25707..2086b31348 100644 --- a/src/init.h +++ b/src/init.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_INIT_H #define BITCOIN_INIT_H diff --git a/src/irc.cpp b/src/irc.cpp index 5ac2306f16..76157bd034 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "irc.h" diff --git a/src/irc.h b/src/irc.h index 6945b2cecb..4fc071f086 100644 --- a/src/irc.h +++ b/src/irc.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_IRC_H #define BITCOIN_IRC_H diff --git a/src/key.h b/src/key.h index d096b394d9..4dc4914bdc 100644 --- a/src/key.h +++ b/src/key.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_KEY_H #define BITCOIN_KEY_H diff --git a/src/keystore.cpp b/src/keystore.cpp index 2e4de87af5..7836ceda5d 100644 --- a/src/keystore.cpp +++ b/src/keystore.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "db.h" diff --git a/src/keystore.h b/src/keystore.h index 8aaf3e6440..87c84010d8 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_KEYSTORE_H #define BITCOIN_KEYSTORE_H diff --git a/src/main.cpp b/src/main.cpp index a5eac010cc..36871b5a06 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,7 +1,8 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "headers.h" #include "checkpoints.h" #include "db.h" diff --git a/src/main.h b/src/main.h index 4b7e1948fc..f2350cfc7b 100644 --- a/src/main.h +++ b/src/main.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_MAIN_H #define BITCOIN_MAIN_H diff --git a/src/net.cpp b/src/net.cpp index e92c659a39..e1eea0d1b3 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "irc.h" diff --git a/src/net.h b/src/net.h index 5666805d58..96e3680d38 100644 --- a/src/net.h +++ b/src/net.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NET_H #define BITCOIN_NET_H diff --git a/src/noui.h b/src/noui.h index 0bbf45a72a..4ba496bf78 100644 --- a/src/noui.h +++ b/src/noui.h @@ -1,7 +1,7 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NOUI_H #define BITCOIN_NOUI_H diff --git a/src/protocol.cpp b/src/protocol.cpp index 16ad7468e1..3376c37e7b 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "protocol.h" #include "util.h" diff --git a/src/protocol.h b/src/protocol.h index c8723fa3ea..2d90bafe61 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef __cplusplus # error This header can only be compiled as C++. diff --git a/src/qtui.h b/src/qtui.h index 193f849249..8f3e139ec8 100644 --- a/src/qtui.h +++ b/src/qtui.h @@ -1,6 +1,6 @@ // Copyright (c) 2010 Satoshi Nakamoto // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_EXTERNUI_H #define BITCOIN_EXTERNUI_H diff --git a/src/script.cpp b/src/script.cpp index a7e4d3e280..bbb32f68c7 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" using namespace std; diff --git a/src/script.h b/src/script.h index 7d15bbaebe..502bce1e54 100644 --- a/src/script.h +++ b/src/script.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef H_BITCOIN_SCRIPT #define H_BITCOIN_SCRIPT diff --git a/src/serialize.h b/src/serialize.h index e414bd07aa..b1fabb7a0e 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_SERIALIZE_H #define BITCOIN_SERIALIZE_H diff --git a/src/uint256.h b/src/uint256.h index 320ee7e95a..b7a5c3bf77 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UINT256_H #define BITCOIN_UINT256_H diff --git a/src/util.cpp b/src/util.cpp index 66161c7e5a..be6267688c 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "strlcpy.h" diff --git a/src/util.h b/src/util.h index 45b14420f1..da8e7630b8 100644 --- a/src/util.h +++ b/src/util.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UTIL_H #define BITCOIN_UTIL_H diff --git a/src/wallet.cpp b/src/wallet.cpp index 7d1266e80d..3cce33608f 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "db.h" diff --git a/src/wallet.h b/src/wallet.h index 90ee518ae4..7fb1a19ef1 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_WALLET_H #define BITCOIN_WALLET_H -- cgit v1.2.3 From 58ac600b2c94f12309fc5e18933891590dc1eb4c Mon Sep 17 00:00:00 2001 From: Fordy Date: Fri, 18 May 2012 22:02:28 +0800 Subject: Update License in File Headers I originally created a pull to replace the "COPYING" in crypter.cpp and crypter.h, but it turned out that COPYING was actually the correct file. --- src/base58.h | 2 +- src/bignum.h | 2 +- src/checkpoints.cpp | 2 +- src/checkpoints.h | 2 +- src/db.cpp | 2 +- src/db.h | 2 +- src/headers.h | 2 +- src/init.cpp | 2 +- src/init.h | 2 +- src/irc.cpp | 2 +- src/irc.h | 2 +- src/key.h | 2 +- src/keystore.cpp | 2 +- src/keystore.h | 2 +- src/main.cpp | 3 ++- src/main.h | 2 +- src/net.cpp | 2 +- src/net.h | 2 +- src/noui.h | 2 +- src/protocol.cpp | 2 +- src/protocol.h | 2 +- src/rpc.cpp | 2 +- src/rpc.h | 2 +- src/script.cpp | 2 +- src/script.h | 2 +- src/serialize.h | 2 +- src/ui.cpp | 2 +- src/ui.h | 2 +- src/uibase.cpp | 2 +- src/uint256.h | 2 +- src/util.cpp | 2 +- src/util.h | 2 +- src/wallet.cpp | 2 +- src/wallet.h | 2 +- src/xpm/about.xpm | 2 +- 35 files changed, 36 insertions(+), 35 deletions(-) diff --git a/src/base58.h b/src/base58.h index fe1927255c..43f3ac2881 100644 --- a/src/base58.h +++ b/src/base58.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin Developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. // diff --git a/src/bignum.h b/src/bignum.h index fd5364e810..bd42f77ce0 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_BIGNUM_H #define BITCOIN_BIGNUM_H diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index f5ce053870..ee74d25930 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include // for 'map_list_of()' #include diff --git a/src/checkpoints.h b/src/checkpoints.h index 9d52da404f..e38b8b5f89 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -1,6 +1,6 @@ // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_CHECKPOINT_H #define BITCOIN_CHECKPOINT_H diff --git a/src/db.cpp b/src/db.cpp index 4c0c557a5a..68d317106d 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "db.h" diff --git a/src/db.h b/src/db.h index 15bfb29c8e..8f6c42d733 100644 --- a/src/db.h +++ b/src/db.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_DB_H #define BITCOIN_DB_H diff --git a/src/headers.h b/src/headers.h index 88a16d96d7..537d405b88 100644 --- a/src/headers.h +++ b/src/headers.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifdef _MSC_VER #pragma warning(disable:4786) diff --git a/src/init.cpp b/src/init.cpp index 2dccc81bf5..393d250003 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "db.h" #include "rpc.h" diff --git a/src/init.h b/src/init.h index 4017f25707..2086b31348 100644 --- a/src/init.h +++ b/src/init.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_INIT_H #define BITCOIN_INIT_H diff --git a/src/irc.cpp b/src/irc.cpp index 5ac2306f16..76157bd034 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "irc.h" diff --git a/src/irc.h b/src/irc.h index 6945b2cecb..4fc071f086 100644 --- a/src/irc.h +++ b/src/irc.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_IRC_H #define BITCOIN_IRC_H diff --git a/src/key.h b/src/key.h index 6bf750847e..77b6aeaaa0 100644 --- a/src/key.h +++ b/src/key.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_KEY_H #define BITCOIN_KEY_H diff --git a/src/keystore.cpp b/src/keystore.cpp index 2e4de87af5..7836ceda5d 100644 --- a/src/keystore.cpp +++ b/src/keystore.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "db.h" diff --git a/src/keystore.h b/src/keystore.h index cb297c35ab..fa70933d7c 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_KEYSTORE_H #define BITCOIN_KEYSTORE_H diff --git a/src/main.cpp b/src/main.cpp index 510aca92b4..1925c13185 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,7 +1,8 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include "headers.h" #include "checkpoints.h" #include "db.h" diff --git a/src/main.h b/src/main.h index e835cdd7bb..b1c78854a1 100644 --- a/src/main.h +++ b/src/main.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_MAIN_H #define BITCOIN_MAIN_H diff --git a/src/net.cpp b/src/net.cpp index 5135a88b32..04d278c9f1 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "irc.h" diff --git a/src/net.h b/src/net.h index 24ab43a503..069328de56 100644 --- a/src/net.h +++ b/src/net.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NET_H #define BITCOIN_NET_H diff --git a/src/noui.h b/src/noui.h index cbe6fa4c7b..ad05e1c764 100644 --- a/src/noui.h +++ b/src/noui.h @@ -1,7 +1,7 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NOUI_H #define BITCOIN_NOUI_H diff --git a/src/protocol.cpp b/src/protocol.cpp index 7d80d5d5d0..a22eba4891 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "protocol.h" #include "util.h" diff --git a/src/protocol.h b/src/protocol.h index 6db64900f2..274b0d3496 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef __cplusplus # error This header can only be compiled as C++. diff --git a/src/rpc.cpp b/src/rpc.cpp index e2ae17e47b..acd7a8933a 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "cryptopp/sha.h" diff --git a/src/rpc.h b/src/rpc.h index f267400797..890975eb2f 100644 --- a/src/rpc.h +++ b/src/rpc.h @@ -1,7 +1,7 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. void ThreadRPCServer(void* parg); int CommandLineRPC(int argc, char *argv[]); diff --git a/src/script.cpp b/src/script.cpp index 377a7abb28..e7664d2cfc 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" using namespace std; diff --git a/src/script.h b/src/script.h index 7d15bbaebe..502bce1e54 100644 --- a/src/script.h +++ b/src/script.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef H_BITCOIN_SCRIPT #define H_BITCOIN_SCRIPT diff --git a/src/serialize.h b/src/serialize.h index 30cde6c38c..e3c3210e02 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_SERIALIZE_H #define BITCOIN_SERIALIZE_H diff --git a/src/ui.cpp b/src/ui.cpp index bfb708b3e9..1fcfff6cc1 100644 --- a/src/ui.cpp +++ b/src/ui.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "db.h" diff --git a/src/ui.h b/src/ui.h index 2a128a7bac..9ee55b7463 100644 --- a/src/ui.h +++ b/src/ui.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UI_H #define BITCOIN_UI_H diff --git a/src/uibase.cpp b/src/uibase.cpp index 6d219ad667..4d9a2cbd9f 100644 --- a/src/uibase.cpp +++ b/src/uibase.cpp @@ -532,7 +532,7 @@ CAboutDialogBase::CAboutDialogBase( wxWindow* parent, wxWindowID id, const wxStr bSizer631->Add( 0, 4, 0, wxEXPAND, 5 ); - m_staticTextMain = new wxStaticText( this, wxID_ANY, _("Copyright (c) 2009-2011 Bitcoin Developers\n\nThis is experimental software.\n\nDistributed under the MIT/X11 software license, see the accompanying file \nlicense.txt or http://www.opensource.org/licenses/mit-license.php.\n\nThis product includes software developed by the OpenSSL Project for use in the \nOpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by \nEric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard."), wxDefaultPosition, wxDefaultSize, 0 ); + m_staticTextMain = new wxStaticText( this, wxID_ANY, _("Copyright (c) 2009-2011 Bitcoin Developers\n\nThis is experimental software.\n\nDistributed under the MIT/X11 software license, see the accompanying file \nCOPYING or http://www.opensource.org/licenses/mit-license.php.\n\nThis product includes software developed by the OpenSSL Project for use in the \nOpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by \nEric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard."), wxDefaultPosition, wxDefaultSize, 0 ); m_staticTextMain->Wrap( -1 ); bSizer631->Add( m_staticTextMain, 0, wxALL, 5 ); diff --git a/src/uint256.h b/src/uint256.h index 320ee7e95a..b7a5c3bf77 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UINT256_H #define BITCOIN_UINT256_H diff --git a/src/util.cpp b/src/util.cpp index 766c3ab447..6dc2f3b6da 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "strlcpy.h" diff --git a/src/util.h b/src/util.h index 4e4cbb9f60..88cc1e79ea 100644 --- a/src/util.h +++ b/src/util.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UTIL_H #define BITCOIN_UTIL_H diff --git a/src/wallet.cpp b/src/wallet.cpp index 6bf8e582f8..973727b201 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "headers.h" #include "db.h" diff --git a/src/wallet.h b/src/wallet.h index ea7b279268..e23f487726 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -1,7 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_WALLET_H #define BITCOIN_WALLET_H diff --git a/src/xpm/about.xpm b/src/xpm/about.xpm index 3fa868ca76..fea1fb05e8 100644 --- a/src/xpm/about.xpm +++ b/src/xpm/about.xpm @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Distributed under the MIT/X11 software license, see the accompanying -// file license.txt or http://www.opensource.org/licenses/mit-license.php. +// file COPYING or http://www.opensource.org/licenses/mit-license.php. /* XPM */ static const char * about_xpm[] = { /* columns rows colors chars-per-pixel */ -- cgit v1.2.3 From 087fc28f7d4e82a0b79dabbaa19358e48d3084fe Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Thu, 17 May 2012 12:10:15 +0200 Subject: Filter out whitespace and zero-width non-breaking spaces in validator - Fixes issues with copy/pasting from web or html emails (#1325) --- src/qt/bitcoinaddressvalidator.cpp | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/src/qt/bitcoinaddressvalidator.cpp b/src/qt/bitcoinaddressvalidator.cpp index 373877808f..c804ad0d57 100644 --- a/src/qt/bitcoinaddressvalidator.cpp +++ b/src/qt/bitcoinaddressvalidator.cpp @@ -21,9 +21,12 @@ BitcoinAddressValidator::BitcoinAddressValidator(QObject *parent) : QValidator::State BitcoinAddressValidator::validate(QString &input, int &pos) const { // Correction - for(int idx=0; idx Date: Tue, 22 May 2012 12:06:08 +0100 Subject: Correct debug.log output to show correct function the debug is coming from. --- src/main.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 1925c13185..ee814aa552 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2580,7 +2580,7 @@ bool ProcessMessages(CNode* pfrom) unsigned int nMessageSize = hdr.nMessageSize; if (nMessageSize > MAX_SIZE) { - printf("ProcessMessage(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize); + printf("ProcessMessages(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize); continue; } if (nMessageSize > vRecv.size()) @@ -2598,7 +2598,7 @@ bool ProcessMessages(CNode* pfrom) memcpy(&nChecksum, &hash, sizeof(nChecksum)); if (nChecksum != hdr.nChecksum) { - printf("ProcessMessage(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n", + printf("ProcessMessages(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n", strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum); continue; } @@ -2622,22 +2622,22 @@ bool ProcessMessages(CNode* pfrom) if (strstr(e.what(), "end of data")) { // Allow exceptions from underlength message on vRecv - printf("ProcessMessage(%s, %u bytes) : Exception '%s' caught, normally caused by a message being shorter than its stated length\n", strCommand.c_str(), nMessageSize, e.what()); + printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught, normally caused by a message being shorter than its stated length\n", strCommand.c_str(), nMessageSize, e.what()); } else if (strstr(e.what(), "size too large")) { // Allow exceptions from overlong size - printf("ProcessMessage(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what()); + printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what()); } else { - PrintExceptionContinue(&e, "ProcessMessage()"); + PrintExceptionContinue(&e, "ProcessMessages()"); } } catch (std::exception& e) { - PrintExceptionContinue(&e, "ProcessMessage()"); + PrintExceptionContinue(&e, "ProcessMessages()"); } catch (...) { - PrintExceptionContinue(NULL, "ProcessMessage()"); + PrintExceptionContinue(NULL, "ProcessMessages()"); } if (!fRet) -- cgit v1.2.3 From d7534272c62583320dc8d4a1ea71a41c715ef559 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Tue, 22 May 2012 18:28:10 +0200 Subject: Remove duplicate behavior on MacOSX Dock icon on macosx already has show/hide functionality. This results in erratic behavior. --- src/qt/bitcoingui.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index bcf90917ed..e776f3537b 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -385,7 +385,6 @@ void BitcoinGUI::createTrayIcon() #else // Note: On Mac, the dock icon is used to provide the tray's functionality. MacDockIconHandler *dockIconHandler = MacDockIconHandler::instance(); - connect(dockIconHandler, SIGNAL(dockIconClicked()), toggleHideAction, SLOT(trigger())); trayIconMenu = dockIconHandler->dockMenu(); #endif -- cgit v1.2.3 From b6862f7b74d0ea7442cf3b9eec7b9556ca47ce4b Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Tue, 22 May 2012 15:12:52 -0400 Subject: Prevent crashes due to missing or corrupted database records Any problems seen during deserialization will throw an uncaught exception, crashing the entire bitcoin process. Properly return an error instead, so that we may at least log the error and gracefully shutdown other portions of the app. --- src/db.cpp | 16 ++++++++++++++-- src/db.h | 9 +++++++-- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/src/db.cpp b/src/db.cpp index 68d317106d..d509253e4e 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -390,9 +390,15 @@ bool CTxDB::ReadOwnerTxes(uint160 hash160, int nMinHeight, vector& string strType; uint160 hashItem; CDiskTxPos pos; - ssKey >> strType >> hashItem >> pos; int nItemHeight; - ssValue >> nItemHeight; + + try { + ssKey >> strType >> hashItem >> pos; + ssValue >> nItemHeight; + } + catch (std::exception &e) { + return error("%s() : deserialize error", __PRETTY_FUNCTION__); + } // Read transaction if (strType != "owner" || hashItem != hash160) @@ -512,6 +518,8 @@ bool CTxDB::LoadBlockIndex() return false; // Unserialize + + try { string strType; ssKey >> strType; if (strType == "blockindex") @@ -543,6 +551,10 @@ bool CTxDB::LoadBlockIndex() { break; } + } // try + catch (std::exception &e) { + return error("%s() : deserialize error", __PRETTY_FUNCTION__); + } } pcursor->close(); diff --git a/src/db.h b/src/db.h index 8f6c42d733..551e093443 100644 --- a/src/db.h +++ b/src/db.h @@ -72,8 +72,13 @@ protected: return false; // Unserialize value - CDataStream ssValue((char*)datValue.get_data(), (char*)datValue.get_data() + datValue.get_size(), SER_DISK); - ssValue >> value; + try { + CDataStream ssValue((char*)datValue.get_data(), (char*)datValue.get_data() + datValue.get_size(), SER_DISK); + ssValue >> value; + } + catch (std::exception &e) { + return false; + } // Clear and free memory memset(datValue.get_data(), 0, datValue.get_size()); -- cgit v1.2.3 From a2de1ea2d5776289c247bbc18c1ed13e16a4169f Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Tue, 22 May 2012 15:23:17 -0400 Subject: Prevent crashes due to missing or corrupted blk????.dat records --- src/main.h | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/main.h b/src/main.h index b1c78854a1..44624f5cf7 100644 --- a/src/main.h +++ b/src/main.h @@ -601,7 +601,13 @@ public: // Read transaction if (fseek(filein, pos.nTxPos, SEEK_SET) != 0) return error("CTransaction::ReadFromDisk() : fseek failed"); - filein >> *this; + + try { + filein >> *this; + } + catch (std::exception &e) { + return error("%s() : deserialize or I/O error", __PRETTY_FUNCTION__); + } // Return file pointer if (pfileRet) @@ -993,7 +999,12 @@ public: filein.nType |= SER_BLOCKHEADERONLY; // Read block - filein >> *this; + try { + filein >> *this; + } + catch (std::exception &e) { + return error("%s() : deserialize or I/O error", __PRETTY_FUNCTION__); + } // Check the header if (!CheckProofOfWork(GetHash(), nBits)) -- cgit v1.2.3 From 17badef789bf74fb3f4c5d95ac59c080ae656201 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 12 May 2012 17:44:14 +0200 Subject: Do not signal outbound semaphore if uninitialized --- src/net.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index 1227412fe4..37b01f7599 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1703,8 +1703,9 @@ bool StopNode() fShutdown = true; nTransactionsUpdated++; int64 nStart = GetTime(); - for (int i=0; ipost(); + if (semOutbound) + for (int i=0; ipost(); do { int nThreadsRunning = 0; -- cgit v1.2.3 From 82a227b263fa7d4caee454884661548f7415b9d7 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Wed, 23 May 2012 21:45:26 -0400 Subject: .gitignore: add test_bitcoin --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index c1d06a3dfb..7fc31bb805 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ src/*.exe src/bitcoin src/bitcoind +src/test_bitcoin .*.swp *.*~* *.bak -- cgit v1.2.3 From 7c4de78a5c5ce2d68173a7e54db981f682665f3a Mon Sep 17 00:00:00 2001 From: Chris Moore Date: Sun, 3 Jun 2012 16:11:11 -0700 Subject: "USE_UPNP=-" is needed to remove UPnP support. --- doc/build-unix.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build-unix.txt b/doc/build-unix.txt index f4178caae5..0d335dfa23 100644 --- a/doc/build-unix.txt +++ b/doc/build-unix.txt @@ -33,7 +33,7 @@ Dependencies miniupnpc may be used for UPnP port mapping. It can be downloaded from http://miniupnp.tuxfamily.org/files/. UPnP support is compiled in and turned off by default. Set USE_UPNP to a different value to control this: - USE_UPNP= No UPnP support - miniupnp not required + USE_UPNP=- No UPnP support - miniupnp not required USE_UPNP=0 (the default) UPnP support turned off by default at runtime USE_UPNP=1 UPnP support turned on by default at runtime -- cgit v1.2.3 From fdd907c9f12d5435dcd23f45c54f803cb3854a89 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sat, 2 Jun 2012 16:33:46 +0200 Subject: Correct blockchain size in contrib/debian. * Updates package description to note that blockchain now takes 2+ GB instead of 150+ MB. (PARTIAL of 8f6111bb9cd598954e9634d9fe4500fcf5ae83de) --- contrib/debian/control | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/debian/control b/contrib/debian/control index c41664ca6f..9152339c4e 100644 --- a/contrib/debian/control +++ b/contrib/debian/control @@ -34,7 +34,7 @@ Description: peer-to-peer network based digital currency - daemon By default connects to an IRC network to discover other peers. . Full transaction history is stored locally at each client. This - requires 150+ MB of space, slowly growing. + requires 2+ GB of space, slowly growing. . This package provides bitcoind, a combined daemon and CLI tool to interact with the daemon. @@ -52,6 +52,6 @@ Description: peer-to-peer network based digital currency - QT GUI By default connects to an IRC network to discover other peers. . Full transaction history is stored locally at each client. This - requires 150+ MB of space, slowly growing. + requires 2+ GB of space, slowly growing. . This package provides bitcoin-qt, a GUI for Bitcoin based on QT. -- cgit v1.2.3 From a0ea95d3ceacea5868b8f921c36bbdddb5dc2b1b Mon Sep 17 00:00:00 2001 From: Michael Hendricks Date: Fri, 2 Mar 2012 12:24:38 -0700 Subject: Serialize access to debug.log stream Acquire an exclusive, advisory lock before sending output to debug.log and release it when we're done. This should avoid output from multiple threads being interspersed in the log file. We can't use CRITICAL_SECTION machinery for this because the debug log is written during startup and shutdown when that machinery is not available. (Thanks to Gavin for pointing out the CRITICAL_SECTION problems based on his earlier work in this area) --- src/util.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/util.cpp b/src/util.cpp index 6dc2f3b6da..ccd39aa229 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -22,6 +22,7 @@ namespace boost { #include #include #include +#include using namespace std; using namespace boost; @@ -193,6 +194,8 @@ inline int OutputDebugStringF(const char* pszFormat, ...) if (fileout) { static bool fStartedNewLine = true; + static boost::mutex mutexDebugLog; + boost::mutex::scoped_lock scoped_lock(mutexDebugLog); // Debug print useful for profiling if (fLogTimestamps && fStartedNewLine) -- cgit v1.2.3 From af413c0a0ff507da69afae6399bf3ff3fbf0774b Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Tue, 8 May 2012 23:02:48 +0200 Subject: fix an incorrect if-clause in net.cpp --- src/net.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net.cpp b/src/net.cpp index 04d278c9f1..a9f6c87bc7 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -868,7 +868,7 @@ void ThreadSocketHandler2(void* parg) if (nSelect == SOCKET_ERROR) { int nErr = WSAGetLastError(); - if (hSocketMax > -1) + if (hSocketMax != INVALID_SOCKET) { printf("socket select error %d\n", nErr); for (unsigned int i = 0; i <= hSocketMax; i++) -- cgit v1.2.3 From 722ff53718333dc290760d528b7a561d29ab41a8 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Wed, 6 Jun 2012 20:00:22 +0000 Subject: Bugfix: Allow tray icon to linger until Bitcoin-Qt shuts down completely. Fixes #908 Upstream commit: 7cfbe1fee465e82ddbdc8ed17dfcce791bd765f5 --- src/qt/bitcoingui.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index e5e3572d24..175fc4f493 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -165,8 +165,6 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): BitcoinGUI::~BitcoinGUI() { - if(trayIcon) // Hide tray icon, as deleting will let it linger until quit (on Ubuntu) - trayIcon->hide(); #ifdef Q_WS_MAC delete appMenuBar; #endif -- cgit v1.2.3 From 9a48f56fb02338b7f68ab9fd469abc1abe0011c3 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 12 Jun 2012 23:50:38 +0000 Subject: Bugfix: Move IsStandard scriptSig size check out of IsPushOnly, since BIP16 verification uses the latter too This caused clients to reject block #177618 since it has a P2SH transaction with over 200 bytes in scriptSig. (Upstream commit: e679ec969c8b22c676ebb10bea1038f6c8f13b33) --- src/main.h | 2 +- src/script.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main.h b/src/main.h index 44624f5cf7..930f5187d9 100644 --- a/src/main.h +++ b/src/main.h @@ -507,7 +507,7 @@ public: bool IsStandard() const { BOOST_FOREACH(const CTxIn& txin, vin) - if (!txin.scriptSig.IsPushOnly()) + if (txin.scriptSig.size() > 200 || !txin.scriptSig.IsPushOnly()) return error("nonstandard txin: %s", txin.scriptSig.ToString().c_str()); BOOST_FOREACH(const CTxOut& txout, vout) if (!::IsStandard(txout.scriptPubKey)) diff --git a/src/script.h b/src/script.h index 502bce1e54..8dddb893f4 100644 --- a/src/script.h +++ b/src/script.h @@ -623,8 +623,6 @@ public: bool IsPushOnly() const { - if (size() > 200) - return false; const_iterator pc = begin(); while (pc < end()) { -- cgit v1.2.3 From 9849f50b6866f326040622f124601efaa8c37434 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 14 Jun 2012 15:59:18 +0000 Subject: Bump VERSION so we can differentiate between fixed 0.4.7rc2 and not-fixed 0.4.7rc1 --- src/serialize.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/serialize.h b/src/serialize.h index e3c3210e02..db3c963654 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -59,7 +59,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 40700; +static const int VERSION = 40701; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 01ed45cbbcefc0448de86b4196caa5b1a0ab6ce5 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Fri, 8 Jun 2012 16:26:27 +0200 Subject: Update comment about secure_allocator<> --- src/allocators.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/allocators.h b/src/allocators.h index 4b3356e874..ddeabc48c5 100644 --- a/src/allocators.h +++ b/src/allocators.h @@ -117,7 +117,6 @@ struct zero_after_free_allocator : public std::allocator }; // This is exactly like std::string, but with a custom allocator. -// (secure_allocator<> is defined in serialize.h) typedef std::basic_string, secure_allocator > SecureString; #endif -- cgit v1.2.3 From b825e816e422becd7c86cdeafc29952e29ffc0d0 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Tue, 12 Jun 2012 10:46:24 +0200 Subject: Do not select first address automatically in the address book This contributed to an accidental send (#1384), and has no clear advantage, better to disable it. --- src/qt/addressbookpage.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/qt/addressbookpage.cpp b/src/qt/addressbookpage.cpp index 2c4407a81d..bd211039b3 100644 --- a/src/qt/addressbookpage.cpp +++ b/src/qt/addressbookpage.cpp @@ -90,11 +90,6 @@ void AddressBookPage::setModel(AddressTableModel *model) connect(ui->tableView->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), this, SLOT(selectionChanged())); - if(mode == ForSending) - { - // Auto-select first row when in sending mode - ui->tableView->selectRow(0); - } selectionChanged(); } -- cgit v1.2.3 From 1903033bad6099689f955698c8cc2b4a92cdc412 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 12 Jun 2012 01:52:34 +0200 Subject: Fix broken config files --- contrib/gitian-downloader/linux-download-config | 2 +- contrib/gitian-downloader/win32-download-config | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/gitian-downloader/linux-download-config b/contrib/gitian-downloader/linux-download-config index 88e48e2c23..aef614d0ca 100644 --- a/contrib/gitian-downloader/linux-download-config +++ b/contrib/gitian-downloader/linux-download-config @@ -31,7 +31,7 @@ signers: weight: 40 name: "Gavin Andresen" key: gavinandresen - 71A3B16735405025D447E8F274810B012346C9A6 + 71A3B16735405025D447E8F274810B012346C9A6: weight: 40 name: "Wladimir J. van der Laan" key: laanwj diff --git a/contrib/gitian-downloader/win32-download-config b/contrib/gitian-downloader/win32-download-config index 595626f28f..0f7032e643 100644 --- a/contrib/gitian-downloader/win32-download-config +++ b/contrib/gitian-downloader/win32-download-config @@ -31,7 +31,7 @@ signers: weight: 40 name: "Gavin Andresen" key: gavinandresen - 71A3B16735405025D447E8F274810B012346C9A6 + 71A3B16735405025D447E8F274810B012346C9A6: weight: 40 name: "Wladimir J. van der Laan" key: laanwj -- cgit v1.2.3 From 5482b5d23b312c07fc686cf4563a6c6dc222064c Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sun, 6 May 2012 16:57:12 +0200 Subject: removed ability to translate "0 BTC" and "123.456 BTC" as this is only used as preview in the Qt Designer anyway (partial of 4295311da34ed8132351855f057decedfe434b44) --- src/qt/forms/overviewpage.ui | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qt/forms/overviewpage.ui b/src/qt/forms/overviewpage.ui index 3cf7dd0ed3..5c8db6d06d 100644 --- a/src/qt/forms/overviewpage.ui +++ b/src/qt/forms/overviewpage.ui @@ -44,7 +44,7 @@ - 123.456 BTC + 123.456 BTC @@ -72,7 +72,7 @@ - 0 BTC + 0 BTC -- cgit v1.2.3 From a973e225e7d837b098b32f728008ef17b8e1a8e1 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Mon, 11 Jun 2012 22:40:06 +0200 Subject: change initial Balance on overviewpage from "123.456 BTC" to "0 BTC" to not confuse users, which could see it before we init with the real wallet balance --- src/qt/forms/overviewpage.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/forms/overviewpage.ui b/src/qt/forms/overviewpage.ui index 5c8db6d06d..10e470e918 100644 --- a/src/qt/forms/overviewpage.ui +++ b/src/qt/forms/overviewpage.ui @@ -44,7 +44,7 @@ - 123.456 BTC + 0 BTC -- cgit v1.2.3 From ca39829ecb90e392b9722292739585124ba0d7c1 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 13 Jun 2012 01:06:40 +0200 Subject: Update wiki changelog at doc/release-process.txt --- doc/release-process.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/release-process.txt b/doc/release-process.txt index 8bf944a29e..8a236a7933 100644 --- a/doc/release-process.txt +++ b/doc/release-process.txt @@ -48,4 +48,5 @@ * update wiki download links +* update wiki changelog: https://en.bitcoin.it/wiki/Changelog -- cgit v1.2.3 From 0b1fda6f6542a309d59f511ab1c417f891a7237b Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Mon, 11 Jun 2012 07:40:14 +0200 Subject: Don't call exit() in Shutdown() for Bitcoin-Qt (fixes a tray-icon issue) (partial of 9247134eaba9a1d0fa74f22de238af1476663005) --- src/init.cpp | 3 +++ src/qt/bitcoin.cpp | 1 + 2 files changed, 4 insertions(+) diff --git a/src/init.cpp b/src/init.cpp index 5f1e4f5307..6b6a743af9 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -66,7 +66,10 @@ void Shutdown(void* parg) Sleep(50); printf("Bitcoin exiting\n\n"); fExit = true; +#ifndef QT_GUI + // ensure non UI client get's exited here, but let Bitcoin-Qt reach return 0; in bitcoin.cpp exit(0); +#endif } else { diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 3157eadef8..8dde8f3b29 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -208,6 +208,7 @@ int main(int argc, char *argv[]) window.hide(); guiref = 0; } + // Shutdown the core and it's threads, but don't exit Bitcoin-Qt here Shutdown(NULL); } else -- cgit v1.2.3 From 276cfd85304be27bb2c04c087c8f3ea25cb6f77d Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Mon, 11 Jun 2012 07:40:14 +0200 Subject: Bugfix: Fix various places where Bitcoin-Qt was being shutdown improperly (Partial/merge of upstream 9247134eaba9a1d0fa74f22de238af1476663005, 1a3f0da9229a8e524d1010cdc8bd3b9da71fe529, and 3e343522226e6c249f5cb05436eec347b87c6361) --- src/bitcoinrpc.cpp | 13 +++++-------- src/init.cpp | 11 +++++++++++ src/init.h | 1 + src/main.cpp | 2 +- src/net.cpp | 2 +- src/qt/bitcoin.cpp | 5 +++++ src/qt/bitcoingui.cpp | 4 ---- src/qtui.h | 1 + src/test/test_bitcoin.cpp | 2 +- 9 files changed, 26 insertions(+), 15 deletions(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 92f2f9ec7c..38f102e1ae 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -165,7 +165,8 @@ Value stop(const Array& params, bool fHelp) "Stop bitcoin server."); #ifndef QT_GUI // Shutdown will take long enough that the response should get back - CreateThread(Shutdown, NULL); + // NOTE: This should actually work with Bitcoin-Qt too now, but 0.5.0 didn't allow it + StartShutdown(); return "bitcoin server stopping"; #else throw runtime_error("NYI: cannot shut down GUI with RPC command"); @@ -1587,7 +1588,7 @@ Value encryptwallet(const Array& params, bool fHelp) // BDB seems to have a bad habit of writing old data into // slack space in .dat files; that is bad if the old data is // unencrypted private keys. So: - CreateThread(Shutdown, NULL); + StartShutdown(); return "wallet encrypted; bitcoin server stopping, restart to run with encrypted wallet"; } @@ -2173,10 +2174,6 @@ void ThreadRPCServer(void* parg) printf("ThreadRPCServer exiting\n"); } -#ifdef QT_GUI -extern bool HACK_SHUTDOWN; -#endif - void ThreadRPCServer2(void* parg) { printf("ThreadRPCServer started\n"); @@ -2203,7 +2200,7 @@ void ThreadRPCServer2(void* parg) EncodeBase58(&rand_pwd[0],&rand_pwd[0]+32).c_str()), _("Error"), wxOK | wxMODAL); #ifndef QT_GUI - CreateThread(Shutdown, NULL); + StartShutdown(); #endif return; } @@ -2228,9 +2225,9 @@ void ThreadRPCServer2(void* parg) } catch(boost::system::system_error &e) { - HACK_SHUTDOWN = true; ThreadSafeMessageBox(strprintf(_("An error occured while setting up the RPC port %i for listening: %s"), endpoint.port(), e.what()), _("Error"), wxOK | wxMODAL); + StartShutdown(); return; } #endif diff --git a/src/init.cpp b/src/init.cpp index 6b6a743af9..31e05514a2 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -41,6 +41,17 @@ void ExitTimeout(void* parg) #endif } +void StartShutdown() +{ +#ifdef QT_GUI + // ensure we leave the Qt main loop for a clean GUI exit (Shutdown() is called in bitcoin.cpp afterwards) + QueueShutdown(); +#else + // Without UI, Shutdown() can simply be started in a new thread + CreateThread(Shutdown, NULL); +#endif +} + void Shutdown(void* parg) { static CCriticalSection cs_Shutdown; diff --git a/src/init.h b/src/init.h index 2086b31348..6bf846628a 100644 --- a/src/init.h +++ b/src/init.h @@ -7,6 +7,7 @@ extern CWallet* pwalletMain; +void StartShutdown(); void Shutdown(void* parg); bool AppInit(int argc, char* argv[]); bool AppInit2(int argc, char* argv[]); diff --git a/src/main.cpp b/src/main.cpp index 792bbe97a4..a28d2e802a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1666,7 +1666,7 @@ bool CheckDiskSpace(uint64 nAdditionalBytes) strMiscWarning = strMessage; printf("*** %s\n", strMessage.c_str()); ThreadSafeMessageBox(strMessage, "Bitcoin", wxOK | wxICON_EXCLAMATION); - CreateThread(Shutdown, NULL); + StartShutdown(); return false; } return true; diff --git a/src/net.cpp b/src/net.cpp index e1eea0d1b3..ebdc1cc149 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1705,7 +1705,7 @@ void ThreadMessageHandler2(void* parg) vnThreadsRunning[2]--; Sleep(100); if (fRequestShutdown) - Shutdown(NULL); + StartShutdown(); vnThreadsRunning[2]++; if (fShutdown) return; diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 8dde8f3b29..6986d39cbf 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -112,6 +112,11 @@ void InitMessage(const std::string &message) } } +void QueueShutdown() +{ + QMetaObject::invokeMethod(QCoreApplication::instance(), "quit", Qt::QueuedConnection); +} + /* Translate string to current locale using Qt. */ diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 778acd1e00..2c807a1ae4 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -519,16 +519,12 @@ void BitcoinGUI::refreshStatusBar() setNumBlocks(clientModel->getNumBlocks()); } -bool HACK_SHUTDOWN = false; - void BitcoinGUI::error(const QString &title, const QString &message, bool modal) { // Report errors from network/worker thread if (modal) { QMessageBox::critical(this, title, message, QMessageBox::Ok, QMessageBox::Ok); - if (HACK_SHUTDOWN) - QMetaObject::invokeMethod(QCoreApplication::instance(), "quit", Qt::QueuedConnection); } else { notificator->notify(Notificator::Critical, title, message); } diff --git a/src/qtui.h b/src/qtui.h index 8f3e139ec8..52983b87e7 100644 --- a/src/qtui.h +++ b/src/qtui.h @@ -45,6 +45,7 @@ extern bool ThreadSafeAskFee(int64 nFeeRequired, const std::string& strCaption, extern void CalledSetStatusBar(const std::string& strText, int nField); extern void UIThreadCall(boost::function0 fn); extern void MainFrameRepaint(); +extern void QueueShutdown(); extern void InitMessage(const std::string &message); extern std::string _(const char* psz); diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index 39a7c88e13..ca001b0e67 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -17,7 +17,7 @@ CWallet* pwalletMain; -void Shutdown(void* parg) +void StartShutdown() { exit(0); } -- cgit v1.2.3 From 1bc2f0a37b68aa99e90437105a48c47046b6c0d0 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Thu, 14 Jun 2012 09:41:11 +0200 Subject: Fix build of testcases after commit 0f10b21719e1b0d9683a142f0a7105e65f095694 --- src/test/test_bitcoin.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index ca001b0e67..a21801b5d9 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -17,7 +17,13 @@ CWallet* pwalletMain; +void Shutdown(void* parg) +{ + exit(0); +} + void StartShutdown() { exit(0); } + -- cgit v1.2.3 From 8f0c0c16d384510b07aec3ca2dde2391429f1b0b Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Thu, 14 Jun 2012 18:31:08 +0200 Subject: Use a 64-bit nonce in ping Former code sent '0' as nonce, which was serialized as 32-bit. --- src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 6e5f9fb871..d236c6d1d0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2886,8 +2886,9 @@ bool SendMessages(CNode* pto, bool fSendTrickle) // Keep-alive ping. We send a nonce of zero because we don't use it anywhere // right now. if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty()) { + uint64 nonce = 0; if (pto->nVersion > BIP0031_VERSION) - pto->PushMessage("ping", 0); + pto->PushMessage("ping", nonce); else pto->PushMessage("ping"); } -- cgit v1.2.3 From 5cd2a640a5ef867c376582810b1dd4b6fa43df5e Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Mon, 19 Dec 2011 17:08:25 -0500 Subject: Use std::numeric_limits<> for typesafe INT_MAX/etc (this fixes a Mac OS X gitian build error for 0.5.x) --- src/bignum.h | 4 ++-- src/headers.h | 4 ---- src/main.cpp | 2 +- src/main.h | 12 ++++++------ src/net.cpp | 6 +++--- src/protocol.cpp | 2 +- src/rpc.cpp | 8 ++++---- src/serialize.h | 8 ++++---- src/util.cpp | 2 +- src/util.h | 6 +----- src/wallet.cpp | 2 +- 11 files changed, 24 insertions(+), 32 deletions(-) diff --git a/src/bignum.h b/src/bignum.h index bd42f77ce0..4a3fb38b00 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -116,9 +116,9 @@ public: { unsigned long n = BN_get_word(this); if (!BN_is_negative(this)) - return (n > INT_MAX ? INT_MAX : n); + return (n > std::numeric_limits::max() ? std::numeric_limits::max() : n); else - return (n > INT_MAX ? INT_MIN : -(int)n); + return (n > std::numeric_limits::max() ? std::numeric_limits::min() : -(int)n); } void setint64(int64 n) diff --git a/src/headers.h b/src/headers.h index 537d405b88..9b880c1528 100644 --- a/src/headers.h +++ b/src/headers.h @@ -21,9 +21,6 @@ // Include boost/foreach here as it defines __STDC_LIMIT_MACROS on some systems. #include -#ifndef __STDC_LIMIT_MACROS -#define __STDC_LIMIT_MACROS // to enable UINT64_MAX from stdint.h -#endif #if (defined(__unix__) || defined(unix)) && !defined(USG) #include // to get BSD define @@ -52,7 +49,6 @@ #include #include #include -#include #include #include #include diff --git a/src/main.cpp b/src/main.cpp index ee814aa552..0f45b2e16b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -372,7 +372,7 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi return error("AcceptToMemoryPool() : coinbase as individual tx"); // To help v0.1.5 clients who would see it as a negative number - if ((int64)nLockTime > INT_MAX) + if ((int64)nLockTime > std::numeric_limits::max()) return error("AcceptToMemoryPool() : not accepting nLockTime beyond 2038 yet"); // Rather not work on nonstandard transactions (unless -testnet) diff --git a/src/main.h b/src/main.h index 930f5187d9..7aa660dba7 100644 --- a/src/main.h +++ b/src/main.h @@ -253,17 +253,17 @@ public: CTxIn() { - nSequence = UINT_MAX; + nSequence = std::numeric_limits::max(); } - explicit CTxIn(COutPoint prevoutIn, CScript scriptSigIn=CScript(), unsigned int nSequenceIn=UINT_MAX) + explicit CTxIn(COutPoint prevoutIn, CScript scriptSigIn=CScript(), unsigned int nSequenceIn=std::numeric_limits::max()) { prevout = prevoutIn; scriptSig = scriptSigIn; nSequence = nSequenceIn; } - CTxIn(uint256 hashPrevTx, unsigned int nOut, CScript scriptSigIn=CScript(), unsigned int nSequenceIn=UINT_MAX) + CTxIn(uint256 hashPrevTx, unsigned int nOut, CScript scriptSigIn=CScript(), unsigned int nSequenceIn=std::numeric_limits::max()) { prevout = COutPoint(hashPrevTx, nOut); scriptSig = scriptSigIn; @@ -279,7 +279,7 @@ public: bool IsFinal() const { - return (nSequence == UINT_MAX); + return (nSequence == std::numeric_limits::max()); } friend bool operator==(const CTxIn& a, const CTxIn& b) @@ -303,7 +303,7 @@ public: str += strprintf(", coinbase %s", HexStr(scriptSig).c_str()); else str += strprintf(", scriptSig=%s", scriptSig.ToString().substr(0,24).c_str()); - if (nSequence != UINT_MAX) + if (nSequence != std::numeric_limits::max()) str += strprintf(", nSequence=%u", nSequence); str += ")"; return str; @@ -460,7 +460,7 @@ public: return false; bool fNewer = false; - unsigned int nLowest = UINT_MAX; + unsigned int nLowest = std::numeric_limits::max(); for (unsigned int i = 0; i < vin.size(); i++) { if (vin[i].nSequence != old.vin[i].nSequence) diff --git a/src/net.cpp b/src/net.cpp index a9f6c87bc7..2ff539a18e 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -251,8 +251,8 @@ bool Lookup(const char *pszName, vector& vaddr, int nServices, int nMa else pszColon[0] = 0; port = portParsed; - if (port < 0 || port > USHRT_MAX) - port = USHRT_MAX; + if (port < 0 || port > std::numeric_limits::max()) + port = std::numeric_limits::max(); } } @@ -1489,7 +1489,7 @@ void ThreadOpenConnections2(void* parg) // Choose an address to connect to based on most recently seen // CAddress addrConnect; - int64 nBest = INT64_MIN; + int64 nBest = std::numeric_limits::min(); // Only connect to one address per a.b.?.? range. // Do this here so we don't have to critsect vNodes inside mapAddresses critsect. diff --git a/src/protocol.cpp b/src/protocol.cpp index a22eba4891..8314e2bb97 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -224,7 +224,7 @@ bool CAddress::IsValid() const if (memcmp(pchReserved, pchIPv4+3, sizeof(pchIPv4)-3) == 0) return false; - return (ip != 0 && ip != INADDR_NONE && port != htons(USHRT_MAX)); + return (ip != 0 && ip != INADDR_NONE && port != htons(std::numeric_limits::max())); } unsigned char CAddress::GetByte(int n) const diff --git a/src/rpc.cpp b/src/rpc.cpp index acd7a8933a..786bf2987a 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -875,7 +875,7 @@ struct tallyitem tallyitem() { nAmount = 0; - nConf = INT_MAX; + nConf = std::numeric_limits::max(); } }; @@ -927,7 +927,7 @@ Value ListReceived(const Array& params, bool fByAccounts) continue; int64 nAmount = 0; - int nConf = INT_MAX; + int nConf = std::numeric_limits::max(); if (it != mapTally.end()) { nAmount = (*it).second.nAmount; @@ -947,7 +947,7 @@ Value ListReceived(const Array& params, bool fByAccounts) obj.push_back(Pair("account", strAccount)); obj.push_back(Pair("label", strAccount)); // deprecated obj.push_back(Pair("amount", ValueFromAmount(nAmount))); - obj.push_back(Pair("confirmations", (nConf == INT_MAX ? 0 : nConf))); + obj.push_back(Pair("confirmations", (nConf == std::numeric_limits::max() ? 0 : nConf))); ret.push_back(obj); } } @@ -962,7 +962,7 @@ Value ListReceived(const Array& params, bool fByAccounts) obj.push_back(Pair("account", (*it).first)); obj.push_back(Pair("label", (*it).first)); // deprecated obj.push_back(Pair("amount", ValueFromAmount(nAmount))); - obj.push_back(Pair("confirmations", (nConf == INT_MAX ? 0 : nConf))); + obj.push_back(Pair("confirmations", (nConf == std::numeric_limits::max() ? 0 : nConf))); ret.push_back(obj); } } diff --git a/src/serialize.h b/src/serialize.h index db3c963654..7b5aac24e3 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -201,8 +201,8 @@ template inline void Unserialize(Stream& s, bool& a, int, int=0 inline unsigned int GetSizeOfCompactSize(uint64 nSize) { if (nSize < 253) return sizeof(unsigned char); - else if (nSize <= USHRT_MAX) return sizeof(unsigned char) + sizeof(unsigned short); - else if (nSize <= UINT_MAX) return sizeof(unsigned char) + sizeof(unsigned int); + else if (nSize <= std::numeric_limits::max()) return sizeof(unsigned char) + sizeof(unsigned short); + else if (nSize <= std::numeric_limits::max()) return sizeof(unsigned char) + sizeof(unsigned int); else return sizeof(unsigned char) + sizeof(uint64); } @@ -214,14 +214,14 @@ void WriteCompactSize(Stream& os, uint64 nSize) unsigned char chSize = nSize; WRITEDATA(os, chSize); } - else if (nSize <= USHRT_MAX) + else if (nSize <= std::numeric_limits::max()) { unsigned char chSize = 253; unsigned short xSize = nSize; WRITEDATA(os, chSize); WRITEDATA(os, xSize); } - else if (nSize <= UINT_MAX) + else if (nSize <= std::numeric_limits::max()) { unsigned char chSize = 254; unsigned int xSize = nSize; diff --git a/src/util.cpp b/src/util.cpp index ccd39aa229..cae01dffe6 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -144,7 +144,7 @@ uint64 GetRand(uint64 nMax) // The range of the random source must be a multiple of the modulus // to give every possible output value an equal possibility - uint64 nRange = (UINT64_MAX / nMax) * nMax; + uint64 nRange = (std::numeric_limits::max() / nMax) * nMax; uint64 nRand = 0; do RAND_bytes((unsigned char*)&nRand, sizeof(nRand)); diff --git a/src/util.h b/src/util.h index 88cc1e79ea..284cf33c4b 100644 --- a/src/util.h +++ b/src/util.h @@ -84,11 +84,7 @@ T* alignup(T* p) #ifdef __WXMSW__ #define MSG_NOSIGNAL 0 #define MSG_DONTWAIT 0 -#ifndef UINT64_MAX -#define UINT64_MAX _UI64_MAX -#define INT64_MAX _I64_MAX -#define INT64_MIN _I64_MIN -#endif + #ifndef S_IRUSR #define S_IRUSR 0400 #define S_IWUSR 0200 diff --git a/src/wallet.cpp b/src/wallet.cpp index 973727b201..8fe77119ee 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -747,7 +747,7 @@ bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfThe // List of values less than target pair > coinLowestLarger; - coinLowestLarger.first = INT64_MAX; + coinLowestLarger.first = std::numeric_limits::max(); coinLowestLarger.second.first = NULL; vector > > vValue; int64 nTotalLower = 0; -- cgit v1.2.3 From b0e508a0c095a4ff44bffecd9508dc27e76712cb Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 20 Dec 2011 12:04:33 -0500 Subject: Include limits, not climints (using std::numeric_limits now) --- src/serialize.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/serialize.h b/src/serialize.h index 7b5aac24e3..8cdfb30b90 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -10,7 +10,7 @@ #include #include #include -#include +#include #include #include -- cgit v1.2.3 From 0ce74bfaa5f34351e5b23e19ee90e7367bd50245 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Mon, 19 Dec 2011 17:08:25 -0500 Subject: Use std::numeric_limits<> for typesafe INT_MAX/etc (this fixes a Mac OS X gitian build error for 0.5.x) --- src/bignum.h | 4 ++-- src/bitcoinrpc.cpp | 8 ++++---- src/headers.h | 4 ---- src/main.cpp | 2 +- src/main.h | 12 ++++++------ src/net.cpp | 6 +++--- src/protocol.cpp | 2 +- src/qt/optionsmodel.cpp | 2 +- src/qt/transactionrecord.cpp | 2 +- src/serialize.h | 8 ++++---- src/util.cpp | 2 +- src/util.h | 6 +----- src/wallet.cpp | 2 +- 13 files changed, 26 insertions(+), 34 deletions(-) diff --git a/src/bignum.h b/src/bignum.h index bd42f77ce0..4a3fb38b00 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -116,9 +116,9 @@ public: { unsigned long n = BN_get_word(this); if (!BN_is_negative(this)) - return (n > INT_MAX ? INT_MAX : n); + return (n > std::numeric_limits::max() ? std::numeric_limits::max() : n); else - return (n > INT_MAX ? INT_MIN : -(int)n); + return (n > std::numeric_limits::max() ? std::numeric_limits::min() : -(int)n); } void setint64(int64 n) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 38f102e1ae..55ad1198ff 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -944,7 +944,7 @@ struct tallyitem tallyitem() { nAmount = 0; - nConf = INT_MAX; + nConf = std::numeric_limits::max(); } }; @@ -996,7 +996,7 @@ Value ListReceived(const Array& params, bool fByAccounts) continue; int64 nAmount = 0; - int nConf = INT_MAX; + int nConf = std::numeric_limits::max(); if (it != mapTally.end()) { nAmount = (*it).second.nAmount; @@ -1015,7 +1015,7 @@ Value ListReceived(const Array& params, bool fByAccounts) obj.push_back(Pair("address", address.ToString())); obj.push_back(Pair("account", strAccount)); obj.push_back(Pair("amount", ValueFromAmount(nAmount))); - obj.push_back(Pair("confirmations", (nConf == INT_MAX ? 0 : nConf))); + obj.push_back(Pair("confirmations", (nConf == std::numeric_limits::max() ? 0 : nConf))); ret.push_back(obj); } } @@ -1029,7 +1029,7 @@ Value ListReceived(const Array& params, bool fByAccounts) Object obj; obj.push_back(Pair("account", (*it).first)); obj.push_back(Pair("amount", ValueFromAmount(nAmount))); - obj.push_back(Pair("confirmations", (nConf == INT_MAX ? 0 : nConf))); + obj.push_back(Pair("confirmations", (nConf == std::numeric_limits::max() ? 0 : nConf))); ret.push_back(obj); } } diff --git a/src/headers.h b/src/headers.h index cef2718c9a..83272d0a3e 100644 --- a/src/headers.h +++ b/src/headers.h @@ -21,9 +21,6 @@ // Include boost/foreach here as it defines __STDC_LIMIT_MACROS on some systems. #include -#ifndef __STDC_LIMIT_MACROS -#define __STDC_LIMIT_MACROS // to enable UINT64_MAX from stdint.h -#endif #if (defined(__unix__) || defined(unix)) && !defined(USG) #include // to get BSD define @@ -44,7 +41,6 @@ #include #include #include -#include #include #include #include diff --git a/src/main.cpp b/src/main.cpp index a28d2e802a..387670bae2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -379,7 +379,7 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi return DoS(100, error("AcceptToMemoryPool() : coinbase as individual tx")); // To help v0.1.5 clients who would see it as a negative number - if ((int64)nLockTime > INT_MAX) + if ((int64)nLockTime > std::numeric_limits::max()) return error("AcceptToMemoryPool() : not accepting nLockTime beyond 2038 yet"); // Rather not work on nonstandard transactions (unless -testnet) diff --git a/src/main.h b/src/main.h index 74bbe2940e..5357413cdc 100644 --- a/src/main.h +++ b/src/main.h @@ -255,17 +255,17 @@ public: CTxIn() { - nSequence = UINT_MAX; + nSequence = std::numeric_limits::max(); } - explicit CTxIn(COutPoint prevoutIn, CScript scriptSigIn=CScript(), unsigned int nSequenceIn=UINT_MAX) + explicit CTxIn(COutPoint prevoutIn, CScript scriptSigIn=CScript(), unsigned int nSequenceIn=std::numeric_limits::max()) { prevout = prevoutIn; scriptSig = scriptSigIn; nSequence = nSequenceIn; } - CTxIn(uint256 hashPrevTx, unsigned int nOut, CScript scriptSigIn=CScript(), unsigned int nSequenceIn=UINT_MAX) + CTxIn(uint256 hashPrevTx, unsigned int nOut, CScript scriptSigIn=CScript(), unsigned int nSequenceIn=std::numeric_limits::max()) { prevout = COutPoint(hashPrevTx, nOut); scriptSig = scriptSigIn; @@ -281,7 +281,7 @@ public: bool IsFinal() const { - return (nSequence == UINT_MAX); + return (nSequence == std::numeric_limits::max()); } friend bool operator==(const CTxIn& a, const CTxIn& b) @@ -305,7 +305,7 @@ public: str += strprintf(", coinbase %s", HexStr(scriptSig).c_str()); else str += strprintf(", scriptSig=%s", scriptSig.ToString().substr(0,24).c_str()); - if (nSequence != UINT_MAX) + if (nSequence != std::numeric_limits::max()) str += strprintf(", nSequence=%u", nSequence); str += ")"; return str; @@ -466,7 +466,7 @@ public: return false; bool fNewer = false; - unsigned int nLowest = UINT_MAX; + unsigned int nLowest = std::numeric_limits::max(); for (unsigned int i = 0; i < vin.size(); i++) { if (vin[i].nSequence != old.vin[i].nSequence) diff --git a/src/net.cpp b/src/net.cpp index 8384251095..0c98b8ee3e 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -251,8 +251,8 @@ bool Lookup(const char *pszName, vector& vaddr, int nServices, int nMa else pszColon[0] = 0; port = portParsed; - if (port < 0 || port > USHRT_MAX) - port = USHRT_MAX; + if (port < 0 || port > std::numeric_limits::max()) + port = std::numeric_limits::max(); } } @@ -1540,7 +1540,7 @@ void ThreadOpenConnections2(void* parg) // Choose an address to connect to based on most recently seen // CAddress addrConnect; - int64 nBest = INT64_MIN; + int64 nBest = std::numeric_limits::min(); // Only connect to one address per a.b.?.? range. // Do this here so we don't have to critsect vNodes inside mapAddresses critsect. diff --git a/src/protocol.cpp b/src/protocol.cpp index 3376c37e7b..410d0004bb 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -224,7 +224,7 @@ bool CAddress::IsValid() const if (memcmp(pchReserved, pchIPv4+3, sizeof(pchIPv4)-3) == 0) return false; - return (ip != 0 && ip != INADDR_NONE && port != htons(USHRT_MAX)); + return (ip != 0 && ip != INADDR_NONE && port != htons(std::numeric_limits::max())); } unsigned char CAddress::GetByte(int n) const diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index 02daef5e21..883d7e4ff8 100644 --- a/src/qt/optionsmodel.cpp +++ b/src/qt/optionsmodel.cpp @@ -101,7 +101,7 @@ bool OptionsModel::setData(const QModelIndex & index, const QVariant & value, in case ProxyPort: { int nPort = atoi(value.toString().toAscii().data()); - if (nPort > 0 && nPort < USHRT_MAX) + if (nPort > 0 && nPort < std::numeric_limits::max()) { addrProxy.port = htons(nPort); walletdb.WriteSetting("addrProxy", addrProxy); diff --git a/src/qt/transactionrecord.cpp b/src/qt/transactionrecord.cpp index 4059207b96..5ec463b207 100644 --- a/src/qt/transactionrecord.cpp +++ b/src/qt/transactionrecord.cpp @@ -172,7 +172,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 : INT_MAX), + (pindex ? pindex->nHeight : std::numeric_limits::max()), (wtx.IsCoinBase() ? 1 : 0), wtx.nTimeReceived, idx); diff --git a/src/serialize.h b/src/serialize.h index 61d80d7050..2f4c55ae1a 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -202,8 +202,8 @@ template inline void Unserialize(Stream& s, bool& a, int, int=0 inline unsigned int GetSizeOfCompactSize(uint64 nSize) { if (nSize < 253) return sizeof(unsigned char); - else if (nSize <= USHRT_MAX) return sizeof(unsigned char) + sizeof(unsigned short); - else if (nSize <= UINT_MAX) return sizeof(unsigned char) + sizeof(unsigned int); + else if (nSize <= std::numeric_limits::max()) return sizeof(unsigned char) + sizeof(unsigned short); + else if (nSize <= std::numeric_limits::max()) return sizeof(unsigned char) + sizeof(unsigned int); else return sizeof(unsigned char) + sizeof(uint64); } @@ -215,14 +215,14 @@ void WriteCompactSize(Stream& os, uint64 nSize) unsigned char chSize = nSize; WRITEDATA(os, chSize); } - else if (nSize <= USHRT_MAX) + else if (nSize <= std::numeric_limits::max()) { unsigned char chSize = 253; unsigned short xSize = nSize; WRITEDATA(os, chSize); WRITEDATA(os, xSize); } - else if (nSize <= UINT_MAX) + else if (nSize <= std::numeric_limits::max()) { unsigned char chSize = 254; unsigned int xSize = nSize; diff --git a/src/util.cpp b/src/util.cpp index 6314b53627..0311203828 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -144,7 +144,7 @@ uint64 GetRand(uint64 nMax) // The range of the random source must be a multiple of the modulus // to give every possible output value an equal possibility - uint64 nRange = (UINT64_MAX / nMax) * nMax; + uint64 nRange = (std::numeric_limits::max() / nMax) * nMax; uint64 nRand = 0; do RAND_bytes((unsigned char*)&nRand, sizeof(nRand)); diff --git a/src/util.h b/src/util.h index da8e7630b8..69ac670f76 100644 --- a/src/util.h +++ b/src/util.h @@ -84,11 +84,7 @@ T* alignup(T* p) #ifdef WIN32 #define MSG_NOSIGNAL 0 #define MSG_DONTWAIT 0 -#ifndef UINT64_MAX -#define UINT64_MAX _UI64_MAX -#define INT64_MAX _I64_MAX -#define INT64_MIN _I64_MIN -#endif + #ifndef S_IRUSR #define S_IRUSR 0400 #define S_IWUSR 0200 diff --git a/src/wallet.cpp b/src/wallet.cpp index 3ffad27e82..68d7e5acdb 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -767,7 +767,7 @@ bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfThe // List of values less than target pair > coinLowestLarger; - coinLowestLarger.first = INT64_MAX; + coinLowestLarger.first = std::numeric_limits::max(); coinLowestLarger.second.first = NULL; vector > > vValue; int64 nTotalLower = 0; -- cgit v1.2.3 From fa57170187415bf939885fc71cea5bffc30a32f8 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 14 Jun 2012 20:44:04 -0400 Subject: Document how to build/run unit tests --- doc/unit-tests.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 doc/unit-tests.txt diff --git a/doc/unit-tests.txt b/doc/unit-tests.txt new file mode 100644 index 0000000000..1168de7b70 --- /dev/null +++ b/doc/unit-tests.txt @@ -0,0 +1,18 @@ +Compiling/runing bitcoind unit tests +------------------------------------ + +bitcoind unit tests are in the src/test/ directory; they +use the Boost::Test unit-testing framework. + +To compile and run the tests: +cd src +make -f makefile.unix test_bitcoin # Replace makefile.unix if you're not on unix +./test_bitcoin # Runs the unit tests + +If all tests succeed the last line of output will be: +*** No errors detected + +To add more tests, add BOOST_AUTO_TEST_CASE's to the existing +.cpp files in the test/ directory or add new .cpp files that +implement new BOOST_AUTO_TEST_SUITE's (and add them to the +list of includes in test_bitcoin.cpp). -- cgit v1.2.3 From 0969343320e4ccca5893a913afdc4ca1ffb0b5c4 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 14 Jun 2012 20:44:04 -0400 Subject: Document how to build/run unit tests --- doc/unit-tests.txt | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 doc/unit-tests.txt diff --git a/doc/unit-tests.txt b/doc/unit-tests.txt new file mode 100644 index 0000000000..e7f215188e --- /dev/null +++ b/doc/unit-tests.txt @@ -0,0 +1,33 @@ +Compiling/runing bitcoind unit tests +------------------------------------ + +bitcoind unit tests are in the src/test/ directory; they +use the Boost::Test unit-testing framework. + +To compile and run the tests: +cd src +make -f makefile.unix test_bitcoin # Replace makefile.unix if you're not on unix +./test_bitcoin # Runs the unit tests + +If all tests succeed the last line of output will be: +*** No errors detected + +To add more tests, add BOOST_AUTO_TEST_CASE's to the existing +.cpp files in the test/ directory or add new .cpp files that +implement new BOOST_AUTO_TEST_SUITE's (the makefiles are +set up to add test/*.cpp to test_bitcoin automatically). + + +Compiling/running Bitcoin-Qt unit tests +--------------------------------------- + +Bitcoin-Qt unit tests are in the src/qt/test/ directory; they +use the Qt unit-testing framework. + +To compile and run the tests: +qmake bitcoin-qt.pro BITCOIN_QT_TEST=1 +make +./bitcoin-qt_test + +To add more tests, add them to the src/qt/test/ directory, +the src/qt/test/test_main.cpp file, and bitcoin-qt.pro. -- cgit v1.2.3 From 506bf85de57bdf079824a14e492c112338768c2a Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sat, 9 Jun 2012 15:41:21 +0200 Subject: add the slot updateDisplayUnit() to overviewpage, sendcoinsdialog, sendcoinsentry and connect it to displayUnitChanged() - this ensures all fields in the GUI, who use a display unit are imediately updated, when the user changes this setting in the optionsdialog / ensure used fields init with the current set display unit --- src/qt/overviewpage.cpp | 24 +++++++++++++++--------- src/qt/overviewpage.h | 2 +- src/qt/sendcoinsdialog.cpp | 14 ++++++++++++-- src/qt/sendcoinsdialog.h | 2 +- src/qt/sendcoinsentry.cpp | 18 ++++++++++++++---- src/qt/sendcoinsentry.h | 1 + 6 files changed, 44 insertions(+), 17 deletions(-) diff --git a/src/qt/overviewpage.cpp b/src/qt/overviewpage.cpp index 5b5a8f5271..2c3d8a49e3 100644 --- a/src/qt/overviewpage.cpp +++ b/src/qt/overviewpage.cpp @@ -143,7 +143,7 @@ void OverviewPage::setNumTransactions(int count) void OverviewPage::setModel(WalletModel *model) { this->model = model; - if(model) + if(model && model->getOptionsModel()) { // Set up transaction list TransactionFilterProxy *filter = new TransactionFilterProxy(); @@ -163,17 +163,23 @@ void OverviewPage::setModel(WalletModel *model) setNumTransactions(model->getNumTransactions()); connect(model, SIGNAL(numTransactionsChanged(int)), this, SLOT(setNumTransactions(int))); - connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(displayUnitChanged())); + connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit())); } + + // update the display unit, to not use the default ("BTC") + updateDisplayUnit(); } -void OverviewPage::displayUnitChanged() +void OverviewPage::updateDisplayUnit() { - if(!model || !model->getOptionsModel()) - return; - if(currentBalance != -1) - setBalance(currentBalance, currentUnconfirmedBalance); + if(model && model->getOptionsModel()) + { + if(currentBalance != -1) + setBalance(currentBalance, currentUnconfirmedBalance); - txdelegate->unit = model->getOptionsModel()->getDisplayUnit(); - ui->listTransactions->update(); + // Update txdelegate->unit with the current unit + txdelegate->unit = model->getOptionsModel()->getDisplayUnit(); + + ui->listTransactions->update(); + } } diff --git a/src/qt/overviewpage.h b/src/qt/overviewpage.h index 1199227168..99fe486494 100644 --- a/src/qt/overviewpage.h +++ b/src/qt/overviewpage.h @@ -40,7 +40,7 @@ private: TxViewDelegate *txdelegate; private slots: - void displayUnitChanged(); + void updateDisplayUnit(); }; #endif // OVERVIEWPAGE_H diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 4c58b38b78..ef2f1c3186 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -44,10 +44,11 @@ void SendCoinsDialog::setModel(WalletModel *model) entry->setModel(model); } } - if(model) + if(model && model->getOptionsModel()) { setBalance(model->getBalance(), model->getUnconfirmedBalance()); connect(model, SIGNAL(balanceChanged(qint64, qint64)), this, SLOT(setBalance(qint64, qint64))); + connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit())); } } @@ -195,7 +196,7 @@ SendCoinsEntry *SendCoinsDialog::addEntry() ui->scrollAreaWidgetContents->resize(ui->scrollAreaWidgetContents->sizeHint()); QCoreApplication::instance()->processEvents(); QScrollBar* bar = ui->scrollArea->verticalScrollBar(); - if (bar) + if(bar) bar->setSliderPosition(bar->maximum()); return entry; } @@ -286,3 +287,12 @@ void SendCoinsDialog::setBalance(qint64 balance, qint64 unconfirmedBalance) int unit = model->getOptionsModel()->getDisplayUnit(); ui->labelBalance->setText(BitcoinUnits::formatWithUnit(unit, balance)); } + +void SendCoinsDialog::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())); + } +} diff --git a/src/qt/sendcoinsdialog.h b/src/qt/sendcoinsdialog.h index 79125766e3..ed56214191 100644 --- a/src/qt/sendcoinsdialog.h +++ b/src/qt/sendcoinsdialog.h @@ -47,8 +47,8 @@ private: private slots: void on_sendButton_clicked(); - void removeEntry(SendCoinsEntry* entry); + void updateDisplayUnit(); }; #endif // SENDCOINSDIALOG_H diff --git a/src/qt/sendcoinsentry.cpp b/src/qt/sendcoinsentry.cpp index c8242d8352..599a804c46 100644 --- a/src/qt/sendcoinsentry.cpp +++ b/src/qt/sendcoinsentry.cpp @@ -68,6 +68,10 @@ void SendCoinsEntry::on_payTo_textChanged(const QString &address) void SendCoinsEntry::setModel(WalletModel *model) { this->model = model; + + if(model && model->getOptionsModel()) + connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit())); + clear(); } @@ -82,10 +86,8 @@ void SendCoinsEntry::clear() ui->addAsLabel->clear(); ui->payAmount->clear(); ui->payTo->setFocus(); - if(model && model->getOptionsModel()) - { - ui->payAmount->setDisplayUnit(model->getOptionsModel()->getDisplayUnit()); - } + // update the display unit, to not use the default ("BTC") + updateDisplayUnit(); } void SendCoinsEntry::on_deleteButton_clicked() @@ -160,3 +162,11 @@ void SendCoinsEntry::setFocus() ui->payTo->setFocus(); } +void SendCoinsEntry::updateDisplayUnit() +{ + if(model && model->getOptionsModel()) + { + // Update payAmount with the current unit + ui->payAmount->setDisplayUnit(model->getOptionsModel()->getDisplayUnit()); + } +} diff --git a/src/qt/sendcoinsentry.h b/src/qt/sendcoinsentry.h index cdbf893264..db6cba0d80 100644 --- a/src/qt/sendcoinsentry.h +++ b/src/qt/sendcoinsentry.h @@ -45,6 +45,7 @@ private slots: void on_payTo_textChanged(const QString &address); void on_addressBookButton_clicked(); void on_pasteButton_clicked(); + void updateDisplayUnit(); private: Ui::SendCoinsEntry *ui; -- cgit v1.2.3 From 7ff54e08aa42f10dae424711a0a3764a67eae295 Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Mon, 14 May 2012 02:50:01 +0200 Subject: Don't overflow signed ints in CBigNum::setint64(). CBigNum::setint64() does 'n <<= 8', where n is of type "long long". This leads to shifting onto and past the sign bit, which is undefined behavior in C++11 and can cause problems in the future. --- src/bignum.h | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/bignum.h b/src/bignum.h index 4a3fb38b00..e203b26a05 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -121,16 +121,22 @@ public: return (n > std::numeric_limits::max() ? std::numeric_limits::min() : -(int)n); } - void setint64(int64 n) + void setint64(int64 sn) { - unsigned char pch[sizeof(n) + 6]; + unsigned char pch[sizeof(sn) + 6]; unsigned char* p = pch + 4; - bool fNegative = false; - if (n < (int64)0) + bool fNegative; + uint64 n; + + if (sn < (int64)0) { - n = -n; + n = -sn; fNegative = true; + } else { + n = sn; + fNegative = false; } + bool fLeadingZeroes = true; for (int i = 0; i < 8; i++) { -- cgit v1.2.3 From b0d9f41cd222de5d13d2b9cec27474009029d5ec Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Thu, 7 Jun 2012 19:11:15 +0200 Subject: Don't overflow integer on 32-bit machines. This was causing test_bitcoin to abort on a 32-bit system likely due to -ftrapv. --- src/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.h b/src/util.h index 284cf33c4b..dc72968326 100644 --- a/src/util.h +++ b/src/util.h @@ -396,7 +396,7 @@ inline int64 GetPerformanceCounter() #else timeval t; gettimeofday(&t, NULL); - nCounter = t.tv_sec * 1000000 + t.tv_usec; + nCounter = (int64) t.tv_sec * 1000000 + t.tv_usec; #endif return nCounter; } -- cgit v1.2.3 From db4036a829f5e0adc55b6f320b51177e3b518c3e Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 19 Jun 2012 14:44:38 -0400 Subject: Bump version numbers to 0.6.3 --- bitcoin-qt.pro | 2 +- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/version.h | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 82bbfabc2b..7114ef9336 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = -VERSION = 0.6.2.2 +VERSION = 0.6.3.0 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd diff --git a/doc/README b/doc/README index 70ed4d5aee..6cc50007df 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.6.2 BETA +Bitcoin 0.6.3 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 451aedbfd5..cf8958b780 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.6.2 BETA +Bitcoin 0.6.3 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index fb122efc1f..5e054908de 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.6.2 +!define VERSION 0.6.3 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.6.2-win32-setup.exe +OutFile bitcoin-0.6.3-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.6.2.0 +VIProductVersion 0.6.3.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/version.h b/src/version.h index 7cf82c395a..c0ec97ddf2 100644 --- a/src/version.h +++ b/src/version.h @@ -12,8 +12,8 @@ static const int CLIENT_VERSION_MAJOR = 0; static const int CLIENT_VERSION_MINOR = 6; -static const int CLIENT_VERSION_REVISION = 2; -static const int CLIENT_VERSION_BUILD = 2; +static const int CLIENT_VERSION_REVISION = 3; +static const int CLIENT_VERSION_BUILD = 0; static const int CLIENT_VERSION = 1000000 * CLIENT_VERSION_MAJOR -- cgit v1.2.3 From 4aa8021a9651257605e8c16df2973eee8aebe575 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 16 May 2012 12:36:38 -0400 Subject: Refactor: move code from key.h to key.cpp --- src/key.cpp | 263 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++- src/key.h | 268 ++++++------------------------------------------------------ 2 files changed, 285 insertions(+), 246 deletions(-) diff --git a/src/key.cpp b/src/key.cpp index e0844412d9..ece835d147 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -2,8 +2,10 @@ // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. -#include #include +#include + +#include "key.h" // Generate a private key from just the secret parameter int EC_KEY_regenerate_key(EC_KEY *eckey, BIGNUM *priv_key) @@ -115,3 +117,262 @@ err: if (Q != NULL) EC_POINT_free(Q); return ret; } + +void CKey::SetCompressedPubKey() +{ + EC_KEY_set_conv_form(pkey, POINT_CONVERSION_COMPRESSED); + fCompressedPubKey = true; +} + +void CKey::Reset() +{ + fCompressedPubKey = false; + pkey = EC_KEY_new_by_curve_name(NID_secp256k1); + if (pkey == NULL) + throw key_error("CKey::CKey() : EC_KEY_new_by_curve_name failed"); + fSet = false; +} + +CKey::CKey() +{ + Reset(); +} + +CKey::CKey(const CKey& b) +{ + pkey = EC_KEY_dup(b.pkey); + if (pkey == NULL) + throw key_error("CKey::CKey(const CKey&) : EC_KEY_dup failed"); + fSet = b.fSet; +} + +CKey& CKey::operator=(const CKey& b) +{ + if (!EC_KEY_copy(pkey, b.pkey)) + throw key_error("CKey::operator=(const CKey&) : EC_KEY_copy failed"); + fSet = b.fSet; + return (*this); +} + +CKey::~CKey() +{ + EC_KEY_free(pkey); +} + +bool CKey::IsNull() const +{ + return !fSet; +} + +bool CKey::IsCompressed() const +{ + return fCompressedPubKey; +} + +void CKey::MakeNewKey(bool fCompressed) +{ + if (!EC_KEY_generate_key(pkey)) + throw key_error("CKey::MakeNewKey() : EC_KEY_generate_key failed"); + if (fCompressed) + SetCompressedPubKey(); + fSet = true; +} + +bool CKey::SetPrivKey(const CPrivKey& vchPrivKey) +{ + const unsigned char* pbegin = &vchPrivKey[0]; + if (!d2i_ECPrivateKey(&pkey, &pbegin, vchPrivKey.size())) + return false; + fSet = true; + return true; +} + +bool CKey::SetSecret(const CSecret& vchSecret, bool fCompressed) +{ + EC_KEY_free(pkey); + pkey = EC_KEY_new_by_curve_name(NID_secp256k1); + if (pkey == NULL) + throw key_error("CKey::SetSecret() : EC_KEY_new_by_curve_name failed"); + if (vchSecret.size() != 32) + throw key_error("CKey::SetSecret() : secret must be 32 bytes"); + BIGNUM *bn = BN_bin2bn(&vchSecret[0],32,BN_new()); + if (bn == NULL) + throw key_error("CKey::SetSecret() : BN_bin2bn failed"); + if (!EC_KEY_regenerate_key(pkey,bn)) + { + BN_clear_free(bn); + throw key_error("CKey::SetSecret() : EC_KEY_regenerate_key failed"); + } + BN_clear_free(bn); + fSet = true; + if (fCompressed || fCompressedPubKey) + SetCompressedPubKey(); + return true; +} + +CSecret CKey::GetSecret(bool &fCompressed) const +{ + CSecret vchRet; + vchRet.resize(32); + const BIGNUM *bn = EC_KEY_get0_private_key(pkey); + int nBytes = BN_num_bytes(bn); + if (bn == NULL) + throw key_error("CKey::GetSecret() : EC_KEY_get0_private_key failed"); + int n=BN_bn2bin(bn,&vchRet[32 - nBytes]); + if (n != nBytes) + throw key_error("CKey::GetSecret(): BN_bn2bin failed"); + fCompressed = fCompressedPubKey; + return vchRet; +} + +CPrivKey CKey::GetPrivKey() const +{ + int nSize = i2d_ECPrivateKey(pkey, NULL); + if (!nSize) + throw key_error("CKey::GetPrivKey() : i2d_ECPrivateKey failed"); + CPrivKey vchPrivKey(nSize, 0); + unsigned char* pbegin = &vchPrivKey[0]; + if (i2d_ECPrivateKey(pkey, &pbegin) != nSize) + throw key_error("CKey::GetPrivKey() : i2d_ECPrivateKey returned unexpected size"); + return vchPrivKey; +} + +bool CKey::SetPubKey(const std::vector& vchPubKey) +{ + const unsigned char* pbegin = &vchPubKey[0]; + if (!o2i_ECPublicKey(&pkey, &pbegin, vchPubKey.size())) + return false; + fSet = true; + if (vchPubKey.size() == 33) + SetCompressedPubKey(); + return true; +} + +std::vector CKey::GetPubKey() const +{ + int nSize = i2o_ECPublicKey(pkey, NULL); + if (!nSize) + throw key_error("CKey::GetPubKey() : i2o_ECPublicKey failed"); + std::vector vchPubKey(nSize, 0); + unsigned char* pbegin = &vchPubKey[0]; + if (i2o_ECPublicKey(pkey, &pbegin) != nSize) + throw key_error("CKey::GetPubKey() : i2o_ECPublicKey returned unexpected size"); + return vchPubKey; +} + +bool CKey::Sign(uint256 hash, std::vector& vchSig) +{ + unsigned int nSize = ECDSA_size(pkey); + vchSig.resize(nSize); // Make sure it is big enough + if (!ECDSA_sign(0, (unsigned char*)&hash, sizeof(hash), &vchSig[0], &nSize, pkey)) + { + vchSig.clear(); + return false; + } + vchSig.resize(nSize); // Shrink to fit actual size + return true; +} + +// create a compact signature (65 bytes), which allows reconstructing the used public key +// The format is one header byte, followed by two times 32 bytes for the serialized r and s values. +// The header byte: 0x1B = first key with even y, 0x1C = first key with odd y, +// 0x1D = second key with even y, 0x1E = second key with odd y +bool CKey::SignCompact(uint256 hash, std::vector& vchSig) +{ + bool fOk = false; + ECDSA_SIG *sig = ECDSA_do_sign((unsigned char*)&hash, sizeof(hash), pkey); + if (sig==NULL) + return false; + vchSig.clear(); + vchSig.resize(65,0); + int nBitsR = BN_num_bits(sig->r); + int nBitsS = BN_num_bits(sig->s); + if (nBitsR <= 256 && nBitsS <= 256) + { + int nRecId = -1; + for (int i=0; i<4; i++) + { + CKey keyRec; + keyRec.fSet = true; + if (fCompressedPubKey) + keyRec.SetCompressedPubKey(); + if (ECDSA_SIG_recover_key_GFp(keyRec.pkey, sig, (unsigned char*)&hash, sizeof(hash), i, 1) == 1) + if (keyRec.GetPubKey() == this->GetPubKey()) + { + nRecId = i; + break; + } + } + + if (nRecId == -1) + throw key_error("CKey::SignCompact() : unable to construct recoverable key"); + + vchSig[0] = nRecId+27+(fCompressedPubKey ? 4 : 0); + BN_bn2bin(sig->r,&vchSig[33-(nBitsR+7)/8]); + BN_bn2bin(sig->s,&vchSig[65-(nBitsS+7)/8]); + fOk = true; + } + ECDSA_SIG_free(sig); + return fOk; +} + +// reconstruct public key from a compact signature +// This is only slightly more CPU intensive than just verifying it. +// If this function succeeds, the recovered public key is guaranteed to be valid +// (the signature is a valid signature of the given data for that key) +bool CKey::SetCompactSignature(uint256 hash, const std::vector& vchSig) +{ + if (vchSig.size() != 65) + return false; + int nV = vchSig[0]; + if (nV<27 || nV>=35) + return false; + ECDSA_SIG *sig = ECDSA_SIG_new(); + BN_bin2bn(&vchSig[1],32,sig->r); + BN_bin2bn(&vchSig[33],32,sig->s); + + EC_KEY_free(pkey); + pkey = EC_KEY_new_by_curve_name(NID_secp256k1); + if (nV >= 31) + { + SetCompressedPubKey(); + nV -= 4; + } + if (ECDSA_SIG_recover_key_GFp(pkey, sig, (unsigned char*)&hash, sizeof(hash), nV - 27, 0) == 1) + { + fSet = true; + ECDSA_SIG_free(sig); + return true; + } + return false; +} + +bool CKey::Verify(uint256 hash, const std::vector& vchSig) +{ + // -1 = error, 0 = bad sig, 1 = good + if (ECDSA_verify(0, (unsigned char*)&hash, sizeof(hash), &vchSig[0], vchSig.size(), pkey) != 1) + return false; + return true; +} + +bool CKey::VerifyCompact(uint256 hash, const std::vector& vchSig) +{ + CKey key; + if (!key.SetCompactSignature(hash, vchSig)) + return false; + if (GetPubKey() != key.GetPubKey()) + return false; + return true; +} + +bool CKey::IsValid() +{ + if (!fSet) + return false; + + bool fCompr; + CSecret secret = GetSecret(fCompr); + CKey key2; + key2.SetSecret(secret, fCompr); + return GetPubKey() == key2.GetPubKey(); +} diff --git a/src/key.h b/src/key.h index 1579cdc40a..f7255fcaf5 100644 --- a/src/key.h +++ b/src/key.h @@ -8,13 +8,11 @@ #include #include -#include -#include -#include - #include "allocators.h" #include "uint256.h" +#include // for EC_KEY definition + // secp160k1 // const unsigned int PRIVATE_KEY_SIZE = 192; // const unsigned int PUBLIC_KEY_SIZE = 41; @@ -38,9 +36,6 @@ // see www.keylength.com // script supports up to 75 for single byte push -int extern EC_KEY_regenerate_key(EC_KEY *eckey, BIGNUM *priv_key); -int extern ECDSA_SIG_recover_key_GFp(EC_KEY *eckey, ECDSA_SIG *ecsig, const unsigned char *msg, int msglen, int recid, int check); - class key_error : public std::runtime_error { public: @@ -62,267 +57,50 @@ protected: bool fSet; bool fCompressedPubKey; - void SetCompressedPubKey() - { - EC_KEY_set_conv_form(pkey, POINT_CONVERSION_COMPRESSED); - fCompressedPubKey = true; - } + void SetCompressedPubKey(); public: - void Reset() - { - fCompressedPubKey = false; - pkey = EC_KEY_new_by_curve_name(NID_secp256k1); - if (pkey == NULL) - throw key_error("CKey::CKey() : EC_KEY_new_by_curve_name failed"); - fSet = false; - } - - CKey() - { - Reset(); - } - - CKey(const CKey& b) - { - pkey = EC_KEY_dup(b.pkey); - if (pkey == NULL) - throw key_error("CKey::CKey(const CKey&) : EC_KEY_dup failed"); - fSet = b.fSet; - } - - CKey& operator=(const CKey& b) - { - if (!EC_KEY_copy(pkey, b.pkey)) - throw key_error("CKey::operator=(const CKey&) : EC_KEY_copy failed"); - fSet = b.fSet; - return (*this); - } - - ~CKey() - { - EC_KEY_free(pkey); - } - - bool IsNull() const - { - return !fSet; - } + void Reset(); - bool IsCompressed() const - { - return fCompressedPubKey; - } + CKey(); + CKey(const CKey& b); - void MakeNewKey(bool fCompressed) - { - if (!EC_KEY_generate_key(pkey)) - throw key_error("CKey::MakeNewKey() : EC_KEY_generate_key failed"); - if (fCompressed) - SetCompressedPubKey(); - fSet = true; - } + CKey& operator=(const CKey& b); - bool SetPrivKey(const CPrivKey& vchPrivKey) - { - const unsigned char* pbegin = &vchPrivKey[0]; - if (!d2i_ECPrivateKey(&pkey, &pbegin, vchPrivKey.size())) - return false; - fSet = true; - return true; - } + ~CKey(); - bool SetSecret(const CSecret& vchSecret, bool fCompressed = false) - { - EC_KEY_free(pkey); - pkey = EC_KEY_new_by_curve_name(NID_secp256k1); - if (pkey == NULL) - throw key_error("CKey::SetSecret() : EC_KEY_new_by_curve_name failed"); - if (vchSecret.size() != 32) - throw key_error("CKey::SetSecret() : secret must be 32 bytes"); - BIGNUM *bn = BN_bin2bn(&vchSecret[0],32,BN_new()); - if (bn == NULL) - throw key_error("CKey::SetSecret() : BN_bin2bn failed"); - if (!EC_KEY_regenerate_key(pkey,bn)) - { - BN_clear_free(bn); - throw key_error("CKey::SetSecret() : EC_KEY_regenerate_key failed"); - } - BN_clear_free(bn); - fSet = true; - if (fCompressed || fCompressedPubKey) - SetCompressedPubKey(); - return true; - } + bool IsNull() const; + bool IsCompressed() const; - CSecret GetSecret(bool &fCompressed) const - { - CSecret vchRet; - vchRet.resize(32); - const BIGNUM *bn = EC_KEY_get0_private_key(pkey); - int nBytes = BN_num_bytes(bn); - if (bn == NULL) - throw key_error("CKey::GetSecret() : EC_KEY_get0_private_key failed"); - int n=BN_bn2bin(bn,&vchRet[32 - nBytes]); - if (n != nBytes) - throw key_error("CKey::GetSecret(): BN_bn2bin failed"); - fCompressed = fCompressedPubKey; - return vchRet; - } + void MakeNewKey(bool fCompressed); + bool SetPrivKey(const CPrivKey& vchPrivKey); + bool SetSecret(const CSecret& vchSecret, bool fCompressed = false); + CSecret GetSecret(bool &fCompressed) const; + CPrivKey GetPrivKey() const; + bool SetPubKey(const std::vector& vchPubKey); + std::vector GetPubKey() const; - CPrivKey GetPrivKey() const - { - int nSize = i2d_ECPrivateKey(pkey, NULL); - if (!nSize) - throw key_error("CKey::GetPrivKey() : i2d_ECPrivateKey failed"); - CPrivKey vchPrivKey(nSize, 0); - unsigned char* pbegin = &vchPrivKey[0]; - if (i2d_ECPrivateKey(pkey, &pbegin) != nSize) - throw key_error("CKey::GetPrivKey() : i2d_ECPrivateKey returned unexpected size"); - return vchPrivKey; - } - - bool SetPubKey(const std::vector& vchPubKey) - { - const unsigned char* pbegin = &vchPubKey[0]; - if (!o2i_ECPublicKey(&pkey, &pbegin, vchPubKey.size())) - return false; - fSet = true; - if (vchPubKey.size() == 33) - SetCompressedPubKey(); - return true; - } - - std::vector GetPubKey() const - { - int nSize = i2o_ECPublicKey(pkey, NULL); - if (!nSize) - throw key_error("CKey::GetPubKey() : i2o_ECPublicKey failed"); - std::vector vchPubKey(nSize, 0); - unsigned char* pbegin = &vchPubKey[0]; - if (i2o_ECPublicKey(pkey, &pbegin) != nSize) - throw key_error("CKey::GetPubKey() : i2o_ECPublicKey returned unexpected size"); - return vchPubKey; - } - - bool Sign(uint256 hash, std::vector& vchSig) - { - unsigned int nSize = ECDSA_size(pkey); - vchSig.resize(nSize); // Make sure it is big enough - if (!ECDSA_sign(0, (unsigned char*)&hash, sizeof(hash), &vchSig[0], &nSize, pkey)) - { - vchSig.clear(); - return false; - } - vchSig.resize(nSize); // Shrink to fit actual size - return true; - } + bool Sign(uint256 hash, std::vector& vchSig); // create a compact signature (65 bytes), which allows reconstructing the used public key // The format is one header byte, followed by two times 32 bytes for the serialized r and s values. // The header byte: 0x1B = first key with even y, 0x1C = first key with odd y, // 0x1D = second key with even y, 0x1E = second key with odd y - bool SignCompact(uint256 hash, std::vector& vchSig) - { - bool fOk = false; - ECDSA_SIG *sig = ECDSA_do_sign((unsigned char*)&hash, sizeof(hash), pkey); - if (sig==NULL) - return false; - vchSig.clear(); - vchSig.resize(65,0); - int nBitsR = BN_num_bits(sig->r); - int nBitsS = BN_num_bits(sig->s); - if (nBitsR <= 256 && nBitsS <= 256) - { - int nRecId = -1; - for (int i=0; i<4; i++) - { - CKey keyRec; - keyRec.fSet = true; - if (fCompressedPubKey) - keyRec.SetCompressedPubKey(); - if (ECDSA_SIG_recover_key_GFp(keyRec.pkey, sig, (unsigned char*)&hash, sizeof(hash), i, 1) == 1) - if (keyRec.GetPubKey() == this->GetPubKey()) - { - nRecId = i; - break; - } - } - - if (nRecId == -1) - throw key_error("CKey::SignCompact() : unable to construct recoverable key"); - - vchSig[0] = nRecId+27+(fCompressedPubKey ? 4 : 0); - BN_bn2bin(sig->r,&vchSig[33-(nBitsR+7)/8]); - BN_bn2bin(sig->s,&vchSig[65-(nBitsS+7)/8]); - fOk = true; - } - ECDSA_SIG_free(sig); - return fOk; - } + bool SignCompact(uint256 hash, std::vector& vchSig); // reconstruct public key from a compact signature // This is only slightly more CPU intensive than just verifying it. // If this function succeeds, the recovered public key is guaranteed to be valid // (the signature is a valid signature of the given data for that key) - bool SetCompactSignature(uint256 hash, const std::vector& vchSig) - { - if (vchSig.size() != 65) - return false; - int nV = vchSig[0]; - if (nV<27 || nV>=35) - return false; - ECDSA_SIG *sig = ECDSA_SIG_new(); - BN_bin2bn(&vchSig[1],32,sig->r); - BN_bin2bn(&vchSig[33],32,sig->s); - - EC_KEY_free(pkey); - pkey = EC_KEY_new_by_curve_name(NID_secp256k1); - if (nV >= 31) - { - SetCompressedPubKey(); - nV -= 4; - } - if (ECDSA_SIG_recover_key_GFp(pkey, sig, (unsigned char*)&hash, sizeof(hash), nV - 27, 0) == 1) - { - fSet = true; - ECDSA_SIG_free(sig); - return true; - } - return false; - } + bool SetCompactSignature(uint256 hash, const std::vector& vchSig); - bool Verify(uint256 hash, const std::vector& vchSig) - { - // -1 = error, 0 = bad sig, 1 = good - if (ECDSA_verify(0, (unsigned char*)&hash, sizeof(hash), &vchSig[0], vchSig.size(), pkey) != 1) - return false; - return true; - } + bool Verify(uint256 hash, const std::vector& vchSig); // Verify a compact signature - bool VerifyCompact(uint256 hash, const std::vector& vchSig) - { - CKey key; - if (!key.SetCompactSignature(hash, vchSig)) - return false; - if (GetPubKey() != key.GetPubKey()) - return false; - return true; - } - - bool IsValid() - { - if (!fSet) - return false; + bool VerifyCompact(uint256 hash, const std::vector& vchSig); - bool fCompr; - CSecret secret = GetSecret(fCompr); - CKey key2; - key2.SetSecret(secret, fCompr); - return GetPubKey() == key2.GetPubKey(); - } + bool IsValid(); }; #endif -- cgit v1.2.3 From 87593b98379544f3dadc2529ea0817d9ebefc4ce Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Thu, 17 May 2012 20:36:55 -0400 Subject: Make orphan logging more verbose, displaying mapOrphanTransactions.size() Old log message: storing orphan tx df2244f6bc New log message: storing orphan tx df2244f6bc (mapsz 51) Also, trim a few trailing whitespace in main.cpp. --- src/main.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 427e435a90..ae13115c10 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -718,7 +718,7 @@ bool CWalletTx::AcceptWalletTransaction(CTxDB& txdb, bool fCheckInputs) return false; } -bool CWalletTx::AcceptWalletTransaction() +bool CWalletTx::AcceptWalletTransaction() { CTxDB txdb("r"); return AcceptWalletTransaction(txdb); @@ -2596,7 +2596,9 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) } else if (fMissingInputs) { - printf("storing orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str()); + printf("storing orphan tx %s (mapsz %d)\n", + inv.hash.ToString().substr(0,10).c_str(), + mapOrphanTransactions.size() + 1); AddOrphanTx(vMsg); // DoS prevention: do not allow mapOrphanTransactions to grow unbounded @@ -2862,7 +2864,7 @@ bool SendMessages(CNode* pto, bool fSendTrickle) if (pto->nVersion == 0) return true; - // Keep-alive ping. We send a nonce of zero because we don't use it anywhere + // Keep-alive ping. We send a nonce of zero because we don't use it anywhere // right now. if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty()) { if (pto->nVersion > BIP0031_VERSION) @@ -3062,7 +3064,7 @@ void SHA256Transform(void* pstate, void* pinput, const void* pinit) ctx.h[i] = ((uint32_t*)pinit)[i]; SHA256_Update(&ctx, data, sizeof(data)); - for (int i = 0; i < 8; i++) + for (int i = 0; i < 8; i++) ((uint32_t*)pstate)[i] = ctx.h[i]; } -- cgit v1.2.3 From 469f6da8bcaf0179f1afbb5d927aae0d9b1ce610 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 15 May 2012 15:53:30 -0400 Subject: Optimize orphan transaction handling Changes suggested by Sergio Demian Lerner to help prevent potential DoS attacks. --- src/main.cpp | 48 ++++++++++++++++++++++++++++++------------------ src/test/DoS_tests.cpp | 30 ++++++++++++++++++++++++++++-- 2 files changed, 58 insertions(+), 20 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index ae13115c10..3b2a6480b2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -43,7 +43,7 @@ map mapOrphanBlocks; multimap mapOrphanBlocksByPrev; map mapOrphanTransactions; -multimap mapOrphanTransactionsByPrev; +map > mapOrphanTransactionsByPrev; // Constant stuff for coinbase transactions we create: CScript COINBASE_FLAGS; @@ -160,17 +160,37 @@ void static ResendWalletTransactions() // mapOrphanTransactions // -void AddOrphanTx(const CDataStream& vMsg) +bool AddOrphanTx(const CDataStream& vMsg) { CTransaction tx; CDataStream(vMsg) >> tx; uint256 hash = tx.GetHash(); if (mapOrphanTransactions.count(hash)) - return; + return false; + + CDataStream* pvMsg = new CDataStream(vMsg); + + // Ignore big transactions, to avoid a + // send-big-orphans memory exhaustion attack. If a peer has a legitimate + // large transaction with a missing parent then we assume + // it will rebroadcast it later, after the parent transaction(s) + // have been mined or received. + // 10,000 orphans, each of which is at most 5,000 bytes big is + // at most 500 megabytes of orphans: + if (pvMsg->size() > 5000) + { + delete pvMsg; + printf("ignoring large orphan tx (size: %u, hash: %s)\n", pvMsg->size(), hash.ToString().substr(0,10).c_str()); + return false; + } - CDataStream* pvMsg = mapOrphanTransactions[hash] = new CDataStream(vMsg); + mapOrphanTransactions[hash] = pvMsg; BOOST_FOREACH(const CTxIn& txin, tx.vin) - mapOrphanTransactionsByPrev.insert(make_pair(txin.prevout.hash, pvMsg)); + mapOrphanTransactionsByPrev[txin.prevout.hash].insert(make_pair(hash, pvMsg)); + + printf("stored orphan tx %s (mapsz %u)\n", hash.ToString().substr(0,10).c_str(), + mapOrphanTransactions.size()); + return true; } void static EraseOrphanTx(uint256 hash) @@ -182,14 +202,9 @@ void static EraseOrphanTx(uint256 hash) CDataStream(*pvMsg) >> tx; BOOST_FOREACH(const CTxIn& txin, tx.vin) { - for (multimap::iterator mi = mapOrphanTransactionsByPrev.lower_bound(txin.prevout.hash); - mi != mapOrphanTransactionsByPrev.upper_bound(txin.prevout.hash);) - { - if ((*mi).second == pvMsg) - mapOrphanTransactionsByPrev.erase(mi++); - else - mi++; - } + mapOrphanTransactionsByPrev[txin.prevout.hash].erase(hash); + if (mapOrphanTransactionsByPrev[txin.prevout.hash].empty()) + mapOrphanTransactionsByPrev.erase(txin.prevout.hash); } delete pvMsg; mapOrphanTransactions.erase(hash); @@ -2571,8 +2586,8 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) for (unsigned int i = 0; i < vWorkQueue.size(); i++) { uint256 hashPrev = vWorkQueue[i]; - for (multimap::iterator mi = mapOrphanTransactionsByPrev.lower_bound(hashPrev); - mi != mapOrphanTransactionsByPrev.upper_bound(hashPrev); + for (map::iterator mi = mapOrphanTransactionsByPrev[hashPrev].begin(); + mi != mapOrphanTransactionsByPrev[hashPrev].end(); ++mi) { const CDataStream& vMsg = *((*mi).second); @@ -2596,9 +2611,6 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) } else if (fMissingInputs) { - printf("storing orphan tx %s (mapsz %d)\n", - inv.hash.ToString().substr(0,10).c_str(), - mapOrphanTransactions.size() + 1); AddOrphanTx(vMsg); // DoS prevention: do not allow mapOrphanTransactions to grow unbounded diff --git a/src/test/DoS_tests.cpp b/src/test/DoS_tests.cpp index e5a8b4f68b..cea4577a3b 100644 --- a/src/test/DoS_tests.cpp +++ b/src/test/DoS_tests.cpp @@ -13,10 +13,10 @@ #include // Tests this internal-to-main.cpp method: -extern void AddOrphanTx(const CDataStream& vMsg); +extern bool AddOrphanTx(const CDataStream& vMsg); extern unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans); extern std::map mapOrphanTransactions; -extern std::multimap mapOrphanTransactionsByPrev; +extern std::map > mapOrphanTransactionsByPrev; CService ip(uint32_t i) { @@ -192,6 +192,32 @@ BOOST_AUTO_TEST_CASE(DoS_mapOrphans) AddOrphanTx(ds); } + // This really-big orphan should be ignored: + for (int i = 0; i < 10; i++) + { + CTransaction txPrev = RandomOrphan(); + + CTransaction tx; + tx.vout.resize(1); + tx.vout[0].nValue = 1*CENT; + tx.vout[0].scriptPubKey.SetBitcoinAddress(key.GetPubKey()); + tx.vin.resize(500); + for (int j = 0; j < tx.vin.size(); j++) + { + tx.vin[j].prevout.n = j; + tx.vin[j].prevout.hash = txPrev.GetHash(); + } + SignSignature(keystore, txPrev, tx, 0); + // Re-use same signature for other inputs + // (they don't have to be valid for this test) + for (int j = 1; j < tx.vin.size(); j++) + tx.vin[j].scriptSig = tx.vin[0].scriptSig; + + CDataStream ds(SER_DISK, CLIENT_VERSION); + ds << tx; + BOOST_CHECK(!AddOrphanTx(ds)); + } + // Test LimitOrphanTxSize() function: LimitOrphanTxSize(40); BOOST_CHECK(mapOrphanTransactions.size() <= 40); -- cgit v1.2.3 From 63ee422ab312ec7bb03c0f7e74308d23723e364e Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 17 May 2012 10:12:04 -0400 Subject: Remove invalid dependent orphans from memory Remove orphan transactions from memory once all of their parent transactions are received and they're still not valid. Thanks to Sergio Demian Lerner for suggesting this fix. --- src/main.cpp | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 3b2a6480b2..289b643563 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2566,6 +2566,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) else if (strCommand == "tx") { vector vWorkQueue; + vector vEraseQueue; CDataStream vMsg(vRecv); CTxDB txdb("r"); CTransaction tx; @@ -2581,6 +2582,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) RelayMessage(inv, vMsg); mapAlreadyAskedFor.erase(inv); vWorkQueue.push_back(inv.hash); + vEraseQueue.push_back(inv.hash); // Recursively process any orphan transactions that depended on this one for (unsigned int i = 0; i < vWorkQueue.size(); i++) @@ -2594,19 +2596,27 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) CTransaction tx; CDataStream(vMsg) >> tx; CInv inv(MSG_TX, tx.GetHash()); + bool fMissingInputs2 = false; - if (tx.AcceptToMemoryPool(txdb, true)) + if (tx.AcceptToMemoryPool(txdb, true, &fMissingInputs2)) { printf(" accepted orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str()); SyncWithWallets(tx, NULL, true); RelayMessage(inv, vMsg); mapAlreadyAskedFor.erase(inv); vWorkQueue.push_back(inv.hash); + vEraseQueue.push_back(inv.hash); + } + else if (!fMissingInputs2) + { + // invalid orphan + vEraseQueue.push_back(inv.hash); + printf(" removed invalid orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str()); } } } - BOOST_FOREACH(uint256 hash, vWorkQueue) + BOOST_FOREACH(uint256 hash, vEraseQueue) EraseOrphanTx(hash); } else if (fMissingInputs) -- cgit v1.2.3 From 4d87a33eaeccfee0fc2469dcc090a47a9d086a04 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 16 May 2012 11:26:56 -0400 Subject: Further DoS prevention: Verify signatures last Loop over all inputs doing inexpensive validity checks first, and then loop over them a second time doing expensive signature checks. This helps prevent possible CPU exhaustion attacks where an attacker tries to make a victim waste time checking signatures for invalid transactions. --- src/main.cpp | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 289b643563..475677cddd 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1144,17 +1144,28 @@ bool CTransaction::ConnectInputs(MapPrevTx inputs, if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile) return error("ConnectInputs() : tried to spend coinbase at depth %d", pindexBlock->nHeight - pindex->nHeight); + // Check for negative or overflow input values + nValueIn += txPrev.vout[prevout.n].nValue; + if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn)) + return DoS(100, error("ConnectInputs() : txin values out of range")); + + } + // The first loop above does all the inexpensive checks. + // Only if ALL inputs pass do we perform expensive ECDSA signature checks. + // Helps prevent CPU exhaustion attacks. + for (unsigned int i = 0; i < vin.size(); i++) + { + COutPoint prevout = vin[i].prevout; + assert(inputs.count(prevout.hash) > 0); + CTxIndex& txindex = inputs[prevout.hash].first; + CTransaction& txPrev = inputs[prevout.hash].second; + // Check for conflicts (double-spend) // This doesn't trigger the DoS code on purpose; if it did, it would make it easier // for an attacker to attempt to split the network. if (!txindex.vSpent[prevout.n].IsNull()) return fMiner ? false : error("ConnectInputs() : %s prev tx already used at %s", GetHash().ToString().substr(0,10).c_str(), txindex.vSpent[prevout.n].ToString().c_str()); - // Check for negative or overflow input values - nValueIn += txPrev.vout[prevout.n].nValue; - if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn)) - return DoS(100, error("ConnectInputs() : txin values out of range")); - // Skip ECDSA signature verification when connecting blocks (fBlock=true) // before the last blockchain checkpoint. This is safe because block merkle hashes are // still computed and checked, and any change will be caught at the next checkpoint. -- cgit v1.2.3 From 2d90330d8c731273a9f50eb82eaa6d4bcc7b6fb8 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 16 May 2012 15:57:04 -0400 Subject: Cache signature verifications Create a maximum-10MB signature verification result cache. This should almost double the number of transactions that can be processed on a given CPU, because before this change ECDSA signatures were verified when transactions were added to the memory pool and then again when they appeared in a block. --- src/key.cpp | 68 ++++++++++++++++++++++++++++++++++++ src/test/DoS_tests.cpp | 93 +++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 160 insertions(+), 1 deletion(-) diff --git a/src/key.cpp b/src/key.cpp index ece835d147..ac7ac4db77 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -2,10 +2,14 @@ // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. +#include + +#include #include #include #include "key.h" +#include "util.h" // Generate a private key from just the secret parameter int EC_KEY_regenerate_key(EC_KEY *eckey, BIGNUM *priv_key) @@ -347,21 +351,85 @@ bool CKey::SetCompactSignature(uint256 hash, const std::vector& v return false; } +// Valid signature cache, to avoid doing expensive ECDSA signature checking +// twice for every transaction (once when accepted into memory pool, and +// again when accepted into the block chain) + +// sigdata_type is (signature hash, signature, public key): +typedef boost::tuple, std::vector > sigdata_type; +static std::set< sigdata_type> setValidSigCache; +static CCriticalSection cs_sigcache; + +static bool +GetValidSigCache(uint256 hash, const std::vector& vchSig, const std::vector& pubKey) +{ + LOCK(cs_sigcache); + + sigdata_type k(hash, vchSig, pubKey); + std::set::iterator mi = setValidSigCache.find(k); + if (mi != setValidSigCache.end()) + return true; + return false; +} + +static void +SetValidSigCache(uint256 hash, const std::vector& vchSig, const std::vector& pubKey) +{ + // DoS prevention: limit cache size to less than 10MB + // (~200 bytes per cache entry times 50,000 entries) + // Since there are a maximum of 20,000 signature operations per block + // 50,000 is a reasonable default. + int64 nMaxCacheSize = GetArg("-maxsigcachesize", 50000); + if (nMaxCacheSize <= 0) return; + + LOCK(cs_sigcache); + + while (setValidSigCache.size() > nMaxCacheSize) + { + // Evict a random entry. Random because that helps + // foil would-be DoS attackers who might try to pre-generate + // and re-use a set of valid signatures just-slightly-greater + // than our cache size. + uint256 randomHash = GetRandHash(); + std::vector unused; + std::set::iterator it = + setValidSigCache.lower_bound(sigdata_type(randomHash, unused, unused)); + if (it == setValidSigCache.end()) + it = setValidSigCache.begin(); + setValidSigCache.erase(*it); + } + + sigdata_type k(hash, vchSig, pubKey); + setValidSigCache.insert(k); +} + + bool CKey::Verify(uint256 hash, const std::vector& vchSig) { + if (GetValidSigCache(hash, vchSig, GetPubKey())) + return true; + // -1 = error, 0 = bad sig, 1 = good if (ECDSA_verify(0, (unsigned char*)&hash, sizeof(hash), &vchSig[0], vchSig.size(), pkey) != 1) return false; + + // good sig + SetValidSigCache(hash, vchSig, GetPubKey()); return true; } bool CKey::VerifyCompact(uint256 hash, const std::vector& vchSig) { + if (GetValidSigCache(hash, vchSig, GetPubKey())) + return true; + CKey key; if (!key.SetCompactSignature(hash, vchSig)) return false; if (GetPubKey() != key.GetPubKey()) return false; + + SetValidSigCache(hash, vchSig, GetPubKey()); return true; } diff --git a/src/test/DoS_tests.cpp b/src/test/DoS_tests.cpp index cea4577a3b..2e418b3a18 100644 --- a/src/test/DoS_tests.cpp +++ b/src/test/DoS_tests.cpp @@ -1,7 +1,10 @@ // // Unit tests for denial-of-service detection/prevention code // +#include + #include // for 'map_list_of()' +#include #include #include @@ -57,7 +60,7 @@ BOOST_AUTO_TEST_CASE(DoS_banscore) BOOST_CHECK(!CNode::IsBanned(addr1)); dummyNode1.Misbehaving(1); BOOST_CHECK(CNode::IsBanned(addr1)); - mapArgs["-banscore"] = "100"; + mapArgs.erase("-banscore"); } BOOST_AUTO_TEST_CASE(DoS_bantime) @@ -228,4 +231,92 @@ BOOST_AUTO_TEST_CASE(DoS_mapOrphans) BOOST_CHECK(mapOrphanTransactionsByPrev.empty()); } +BOOST_AUTO_TEST_CASE(DoS_checkSig) +{ + // Test signature caching code (see key.cpp Verify() methods) + + CKey key; + key.MakeNewKey(true); + CBasicKeyStore keystore; + keystore.AddKey(key); + + // 100 orphan transactions: + static const int NPREV=100; + CTransaction orphans[NPREV]; + for (int i = 0; i < NPREV; i++) + { + CTransaction& tx = orphans[i]; + tx.vin.resize(1); + tx.vin[0].prevout.n = 0; + tx.vin[0].prevout.hash = GetRandHash(); + tx.vin[0].scriptSig << OP_1; + tx.vout.resize(1); + tx.vout[0].nValue = 1*CENT; + tx.vout[0].scriptPubKey.SetBitcoinAddress(key.GetPubKey()); + + CDataStream ds(SER_DISK, CLIENT_VERSION); + ds << tx; + AddOrphanTx(ds); + } + + // Create a transaction that depends on orphans: + CTransaction tx; + tx.vout.resize(1); + tx.vout[0].nValue = 1*CENT; + tx.vout[0].scriptPubKey.SetBitcoinAddress(key.GetPubKey()); + tx.vin.resize(NPREV); + for (int j = 0; j < tx.vin.size(); j++) + { + tx.vin[j].prevout.n = 0; + tx.vin[j].prevout.hash = orphans[j].GetHash(); + } + // Creating signatures primes the cache: + boost::posix_time::ptime mst1 = boost::posix_time::microsec_clock::local_time(); + for (int j = 0; j < tx.vin.size(); j++) + BOOST_CHECK(SignSignature(keystore, orphans[j], tx, j)); + boost::posix_time::ptime mst2 = boost::posix_time::microsec_clock::local_time(); + boost::posix_time::time_duration msdiff = mst2 - mst1; + long nOneValidate = msdiff.total_milliseconds(); + if (fDebug) printf("DoS_Checksig sign: %ld\n", nOneValidate); + + // ... now validating repeatedly should be quick: + // 2.8GHz machine, -g build: Sign takes ~760ms, + // uncached Verify takes ~250ms, cached Verify takes ~50ms + // (for 100 single-signature inputs) + mst1 = boost::posix_time::microsec_clock::local_time(); + for (int i = 0; i < 5; i++) + for (int j = 0; j < tx.vin.size(); j++) + BOOST_CHECK(VerifySignature(orphans[j], tx, j, true, SIGHASH_ALL)); + mst2 = boost::posix_time::microsec_clock::local_time(); + msdiff = mst2 - mst1; + long nManyValidate = msdiff.total_milliseconds(); + if (fDebug) printf("DoS_Checksig five: %ld\n", nManyValidate); + + BOOST_CHECK_MESSAGE(nManyValidate < nOneValidate, "Signature cache timing failed"); + + // Empty a signature, validation should fail: + CScript save = tx.vin[0].scriptSig; + tx.vin[0].scriptSig = CScript(); + BOOST_CHECK(!VerifySignature(orphans[0], tx, 0, true, SIGHASH_ALL)); + tx.vin[0].scriptSig = save; + + // Swap signatures, validation should fail: + std::swap(tx.vin[0].scriptSig, tx.vin[1].scriptSig); + BOOST_CHECK(!VerifySignature(orphans[0], tx, 0, true, SIGHASH_ALL)); + BOOST_CHECK(!VerifySignature(orphans[1], tx, 1, true, SIGHASH_ALL)); + std::swap(tx.vin[0].scriptSig, tx.vin[1].scriptSig); + + // Exercise -maxsigcachesize code: + mapArgs["-maxsigcachesize"] = "10"; + // Generate a new, different signature for vin[0] to trigger cache clear: + CScript oldSig = tx.vin[0].scriptSig; + BOOST_CHECK(SignSignature(keystore, orphans[0], tx, 0)); + BOOST_CHECK(tx.vin[0].scriptSig != oldSig); + for (int j = 0; j < tx.vin.size(); j++) + BOOST_CHECK(VerifySignature(orphans[j], tx, j, true, SIGHASH_ALL)); + mapArgs.erase("-maxsigcachesize"); + + LimitOrphanTxSize(0); +} + BOOST_AUTO_TEST_SUITE_END() -- cgit v1.2.3 From 28a498d5a6794bce952fe8a1938720b73946c1d8 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 17 May 2012 12:13:14 -0400 Subject: Refactor: GetRandHash() method for util --- src/main.cpp | 8 +++----- src/test/DoS_tests.cpp | 12 ++---------- src/util.cpp | 6 ++++++ src/util.h | 1 + 4 files changed, 12 insertions(+), 15 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 475677cddd..c27115ded3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -216,9 +216,7 @@ unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans) while (mapOrphanTransactions.size() > nMaxOrphans) { // Evict a random orphan: - std::vector randbytes(32); - RAND_bytes(&randbytes[0], 32); - uint256 randomhash(randbytes); + uint256 randomhash = GetRandHash(); map::iterator it = mapOrphanTransactions.lower_bound(randomhash); if (it == mapOrphanTransactions.end()) it = mapOrphanTransactions.begin(); @@ -2380,7 +2378,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) // at a time so the setAddrKnowns of the chosen nodes prevent repeats static uint256 hashSalt; if (hashSalt == 0) - RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt)); + hashSalt = GetRandHash(); int64 hashAddr = addr.GetHash(); uint256 hashRand = hashSalt ^ (hashAddr<<32) ^ ((GetTime()+hashAddr)/(24*60*60)); hashRand = Hash(BEGIN(hashRand), END(hashRand)); @@ -2980,7 +2978,7 @@ bool SendMessages(CNode* pto, bool fSendTrickle) // 1/4 of tx invs blast to all immediately static uint256 hashSalt; if (hashSalt == 0) - RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt)); + hashSalt = GetRandHash(); uint256 hashRand = inv.hash ^ hashSalt; hashRand = Hash(BEGIN(hashRand), END(hashRand)); bool fTrickleWait = ((hashRand & 3) != 0); diff --git a/src/test/DoS_tests.cpp b/src/test/DoS_tests.cpp index 2e418b3a18..4ee2e94834 100644 --- a/src/test/DoS_tests.cpp +++ b/src/test/DoS_tests.cpp @@ -132,18 +132,10 @@ BOOST_AUTO_TEST_CASE(DoS_checknbits) } -static uint256 RandomHash() -{ - std::vector randbytes(32); - RAND_bytes(&randbytes[0], 32); - uint256 randomhash(randbytes); - return randomhash; -} - CTransaction RandomOrphan() { std::map::iterator it; - it = mapOrphanTransactions.lower_bound(RandomHash()); + it = mapOrphanTransactions.lower_bound(GetRandHash()); if (it == mapOrphanTransactions.end()) it = mapOrphanTransactions.begin(); const CDataStream* pvMsg = it->second; @@ -165,7 +157,7 @@ BOOST_AUTO_TEST_CASE(DoS_mapOrphans) CTransaction tx; tx.vin.resize(1); tx.vin[0].prevout.n = 0; - tx.vin[0].prevout.hash = RandomHash(); + tx.vin[0].prevout.hash = GetRandHash(); tx.vin[0].scriptSig << OP_1; tx.vout.resize(1); tx.vout[0].nValue = 1*CENT; diff --git a/src/util.cpp b/src/util.cpp index 3569f22ecd..d8804c7291 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -174,6 +174,12 @@ int GetRandInt(int nMax) return GetRand(nMax); } +uint256 GetRandHash() +{ + uint256 hash; + RAND_bytes((unsigned char*)&hash, sizeof(hash)); + return hash; +} diff --git a/src/util.h b/src/util.h index 15ccf82f9a..714084e410 100644 --- a/src/util.h +++ b/src/util.h @@ -168,6 +168,7 @@ bool SetStartOnSystemStartup(bool fAutoStart); void ShrinkDebugFile(); int GetRandInt(int nMax); uint64 GetRand(uint64 nMax); +uint256 GetRandHash(); int64 GetTime(); void SetMockTime(int64 nMockTimeIn); int64 GetAdjustedTime(); -- cgit v1.2.3 From 7c1773cf37ce52958c3287363c0690c591e3c364 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Sat, 19 May 2012 01:25:06 -0400 Subject: Default to DB_TXN_WRITE_NOSYNC for all transactional operations * This is safer than DB_TXN_NOSYNC, and does not appear to impact performance. * Applying this to the dbenv is necessary to avoid many fdatasync(2) calls on db 5.x * We carefully and thoroughly flush databases upon shutdown and other important events already. --- src/db.cpp | 1 + src/db.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/db.cpp b/src/db.cpp index 12647e568a..ef45976c0c 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -96,6 +96,7 @@ CDB::CDB(const char *pszFile, const char* pszMode) : pdb(NULL) dbenv.set_lk_max_locks(10000); dbenv.set_lk_max_objects(10000); dbenv.set_errfile(fopen(pathErrorFile.string().c_str(), "a")); /// debug + dbenv.set_flags(DB_TXN_WRITE_NOSYNC, 1); dbenv.set_flags(DB_AUTO_COMMIT, 1); dbenv.log_set_config(DB_LOG_AUTO_REMOVE, 1); ret = dbenv.open(pathDataDir.string().c_str(), diff --git a/src/db.h b/src/db.h index 3ce8f1758f..399b62fdec 100644 --- a/src/db.h +++ b/src/db.h @@ -216,7 +216,7 @@ public: if (!pdb) return false; DbTxn* ptxn = NULL; - int ret = dbenv.txn_begin(GetTxn(), &ptxn, DB_TXN_NOSYNC); + int ret = dbenv.txn_begin(GetTxn(), &ptxn, DB_TXN_WRITE_NOSYNC); if (!ptxn || ret != 0) return false; vTxn.push_back(ptxn); -- cgit v1.2.3 From 414e0407df38ccde3f20aac874005aec714299d0 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Mon, 21 May 2012 22:25:54 -0400 Subject: Define BOOST_SPIRIT_THREADSAFE in all makefiles rather than at each include site. Fixes #1371 --- bitcoin-qt.pro | 2 +- src/makefile.linux-mingw | 2 +- src/makefile.mingw | 2 +- src/makefile.osx | 2 +- src/makefile.unix | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 7114ef9336..07f5a6114b 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -2,7 +2,7 @@ TEMPLATE = app TARGET = VERSION = 0.6.3.0 INCLUDEPATH += src src/json src/qt -DEFINES += QT_GUI BOOST_THREAD_USE_LIB +DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE CONFIG += no_include_pwd # for boost 1.37, add -mt to the boost libraries diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 81934187e2..abc014c2c4 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -27,7 +27,7 @@ LIBS= \ -l ssl \ -l crypto -DEFS=-D_MT -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB +DEFS=-D_MT -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE DEBUGFLAGS=-g CFLAGS=-O2 -w -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS) diff --git a/src/makefile.mingw b/src/makefile.mingw index 917eb12fcf..6bfef0b9e7 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -23,7 +23,7 @@ LIBS= \ -l ssl \ -l crypto -DEFS=-DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB +DEFS=-DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE DEBUGFLAGS=-g CFLAGS=-mthreads -O2 -w -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS) diff --git a/src/makefile.osx b/src/makefile.osx index be95aab446..312b6c23ec 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -53,7 +53,7 @@ LIBS += \ TESTDEFS += -DBOOST_TEST_DYN_LINK endif -DEFS=-DMAC_OSX -DMSG_NOSIGNAL=0 +DEFS=-DMAC_OSX -DMSG_NOSIGNAL=0 -DBOOST_SPIRIT_THREADSAFE ifdef RELEASE # Compile for maximum compatibility and smallest size. diff --git a/src/makefile.unix b/src/makefile.unix index 90be398976..d00c12b27d 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -4,7 +4,7 @@ USE_UPNP:=0 -DEFS= +DEFS=-DBOOST_SPIRIT_THREADSAFE DEFS += $(addprefix -I,$(CURDIR) $(CURDIR)/obj $(BOOST_INCLUDE_PATH) $(BDB_INCLUDE_PATH) $(OPENSSL_INCLUDE_PATH)) LIBS = $(addprefix -L,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH)) -- cgit v1.2.3 From fcbeaff8d049e414284631989b950e56b909525c Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 22 May 2012 13:56:14 -0400 Subject: Move signature cache from CKey::Verify to CheckSig in script.cpp More than doubles the speed of verifying already-cached signatures that use compressed pubkeys: Before: ~200 microseconds After: ~80 microseconds (no caching at all: ~3,300 microseconds per signature) Also encapsulates the signature cache code in a class and fixes a signed/unsigned comparison warning. --- src/key.cpp | 63 ----------------------------------------------- src/script.cpp | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 2 files changed, 74 insertions(+), 67 deletions(-) diff --git a/src/key.cpp b/src/key.cpp index ac7ac4db77..b6c3f28688 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -4,7 +4,6 @@ #include -#include #include #include @@ -351,85 +350,23 @@ bool CKey::SetCompactSignature(uint256 hash, const std::vector& v return false; } -// Valid signature cache, to avoid doing expensive ECDSA signature checking -// twice for every transaction (once when accepted into memory pool, and -// again when accepted into the block chain) - -// sigdata_type is (signature hash, signature, public key): -typedef boost::tuple, std::vector > sigdata_type; -static std::set< sigdata_type> setValidSigCache; -static CCriticalSection cs_sigcache; - -static bool -GetValidSigCache(uint256 hash, const std::vector& vchSig, const std::vector& pubKey) -{ - LOCK(cs_sigcache); - - sigdata_type k(hash, vchSig, pubKey); - std::set::iterator mi = setValidSigCache.find(k); - if (mi != setValidSigCache.end()) - return true; - return false; -} - -static void -SetValidSigCache(uint256 hash, const std::vector& vchSig, const std::vector& pubKey) -{ - // DoS prevention: limit cache size to less than 10MB - // (~200 bytes per cache entry times 50,000 entries) - // Since there are a maximum of 20,000 signature operations per block - // 50,000 is a reasonable default. - int64 nMaxCacheSize = GetArg("-maxsigcachesize", 50000); - if (nMaxCacheSize <= 0) return; - - LOCK(cs_sigcache); - - while (setValidSigCache.size() > nMaxCacheSize) - { - // Evict a random entry. Random because that helps - // foil would-be DoS attackers who might try to pre-generate - // and re-use a set of valid signatures just-slightly-greater - // than our cache size. - uint256 randomHash = GetRandHash(); - std::vector unused; - std::set::iterator it = - setValidSigCache.lower_bound(sigdata_type(randomHash, unused, unused)); - if (it == setValidSigCache.end()) - it = setValidSigCache.begin(); - setValidSigCache.erase(*it); - } - - sigdata_type k(hash, vchSig, pubKey); - setValidSigCache.insert(k); -} - - bool CKey::Verify(uint256 hash, const std::vector& vchSig) { - if (GetValidSigCache(hash, vchSig, GetPubKey())) - return true; - // -1 = error, 0 = bad sig, 1 = good if (ECDSA_verify(0, (unsigned char*)&hash, sizeof(hash), &vchSig[0], vchSig.size(), pkey) != 1) return false; - // good sig - SetValidSigCache(hash, vchSig, GetPubKey()); return true; } bool CKey::VerifyCompact(uint256 hash, const std::vector& vchSig) { - if (GetValidSigCache(hash, vchSig, GetPubKey())) - return true; - CKey key; if (!key.SetCompactSignature(hash, vchSig)) return false; if (GetPubKey() != key.GetPubKey()) return false; - SetValidSigCache(hash, vchSig, GetPubKey()); return true; } diff --git a/src/script.cpp b/src/script.cpp index 65e9b7c9a2..56c2e500d0 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -3,6 +3,7 @@ // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #include +#include using namespace std; using namespace boost; @@ -12,6 +13,7 @@ using namespace boost; #include "bignum.h" #include "key.h" #include "main.h" +#include "util.h" bool CheckSig(vector vchSig, vector vchPubKey, CScript scriptCode, const CTransaction& txTo, unsigned int nIn, int nHashType); @@ -1099,12 +1101,67 @@ uint256 SignatureHash(CScript scriptCode, const CTransaction& txTo, unsigned int } +// Valid signature cache, to avoid doing expensive ECDSA signature checking +// twice for every transaction (once when accepted into memory pool, and +// again when accepted into the block chain) + +class CSignatureCache +{ +private: + // sigdata_type is (signature hash, signature, public key): + typedef boost::tuple, std::vector > sigdata_type; + std::set< sigdata_type> setValid; + CCriticalSection cs_sigcache; + +public: + bool + Get(uint256 hash, const std::vector& vchSig, const std::vector& pubKey) + { + LOCK(cs_sigcache); + + sigdata_type k(hash, vchSig, pubKey); + std::set::iterator mi = setValid.find(k); + if (mi != setValid.end()) + return true; + return false; + } + + void + Set(uint256 hash, const std::vector& vchSig, const std::vector& pubKey) + { + // DoS prevention: limit cache size to less than 10MB + // (~200 bytes per cache entry times 50,000 entries) + // Since there are a maximum of 20,000 signature operations per block + // 50,000 is a reasonable default. + int64 nMaxCacheSize = GetArg("-maxsigcachesize", 50000); + if (nMaxCacheSize <= 0) return; + + LOCK(cs_sigcache); + + while (static_cast(setValid.size()) > nMaxCacheSize) + { + // Evict a random entry. Random because that helps + // foil would-be DoS attackers who might try to pre-generate + // and re-use a set of valid signatures just-slightly-greater + // than our cache size. + uint256 randomHash = GetRandHash(); + std::vector unused; + std::set::iterator it = + setValid.lower_bound(sigdata_type(randomHash, unused, unused)); + if (it == setValid.end()) + it = setValid.begin(); + setValid.erase(*it); + } + + sigdata_type k(hash, vchSig, pubKey); + setValid.insert(k); + } +}; + bool CheckSig(vector vchSig, vector vchPubKey, CScript scriptCode, const CTransaction& txTo, unsigned int nIn, int nHashType) { - CKey key; - if (!key.SetPubKey(vchPubKey)) - return false; + static CSignatureCache signatureCache; // Hash type is one byte tacked on to the end of the signature if (vchSig.empty()) @@ -1115,7 +1172,20 @@ bool CheckSig(vector vchSig, vector vchPubKey, CSc return false; vchSig.pop_back(); - return key.Verify(SignatureHash(scriptCode, txTo, nIn, nHashType), vchSig); + uint256 sighash = SignatureHash(scriptCode, txTo, nIn, nHashType); + + if (signatureCache.Get(sighash, vchSig, vchPubKey)) + return true; + + CKey key; + if (!key.SetPubKey(vchPubKey)) + return false; + + if (!key.Verify(sighash, vchSig)) + return false; + + signatureCache.Set(sighash, vchSig, vchPubKey); + return true; } -- cgit v1.2.3 From 4bd6299efdeb8438d0a58aa7c1083a6faeeaa71b Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Tue, 22 May 2012 15:12:52 -0400 Subject: Prevent crashes due to missing or corrupted database records Any problems seen during deserialization will throw an uncaught exception, crashing the entire bitcoin process. Properly return an error instead, so that we may at least log the error and gracefully shutdown other portions of the app. --- src/db.cpp | 16 ++++++++++++++-- src/db.h | 9 +++++++-- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/src/db.cpp b/src/db.cpp index ef45976c0c..f9151f7f92 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -411,9 +411,15 @@ bool CTxDB::ReadOwnerTxes(uint160 hash160, int nMinHeight, vector& string strType; uint160 hashItem; CDiskTxPos pos; - ssKey >> strType >> hashItem >> pos; int nItemHeight; - ssValue >> nItemHeight; + + try { + ssKey >> strType >> hashItem >> pos; + ssValue >> nItemHeight; + } + catch (std::exception &e) { + return error("%s() : deserialize error", __PRETTY_FUNCTION__); + } // Read transaction if (strType != "owner" || hashItem != hash160) @@ -533,6 +539,8 @@ bool CTxDB::LoadBlockIndex() return false; // Unserialize + + try { string strType; ssKey >> strType; if (strType == "blockindex" && !fRequestShutdown) @@ -564,6 +572,10 @@ bool CTxDB::LoadBlockIndex() { break; // if shutdown requested or finished loading block index } + } // try + catch (std::exception &e) { + return error("%s() : deserialize error", __PRETTY_FUNCTION__); + } } pcursor->close(); diff --git a/src/db.h b/src/db.h index 399b62fdec..dc795d2644 100644 --- a/src/db.h +++ b/src/db.h @@ -72,8 +72,13 @@ protected: return false; // Unserialize value - CDataStream ssValue((char*)datValue.get_data(), (char*)datValue.get_data() + datValue.get_size(), SER_DISK, CLIENT_VERSION); - ssValue >> value; + try { + CDataStream ssValue((char*)datValue.get_data(), (char*)datValue.get_data() + datValue.get_size(), SER_DISK, CLIENT_VERSION); + ssValue >> value; + } + catch (std::exception &e) { + return false; + } // Clear and free memory memset(datValue.get_data(), 0, datValue.get_size()); -- cgit v1.2.3 From 57ca021e7ee2fb80b4c06605b2126d54135ba7ff Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Tue, 22 May 2012 15:23:17 -0400 Subject: Prevent crashes due to missing or corrupted blk????.dat records In LoadExternalBlockFile(), errors are already caught... silently. Add a warning message, even though we do not abort the program due to load error. --- src/main.h | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/main.h b/src/main.h index 262e77e806..96187d3c5f 100644 --- a/src/main.h +++ b/src/main.h @@ -594,7 +594,13 @@ public: // Read transaction if (fseek(filein, pos.nTxPos, SEEK_SET) != 0) return error("CTransaction::ReadFromDisk() : fseek failed"); - filein >> *this; + + try { + filein >> *this; + } + catch (std::exception &e) { + return error("%s() : deserialize or I/O error", __PRETTY_FUNCTION__); + } // Return file pointer if (pfileRet) @@ -976,7 +982,12 @@ public: filein.nType |= SER_BLOCKHEADERONLY; // Read block - filein >> *this; + try { + filein >> *this; + } + catch (std::exception &e) { + return error("%s() : deserialize or I/O error", __PRETTY_FUNCTION__); + } // Check the header if (!CheckProofOfWork(GetHash(), nBits)) -- cgit v1.2.3 From c58ff3781df53fb1186cad4e3f4bb1eaaf7aea88 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Thu, 14 Jun 2012 18:31:08 +0200 Subject: Use a 64-bit nonce in ping Former code sent '0' as nonce, which was serialized as 32-bit. --- src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index c27115ded3..27feeca15f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2898,8 +2898,9 @@ bool SendMessages(CNode* pto, bool fSendTrickle) // Keep-alive ping. We send a nonce of zero because we don't use it anywhere // right now. if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty()) { + uint64 nonce = 0; if (pto->nVersion > BIP0031_VERSION) - pto->PushMessage("ping", 0); + pto->PushMessage("ping", nonce); else pto->PushMessage("ping"); } -- cgit v1.2.3 From bd05d057ebd0a9f54ba5f8488c9c129eddf372ba Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 19 Jun 2012 15:48:29 -0400 Subject: Checkpoint at block 185333 (and remove a couple of intermediate checkpoints) --- src/checkpoints.cpp | 5 +---- src/test/Checkpoints_tests.cpp | 14 +++++++------- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index cf56fa0695..21d3ce774e 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -25,14 +25,11 @@ namespace Checkpoints boost::assign::map_list_of ( 11111, uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d")) ( 33333, uint256("0x000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6")) - ( 68555, uint256("0x00000000001e1b4903550a0b96e9a9405c8a95f387162e4944e8d9fbe501cd6a")) - ( 70567, uint256("0x00000000006a49b14bcf27462068f1264c961f11fa2e0eddd2be0791e1d4124a")) ( 74000, uint256("0x0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20")) (105000, uint256("0x00000000000291ce28027faea320c8d2b054b2e0fe44a773f3eefb151d6bdc97")) - (118000, uint256("0x000000000000774a7f8a7a12dc906ddb9e17e75d684f15e00f8767f9e8f36553")) (134444, uint256("0x00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe")) - (140700, uint256("0x000000000000033b512028abb90e1626d8b346fd0ed598ac0a3c371138dce2bd")) (168000, uint256("0x000000000000099e61ea72015e79632f216fe6cb33d7899acb35b75c8303b763")) + (185333, uint256("0x00000000000002334c71b8706940c20348af897a9cfc0f1a6dab0d14d4ceb815")) ; bool CheckBlock(int nHeight, const uint256& hash) diff --git a/src/test/Checkpoints_tests.cpp b/src/test/Checkpoints_tests.cpp index 0d8a366d7a..b14e9f7057 100644 --- a/src/test/Checkpoints_tests.cpp +++ b/src/test/Checkpoints_tests.cpp @@ -15,20 +15,20 @@ BOOST_AUTO_TEST_SUITE(Checkpoints_tests) BOOST_AUTO_TEST_CASE(sanity) { uint256 p11111 = uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d"); - uint256 p140700 = uint256("0x000000000000033b512028abb90e1626d8b346fd0ed598ac0a3c371138dce2bd"); + uint256 p134444 = uint256("0x00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe"); BOOST_CHECK(Checkpoints::CheckBlock(11111, p11111)); - BOOST_CHECK(Checkpoints::CheckBlock(140700, p140700)); + BOOST_CHECK(Checkpoints::CheckBlock(134444, p134444)); // Wrong hashes at checkpoints should fail: - BOOST_CHECK(!Checkpoints::CheckBlock(11111, p140700)); - BOOST_CHECK(!Checkpoints::CheckBlock(140700, p11111)); + BOOST_CHECK(!Checkpoints::CheckBlock(11111, p134444)); + BOOST_CHECK(!Checkpoints::CheckBlock(134444, p11111)); // ... but any hash not at a checkpoint should succeed: - BOOST_CHECK(Checkpoints::CheckBlock(11111+1, p140700)); - BOOST_CHECK(Checkpoints::CheckBlock(140700+1, p11111)); + BOOST_CHECK(Checkpoints::CheckBlock(11111+1, p134444)); + BOOST_CHECK(Checkpoints::CheckBlock(134444+1, p11111)); - BOOST_CHECK(Checkpoints::GetTotalBlocksEstimate() >= 140700); + BOOST_CHECK(Checkpoints::GetTotalBlocksEstimate() >= 134444); } BOOST_AUTO_TEST_SUITE_END() -- cgit v1.2.3 From b90b8159db929232b7142baa903ddc0226dd7e10 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 19 Jun 2012 15:50:12 -0400 Subject: print large orphan warning BEFORE deleting pvMsg --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 27feeca15f..7d2fbd5c41 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -179,8 +179,8 @@ bool AddOrphanTx(const CDataStream& vMsg) // at most 500 megabytes of orphans: if (pvMsg->size() > 5000) { - delete pvMsg; printf("ignoring large orphan tx (size: %u, hash: %s)\n", pvMsg->size(), hash.ToString().substr(0,10).c_str()); + delete pvMsg; return false; } -- cgit v1.2.3 From 6e0c5e3778b83f128f6f14c311d5728392053581 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 19 Jun 2012 16:44:55 -0400 Subject: Revert "Update gitian descriptors to point at stable git repo" This reverts commit 1179f6373dfffdcb091576215cabe73c932df925. --- contrib/gitian-descriptors/gitian-win32.yml | 2 +- contrib/gitian-descriptors/gitian.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/gitian-descriptors/gitian-win32.yml b/contrib/gitian-descriptors/gitian-win32.yml index a48e54da85..9752626d6a 100644 --- a/contrib/gitian-descriptors/gitian-win32.yml +++ b/contrib/gitian-descriptors/gitian-win32.yml @@ -12,7 +12,7 @@ packages: - "faketime" reference_datetime: "2011-01-30 00:00:00" remotes: -- "url": "https://git.gitorious.org/+bitcoin-stable-developers/bitcoin/bitcoind-stable.git" +- "url": "https://github.com/bitcoin/bitcoin.git" "dir": "bitcoin" files: - "qt-win32-4.7.4-gitian.zip" diff --git a/contrib/gitian-descriptors/gitian.yml b/contrib/gitian-descriptors/gitian.yml index 36a2000551..8243c5c301 100644 --- a/contrib/gitian-descriptors/gitian.yml +++ b/contrib/gitian-descriptors/gitian.yml @@ -20,7 +20,7 @@ packages: - "libpng12-dev" reference_datetime: "2011-01-30 00:00:00" remotes: -- "url": "https://git.gitorious.org/+bitcoin-stable-developers/bitcoin/bitcoind-stable.git" +- "url": "https://github.com/bitcoin/bitcoin.git" "dir": "bitcoin" files: - "miniupnpc-1.6.tar.gz" -- cgit v1.2.3 From c3def40293a89307d296ff66653b5927165c3c18 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 15 May 2012 15:53:30 -0400 Subject: Optimize orphan transaction handling Changes suggested by Sergio Demian Lerner to help prevent potential DoS attacks. --- src/main.cpp | 46 ++++++++++++++++++++++++++++++---------------- 1 file changed, 30 insertions(+), 16 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 0f45b2e16b..b7067b2092 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -45,7 +45,7 @@ map mapOrphanBlocks; multimap mapOrphanBlocksByPrev; map mapOrphanTransactions; -multimap mapOrphanTransactionsByPrev; +map > mapOrphanTransactionsByPrev; double dHashesPerSec; @@ -160,17 +160,37 @@ void static ResendWalletTransactions() // mapOrphanTransactions // -void AddOrphanTx(const CDataStream& vMsg) +bool AddOrphanTx(const CDataStream& vMsg) { CTransaction tx; CDataStream(vMsg) >> tx; uint256 hash = tx.GetHash(); if (mapOrphanTransactions.count(hash)) - return; + return false; + + CDataStream* pvMsg = new CDataStream(vMsg); + + // Ignore big transactions, to avoid a + // send-big-orphans memory exhaustion attack. If a peer has a legitimate + // large transaction with a missing parent then we assume + // it will rebroadcast it later, after the parent transaction(s) + // have been mined or received. + // 10,000 orphans, each of which is at most 5,000 bytes big is + // at most 500 megabytes of orphans: + if (pvMsg->size() > 5000) + { + delete pvMsg; + printf("ignoring large orphan tx (size: %u, hash: %s)\n", pvMsg->size(), hash.ToString().substr(0,10).c_str()); + return false; + } - CDataStream* pvMsg = mapOrphanTransactions[hash] = new CDataStream(vMsg); + mapOrphanTransactions[hash] = pvMsg; BOOST_FOREACH(const CTxIn& txin, tx.vin) - mapOrphanTransactionsByPrev.insert(make_pair(txin.prevout.hash, pvMsg)); + mapOrphanTransactionsByPrev[txin.prevout.hash].insert(make_pair(hash, pvMsg)); + + printf("stored orphan tx %s (mapsz %u)\n", hash.ToString().substr(0,10).c_str(), + mapOrphanTransactions.size()); + return true; } void static EraseOrphanTx(uint256 hash) @@ -182,14 +202,9 @@ void static EraseOrphanTx(uint256 hash) CDataStream(*pvMsg) >> tx; BOOST_FOREACH(const CTxIn& txin, tx.vin) { - for (multimap::iterator mi = mapOrphanTransactionsByPrev.lower_bound(txin.prevout.hash); - mi != mapOrphanTransactionsByPrev.upper_bound(txin.prevout.hash);) - { - if ((*mi).second == pvMsg) - mapOrphanTransactionsByPrev.erase(mi++); - else - mi++; - } + mapOrphanTransactionsByPrev[txin.prevout.hash].erase(hash); + if (mapOrphanTransactionsByPrev[txin.prevout.hash].empty()) + mapOrphanTransactionsByPrev.erase(txin.prevout.hash); } delete pvMsg; mapOrphanTransactions.erase(hash); @@ -2371,8 +2386,8 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) for (unsigned int i = 0; i < vWorkQueue.size(); i++) { uint256 hashPrev = vWorkQueue[i]; - for (multimap::iterator mi = mapOrphanTransactionsByPrev.lower_bound(hashPrev); - mi != mapOrphanTransactionsByPrev.upper_bound(hashPrev); + for (map::iterator mi = mapOrphanTransactionsByPrev[hashPrev].begin(); + mi != mapOrphanTransactionsByPrev[hashPrev].end(); ++mi) { const CDataStream& vMsg = *((*mi).second); @@ -2396,7 +2411,6 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) } else if (fMissingInputs) { - printf("storing orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str()); AddOrphanTx(vMsg); // DoS prevention: do not allow mapOrphanTransactions to grow unbounded -- cgit v1.2.3 From ce1a071f6d6d1548974796c4327399659415b489 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 16 May 2012 11:26:56 -0400 Subject: Further DoS prevention: Verify signatures last Loop over all inputs doing inexpensive validity checks first, and then loop over them a second time doing expensive signature checks. This helps prevent possible CPU exhaustion attacks where an attacker tries to make a victim waste time checking signatures for invalid transactions. --- src/main.cpp | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index b7067b2092..00f0633431 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1033,15 +1033,26 @@ bool CTransaction::ConnectInputs(MapPrevTx inputs, if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile) return error("ConnectInputs() : tried to spend coinbase at depth %d", pindexBlock->nHeight - pindex->nHeight); - // Check for conflicts (double-spend) - if (!txindex.vSpent[prevout.n].IsNull()) - return fMiner ? false : error("ConnectInputs() : %s prev tx already used at %s", GetHash().ToString().substr(0,10).c_str(), txindex.vSpent[prevout.n].ToString().c_str()); - // Check for negative or overflow input values nValueIn += txPrev.vout[prevout.n].nValue; if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn)) return error("ConnectInputs() : txin values out of range"); + } + // The first loop above does all the inexpensive checks. + // Only if ALL inputs pass do we perform expensive ECDSA signature checks. + // Helps prevent CPU exhaustion attacks. + for (unsigned int i = 0; i < vin.size(); i++) + { + COutPoint prevout = vin[i].prevout; + assert(inputs.count(prevout.hash) > 0); + CTxIndex& txindex = inputs[prevout.hash].first; + CTransaction& txPrev = inputs[prevout.hash].second; + + // Check for conflicts (double-spend) + if (!txindex.vSpent[prevout.n].IsNull()) + return fMiner ? false : error("ConnectInputs() : %s prev tx already used at %s", GetHash().ToString().substr(0,10).c_str(), txindex.vSpent[prevout.n].ToString().c_str()); + // Verify signature if (!VerifySignature(txPrev, *this, i, fStrictPayToScriptHash, 0)) { -- cgit v1.2.3 From 01473c3f40cea8209186e737ae20289eebcb8898 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 17 May 2012 10:12:04 -0400 Subject: Remove invalid dependent orphans from memory Remove orphan transactions from memory once all of their parent transactions are received and they're still not valid. Thanks to Sergio Demian Lerner for suggesting this fix. --- src/main.cpp | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 00f0633431..432ec871f5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2378,6 +2378,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) else if (strCommand == "tx") { vector vWorkQueue; + vector vEraseQueue; CDataStream vMsg(vRecv); CTransaction tx; vRecv >> tx; @@ -2392,6 +2393,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) RelayMessage(inv, vMsg); mapAlreadyAskedFor.erase(inv); vWorkQueue.push_back(inv.hash); + vEraseQueue.push_back(inv.hash); // Recursively process any orphan transactions that depended on this one for (unsigned int i = 0; i < vWorkQueue.size(); i++) @@ -2405,19 +2407,27 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) CTransaction tx; CDataStream(vMsg) >> tx; CInv inv(MSG_TX, tx.GetHash()); + bool fMissingInputs2 = false; - if (tx.AcceptToMemoryPool(true)) + if (tx.AcceptToMemoryPool(true, &fMissingInputs2)) { printf(" accepted orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str()); SyncWithWallets(tx, NULL, true); RelayMessage(inv, vMsg); mapAlreadyAskedFor.erase(inv); vWorkQueue.push_back(inv.hash); + vEraseQueue.push_back(inv.hash); + } + else if (!fMissingInputs2) + { + // invalid orphan + vEraseQueue.push_back(inv.hash); + printf(" removed invalid orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str()); } } } - BOOST_FOREACH(uint256 hash, vWorkQueue) + BOOST_FOREACH(uint256 hash, vEraseQueue) EraseOrphanTx(hash); } else if (fMissingInputs) -- cgit v1.2.3 From b199f7547f357711873327347c0f368248e99032 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Wed, 20 Jun 2012 17:59:36 +0000 Subject: Bump VERSION so we can differentiate between 0.4.7rc2 and 0.4.7rc3 --- src/serialize.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/serialize.h b/src/serialize.h index 8cdfb30b90..c7e64dac76 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -59,7 +59,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 40701; +static const int VERSION = 40703; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 3023e782bdaee3448e1543b482cf5cd022c9699f Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 19 Jun 2012 15:50:12 -0400 Subject: print large orphan warning BEFORE deleting pvMsg --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 432ec871f5..7ce7c92e5d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -179,8 +179,8 @@ bool AddOrphanTx(const CDataStream& vMsg) // at most 500 megabytes of orphans: if (pvMsg->size() > 5000) { - delete pvMsg; printf("ignoring large orphan tx (size: %u, hash: %s)\n", pvMsg->size(), hash.ToString().substr(0,10).c_str()); + delete pvMsg; return false; } -- cgit v1.2.3 From 34709a786c3cefb11d5677bcad4bb764a0fba31d Mon Sep 17 00:00:00 2001 From: fanquake Date: Mon, 18 Jun 2012 21:58:20 +0800 Subject: build instructions: Qt is not uppercase (Upstream: 8b7b3be76529612ebe219e315a273d05066d2118) --- doc/build-msw.txt | 2 +- doc/build-osx.txt | 2 +- doc/build-unix.txt | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/build-msw.txt b/doc/build-msw.txt index 2e54b029fc..5d871e15de 100644 --- a/doc/build-msw.txt +++ b/doc/build-msw.txt @@ -7,7 +7,7 @@ cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. -See readme-qt.rst for instructions on building Bitcoin QT, the +See readme-qt.rst for instructions on building Bitcoin-Qt, the graphical user interface. WINDOWS BUILD NOTES diff --git a/doc/build-osx.txt b/doc/build-osx.txt index 800244153a..f06df50ebd 100644 --- a/doc/build-osx.txt +++ b/doc/build-osx.txt @@ -12,7 +12,7 @@ Laszlo Hanyecz Douglas Huff -See readme-qt.rst for instructions on building Bitcoin QT, the +See readme-qt.rst for instructions on building Bitcoin-Qt, the graphical user interface. Tested on 10.5 and 10.6 intel. PPC is not supported because it's big-endian. diff --git a/doc/build-unix.txt b/doc/build-unix.txt index 0d335dfa23..565b191cef 100644 --- a/doc/build-unix.txt +++ b/doc/build-unix.txt @@ -17,8 +17,8 @@ To Build cd src/ make -f makefile.unix # Headless bitcoin -See readme-qt.rst for instructions on building Bitcoin QT, -the graphical bitcoin. +See readme-qt.rst for instructions on building Bitcoin-Qt, +the graphical user interface. Dependencies ------------ -- cgit v1.2.3 From d2ee96d88f3db45b8b4f7a1ed97f7b62054f70b2 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Mon, 18 Jun 2012 22:48:35 +0200 Subject: GUI: ensure a changed bitcoin unit immediately updates the tx list amounts --- src/qt/transactiontablemodel.cpp | 7 +++++++ src/qt/transactiontablemodel.h | 2 ++ 2 files changed, 9 insertions(+) diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index 28620bf3aa..a8ffe62ed9 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -218,6 +218,8 @@ TransactionTableModel::TransactionTableModel(CWallet* wallet, WalletModel *paren QTimer *timer = new QTimer(this); connect(timer, SIGNAL(timeout()), this, SLOT(update())); timer->start(MODEL_UPDATE_DELAY); + + connect(walletModel->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit())); } TransactionTableModel::~TransactionTableModel() @@ -619,3 +621,8 @@ QModelIndex TransactionTableModel::index(int row, int column, const QModelIndex } } +void TransactionTableModel::updateDisplayUnit() +{ + // emit dataChanged to update Amount column with the current unit + emit dataChanged(index(0, Amount), index(priv->size()-1, Amount)); +} diff --git a/src/qt/transactiontablemodel.h b/src/qt/transactiontablemodel.h index db88a0604f..3efeaa61bc 100644 --- a/src/qt/transactiontablemodel.h +++ b/src/qt/transactiontablemodel.h @@ -74,6 +74,8 @@ private: private slots: void update(); +public slots: + void updateDisplayUnit(); friend class TransactionTablePriv; }; -- cgit v1.2.3 From 6d6995bc83c3d97e5d99e45b40e76c34b772ebcc Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Wed, 20 Jun 2012 18:13:16 +0200 Subject: Update my GPG key --- contrib/gitian-downloader/sipa-key.pgp | Bin 108922 -> 109468 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/contrib/gitian-downloader/sipa-key.pgp b/contrib/gitian-downloader/sipa-key.pgp index a52a5deb1b..ffa09bb4ad 100644 Binary files a/contrib/gitian-downloader/sipa-key.pgp and b/contrib/gitian-downloader/sipa-key.pgp differ -- cgit v1.2.3 From 90712378a73337f4ec5451da72d255f9f13664c0 Mon Sep 17 00:00:00 2001 From: xanatos Date: Thu, 21 Jun 2012 21:37:49 +0300 Subject: = instead of == in multisig_tests.cpp --- src/test/multisig_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/multisig_tests.cpp b/src/test/multisig_tests.cpp index 8ae9290fcc..521b787d0d 100644 --- a/src/test/multisig_tests.cpp +++ b/src/test/multisig_tests.cpp @@ -235,7 +235,7 @@ BOOST_AUTO_TEST_CASE(multisig_Solver1) BOOST_CHECK(ExtractAddresses(s, whichType, addrs, nRequired)); BOOST_CHECK(addrs[0] == keyaddr[0]); BOOST_CHECK(addrs[1] == keyaddr[1]); - BOOST_CHECK(nRequired = 1); + BOOST_CHECK(nRequired == 1); BOOST_CHECK(IsMine(keystore, s)); BOOST_CHECK(!IsMine(emptykeystore, s)); BOOST_CHECK(!IsMine(partialkeystore, s)); -- cgit v1.2.3 From 3edb53eeed578fcccb13c4205c950f6938585240 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Wed, 20 Jun 2012 16:15:46 +0000 Subject: gitian-downloader: Update luke-jr's key --- contrib/gitian-downloader/luke-jr-key.pgp | Bin 5467 -> 7322 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/contrib/gitian-downloader/luke-jr-key.pgp b/contrib/gitian-downloader/luke-jr-key.pgp index c40917d78c..275b041d20 100644 Binary files a/contrib/gitian-downloader/luke-jr-key.pgp and b/contrib/gitian-downloader/luke-jr-key.pgp differ -- cgit v1.2.3 From 04d4c0e444d9b02d5d9ba7893052f8c75cfdfed9 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Thu, 21 Jun 2012 12:05:06 +0200 Subject: fix a memory leak in key.cpp - add EC_KEY_free() in CKey::Reset() when pkey != NULL - init pkey with NULL in CKey constructor --- src/key.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/key.h b/src/key.h index ba68f0dd70..5986a534f7 100644 --- a/src/key.h +++ b/src/key.h @@ -73,6 +73,8 @@ public: void Reset() { fCompressedPubKey = false; + if (pkey != NULL) + EC_KEY_free(pkey); pkey = EC_KEY_new_by_curve_name(NID_secp256k1); if (pkey == NULL) throw key_error("CKey::CKey() : EC_KEY_new_by_curve_name failed"); @@ -81,6 +83,7 @@ public: CKey() { + pkey = NULL; Reset(); } -- cgit v1.2.3 From 971a6e53a155c5a78c5d273dccc7c0c51c670d07 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sun, 24 Jun 2012 18:08:27 +0200 Subject: fix a comment to correctly use -upgradewallet --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index 586e3dab4b..3ce329479b 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -399,7 +399,7 @@ bool AppInit2(int argc, char* argv[]) if (GetBoolArg("-upgradewallet", fFirstRun)) { int nMaxVersion = GetArg("-upgradewallet", 0); - if (nMaxVersion == 0) // the -walletupgrade without argument case + if (nMaxVersion == 0) // the -upgradewallet without argument case { printf("Performing wallet upgrade to %i\n", FEATURE_LATEST); nMaxVersion = CLIENT_VERSION; -- cgit v1.2.3 From 04ae8e1a1b82ec59d7b4b720de0d5d1ebe0e12ba Mon Sep 17 00:00:00 2001 From: Michael Ford Date: Thu, 21 Jun 2012 09:36:20 +0800 Subject: Update master --- INSTALL | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL b/INSTALL index 6989d8902d..fe7de5123f 100644 --- a/INSTALL +++ b/INSTALL @@ -1,9 +1,9 @@ Building Bitcoin -See doc/readme-qt.rst for instructions on building Bitcoin QT, +See doc/readme-qt.rst for instructions on building Bitcoin-Qt, the intended-for-end-users, nice-graphical-interface, reference implementation of Bitcoin. See doc/build-*.txt for instructions on building bitcoind, the intended-for-services, no-graphical-interface, reference -implementation of Bitcoin. +implementation of Bitcoin. \ No newline at end of file -- cgit v1.2.3 From ccf2e853a1f4039d008e758138e80fa09e4f6f12 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 5 Jul 2012 23:05:58 +0000 Subject: Update Debian "Use system json-spirit" patch to apply ("Fixed" upstream in 3563824c602cb2b42cc21970935f45ce646c3964) --- .../patches/1001_use_system_json-spirit.patch | 48 ++++++++++++++++++---- 1 file changed, 39 insertions(+), 9 deletions(-) diff --git a/contrib/debian/patches/1001_use_system_json-spirit.patch b/contrib/debian/patches/1001_use_system_json-spirit.patch index 56a20af38c..307dfc8d49 100644 --- a/contrib/debian/patches/1001_use_system_json-spirit.patch +++ b/contrib/debian/patches/1001_use_system_json-spirit.patch @@ -1,10 +1,10 @@ Description: Use system JSON Spirit library Author: Jonas Smedegaard -Last-Update: 2011-05-17 ---- a/src/rpc.cpp -+++ b/src/rpc.cpp -@@ -12,9 +12,7 @@ - #include +Last-Update: 2012-07-05 +--- a/src/bitcoinrpc.cpp ++++ b/src/bitcoinrpc.cpp +@@ -20,9 +20,7 @@ + #include typedef boost::asio::ssl::stream SSLStream; #endif -#include "json/json_spirit_reader_template.h" @@ -16,11 +16,41 @@ Last-Update: 2011-05-17 // precompiled in headers.h. The problem might be when the pch file goes over --- a/src/makefile.unix +++ b/src/makefile.unix -@@ -23,6 +23,7 @@ - -l boost_thread \ - -l db_cxx \ +@@ -29,6 +29,7 @@ LIBS += \ + -l boost_thread$(BOOST_LIB_SUFFIX) \ + -l db_cxx$(BDB_LIB_SUFFIX) \ -l ssl \ + -l json_spirit \ -l crypto - ifdef USE_UPNP + ifndef USE_UPNP +--- a/src/rpcdump.cpp ++++ b/src/rpcdump.cpp +@@ -15,9 +15,8 @@ + // typedef boost::asio::ssl::stream SSLStream; + // #endif + // #include +-#include "json/json_spirit_reader_template.h" +-#include "json/json_spirit_writer_template.h" +-#include "json/json_spirit_utils.h" ++ ++#include + + #define printf OutputDebugStringF + +--- a/src/test/rpc_tests.cpp ++++ b/src/test/rpc_tests.cpp +@@ -1,11 +1,10 @@ + #include + #include + ++#include ++ + #include "base58.h" + #include "util.h" +-#include "json/json_spirit_reader_template.h" +-#include "json/json_spirit_writer_template.h" +-#include "json/json_spirit_utils.h" + + using namespace std; + using namespace json_spirit; -- cgit v1.2.3 From a0cbcfd6ed9607e481211826c33cdd15e2cee579 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 5 Jul 2012 23:05:58 +0000 Subject: Update Debian "Use system json-spirit" patch to apply ("Fixed" upstream in 3563824c602cb2b42cc21970935f45ce646c3964) --- contrib/debian/patches/1001_use_system_json-spirit.patch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/debian/patches/1001_use_system_json-spirit.patch b/contrib/debian/patches/1001_use_system_json-spirit.patch index 56a20af38c..d471bded8f 100644 --- a/contrib/debian/patches/1001_use_system_json-spirit.patch +++ b/contrib/debian/patches/1001_use_system_json-spirit.patch @@ -1,8 +1,8 @@ Description: Use system JSON Spirit library Author: Jonas Smedegaard -Last-Update: 2011-05-17 ---- a/src/rpc.cpp -+++ b/src/rpc.cpp +Last-Update: 2012-07-05 +--- a/src/bitcoinrpc.cpp ++++ b/src/bitcoinrpc.cpp @@ -12,9 +12,7 @@ #include typedef boost::asio::ssl::stream SSLStream; -- cgit v1.2.3 From 46dbdebb5918b170963f1b5a14c5ef0148262e1e Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sun, 24 Jun 2012 18:03:03 +0200 Subject: small updates to Bitcoin-Qt project file - re-word a comment and remove a space --- bitcoin-qt.pro | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index b5cee48e9f..d79e025fed 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -5,15 +5,15 @@ INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd -# for boost 1.37, add -mt to the boost libraries +# 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 +# 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 -- cgit v1.2.3 From 19920202cc73c72f7cf5df8eb0d158f6713ef6f5 Mon Sep 17 00:00:00 2001 From: xanatos Date: Fri, 22 Jun 2012 10:02:43 +0300 Subject: Small fix to rpc_tests --- src/test/rpc_tests.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/rpc_tests.cpp b/src/test/rpc_tests.cpp index 87462f765b..45424163f8 100644 --- a/src/test/rpc_tests.cpp +++ b/src/test/rpc_tests.cpp @@ -39,9 +39,9 @@ BOOST_FIXTURE_TEST_CASE(rpc_addmultisig, TestNetFixture) rpcfn_type addmultisig = mapCallTable["addmultisigaddress"]; // old, 65-byte-long: - const char* address1Hex = "0434e3e09f49ea168c5bbf53f877ff4206923858aab7c7e1df25bc263978107c95e35065a27ef6f1b27222db0ec97e0e895eaca603d3ee0d4c060ce3d8a00286c8"; + const char address1Hex[] = "0434e3e09f49ea168c5bbf53f877ff4206923858aab7c7e1df25bc263978107c95e35065a27ef6f1b27222db0ec97e0e895eaca603d3ee0d4c060ce3d8a00286c8"; // new, compressed: - const char* address2Hex = "0388c2037017c62240b6b72ac1a2a5f94da790596ebd06177c8572752922165cb4"; + const char address2Hex[] = "0388c2037017c62240b6b72ac1a2a5f94da790596ebd06177c8572752922165cb4"; Value v; CBitcoinAddress address; @@ -67,7 +67,7 @@ BOOST_FIXTURE_TEST_CASE(rpc_addmultisig, TestNetFixture) string short1(address1Hex, address1Hex+sizeof(address1Hex)-2); // last byte missing BOOST_CHECK_THROW(addmultisig(createArgs(2, short1.c_str()), false), runtime_error); - string short2(address1Hex+2, address1Hex+sizeof(address1Hex)); // first byte missing + string short2(address1Hex+1, address1Hex+sizeof(address1Hex)); // first byte missing BOOST_CHECK_THROW(addmultisig(createArgs(2, short2.c_str()), false), runtime_error); } -- cgit v1.2.3 From ee29ad27b365be363fdbc7f4db99c306c090404c Mon Sep 17 00:00:00 2001 From: xanatos Date: Sat, 23 Jun 2012 17:29:34 +0300 Subject: Changed a comment about a QVariant type --- src/qt/optionsmodel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/optionsmodel.h b/src/qt/optionsmodel.h index 775362d636..debd614e54 100644 --- a/src/qt/optionsmodel.h +++ b/src/qt/optionsmodel.h @@ -24,7 +24,7 @@ public: MinimizeOnClose, // bool ConnectSOCKS4, // bool ProxyIP, // QString - ProxyPort, // QString + ProxyPort, // int Fee, // qint64 DisplayUnit, // BitcoinUnits::Unit DisplayAddresses, // bool -- cgit v1.2.3 From 26199789ed6b8ec8bebeee67df1df4b29d465a79 Mon Sep 17 00:00:00 2001 From: fanquake Date: Fri, 29 Jun 2012 17:26:45 +0800 Subject: Fix a few typos --- src/util.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util.cpp b/src/util.cpp index cae01dffe6..6e31540f2a 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -852,7 +852,7 @@ void ShrinkDebugFile() // "Never go to sea with two chronometers; take one or three." // Our three time sources are: // - System clock -// - Median of other nodes's clocks +// - Median of other nodes clocks // - The user (asking the user to fix the system clock if the first two disagree) // int64 GetTime() @@ -958,7 +958,7 @@ string FormatFullVersion() // --> may result in deadlock between the two threads, depending on when they run. // Solution implemented here: // Keep track of pairs of locks: (A before B), (A before C), etc. -// Complain if any thread trys to lock in a different order. +// Complain if any thread tries to lock in a different order. // struct CLockLocation -- cgit v1.2.3 From 46761b339cd57c5de56c2ae5c7a6d8fa592567ce Mon Sep 17 00:00:00 2001 From: fanquake Date: Fri, 29 Jun 2012 17:26:45 +0800 Subject: Fix a few typos --- src/base58.h | 6 +++--- src/util.cpp | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/base58.h b/src/base58.h index d92054da04..8ee05b073b 100644 --- a/src/base58.h +++ b/src/base58.h @@ -117,7 +117,7 @@ inline bool DecodeBase58(const char* psz, std::vector& vchRet) } // Decode a base58-encoded string str into byte vector vchRet -// returns true if decoding is succesful +// returns true if decoding is successful inline bool DecodeBase58(const std::string& str, std::vector& vchRet) { return DecodeBase58(str.c_str(), vchRet); @@ -137,7 +137,7 @@ inline std::string EncodeBase58Check(const std::vector& vchIn) } // Decode a base58-encoded string psz that includes a checksum, into byte vector vchRet -// returns true if decoding is succesful +// returns true if decoding is successful inline bool DecodeBase58Check(const char* psz, std::vector& vchRet) { if (!DecodeBase58(psz, vchRet)) @@ -158,7 +158,7 @@ inline bool DecodeBase58Check(const char* psz, std::vector& vchRe } // Decode a base58-encoded string str that includes a checksum, into byte vector vchRet -// returns true if decoding is succesful +// returns true if decoding is successful inline bool DecodeBase58Check(const std::string& str, std::vector& vchRet) { return DecodeBase58Check(str.c_str(), vchRet); diff --git a/src/util.cpp b/src/util.cpp index 0311203828..1f120e18d6 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -946,7 +946,7 @@ void ShrinkDebugFile() // "Never go to sea with two chronometers; take one or three." // Our three time sources are: // - System clock -// - Median of other nodes's clocks +// - Median of other nodes clocks // - The user (asking the user to fix the system clock if the first two disagree) // static int64 nMockTime = 0; // For unit testing @@ -1061,7 +1061,7 @@ string FormatFullVersion() // --> may result in deadlock between the two threads, depending on when they run. // Solution implemented here: // Keep track of pairs of locks: (A before B), (A before C), etc. -// Complain if any thread trys to lock in a different order. +// Complain if any thread tries to lock in a different order. // struct CLockLocation -- cgit v1.2.3 From d477028247a7de1f1e2acabe85d5d281bd8f62cf Mon Sep 17 00:00:00 2001 From: fanquake Date: Fri, 29 Jun 2012 17:26:45 +0800 Subject: Fix a few typos --- src/addrman.h | 4 ++-- src/base58.h | 6 +++--- src/util.cpp | 4 ++-- src/wallet.h | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/addrman.h b/src/addrman.h index 950798784d..e89fbba9f1 100644 --- a/src/addrman.h +++ b/src/addrman.h @@ -22,13 +22,13 @@ private: // where knowledge about this address first came from CNetAddr source; - // last succesfull connection by us + // last successful connection by us int64 nLastSuccess; // last try whatsoever by us: // int64 CAddress::nLastTry - // connection attempts since last succesful attempt + // connection attempts since last successful attempt int nAttempts; // reference count in new sets (memory only) diff --git a/src/base58.h b/src/base58.h index bc681a08ca..201a9e24b4 100644 --- a/src/base58.h +++ b/src/base58.h @@ -118,7 +118,7 @@ inline bool DecodeBase58(const char* psz, std::vector& vchRet) } // Decode a base58-encoded string str into byte vector vchRet -// returns true if decoding is succesful +// returns true if decoding is successful inline bool DecodeBase58(const std::string& str, std::vector& vchRet) { return DecodeBase58(str.c_str(), vchRet); @@ -138,7 +138,7 @@ inline std::string EncodeBase58Check(const std::vector& vchIn) } // Decode a base58-encoded string psz that includes a checksum, into byte vector vchRet -// returns true if decoding is succesful +// returns true if decoding is successful inline bool DecodeBase58Check(const char* psz, std::vector& vchRet) { if (!DecodeBase58(psz, vchRet)) @@ -159,7 +159,7 @@ inline bool DecodeBase58Check(const char* psz, std::vector& vchRe } // Decode a base58-encoded string str that includes a checksum, into byte vector vchRet -// returns true if decoding is succesful +// returns true if decoding is successful inline bool DecodeBase58Check(const std::string& str, std::vector& vchRet) { return DecodeBase58Check(str.c_str(), vchRet); diff --git a/src/util.cpp b/src/util.cpp index 94bdba6ffb..a4424a4632 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -991,7 +991,7 @@ void ShrinkDebugFile() // "Never go to sea with two chronometers; take one or three." // Our three time sources are: // - System clock -// - Median of other nodes's clocks +// - Median of other nodes clocks // - The user (asking the user to fix the system clock if the first two disagree) // static int64 nMockTime = 0; // For unit testing @@ -1116,7 +1116,7 @@ std::string FormatSubVersion(const std::string& name, int nClientVersion, const // --> may result in deadlock between the two threads, depending on when they run. // Solution implemented here: // Keep track of pairs of locks: (A before B), (A before C), etc. -// Complain if any thread trys to lock in a different order. +// Complain if any thread tries to lock in a different order. // struct CLockLocation diff --git a/src/wallet.h b/src/wallet.h index 1b17dea9db..6fe3ca67c0 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -39,7 +39,7 @@ private: // the current wallet version: clients below this version are not able to load the wallet int nWalletVersion; - // the maxmimum wallet format version: memory-only variable that specifies to what version this wallet may be upgraded + // the maximum wallet format version: memory-only variable that specifies to what version this wallet may be upgraded int nWalletMaxVersion; public: -- cgit v1.2.3 From a1816267e6bf6d7fe017f089c5720da1a693a868 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sat, 30 Jun 2012 01:16:22 +0200 Subject: fix a typo in OptionsDialog --- src/qt/optionsdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index bac01829a7..6018419fbc 100644 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -188,7 +188,7 @@ MainOptionsPage::MainOptionsPage(QWidget *parent): #endif connect_socks4 = new QCheckBox(tr("&Connect through SOCKS4 proxy:")); - connect_socks4->setToolTip(tr("Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor)")); + connect_socks4->setToolTip(tr("Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor)")); layout->addWidget(connect_socks4); QHBoxLayout *proxy_hbox = new QHBoxLayout(); -- cgit v1.2.3 From cf6ab20d8b53503a4727bd86d1747efbe013a417 Mon Sep 17 00:00:00 2001 From: fanquake Date: Sat, 30 Jun 2012 17:05:28 +0800 Subject: Fix a couple more typos --- src/base58.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base58.h b/src/base58.h index 8ee05b073b..9bd078caa2 100644 --- a/src/base58.h +++ b/src/base58.h @@ -69,7 +69,7 @@ inline std::string EncodeBase58(const std::vector& vch) } // Decode a base58-encoded string psz into byte vector vchRet -// returns true if decoding is succesful +// returns true if decoding is successful inline bool DecodeBase58(const char* psz, std::vector& vchRet) { CAutoBN_CTX pctx; -- cgit v1.2.3 From fb7ca331781c2ddc3118762bcb21229c8a9a409e Mon Sep 17 00:00:00 2001 From: fanquake Date: Sat, 30 Jun 2012 17:05:28 +0800 Subject: Fix a couple more typos --- src/base58.h | 2 +- src/qt/test/uritests.cpp | 2 +- src/test/mruset_tests.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/base58.h b/src/base58.h index 201a9e24b4..dff475a746 100644 --- a/src/base58.h +++ b/src/base58.h @@ -70,7 +70,7 @@ inline std::string EncodeBase58(const std::vector& vch) } // Decode a base58-encoded string psz into byte vector vchRet -// returns true if decoding is succesful +// returns true if decoding is successful inline bool DecodeBase58(const char* psz, std::vector& vchRet) { CAutoBN_CTX pctx; diff --git a/src/qt/test/uritests.cpp b/src/qt/test/uritests.cpp index 70c20be0ea..a281c39ca5 100644 --- a/src/qt/test/uritests.cpp +++ b/src/qt/test/uritests.cpp @@ -59,7 +59,7 @@ void URITests::uriTests() QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); QVERIFY(rv.label == QString()); - // We currently dont implement the message paramenter (ok, yea, we break spec...) + // We currently don't implement the message parameter (ok, yea, we break spec...) uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?req-message=Wikipedia Example Address")); QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv)); diff --git a/src/test/mruset_tests.cpp b/src/test/mruset_tests.cpp index ca5a1f1b12..64a6678a73 100644 --- a/src/test/mruset_tests.cpp +++ b/src/test/mruset_tests.cpp @@ -71,7 +71,7 @@ int static permute(int n) return ret; } -// Test that an mruset acts like a moving window, if no duplcate elements are added +// Test that an mruset acts like a moving window, if no duplicate elements are added BOOST_AUTO_TEST_CASE(mruset_window) { mruset mru(MAX_SIZE); -- cgit v1.2.3 From 580f7cd73189c6840b354c9ed6a0227161150fcc Mon Sep 17 00:00:00 2001 From: Gregory Maxwell Date: Sun, 1 Jul 2012 20:23:26 -0400 Subject: Do not consider inbound peers for outbound network group exclusion. Bitcoin will not make an outbound connection to a network group (/16 for IPv4) that it is already connected to. This means that if an attacker wants good odds of capturing all a nodes outbound connections he must have hosts on a a large number of distinct groups. Previously both inbound and outbound connections were used to feed this exclusion. The use of inbound connections, which can be controlled by the attacker, actually has the potential of making sibyl attacks _easier_: An attacker can start up hosts in groups which house many honest nodes and make outbound connections to the victim to exclude big swaths of honest nodes. Because the attacker chooses to make the outbound connection he can always beat out honest nodes for the consumption of inbound slots. At _best_ the old behavior increases attacker costs by a single group (e.g. one distinct group to use to fill up all your inbound slots), but at worst it allows the attacker to select whole networks you won't connect to. This commit makes the nodes use only outbound links to exclude network groups for outbound connections. Fancier things could be done, like weaker exclusion for inbound groups... but simplicity is good and I don't believe more complexity is currently needed. --- src/net.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index 2ff539a18e..7637f8854c 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1491,12 +1491,14 @@ void ThreadOpenConnections2(void* parg) CAddress addrConnect; int64 nBest = std::numeric_limits::min(); - // Only connect to one address per a.b.?.? range. + // Only connect out to one peer per network group (/16 for IPv4). // Do this here so we don't have to critsect vNodes inside mapAddresses critsect. set setConnected; CRITICAL_BLOCK(cs_vNodes) BOOST_FOREACH(CNode* pnode, vNodes) - setConnected.insert(pnode->addr.ip & 0x0000ffff); + if (!pnode->fInbound) { + setConnected.insert(pnode->addr.ip & 0x0000ffff); + } CRITICAL_BLOCK(cs_mapAddresses) { -- cgit v1.2.3 From 927c00255b62171b75c0733fd90de9f76ce59613 Mon Sep 17 00:00:00 2001 From: Gregory Maxwell Date: Sun, 1 Jul 2012 20:23:26 -0400 Subject: Do not consider inbound peers for outbound network group exclusion. Bitcoin will not make an outbound connection to a network group (/16 for IPv4) that it is already connected to. This means that if an attacker wants good odds of capturing all a nodes outbound connections he must have hosts on a a large number of distinct groups. Previously both inbound and outbound connections were used to feed this exclusion. The use of inbound connections, which can be controlled by the attacker, actually has the potential of making sibyl attacks _easier_: An attacker can start up hosts in groups which house many honest nodes and make outbound connections to the victim to exclude big swaths of honest nodes. Because the attacker chooses to make the outbound connection he can always beat out honest nodes for the consumption of inbound slots. At _best_ the old behavior increases attacker costs by a single group (e.g. one distinct group to use to fill up all your inbound slots), but at worst it allows the attacker to select whole networks you won't connect to. This commit makes the nodes use only outbound links to exclude network groups for outbound connections. Fancier things could be done, like weaker exclusion for inbound groups... but simplicity is good and I don't believe more complexity is currently needed. --- src/net.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index d927c505e0..7f2f48a678 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1333,12 +1333,14 @@ void ThreadOpenConnections2(void* parg) // CAddress addrConnect; - // Only connect to one address per a.b.?.? range. + // Only connect out to one peer per network group (/16 for IPv4). // Do this here so we don't have to critsect vNodes inside mapAddresses critsect. set > setConnected; CRITICAL_BLOCK(cs_vNodes) BOOST_FOREACH(CNode* pnode, vNodes) - setConnected.insert(pnode->addr.GetGroup()); + if (!pnode->fInbound) { + setConnected.insert(pnode->addr.GetGroup()); + } int64 nANow = GetAdjustedTime(); -- cgit v1.2.3 From 000f217369eda29a0d520932b27e2b0d792152b0 Mon Sep 17 00:00:00 2001 From: Michael Ford Date: Mon, 25 Jun 2012 12:28:29 +0800 Subject: Add Bitcoin dev Copyright --- src/ui_interface.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui_interface.h b/src/ui_interface.h index 63d2e5c1d0..6f3aa48926 100644 --- a/src/ui_interface.h +++ b/src/ui_interface.h @@ -1,4 +1,5 @@ // Copyright (c) 2010 Satoshi Nakamoto +// Copyright (c) 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_UI_INTERFACE_H -- cgit v1.2.3 From 59d0486f2fc90b6d91feba471fa7db1082259fbe Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 5 Jul 2012 23:05:58 +0000 Subject: Update Debian "Use system json-spirit" patch to apply ("Fixed" upstream in 3563824c602cb2b42cc21970935f45ce646c3964) --- .../patches/1001_use_system_json-spirit.patch | 65 +++++++++++++++++----- 1 file changed, 51 insertions(+), 14 deletions(-) diff --git a/contrib/debian/patches/1001_use_system_json-spirit.patch b/contrib/debian/patches/1001_use_system_json-spirit.patch index 56a20af38c..c6d60393d4 100644 --- a/contrib/debian/patches/1001_use_system_json-spirit.patch +++ b/contrib/debian/patches/1001_use_system_json-spirit.patch @@ -1,26 +1,63 @@ Description: Use system JSON Spirit library Author: Jonas Smedegaard -Last-Update: 2011-05-17 ---- a/src/rpc.cpp -+++ b/src/rpc.cpp -@@ -12,9 +12,7 @@ - #include - typedef boost::asio::ssl::stream SSLStream; - #endif +Last-Update: 2012-07-05 +--- a/src/bitcoinrpc.h ++++ b/src/bitcoinrpc.h +@@ -9,9 +9,7 @@ + #include + #include + -#include "json/json_spirit_reader_template.h" -#include "json/json_spirit_writer_template.h" -#include "json/json_spirit_utils.h" +#include - #define printf OutputDebugStringF - // MinGW 3.4.5 gets "fatal error: had to relocate PCH" if the json headers are - // precompiled in headers.h. The problem might be when the pch file goes over + + void ThreadRPCServer(void* parg); + int CommandLineRPC(int argc, char *argv[]); --- a/src/makefile.unix +++ b/src/makefile.unix -@@ -23,6 +23,7 @@ - -l boost_thread \ - -l db_cxx \ +@@ -31,6 +31,7 @@ LIBS += \ + -l boost_thread$(BOOST_LIB_SUFFIX) \ + -l db_cxx$(BDB_LIB_SUFFIX) \ -l ssl \ + -l json_spirit \ -l crypto - ifdef USE_UPNP + ifndef USE_UPNP +--- a/src/rpcdump.cpp ++++ b/src/rpcdump.cpp +@@ -8,9 +8,7 @@ + + #include + +-#include "json/json_spirit_reader_template.h" +-#include "json/json_spirit_writer_template.h" +-#include "json/json_spirit_utils.h" ++#include + + #define printf OutputDebugStringF + +--- a/src/test/rpc_tests.cpp ++++ b/src/test/rpc_tests.cpp +@@ -1,6 +1,8 @@ + #include + #include + ++#include ++ + #include "base58.h" + #include "util.h" + #include "bitcoinrpc.h" +--- a/src/test/script_tests.cpp ++++ b/src/test/script_tests.cpp +@@ -8,9 +8,7 @@ + #include + #include + #include +-#include "json/json_spirit_reader_template.h" +-#include "json/json_spirit_writer_template.h" +-#include "json/json_spirit_utils.h" ++#include + + #include "main.h" + #include "wallet.h" -- cgit v1.2.3 From e3a9bc79a003231682ae8c89bb8ebecf273f279b Mon Sep 17 00:00:00 2001 From: Gregory Maxwell Date: Sun, 1 Jul 2012 20:23:26 -0400 Subject: Do not consider inbound peers for outbound network group exclusion. Bitcoin will not make an outbound connection to a network group (/16 for IPv4) that it is already connected to. This means that if an attacker wants good odds of capturing all a nodes outbound connections he must have hosts on a a large number of distinct groups. Previously both inbound and outbound connections were used to feed this exclusion. The use of inbound connections, which can be controlled by the attacker, actually has the potential of making sibyl attacks _easier_: An attacker can start up hosts in groups which house many honest nodes and make outbound connections to the victim to exclude big swaths of honest nodes. Because the attacker chooses to make the outbound connection he can always beat out honest nodes for the consumption of inbound slots. At _best_ the old behavior increases attacker costs by a single group (e.g. one distinct group to use to fill up all your inbound slots), but at worst it allows the attacker to select whole networks you won't connect to. This commit makes the nodes use only outbound links to exclude network groups for outbound connections. Fancier things could be done, like weaker exclusion for inbound groups... but simplicity is good and I don't believe more complexity is currently needed. --- src/net.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index d3236b341c..cde3f9539e 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1243,16 +1243,17 @@ void ThreadOpenConnections2(void* parg) // CAddress addrConnect; - // Only connect to one address per a.b.?.? range. + // Only connect out to one peer per network group (/16 for IPv4). // Do this here so we don't have to critsect vNodes inside mapAddresses critsect. int nOutbound = 0; set > setConnected; { LOCK(cs_vNodes); BOOST_FOREACH(CNode* pnode, vNodes) { - setConnected.insert(pnode->addr.GetGroup()); - if (!pnode->fInbound) + if (!pnode->fInbound) { + setConnected.insert(pnode->addr.GetGroup()); nOutbound++; + } } } -- cgit v1.2.3 From 33a656c4ae26ec912795a7a1f582741fa710f976 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Thu, 21 Jun 2012 12:05:06 +0200 Subject: fix a memory leak in key.cpp - add EC_KEY_free() in CKey::Reset() when pkey != NULL - init pkey with NULL in CKey constructor --- src/key.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/key.cpp b/src/key.cpp index 18b4672043..2c9585ecb9 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -130,6 +130,8 @@ void CKey::SetCompressedPubKey() void CKey::Reset() { fCompressedPubKey = false; + if (pkey != NULL) + EC_KEY_free(pkey); pkey = EC_KEY_new_by_curve_name(NID_secp256k1); if (pkey == NULL) throw key_error("CKey::CKey() : EC_KEY_new_by_curve_name failed"); @@ -138,6 +140,7 @@ void CKey::Reset() CKey::CKey() { + pkey = NULL; Reset(); } -- cgit v1.2.3 From 7bf9a64538a52f2683d1ce8b3272426e8a973a2d Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sat, 7 Jul 2012 16:35:29 +0200 Subject: fix typo in optionsmodel.cpp --- src/qt/optionsmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index 71defc195a..23c4838407 100644 --- a/src/qt/optionsmodel.cpp +++ b/src/qt/optionsmodel.cpp @@ -15,7 +15,7 @@ void OptionsModel::Init() { QSettings settings; - // These are QT-only settings: + // These are Qt-only settings: nDisplayUnit = settings.value("nDisplayUnit", BitcoinUnits::BTC).toInt(); bDisplayAddresses = settings.value("bDisplayAddresses", false).toBool(); fMinimizeToTray = settings.value("fMinimizeToTray", false).toBool(); -- cgit v1.2.3 From 339eb29a87486d82c2e74dac581be16642af9a99 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Tue, 10 Jul 2012 13:44:56 +0200 Subject: fix for build.h regeneration failure when compiling on Windows - as the "||" operator is not known to qmake use "|" instead, which ensures the code in brackets does never get executed on Windows --- bitcoin-qt.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 3e2fe009ac..bfbe3e9f0d 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -81,7 +81,7 @@ contains(BITCOIN_NEED_QT_PLUGINS, 1) { } # regenerate src/build.h -!windows || contains(USE_BUILD_INFO, 1) { +!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 = genbuildhook -- cgit v1.2.3 From 3bd1d6645ee39bb6a6e7b016d4cbfc15188b1a00 Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Mon, 14 May 2012 21:17:24 +0200 Subject: Fix signed subtraction overflow in CBigNum::setint64(). As noticed by sipa (Pieter Wuille), this can happen when CBigNum::setint64() is called with an integer value of INT64_MIN (-2^63). When compiled with -ftrapv, the program would crash. Otherwise, it would execute an undefined operation (although in practice, usually the correct one). --- src/bignum.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/bignum.h b/src/bignum.h index e203b26a05..1c1c1fc10f 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -130,7 +130,15 @@ public: if (sn < (int64)0) { - n = -sn; + // We negate in 2 steps to avoid signed subtraction overflow, + // i.e. -(-2^63), which is an undefined operation and causes SIGILL + // when compiled with -ftrapv. + // + // Note that uint64_t n = sn, when sn is an int64_t, is a + // well-defined operation and n will be equal to sn + 2^64 when sn + // is negative. + n = sn; + n = -n; fNegative = true; } else { n = sn; -- cgit v1.2.3 From 7a161e48470ad3bfe1a4f497a7f0a1bed2f2b8a1 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 18 Jun 2012 20:35:10 +0000 Subject: CBigNum: Convert negative int64 values in a more well-defined way Since the minimum signed integer cannot be represented as positive so long as its type is signed, and it's not well-defined what happens if you make it unsigned before negating it, we instead increment the negative integer by 1, convert it, then increment the (now positive) unsigned integer by 1 to compensate --- src/bignum.h | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/bignum.h b/src/bignum.h index 1c1c1fc10f..ef8423af9e 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -130,15 +130,9 @@ public: if (sn < (int64)0) { - // We negate in 2 steps to avoid signed subtraction overflow, - // i.e. -(-2^63), which is an undefined operation and causes SIGILL - // when compiled with -ftrapv. - // - // Note that uint64_t n = sn, when sn is an int64_t, is a - // well-defined operation and n will be equal to sn + 2^64 when sn - // is negative. - n = sn; - n = -n; + // Since the minimum signed integer cannot be represented as positive so long as its type is signed, and it's not well-defined what happens if you make it unsigned before negating it, we instead increment the negative integer by 1, convert it, then increment the (now positive) unsigned integer by 1 to compensate + n = -(sn + 1); + ++n; fNegative = true; } else { n = sn; -- cgit v1.2.3 From bb583e3c11aa630726bf57f21f10d60c85dbca47 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Fri, 13 Jul 2012 08:46:09 +0200 Subject: when on testnet, set testnet icon for about dialog - add a comment --- src/qt/bitcoingui.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 2c807a1ae4..c36dd216d4 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -285,6 +285,7 @@ void BitcoinGUI::setClientModel(ClientModel *clientModel) this->clientModel = clientModel; if(clientModel) { + // Replace some strings and icons, when using the testnet if(clientModel->isTestNet()) { QString title_testnet = windowTitle() + QString(" ") + tr("[testnet]"); @@ -299,6 +300,8 @@ void BitcoinGUI::setClientModel(ClientModel *clientModel) trayIcon->setToolTip(title_testnet); trayIcon->setIcon(QIcon(":/icons/toolbar_testnet")); } + + aboutAction->setIcon(QIcon(":/icons/toolbar_testnet")); } // Keep up to date with client -- cgit v1.2.3 From b2848bf08a4b6daa67f7fd197aee9f39a08f9b5f Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Tue, 17 Jul 2012 11:38:18 +0200 Subject: Make sort and filters for transactions and labels case-insensitive --- src/qt/addressbookpage.cpp | 2 ++ src/qt/transactionview.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/qt/addressbookpage.cpp b/src/qt/addressbookpage.cpp index bd211039b3..bdfceb2f07 100644 --- a/src/qt/addressbookpage.cpp +++ b/src/qt/addressbookpage.cpp @@ -65,6 +65,8 @@ void AddressBookPage::setModel(AddressTableModel *model) proxyModel = new QSortFilterProxyModel(this); proxyModel->setSourceModel(model); proxyModel->setDynamicSortFilter(true); + proxyModel->setSortCaseSensitivity(Qt::CaseInsensitive); + proxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive); switch(tab) { case ReceivingTab: diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index 1dd4c7b542..b5b3792f8e 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -160,6 +160,8 @@ void TransactionView::setModel(WalletModel *model) transactionProxyModel = new TransactionFilterProxy(this); transactionProxyModel->setSourceModel(model->getTransactionTableModel()); transactionProxyModel->setDynamicSortFilter(true); + transactionProxyModel->setSortCaseSensitivity(Qt::CaseInsensitive); + transactionProxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive); transactionProxyModel->setSortRole(Qt::EditRole); -- cgit v1.2.3 From 63f319353c6716e51f965043923779aee5251637 Mon Sep 17 00:00:00 2001 From: "Rune K. Svendsen" Date: Wed, 18 Jul 2012 09:37:05 +0200 Subject: Let the comment in GetBlockValue() reflect the uncertainty about the time interval between subsidy reductions --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 7ce7c92e5d..453b0f8257 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -690,7 +690,7 @@ int64 static GetBlockValue(int nHeight, int64 nFees) { int64 nSubsidy = 50 * COIN; - // Subsidy is cut in half every 4 years + // Subsidy is cut in half every 210000 blocks, which will occur approximately every 4 years nSubsidy >>= (nHeight / 210000); return nSubsidy + nFees; -- cgit v1.2.3 From 5dc6e7067c61330ab1b1689636292b09ae70bbaa Mon Sep 17 00:00:00 2001 From: fanquake Date: Thu, 19 Jul 2012 00:01:04 +0800 Subject: Update a link --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index 3ce329479b..6e1c0c5d35 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -744,7 +744,7 @@ bool SetStartOnSystemStartup(bool fAutoStart) #else // TODO: OSX startup stuff; see: -// http://developer.apple.com/mac/library/documentation/MacOSX/Conceptual/BPSystemStartup/Articles/CustomLogin.html +// https://developer.apple.com/library/mac/#documentation/MacOSX/Conceptual/BPSystemStartup/Articles/CustomLogin.html bool GetStartOnSystemStartup() { return false; } bool SetStartOnSystemStartup(bool fAutoStart) { return false; } -- cgit v1.2.3 From 222ac2b12ab42d7a0ea66cd6fe4e25efa3c31333 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Thu, 19 Jul 2012 07:22:38 +0200 Subject: re-size addressbookpage.ui to fix #1062 --- src/qt/forms/addressbookpage.ui | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qt/forms/addressbookpage.ui b/src/qt/forms/addressbookpage.ui index b31a9ce997..e47eb57ff9 100644 --- a/src/qt/forms/addressbookpage.ui +++ b/src/qt/forms/addressbookpage.ui @@ -6,8 +6,8 @@ 0 0 - 627 - 347 + 760 + 380 -- cgit v1.2.3 From ec9a3c04edc5180e20cb25ecd16558f449fa52e0 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sat, 21 Jul 2012 12:44:54 +0200 Subject: fix OpenSSL not written as proper noun in some comments --- src/bignum.h | 2 +- src/util.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bignum.h b/src/bignum.h index ef8423af9e..7db89b30c4 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -415,7 +415,7 @@ public: CBigNum& operator>>=(unsigned int shift) { // Note: BN_rshift segfaults on 64-bit if 2^shift is greater than the number - // if built on ubuntu 9.04 or 9.10, probably depends on version of openssl + // if built on ubuntu 9.04 or 9.10, probably depends on version of OpenSSL CBigNum a = 1; a <<= shift; if (BN_cmp(&a, this) > 0) diff --git a/src/util.cpp b/src/util.cpp index 6e31540f2a..fb3bc64cc8 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -54,7 +54,7 @@ extern "C" void tss_cleanup_implemented() { } -// Init openssl library multithreading support +// Init OpenSSL library multithreading support static boost::interprocess::interprocess_mutex** ppmutexOpenSSL; void locking_callback(int mode, int i, const char* file, int line) { @@ -70,7 +70,7 @@ class CInit public: CInit() { - // Init openssl library multithreading support + // Init OpenSSL library multithreading support ppmutexOpenSSL = (boost::interprocess::interprocess_mutex**)OPENSSL_malloc(CRYPTO_num_locks() * sizeof(boost::interprocess::interprocess_mutex*)); for (int i = 0; i < CRYPTO_num_locks(); i++) ppmutexOpenSSL[i] = new boost::interprocess::interprocess_mutex(); @@ -86,7 +86,7 @@ public: } ~CInit() { - // Shutdown openssl library multithreading support + // Shutdown OpenSSL library multithreading support CRYPTO_set_locking_callback(NULL); for (int i = 0; i < CRYPTO_num_locks(); i++) delete ppmutexOpenSSL[i]; -- cgit v1.2.3 From fb4dbbd188b68c4374c48dba5e481a35e920a6bf Mon Sep 17 00:00:00 2001 From: fanquake Date: Wed, 18 Jul 2012 22:11:56 +0800 Subject: Docs Tidy up (PARTIAL cherry pick) --- doc/README | 2 +- doc/build-osx.txt | 2 +- doc/build-unix.txt | 2 +- doc/unit-tests.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/README b/doc/README index 664a174736..00e24e7819 100644 --- a/doc/README +++ b/doc/README @@ -2,7 +2,7 @@ Bitcoin 0.4.7 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying -file license.txt or http://www.opensource.org/licenses/mit-license.php. +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/). This product includes cryptographic software written by Eric Young (eay@cryptsoft.com). diff --git a/doc/build-osx.txt b/doc/build-osx.txt index 52d876d82b..c02c92e06b 100644 --- a/doc/build-osx.txt +++ b/doc/build-osx.txt @@ -1,7 +1,7 @@ Copyright (c) 2010 Laszlo Hanyecz Portions Copyright (c) 2011 Douglas Huff Distributed under the MIT/X11 software license, see the accompanying file -license.txt or http://www.opensource.org/licenses/mit-license.php. This +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/). This product includes cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by diff --git a/doc/build-unix.txt b/doc/build-unix.txt index e608c25f06..66f548fc46 100644 --- a/doc/build-unix.txt +++ b/doc/build-unix.txt @@ -1,6 +1,6 @@ Copyright (c) 2009-2010 Satoshi Nakamoto Distributed under the MIT/X11 software license, see the accompanying -file license.txt or http://www.opensource.org/licenses/mit-license.php. +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/). This product includes cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP diff --git a/doc/unit-tests.txt b/doc/unit-tests.txt index 1168de7b70..671ec3e719 100644 --- a/doc/unit-tests.txt +++ b/doc/unit-tests.txt @@ -1,4 +1,4 @@ -Compiling/runing bitcoind unit tests +Compiling/running bitcoind unit tests ------------------------------------ bitcoind unit tests are in the src/test/ directory; they -- cgit v1.2.3 From b8dcb38b4ec674282a730c0eef214794502d9f4e Mon Sep 17 00:00:00 2001 From: fanquake Date: Mon, 23 Jul 2012 11:59:02 +0800 Subject: Fix Typo --- src/qt/bitcoin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 6986d39cbf..6debec703a 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -130,7 +130,7 @@ std::string _(const char* psz) static void handleRunawayException(std::exception *e) { PrintExceptionContinue(e, "Runaway exception"); - QMessageBox::critical(0, "Runaway exception", BitcoinGUI::tr("A fatal error occured. Bitcoin can no longer continue safely and will quit.") + QString("\n\n") + QString::fromStdString(strMiscWarning)); + QMessageBox::critical(0, "Runaway exception", BitcoinGUI::tr("A fatal error occurred. Bitcoin can no longer continue safely and will quit.") + QString("\n\n") + QString::fromStdString(strMiscWarning)); exit(1); } -- cgit v1.2.3 From 895191b9a8b2e80e2462b98329652f0e97c40322 Mon Sep 17 00:00:00 2001 From: fanquake Date: Mon, 23 Jul 2012 12:03:48 +0800 Subject: Typo --- src/qt/guiutil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index 7e2b006d92..ef57e017b4 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -28,7 +28,7 @@ public: static void setupAddressWidget(QLineEdit *widget, QWidget *parent); static void setupAmountWidget(QLineEdit *widget, QWidget *parent); - // Parse "bitcoin:" URI into recipient object, return true on succesful parsing + // Parse "bitcoin:" URI into recipient object, return true on successful parsing // See Bitcoin URI definition discussion here: https://bitcointalk.org/index.php?topic=33490.0 static bool parseBitcoinURI(const QUrl *, SendCoinsRecipient *out); static bool parseBitcoinURI(QString uri, SendCoinsRecipient *out); -- cgit v1.2.3 From 0a9972bf1bb7878268fc84ea3794dfddf5b170cb Mon Sep 17 00:00:00 2001 From: Stephane Glondu Date: Tue, 24 Jul 2012 10:20:25 +0200 Subject: Fix spelling of successfully --- src/qt/askpassphrasedialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/askpassphrasedialog.cpp b/src/qt/askpassphrasedialog.cpp index 31e4040d1d..e96f41941c 100644 --- a/src/qt/askpassphrasedialog.cpp +++ b/src/qt/askpassphrasedialog.cpp @@ -158,7 +158,7 @@ void AskPassphraseDialog::accept() if(model->changePassphrase(oldpass, newpass1)) { QMessageBox::information(this, tr("Wallet encrypted"), - tr("Wallet passphrase was succesfully changed.")); + tr("Wallet passphrase was successfully changed.")); QDialog::accept(); // Success } else -- cgit v1.2.3 From 7543a5611ba78220f17f02306e5d274cb3cf00d3 Mon Sep 17 00:00:00 2001 From: Michael Ford Date: Thu, 26 Jul 2012 10:07:43 +0800 Subject: Typo --- src/qt/sendcoinsdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index ef2f1c3186..b27efc24b7 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -115,7 +115,7 @@ void SendCoinsDialog::on_sendButton_clicked() { case WalletModel::InvalidAddress: QMessageBox::warning(this, tr("Send Coins"), - tr("The recepient address is not valid, please recheck."), + tr("The recipient address is not valid, please recheck."), QMessageBox::Ok, QMessageBox::Ok); break; case WalletModel::InvalidAmount: -- cgit v1.2.3 From 9e98fe6f584d8bdd0ffe4d5dc5c0b908beb456db Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 26 Jul 2012 00:48:39 +0000 Subject: Bugfix: Fix a variety of misspellings (PARTIAL: Left out anything changing debug.log) --- doc/coding.txt | 4 ++-- src/base58.h | 2 +- src/crypter.cpp | 4 ++-- src/init.cpp | 4 ++-- src/irc.cpp | 2 +- src/main.cpp | 26 +++++++++++++------------- src/net.cpp | 10 +++++----- src/protocol.cpp | 2 +- src/rpc.cpp | 6 +++--- src/script.cpp | 2 +- src/wallet.cpp | 4 ++-- 11 files changed, 33 insertions(+), 33 deletions(-) diff --git a/doc/coding.txt b/doc/coding.txt index b3c812a486..cc41850a5c 100644 --- a/doc/coding.txt +++ b/doc/coding.txt @@ -22,8 +22,8 @@ bool Function(char* psz, int n) - No extra spaces inside parenthesis; please don't do ( this ) - No space after function names, one space after if, for and while -Variable names begin with the type in lowercase, like nSomeVariable. -Please don't put the first word of the variable name in lowercase like +Variable names begin with the type in lower-case, like nSomeVariable. +Please don't put the first word of the variable name in lower-case like someVariable. Common types: diff --git a/src/base58.h b/src/base58.h index 43f3ac2881..af1022dfc0 100644 --- a/src/base58.h +++ b/src/base58.h @@ -10,7 +10,7 @@ // could be used to create visually identical looking account numbers. // - A string with non-alphanumeric characters is not as easily accepted as an account number. // - E-mail usually won't line-break if there's no punctuation to break at. -// - Doubleclicking selects the whole number as one word if it's all alphanumeric. +// - Double-clicking selects the whole number as one word if it's all alphanumeric. // #ifndef BITCOIN_BASE58_H #define BITCOIN_BASE58_H diff --git a/src/crypter.cpp b/src/crypter.cpp index e821b089ba..8b0f8eb337 100644 --- a/src/crypter.cpp +++ b/src/crypter.cpp @@ -20,7 +20,7 @@ bool CCrypter::SetKeyFromPassphrase(const std::string& strKeyData, const std::ve if (nRounds < 1 || chSalt.size() != WALLET_CRYPTO_SALT_SIZE) return false; - // Try to keep the keydata out of swap (and be a bit over-careful to keep the IV that we don't even use out of swap) + // Try to keep the key data out of swap (and be a bit over-careful to keep the IV that we don't even use out of swap) // Note that this does nothing about suspend-to-disk (which will put all our key data on disk) // Note as well that at no point in this program is any attempt made to prevent stealing of keys by reading the memory of the running process. mlock(&chKey[0], sizeof chKey); @@ -47,7 +47,7 @@ bool CCrypter::SetKey(const CKeyingMaterial& chNewKey, const std::vector= 1400 - // Disable confusing "helpful" text message on abort, ctrl-c + // Disable confusing "helpful" text message on abort, Ctrl-C _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT); #endif #ifndef __WXMSW__ diff --git a/src/irc.cpp b/src/irc.cpp index 76157bd034..cb9c0b7ab8 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -254,7 +254,7 @@ void ThreadIRCSeed(void* parg) void ThreadIRCSeed2(void* parg) { - /* Dont advertise on IRC if we don't allow incoming connections */ + /* Don't advertise on IRC if we don't allow incoming connections */ if (mapArgs.count("-connect") || fNoListen) return; diff --git a/src/main.cpp b/src/main.cpp index 453b0f8257..d5d4605ea1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -881,7 +881,7 @@ bool CTransaction::DisconnectInputs(CTxDB& txdb) // Remove transaction from index // This can fail if a duplicate of this transaction was in a chain that got // reorganized away. This is only possible if this transaction was completely - // spent, so erasing it would be a no-op anway. + // spent, so erasing it would be a no-op anyway. txdb.EraseTxIndex(*this); return true; @@ -1516,7 +1516,7 @@ bool CBlock::CheckBlock() const if (GetSigOpCount() > MAX_BLOCK_SIGOPS) return error("CheckBlock() : out-of-bounds SigOpCount"); - // Check merkleroot + // Check merkle root if (hashMerkleRoot != BuildMerkleTree()) return error("CheckBlock() : hashMerkleRoot mismatch"); @@ -1704,7 +1704,7 @@ FILE* AppendBlockFile(unsigned int& nFileRet) return NULL; if (fseek(file, 0, SEEK_END) != 0) return NULL; - // FAT32 filesize max 4GB, fseek and ftell max 2GB, so we must stay under 2GB + // FAT32 file size max 4GB, fseek and ftell max 2GB, so we must stay under 2GB if (ftell(file) < 0x7F000000 - MAX_SIZE) { nFileRet = nCurrentBlockFile; @@ -1798,7 +1798,7 @@ bool LoadBlockIndex(bool fAllowNew) void PrintBlockTree() { - // precompute tree structure + // pre-compute tree structure map > mapNext; for (map::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi) { @@ -1851,7 +1851,7 @@ void PrintBlockTree() PrintWallets(block); - // put the main timechain first + // put the main time-chain first vector& vNext = mapNext[pindex]; for (unsigned int i = 0; i < vNext.size(); i++) { @@ -2015,7 +2015,7 @@ bool static AlreadyHave(CTxDB& txdb, const CInv& inv) // The message start string is designed to be unlikely to occur in normal data. -// The characters are rarely used upper ascii, not valid as UTF-8, and produce +// The characters are rarely used upper ASCII, not valid as UTF-8, and produce // a large 4-byte int at any alignment. unsigned char pchMessageStart[4] = { 0xf9, 0xbe, 0xb4, 0xd9 }; @@ -2656,12 +2656,12 @@ bool ProcessMessages(CNode* pfrom) { if (strstr(e.what(), "end of data")) { - // Allow exceptions from underlength message on vRecv + // Allow exceptions from under-length message on vRecv printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught, normally caused by a message being shorter than its stated length\n", strCommand.c_str(), nMessageSize, e.what()); } else if (strstr(e.what(), "size too large")) { - // Allow exceptions from overlong size + // Allow exceptions from over-long size printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what()); } else @@ -2921,9 +2921,9 @@ unsigned int static ScanHash_CryptoPP(char* pmidstate, char* pdata, char* phash1 unsigned int& nNonce = *(unsigned int*)(pdata + 12); for (;;) { - // Crypto++ SHA-256 + // Crypto++ SHA256 // Hash pdata using pmidstate as the starting state into - // preformatted buffer phash1, then hash phash1 into phash + // pre-formatted buffer phash1, then hash phash1 into phash nNonce++; SHA256Transform(phash1, pdata, pmidstate); SHA256Transform(phash, phash1, pSHA256InitState); @@ -3148,7 +3148,7 @@ void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1) { // - // Prebuild hash buffers + // Pre-build hash buffers // struct { @@ -3270,7 +3270,7 @@ void static BitcoinMiner(CWallet *pwallet) // - // Prebuild hash buffers + // Pre-build hash buffers // char pmidstatebuf[32+16]; char* pmidstate = alignup<16>(pmidstatebuf); char pdatabuf[128+16]; char* pdata = alignup<16>(pdatabuf); @@ -3295,7 +3295,7 @@ void static BitcoinMiner(CWallet *pwallet) unsigned int nHashesDone = 0; unsigned int nNonceFound; - // Crypto++ SHA-256 + // Crypto++ SHA256 nNonceFound = ScanHash_CryptoPP(pmidstate, pdata + 64, phash1, (char*)&hash, nHashesDone); diff --git a/src/net.cpp b/src/net.cpp index 7637f8854c..d2fa111d23 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -357,7 +357,7 @@ bool GetMyExternalIP(unsigned int& ipRet) { // We should be phasing out our use of sites like these. If we need // replacements, we should ask for volunteers to put this simple - // php file on their webserver that prints the client IP: + // php file on their web server that prints the client IP: // if (nHost == 1) { @@ -680,7 +680,7 @@ CNode* ConnectNode(CAddress addrConnect, int64 nTimeout) /// debug print printf("connected %s\n", addrConnect.ToString().c_str()); - // Set to nonblocking + // Set to non-blocking #ifdef __WXMSW__ u_long nOne = 1; if (ioctlsocket(hSocket, FIONBIO, &nOne) == SOCKET_ERROR) @@ -1704,7 +1704,7 @@ bool BindListenPort(string& strError) #endif #ifdef __WXMSW__ - // Set to nonblocking, incoming connections will also inherit this + // Set to non-blocking, incoming connections will also inherit this if (ioctlsocket(hListenSocket, FIONBIO, (u_long*)&nOne) == SOCKET_ERROR) #else if (fcntl(hListenSocket, F_SETFL, O_NONBLOCK) == SOCKET_ERROR) @@ -1751,7 +1751,7 @@ void StartNode(void* parg) pnodeLocalHost = new CNode(INVALID_SOCKET, CAddress("127.0.0.1", 0, false, nLocalServices)); #ifdef __WXMSW__ - // Get local host ip + // Get local host IP char pszHostName[1000] = ""; if (gethostname(pszHostName, sizeof(pszHostName)) != SOCKET_ERROR) { @@ -1765,7 +1765,7 @@ void StartNode(void* parg) } } #else - // Get local host ip + // Get local host IP struct ifaddrs* myaddrs; if (getifaddrs(&myaddrs) == 0) { diff --git a/src/protocol.cpp b/src/protocol.cpp index 8314e2bb97..15dd0de92f 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -215,7 +215,7 @@ bool CAddress::IsRoutable() const bool CAddress::IsValid() const { - // Clean up 3-byte shifted addresses caused by garbage in size field + // Cleanup 3-byte shifted addresses caused by garbage in size field // of addr messages from versions before 0.2.9 checksum. // Two consecutive addr messages look like this: // header20 vectorlen3 addr26 addr26 addr26 header20 vectorlen3 addr26 addr26 addr26... diff --git a/src/rpc.cpp b/src/rpc.cpp index 7f90574874..c77c505572 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -1580,7 +1580,7 @@ Value getwork(const Array& params, bool fHelp) // Save mapNewBlock[pblock->hashMerkleRoot] = make_pair(pblock, pblock->vtx[0].vin[0].scriptSig); - // Prebuild hash buffers + // Pre-build hash buffers char pmidstate[32]; char pdata[128]; char phash1[64]; @@ -1744,7 +1744,7 @@ string rfc1123Time() time(&now); struct tm* now_gmt = gmtime(&now); string locale(setlocale(LC_TIME, NULL)); - setlocale(LC_TIME, "C"); // we want posix (aka "C") weekday/month strings + setlocale(LC_TIME, "C"); // we want POSIX (aka "C") weekday/month strings strftime(buffer, sizeof(buffer), "%a, %d %b %Y %H:%M:%S +0000", now_gmt); setlocale(LC_TIME, locale.c_str()); return string(buffer); @@ -2421,7 +2421,7 @@ int CommandLineRPC(int argc, char *argv[]) int main(int argc, char *argv[]) { #ifdef _MSC_VER - // Turn off microsoft heap dump noise + // Turn off Microsoft heap dump noise _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE); _CrtSetReportFile(_CRT_WARN, CreateFile("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0)); #endif diff --git a/src/script.cpp b/src/script.cpp index e7664d2cfc..dd53f903dc 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -904,7 +904,7 @@ uint256 SignatureHash(CScript scriptCode, const CTransaction& txTo, unsigned int } else if ((nHashType & 0x1f) == SIGHASH_SINGLE) { - // Only lockin the txout payee at same index as txin + // Only lock-in the txout payee at same index as txin unsigned int nOut = nIn; if (nOut >= txTmp.vout.size()) { diff --git a/src/wallet.cpp b/src/wallet.cpp index 8fe77119ee..38d2b64a17 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -628,7 +628,7 @@ void CWallet::ReacceptWalletTransactions() } else { - // Reaccept any txes of ours that aren't already in a block + // Re-accept any txes of ours that aren't already in a block if (!wtx.IsCoinBase()) wtx.AcceptWalletTransaction(txdb, false); } @@ -637,7 +637,7 @@ void CWallet::ReacceptWalletTransactions() { // TODO: optimize this to scan just part of the block chain? if (ScanForWalletTransactions(pindexGenesisBlock)) - fRepeat = true; // Found missing transactions: re-do Reaccept. + fRepeat = true; // Found missing transactions: re-do re-accept. } } } -- cgit v1.2.3 From 982f4fd301435e56bb959267a8f69ff793b10e26 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 26 Jul 2012 00:48:39 +0000 Subject: Bugfix: Fix a variety of misspellings --- src/bitcoinrpc.cpp | 2 +- src/init.cpp | 2 +- src/key.h | 2 +- src/keystore.h | 2 +- src/net.h | 2 +- src/qt/askpassphrasedialog.cpp | 2 +- src/qt/bitcoinaddressvalidator.cpp | 4 ++-- src/qt/bitcoinamountfield.h | 2 +- src/qt/bitcoingui.cpp | 4 ++-- src/qt/bitcoingui.h | 4 ++-- src/qt/bitcoinunits.h | 6 +++--- src/qt/guiutil.cpp | 2 +- src/qt/guiutil.h | 2 +- src/qt/notificator.cpp | 4 ++-- src/qt/notificator.h | 2 +- src/qt/transactionfilterproxy.h | 2 +- src/qt/transactionview.cpp | 2 +- src/test/DoS_tests.cpp | 2 +- 18 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 4c0edb4e89..efc69a4e43 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -2243,7 +2243,7 @@ void ThreadRPCServer2(void* parg) } catch(boost::system::system_error &e) { - ThreadSafeMessageBox(strprintf(_("An error occured while setting up the RPC port %i for listening: %s"), endpoint.port(), e.what()), + ThreadSafeMessageBox(strprintf(_("An error occurred while setting up the RPC port %i for listening: %s"), endpoint.port(), e.what()), _("Error"), wxOK | wxMODAL); StartShutdown(); return; diff --git a/src/init.cpp b/src/init.cpp index 31e2ce6bde..172e66a27a 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -78,7 +78,7 @@ void Shutdown(void* parg) printf("Bitcoin exiting\n\n"); fExit = true; #ifndef QT_GUI - // ensure non UI client get's exited here, but let Bitcoin-Qt reach return 0; in bitcoin.cpp + // ensure non-UI client get's exited here, but let Bitcoin-Qt reach return 0; in bitcoin.cpp exit(0); #endif } diff --git a/src/key.h b/src/key.h index 4dc4914bdc..eb54c3e98f 100644 --- a/src/key.h +++ b/src/key.h @@ -78,7 +78,7 @@ err: // Perform ECDSA key recovery (see SEC1 4.1.6) for curves over (mod p)-fields // recid selects which key is recovered -// if check is nonzero, additional checks are performed +// if check is non-zero, additional checks are performed int static inline ECDSA_SIG_recover_key_GFp(EC_KEY *eckey, ECDSA_SIG *ecsig, const unsigned char *msg, int msglen, int recid, int check) { if (!eckey) return 0; diff --git a/src/keystore.h b/src/keystore.h index 87c84010d8..027c98a54d 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -23,7 +23,7 @@ public: virtual bool HaveKey(const CBitcoinAddress &address) const =0; // Retrieve a key corresponding to a given address from the store. - // Return true if succesful. + // Return true if successful. virtual bool GetKey(const CBitcoinAddress &address, CKey& keyOut) const =0; // Retrieve only the public key corresponding to a given address. diff --git a/src/net.h b/src/net.h index 96e3680d38..622c02c325 100644 --- a/src/net.h +++ b/src/net.h @@ -125,7 +125,7 @@ protected: int nRefCount; // Denial-of-service detection/prevention - // Key is ip address, value is banned-until-time + // Key is IP address, value is banned-until-time static std::map setBanned; static CCriticalSection cs_setBanned; int nMisbehavior; diff --git a/src/qt/askpassphrasedialog.cpp b/src/qt/askpassphrasedialog.cpp index e96f41941c..2126edf0b2 100644 --- a/src/qt/askpassphrasedialog.cpp +++ b/src/qt/askpassphrasedialog.cpp @@ -178,7 +178,7 @@ void AskPassphraseDialog::accept() void AskPassphraseDialog::textChanged() { - // Validate input, set Ok button to enabled when accepable + // Validate input, set Ok button to enabled when acceptable bool acceptable = false; switch(mode) { diff --git a/src/qt/bitcoinaddressvalidator.cpp b/src/qt/bitcoinaddressvalidator.cpp index c804ad0d57..f1cc2aaa27 100644 --- a/src/qt/bitcoinaddressvalidator.cpp +++ b/src/qt/bitcoinaddressvalidator.cpp @@ -5,8 +5,8 @@ This is: - All numbers except for '0' - - All uppercase letters except for 'I' and 'O' - - All lowercase letters except for 'l' + - All upper-case letters except for 'I' and 'O' + - All lower-case letters except for 'l' User friendly Base58 input can map - 'l' and 'I' to '1' diff --git a/src/qt/bitcoinamountfield.h b/src/qt/bitcoinamountfield.h index ead8bdb84b..ca4a888e4e 100644 --- a/src/qt/bitcoinamountfield.h +++ b/src/qt/bitcoinamountfield.h @@ -40,7 +40,7 @@ signals: void textChanged(); protected: - /** Intercept focus-in event and ',' keypresses */ + /** Intercept focus-in event and ',' key presses */ bool eventFilter(QObject *object, QEvent *event); private: diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index c36dd216d4..f8e7517431 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -150,7 +150,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): // Clicking on a transaction on the overview page simply sends you to transaction history page connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), this, SLOT(gotoHistoryPage())); - // Doubleclicking on a transaction on the transaction history page shows details + // Double-clicking on a transaction on the transaction history page shows details connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails())); gotoOverviewPage(); @@ -335,7 +335,7 @@ void BitcoinGUI::setWalletModel(WalletModel *walletModel) setEncryptionStatus(walletModel->getEncryptionStatus()); connect(walletModel, SIGNAL(encryptionStatusChanged(int)), this, SLOT(setEncryptionStatus(int))); - // Balloon popup for new transaction + // Balloon pop-up for new transaction connect(walletModel->getTransactionTableModel(), SIGNAL(rowsInserted(QModelIndex,int,int)), this, SLOT(incomingTransaction(QModelIndex,int,int))); diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 0fcb72a3ee..313aa06c58 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -92,7 +92,7 @@ private: /** Create the main UI actions. */ void createActions(); - /** Create the menu bar and submenus. */ + /** Create the menu bar and sub-menus. */ void createMenuBar(); /** Create the toolbars */ void createToolBars(); @@ -153,7 +153,7 @@ private slots: void encryptWallet(bool status); /** Change encrypted wallet passphrase */ void changePassphrase(); - /** Ask for pass phrase to unlock wallet temporarily */ + /** Ask for passphrase to unlock wallet temporarily */ void unlockWallet(); }; diff --git a/src/qt/bitcoinunits.h b/src/qt/bitcoinunits.h index 18fa36a0b7..9b7c9e160e 100644 --- a/src/qt/bitcoinunits.h +++ b/src/qt/bitcoinunits.h @@ -5,7 +5,7 @@ #include /** Bitcoin unit definitions. Encapsulates parsing and formatting - and serves as list model for dropdown selection boxes. + and serves as list model for drop-down selection boxes. */ class BitcoinUnits: public QAbstractListModel { @@ -26,7 +26,7 @@ public: //! Unit conversion and formatting ///@{ - //! Get list of units, for dropdown box + //! Get list of units, for drop-down box static QList availableUnits(); //! Is unit ID valid? static bool valid(int unit); @@ -49,7 +49,7 @@ public: ///@} //! @name AbstractListModel implementation - //! List model for unit dropdown selection box. + //! List model for unit drop-down selection box. ///@{ enum RoleIndex { /** Unit identifier */ diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index f5e6e0a545..eeba74b175 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -80,7 +80,7 @@ bool GUIUtil::parseBitcoinURI(QString uri, SendCoinsRecipient *out) // Convert bitcoin:// to bitcoin: // // Cannot handle this later, because bitcoin:// will cause Qt to see the part after // as host, - // which will lowercase it (and thus invalidate the address). + // which will lower-case it (and thus invalidate the address). if(uri.startsWith("bitcoin://")) { uri.replace(0, 10, "bitcoin:"); diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index ef57e017b4..703156bc43 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -33,7 +33,7 @@ public: static bool parseBitcoinURI(const QUrl *, SendCoinsRecipient *out); static bool parseBitcoinURI(QString uri, SendCoinsRecipient *out); - /** Get save file name, mimics QFileDialog::getSaveFileName, except that it appends a default suffix + /** Get save filename, mimics QFileDialog::getSaveFileName, except that it appends a default suffix when no suffix is provided by the user. @param[in] parent Parent window (or 0) diff --git a/src/qt/notificator.cpp b/src/qt/notificator.cpp index e668079536..c1c177dbfe 100644 --- a/src/qt/notificator.cpp +++ b/src/qt/notificator.cpp @@ -82,7 +82,7 @@ public: static int metaType(); - // Image to variant that can be marshaled over DBus + // Image to variant that can be marshalled over DBus static QVariant toVariant(const QImage &img); private: @@ -294,7 +294,7 @@ void Notificator::notify(Class cls, const QString &title, const QString &text, c default: if(cls == Critical) { - // Fall back to old fashioned popup dialog if critical and no other notification available + // Fall back to old fashioned pop-up dialog if critical and no other notification available QMessageBox::critical(parent, title, text, QMessageBox::Ok, QMessageBox::Ok); } break; diff --git a/src/qt/notificator.h b/src/qt/notificator.h index 0271c26f48..8abc0b2ec2 100644 --- a/src/qt/notificator.h +++ b/src/qt/notificator.h @@ -27,7 +27,7 @@ public: { Information, /**< Informational message */ Warning, /**< Notify user of potential problem */ - Critical /**< An error occured */ + Critical /**< An error occurred */ }; public slots: diff --git a/src/qt/transactionfilterproxy.h b/src/qt/transactionfilterproxy.h index 8d6829d6f0..30b98588f0 100644 --- a/src/qt/transactionfilterproxy.h +++ b/src/qt/transactionfilterproxy.h @@ -23,7 +23,7 @@ public: void setDateRange(const QDateTime &from, const QDateTime &to); void setAddressPrefix(const QString &addrPrefix); /** - @note Type filter takes a bitfield created with TYPE() or ALL_TYPES + @note Type filter takes a bit field created with TYPE() or ALL_TYPES */ void setTypeFilter(quint32 modes); void setMinAmount(qint64 minimum); diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index b5b3792f8e..5f53241662 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -205,7 +205,7 @@ void TransactionView::chooseDate(int idx) TransactionFilterProxy::MAX_DATE); break; case ThisWeek: { - // Find last monday + // Find last Monday QDate startOfWeek = current.addDays(-(current.dayOfWeek()-1)); transactionProxyModel->setDateRange( QDateTime(startOfWeek), diff --git a/src/test/DoS_tests.cpp b/src/test/DoS_tests.cpp index 01e6691254..b395326711 100644 --- a/src/test/DoS_tests.cpp +++ b/src/test/DoS_tests.cpp @@ -20,7 +20,7 @@ BOOST_AUTO_TEST_CASE(DoS_banning) CNode dummyNode1(INVALID_SOCKET, addr1, true); dummyNode1.Misbehaving(100); // Should get banned BOOST_CHECK(CNode::IsBanned(addr1.ip)); - BOOST_CHECK(!CNode::IsBanned(addr1.ip|0x0000ff00)); // Different ip, not banned + BOOST_CHECK(!CNode::IsBanned(addr1.ip|0x0000ff00)); // Different IP, not banned CAddress addr2(0xa0b0c002); CNode dummyNode2(INVALID_SOCKET, addr2, true); -- cgit v1.2.3 From 3171daef6c106023a5fcbc80e66c0e0a9552c4d8 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 26 Jul 2012 00:48:39 +0000 Subject: Bugfix: Fix a variety of misspellings --- src/addrman.h | 2 +- src/main.cpp | 2 +- src/netbase.cpp | 2 +- src/netbase.h | 4 ++-- src/qt/bitcoin.cpp | 2 +- src/script.cpp | 4 ++-- src/test/script_P2SH_tests.cpp | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/addrman.h b/src/addrman.h index e89fbba9f1..1ccde82361 100644 --- a/src/addrman.h +++ b/src/addrman.h @@ -116,7 +116,7 @@ public: // * Bucket selection is based on cryptographic hashing, using a randomly-generated 256-bit key, which should not // be observable by adversaries. // * Several indexes are kept for high performance. Defining DEBUG_ADDRMAN will introduce frequent (and expensive) -// consistency checks for the entire datastructure. +// consistency checks for the entire data structure. // total number of buckets for tried addresses #define ADDRMAN_TRIED_BUCKET_COUNT 64 diff --git a/src/main.cpp b/src/main.cpp index 4bd63bb26b..ac26fd7ff6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1565,7 +1565,7 @@ bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew) return error("SetBestChain() : Reorganize failed"); } - // Connect futher blocks + // Connect further blocks BOOST_REVERSE_FOREACH(CBlockIndex *pindex, vpindexSecondary) { CBlock block; diff --git a/src/netbase.cpp b/src/netbase.cpp index 2f2457ade6..84038ffb45 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -549,7 +549,7 @@ std::vector CNetAddr::GetGroup() const nClass = 1; nStartByte = 2; } - // for Teredo-tunneled IPv6 addresses, use the encapsulated IPv4 address + // for Teredo-tunnelled IPv6 addresses, use the encapsulated IPv4 address else if (IsRFC4380()) { vchRet.push_back(1); diff --git a/src/netbase.h b/src/netbase.h index 24e94f2a2d..2543a02248 100644 --- a/src/netbase.h +++ b/src/netbase.h @@ -45,9 +45,9 @@ class CNetAddr bool IsRFC1918() const; // IPv4 private networks (10.0.0.0/8, 192.168.0.0/16, 172.16.0.0/12) bool IsRFC3849() const; // IPv6 documentation address (2001:0DB8::/32) bool IsRFC3927() const; // IPv4 autoconfig (169.254.0.0/16) - bool IsRFC3964() const; // IPv6 6to4 tunneling (2002::/16) + bool IsRFC3964() const; // IPv6 6to4 tunnelling (2002::/16) bool IsRFC4193() const; // IPv6 unique local (FC00::/15) - bool IsRFC4380() const; // IPv6 Teredo tunneling (2001::/32) + bool IsRFC4380() const; // IPv6 Teredo tunnelling (2001::/32) bool IsRFC4843() const; // IPv6 ORCHID (2001:10::/28) bool IsRFC4862() const; // IPv6 autoconfig (FE80::/64) bool IsRFC6052() const; // IPv6 well-known prefix (64:FF9B::/96) diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index ddf7aa95a5..d08e8d6aa0 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -269,7 +269,7 @@ int main(int argc, char *argv[]) window.show(); } - // Place this here as guiref has to be defined if we dont want to lose URIs + // Place this here as guiref has to be defined if we don't want to lose URIs ipcInit(); #if !defined(MAC_OSX) && !defined(WIN32) diff --git a/src/script.cpp b/src/script.cpp index 6a5f3f78e7..1fc53440d9 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -1195,7 +1195,7 @@ bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, vector& multisigdata, const CKeyStore& keystore, uint2 // Sign scriptPubKey with private keys stored in keystore, given transaction hash and hash type. // Signatures are returned in scriptSigRet (or returns false if scriptPubKey can't be signed), // unless whichTypeRet is TX_SCRIPTHASH, in which case scriptSigRet is the redemption script. -// Returns false if scriptPubKey could not be completely satisified. +// Returns false if scriptPubKey could not be completely satisfied. // bool Solver(const CKeyStore& keystore, const CScript& scriptPubKey, uint256 hash, int nHashType, CScript& scriptSigRet, txnouttype& whichTypeRet) diff --git a/src/test/script_P2SH_tests.cpp b/src/test/script_P2SH_tests.cpp index aa72c00092..b84b903721 100644 --- a/src/test/script_P2SH_tests.cpp +++ b/src/test/script_P2SH_tests.cpp @@ -130,7 +130,7 @@ BOOST_AUTO_TEST_CASE(norecurse) // Should not verify, because it will try to execute OP_INVALIDOPCODE BOOST_CHECK(!Verify(scriptSig, p2sh, true)); - // Try to recurse, and verification should succeed because + // Try to recur, and verification should succeed because // the inner HASH160 <> EQUAL should only check the hash: CScript p2sh2; p2sh2.SetPayToScriptHash(p2sh); @@ -225,7 +225,7 @@ BOOST_AUTO_TEST_CASE(is) BOOST_AUTO_TEST_CASE(switchover) { - // Test switchover code + // Test switch over code CScript notValid; notValid << OP_11 << OP_12 << OP_EQUALVERIFY; CScript scriptSig; -- cgit v1.2.3 From 50bbdd4a1d2d5fff8e8360aa6583154f2cc6cfaf Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 26 Jul 2012 00:48:39 +0000 Subject: Bugfix: Fix a variety of misspellings --- src/netbase.cpp | 2 +- src/util.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/netbase.cpp b/src/netbase.cpp index 84038ffb45..f790f1a5de 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -543,7 +543,7 @@ std::vector CNetAddr::GetGroup() const nClass = 1; nStartByte = 12; } - // for 6to4 tunneled addresses, use the encapsulated IPv4 address + // for 6to4 tunnelled addresses, use the encapsulated IPv4 address else if (IsRFC3964()) { nClass = 1; diff --git a/src/util.h b/src/util.h index 77334da7c8..cfc1a620cb 100644 --- a/src/util.h +++ b/src/util.h @@ -12,7 +12,7 @@ #include #include #else -typedef int pid_t; /* define for windows compatiblity */ +typedef int pid_t; /* define for windows compatibility */ #endif #include #include -- cgit v1.2.3 From 8911ac0b27510914efbfed80ddfb7f19757ac102 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 26 Jul 2012 03:12:12 +0000 Subject: Bugfix: Use standard BTC unit in comments --- src/main.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.h b/src/main.h index 7aa660dba7..4edea5ed46 100644 --- a/src/main.h +++ b/src/main.h @@ -558,7 +558,7 @@ public: if (nBlockSize == 1) { // Transactions under 10K are free - // (about 4500bc if made of 50bc inputs) + // (about 4500 BTC if made of 50 BTC inputs) if (nBytes < 10000) nMinFee = 0; } -- cgit v1.2.3 From 448f6b3d9b6d598f6a3db7807934d10fe94d5a71 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 26 Jul 2012 03:25:26 +0000 Subject: Bugfix: Correct English grammar regarding "'s" --- doc/unit-tests.txt | 4 ++-- src/main.cpp | 6 +++--- src/script.cpp | 2 +- src/util.cpp | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/unit-tests.txt b/doc/unit-tests.txt index 671ec3e719..9bc4cfa44b 100644 --- a/doc/unit-tests.txt +++ b/doc/unit-tests.txt @@ -12,7 +12,7 @@ make -f makefile.unix test_bitcoin # Replace makefile.unix if you're not on uni If all tests succeed the last line of output will be: *** No errors detected -To add more tests, add BOOST_AUTO_TEST_CASE's to the existing +To add more tests, add BOOST_AUTO_TEST_CASE functions to the existing .cpp files in the test/ directory or add new .cpp files that -implement new BOOST_AUTO_TEST_SUITE's (and add them to the +implement new BOOST_AUTO_TEST_SUITE sections (and add them to the list of includes in test_bitcoin.cpp). diff --git a/src/main.cpp b/src/main.cpp index d5d4605ea1..ef59d31f9a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -462,7 +462,7 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi // Continuously rate-limit free transactions // This mitigates 'penny-flooding' -- sending thousands of free transactions just to - // be annoying or make other's transactions take longer to confirm. + // be annoying or make others' transactions take longer to confirm. if (nFees < MIN_RELAY_TX_FEE) { static CCriticalSection cs; @@ -944,7 +944,7 @@ bool CTransaction::FetchInputs(CTxDB& txdb, const map& mapTes } } - // Make sure all prevout.n's are valid: + // Make sure all prevout.n indexes are valid: for (unsigned int i = 0; i < vin.size(); i++) { const COutPoint prevout = vin[i].prevout; @@ -1172,7 +1172,7 @@ bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex) // being sent to another address. // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information. // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool - // already refuses previously-known transaction id's entirely. + // already refuses previously-known transaction ids entirely. // This rule applies to all blocks whose timestamp is after March 15, 2012, 0:00 UTC. // On testnet it is enabled as of februari 20, 2012, 0:00 UTC. if (pindex->nTime > 1331769600 || (fTestNet && pindex->nTime > 1329696000)) diff --git a/src/script.cpp b/src/script.cpp index dd53f903dc..d8b24944b0 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -1268,7 +1268,7 @@ int CScript::GetSigOpCount(const CScript& scriptSig) const return 0; } - /// ... and return it's opcount: + /// ... and return its opcount: CScript subscript(data.begin(), data.end()); return subscript.GetSigOpCount(true); } diff --git a/src/util.cpp b/src/util.cpp index fb3bc64cc8..49415fc3b7 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -354,7 +354,7 @@ string FormatMoney(int64 n, bool fPlus) int64 remainder = n_abs%COIN; string str = strprintf("%"PRI64d".%08"PRI64d, quotient, remainder); - // Right-trim excess 0's before the decimal point: + // Right-trim excess zeros before the decimal point: int nTrim = 0; for (int i = str.size()-1; (str[i] == '0' && isdigit(str[i-2])); --i) ++nTrim; -- cgit v1.2.3 From 566f556c40069ed06c8b734433a2859f4917d242 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 26 Jul 2012 03:25:26 +0000 Subject: Bugfix: Correct English grammar regarding "'s" --- doc/Doxyfile | 2 +- src/init.cpp | 2 +- src/qt/bitcoin.cpp | 2 +- src/qt/bitcoinunits.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/Doxyfile b/doc/Doxyfile index 08d4f8c37f..c32d0f8959 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -203,7 +203,7 @@ TAB_SIZE = 8 # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". -# You can put \n's in the value part of an alias to insert newlines. +# You can put \n in the value part of an alias to insert newlines. ALIASES = diff --git a/src/init.cpp b/src/init.cpp index 172e66a27a..4d016956e6 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -78,7 +78,7 @@ void Shutdown(void* parg) printf("Bitcoin exiting\n\n"); fExit = true; #ifndef QT_GUI - // ensure non-UI client get's exited here, but let Bitcoin-Qt reach return 0; in bitcoin.cpp + // ensure non-UI client gets exited here, but let Bitcoin-Qt reach 'return 0;' in bitcoin.cpp exit(0); #endif } diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 6debec703a..debd280509 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -213,7 +213,7 @@ int main(int argc, char *argv[]) window.hide(); guiref = 0; } - // Shutdown the core and it's threads, but don't exit Bitcoin-Qt here + // Shutdown the core and its threads, but don't exit Bitcoin-Qt here Shutdown(NULL); } else diff --git a/src/qt/bitcoinunits.cpp b/src/qt/bitcoinunits.cpp index 9a9a4890dc..d4715abaec 100644 --- a/src/qt/bitcoinunits.cpp +++ b/src/qt/bitcoinunits.cpp @@ -99,7 +99,7 @@ QString BitcoinUnits::format(int unit, qint64 n, bool fPlus) QString quotient_str = QString::number(quotient); QString remainder_str = QString::number(remainder).rightJustified(num_decimals, '0'); - // Right-trim excess 0's after the decimal point + // Right-trim excess zeros after the decimal point int nTrim = 0; for (int i = remainder_str.size()-1; i>=2 && (remainder_str.at(i) == '0'); --i) ++nTrim; -- cgit v1.2.3 From 06f4e3367758dc6884af1bf44e9ccac8f1bdb9f7 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 26 Jul 2012 03:25:26 +0000 Subject: Bugfix: Correct English grammar regarding "'s" --- src/addrman.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/addrman.h b/src/addrman.h index 1ccde82361..5d1606698b 100644 --- a/src/addrman.h +++ b/src/addrman.h @@ -173,13 +173,13 @@ private: // last used nId int nIdCount; - // table with information about all nId's + // table with information about all nIds std::map mapInfo; // find an nId based on its network address std::map mapAddr; - // randomly-ordered vector of all nId's + // randomly-ordered vector of all nIds std::vector vRandom; // number of "tried" entries @@ -252,8 +252,8 @@ public: // * nNew // * nTried // * number of "new" buckets - // * all nNew addrinfo's in vvNew - // * all nTried addrinfo's in vvTried + // * all nNew addrinfos in vvNew + // * all nTried addrinfos in vvTried // * for each bucket: // * number of elements // * for each element: index -- cgit v1.2.3 From 1a85c0f5060ae4eeaa5d99be1d999f9505f8306b Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 26 Jul 2012 03:25:26 +0000 Subject: Bugfix: Correct English grammar regarding "'s" --- src/qt/bitcoingui.cpp | 2 +- src/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 3aa67bca5f..83e32e0d74 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -474,7 +474,7 @@ void BitcoinGUI::setNumConnections(int count) void BitcoinGUI::setNumBlocks(int count) { - // don't show / hide progressBar and it's label if we have no connection(s) to the network + // don't show / hide progressBar and its label if we have no connection(s) to the network if (!clientModel || clientModel->getNumConnections() == 0) { progressBarLabel->setVisible(false); diff --git a/src/version.h b/src/version.h index 9718e75afb..877d40213d 100644 --- a/src/version.h +++ b/src/version.h @@ -10,7 +10,7 @@ // client versioning // -// These need to be macro's, as version.cpp's voodoo requires it +// These need to be macros, as version.cpp's voodoo requires it #define CLIENT_VERSION_MAJOR 0 #define CLIENT_VERSION_MINOR 6 #define CLIENT_VERSION_REVISION 3 -- cgit v1.2.3 From 08344c735feddc8d6cbeb63b18f3fc1fd4544170 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Thu, 2 Aug 2012 10:09:29 +0200 Subject: fix further spelling errors / remove a tab in the source --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index 4d016956e6..b3c49f3a63 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -256,7 +256,7 @@ bool AppInit2(int argc, char* argv[]) // Remove tabs strUsage.erase(std::remove(strUsage.begin(), strUsage.end(), '\t'), strUsage.end()); #if defined(QT_GUI) && defined(WIN32) - // On windows, show a message box, as there is no stderr + // On Windows, show a message box, as there is no stderr wxMessageBox(strUsage, "Usage"); #else fprintf(stderr, "%s", strUsage.c_str()); -- cgit v1.2.3 From d3bde4126c7cc3509aae7b1c7dd34647bd2c6ff1 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Thu, 2 Aug 2012 10:09:29 +0200 Subject: fix further spelling errors / remove a tab in the source --- src/init.cpp | 2 +- src/util.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index 7bea45bbad..6b96fc6c94 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -255,7 +255,7 @@ bool AppInit2(int argc, char* argv[]) // Remove tabs strUsage.erase(std::remove(strUsage.begin(), strUsage.end(), '\t'), strUsage.end()); #if defined(QT_GUI) && defined(WIN32) - // On windows, show a message box, as there is no stderr + // On Windows, show a message box, as there is no stderr ThreadSafeMessageBox(strUsage, _("Usage"), wxOK | wxMODAL); #else fprintf(stderr, "%s", strUsage.c_str()); diff --git a/src/util.h b/src/util.h index cfc1a620cb..a19387f7e7 100644 --- a/src/util.h +++ b/src/util.h @@ -12,7 +12,7 @@ #include #include #else -typedef int pid_t; /* define for windows compatibility */ +typedef int pid_t; /* define for Windows compatibility */ #endif #include #include -- cgit v1.2.3 From 4e56a62f720282a083b2f8481b8250453dfc739f Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Mon, 6 Aug 2012 21:52:44 +0200 Subject: Return !0 when qt tests fail. --- src/qt/test/test_main.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/qt/test/test_main.cpp b/src/qt/test/test_main.cpp index 5b11e39ea3..af2d358fc4 100644 --- a/src/qt/test/test_main.cpp +++ b/src/qt/test/test_main.cpp @@ -6,6 +6,11 @@ // This is all you need to run all the tests int main(int argc, char *argv[]) { + bool fInvalid = false; + URITests test1; - QTest::qExec(&test1); + if (QTest::qExec(&test1) != 0) + fInvalid = true; + + return fInvalid; } -- cgit v1.2.3 From 94db8f97d4a2d9bc8e1f90867630b624367d5b4b Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 7 Aug 2012 16:43:58 +0200 Subject: Fix Win32 compiling of qt/test/uritests.cpp --- src/qt/test/uritests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/test/uritests.cpp b/src/qt/test/uritests.cpp index a281c39ca5..4662f5ed31 100644 --- a/src/qt/test/uritests.cpp +++ b/src/qt/test/uritests.cpp @@ -47,7 +47,7 @@ void URITests::uriTests() uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=100&label=Wikipedia Example")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); - QVERIFY(rv.amount == 10000000000); + QVERIFY(rv.amount == 10000000000LL); QVERIFY(rv.label == QString("Wikipedia Example")); uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?message=Wikipedia Example Address")); -- cgit v1.2.3 From 82b06469889cd63488c2867a32c3e20ab8584bc0 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 7 Aug 2012 22:55:07 +0200 Subject: Fix test_bitcoin build in makefile.linux-mingw --- src/makefile.linux-mingw | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 960716c147..5f0bdf67e9 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -7,11 +7,12 @@ DEPSDIR:=/usr/i586-mingw32msvc USE_UPNP:=0 INCLUDEPATHS= \ + -I"$(CURDIR)" \ + -I"$(CURDIR)"/obj \ -I"$(DEPSDIR)/boost_1_47_0" \ -I"$(DEPSDIR)/db-4.8.30.NC/build_unix" \ -I"$(DEPSDIR)/openssl-1.0.1b/include" \ - -I"$(DEPSDIR)" \ - -I"$(CURDIR)"/obj \ + -I"$(DEPSDIR)" LIBPATHS= \ -L"$(DEPSDIR)/boost_1_47_0/stage/lib" \ @@ -85,7 +86,7 @@ obj-test/%.o: test/%.cpp $(HEADERS) i586-mingw32msvc-g++ -c $(TESTDEFS) $(CFLAGS) -o $@ $< test_bitcoin.exe: $(TESTOBJS) $(filter-out obj/init.o,$(OBJS:obj/%=obj/%)) - i586-mingw32msvc-g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ -lboost_unit_test_framework $(LIBS) + i586-mingw32msvc-g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ -lboost_unit_test_framework-mt-s $(LIBS) clean: -- cgit v1.2.3 From f51b175e3c9f7326267ca0eef0dd8ae2f28b4fad Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Fri, 17 Aug 2012 10:35:51 +0200 Subject: fix a compiler sign warning in OpenBlockFile() --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index ef59d31f9a..9e1b228b2a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1705,7 +1705,7 @@ FILE* AppendBlockFile(unsigned int& nFileRet) if (fseek(file, 0, SEEK_END) != 0) return NULL; // FAT32 file size max 4GB, fseek and ftell max 2GB, so we must stay under 2GB - if (ftell(file) < 0x7F000000 - MAX_SIZE) + if (ftell(file) < (long)(0x7F000000 - MAX_SIZE)) { nFileRet = nCurrentBlockFile; return file; -- cgit v1.2.3 From 5ebc1680062f6e6fc6352c4c8ccb1f746f6a280e Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 8 Jun 2012 16:36:40 +0000 Subject: Bugfix: Make USE_UPNP=- work with makefile.{linux-mingw,mingw,osx} too --- src/makefile.linux-mingw | 5 ++++- src/makefile.mingw | 5 ++++- src/makefile.osx | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index fa46d080bb..41dbf2a9fc 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -53,7 +53,10 @@ HEADERS = \ wallet.h -ifdef USE_UPNP +ifndef USE_UPNP + override USE_UPNP = - +endif +ifneq (${USE_UPNP}, -) LIBPATHS += -L"$(DEPSDIR)/miniupnpc" LIBS += -l miniupnpc -l iphlpapi DEFS += -DSTATICLIB -DUSE_UPNP=$(USE_UPNP) diff --git a/src/makefile.mingw b/src/makefile.mingw index 5e9a4427f1..75d3992f8a 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -49,7 +49,10 @@ HEADERS = \ util.h \ wallet.h -ifdef USE_UPNP +ifndef USE_UPNP + override USE_UPNP = - +endif +ifneq (${USE_UPNP}, -) INCLUDEPATHS += -I"C:\miniupnpc-1.6-mgw" LIBPATHS += -L"C:\miniupnpc-1.6-mgw" LIBS += -l miniupnpc -l iphlpapi diff --git a/src/makefile.osx b/src/makefile.osx index cbd51b049f..5e9236fd73 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -91,7 +91,10 @@ OBJS= \ obj/util.o \ obj/wallet.o -ifdef USE_UPNP +ifndef USE_UPNP + override USE_UPNP = - +endif +ifneq (${USE_UPNP}, -) DEFS += -DUSE_UPNP=$(USE_UPNP) ifdef STATIC LIBS += $(DEPSDIR)/lib/libminiupnpc.a -- cgit v1.2.3 From a259baa9557af63cca220802ee45be4f4b54ac90 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sun, 13 May 2012 15:41:00 +0200 Subject: update some strings used as warning messages in sendcoinsdialog.cpp --- src/qt/sendcoinsdialog.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index b27efc24b7..2a2c6062fa 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -125,28 +125,28 @@ void SendCoinsDialog::on_sendButton_clicked() break; case WalletModel::AmountExceedsBalance: QMessageBox::warning(this, tr("Send Coins"), - tr("Amount exceeds your balance"), + tr("The amount exceeds your balance."), QMessageBox::Ok, QMessageBox::Ok); break; case WalletModel::AmountWithFeeExceedsBalance: QMessageBox::warning(this, tr("Send Coins"), - tr("Total exceeds your balance when the %1 transaction fee is included"). + tr("The total exceeds your balance when the %1 transaction fee is included."). arg(BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, sendstatus.fee)), QMessageBox::Ok, QMessageBox::Ok); break; case WalletModel::DuplicateAddress: QMessageBox::warning(this, tr("Send Coins"), - tr("Duplicate address found, can only send to each address once in one send operation"), + 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"), - tr("Error: Transaction creation failed "), + 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."), + 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::Ok, QMessageBox::Ok); break; case WalletModel::Aborted: // User aborted, nothing to do -- cgit v1.2.3 From b958999af17473300e5b3cd26bd16997e21dd644 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 3 Jul 2012 17:30:43 +0200 Subject: Work around a distcc bug where -MMD output isn't copied. --- src/makefile.osx | 4 ++-- src/makefile.unix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/makefile.osx b/src/makefile.osx index 5e9236fd73..449ff89748 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -111,7 +111,7 @@ all: bitcoind -include obj-test/*.P obj/nogui/%.o: %.cpp - $(CXX) -c $(CFLAGS) -MMD -o $@ $< + $(CXX) -c $(CFLAGS) -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); \ @@ -121,7 +121,7 @@ bitcoind: $(OBJS:obj/%=obj/nogui/%) $(CXX) $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS) obj/test/%.o: test/%.cpp - $(CXX) -c $(TESTDEFS) $(CFLAGS) -MMD -o $@ $< + $(CXX) -c $(TESTDEFS) $(CFLAGS) -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); \ diff --git a/src/makefile.unix b/src/makefile.unix index e75dda514f..a6492f5361 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -132,7 +132,7 @@ all: bitcoind -include obj-test/*.P obj/nogui/%.o: %.cpp - $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $< + $(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); \ @@ -142,7 +142,7 @@ bitcoind: $(OBJS:obj/%=obj/nogui/%) $(CXX) $(xCXXFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS) obj-test/%.o: test/%.cpp - $(CXX) -c $(TESTDEFS) $(xCXXFLAGS) -MMD -o $@ $< + $(CXX) -c $(TESTDEFS) $(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); \ -- cgit v1.2.3 From d710ed5b637ab8a4fca433b9b6d331c1e4b97908 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 27 Jun 2012 12:43:19 -0400 Subject: Add CBlock::CURRENT_VERSION and CTransaction::CURRENT_VERSION constants. Partial of upstream dae3e10a5abe93833c57183b7c00f1db9200f46e --- src/main.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main.h b/src/main.h index 4edea5ed46..8f9e07f7a8 100644 --- a/src/main.h +++ b/src/main.h @@ -396,6 +396,7 @@ typedef std::map > MapPrevTx; class CTransaction { public: + static const int CURRENT_VERSION=1; int nVersion; std::vector vin; std::vector vout; @@ -418,7 +419,7 @@ public: void SetNull() { - nVersion = 1; + nVersion = CTransaction::CURRENT_VERSION; vin.clear(); vout.clear(); nLockTime = 0; @@ -830,6 +831,7 @@ class CBlock { public: // header + static const int CURRENT_VERSION=1; int nVersion; uint256 hashPrevBlock; uint256 hashMerkleRoot; @@ -868,7 +870,7 @@ public: void SetNull() { - nVersion = 1; + nVersion = CBlock::CURRENT_VERSION; hashPrevBlock = 0; hashMerkleRoot = 0; nTime = 0; -- cgit v1.2.3 From 9adab76e0ae07d33d661c7b51b8f89cbfb119870 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 27 Jun 2012 19:30:39 -0400 Subject: Block height in coinbase as a new block rule "Version 2" blocks are blocks that have nVersion=2 and have the block height as the first item in their coinbase. Block-height-in-the-coinbase is strictly enforced when version=2 blocks are a supermajority in the block chain (750 of the last 1,000 blocks on main net, 51 of 100 for testnet). This does not affect old clients/miners at all, which will continue producing nVersion=1 blocks, and which will continue to be valid. --- src/main.cpp | 28 +++++++++++++++++++++++++++- src/main.h | 8 +++++++- 2 files changed, 34 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 9e1b228b2a..fc57713129 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1554,6 +1554,19 @@ bool CBlock::AcceptBlock() if (!Checkpoints::CheckBlock(nHeight, hash)) return error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight); + // Enforce block.nVersion=2 rule that the coinbase starts with serialized block height + if (nVersion > 1) + { + // if 750 of the last 1,000 blocks are version 2 or greater (51/100 if testnet): + if ((!fTestNet && CBlockIndex::IsSuperMajority(2, pindexPrev, 750, 1000)) || + (fTestNet && CBlockIndex::IsSuperMajority(2, pindexPrev, 51, 100))) + { + CScript expect = CScript() << nHeight; + if (!std::equal(expect.begin(), expect.end(), vtx[0].vin[0].scriptSig.begin())) + return error("AcceptBlock() : block height mismatch in coinbase"); + } + } + // Write block to history file if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK))) return error("AcceptBlock() : out of disk space"); @@ -1575,6 +1588,18 @@ bool CBlock::AcceptBlock() return true; } +bool CBlockIndex::IsSuperMajority(int minVersion, const CBlockIndex* pstart, unsigned int nRequired, unsigned int nToCheck) +{ + unsigned int nFound = 0; + for (unsigned int i = 0; i < nToCheck && nFound < nRequired && pstart != NULL; i++) + { + if (pstart->nVersion >= minVersion) + ++nFound; + pstart = pstart->pprev; + } + return (nFound >= nRequired); +} + bool static ProcessBlock(CNode* pfrom, CBlock* pblock) { // Check for duplicate @@ -3140,7 +3165,8 @@ void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& hashPrevBlock = pblock->hashPrevBlock; } ++nExtraNonce; - pblock->vtx[0].vin[0].scriptSig = CScript() << pblock->nTime << CBigNum(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); pblock->hashMerkleRoot = pblock->BuildMerkleTree(); } diff --git a/src/main.h b/src/main.h index 8f9e07f7a8..8ca1afe633 100644 --- a/src/main.h +++ b/src/main.h @@ -831,7 +831,7 @@ class CBlock { public: // header - static const int CURRENT_VERSION=1; + static const int CURRENT_VERSION=2; int nVersion; uint256 hashPrevBlock; uint256 hashMerkleRoot; @@ -1198,6 +1198,12 @@ public: return pindex->GetMedianTimePast(); } + /** + * Returns true if there are nRequired or more blocks of minVersion or above + * in the last nToCheck blocks, starting at pstart and going backwards. + */ + static bool IsSuperMajority(int minVersion, const CBlockIndex* pstart, + unsigned int nRequired, unsigned int nToCheck); std::string ToString() const -- cgit v1.2.3 From 2d57b561c212a7587aed895792b506807d3923c3 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 5 Jul 2012 21:22:16 -0400 Subject: Reject block.nVersion<=1 blocks if network has upgraded to version=2 If 950 of the last 1,000 blocks are nVersion=2, reject nVersion=1 (or zero, but no bitcoin release has created block.nVersion=0) blocks -- 75 of last 100 on testnet3. This rule is being put in place now so that we don't have to go through another "express support" process to get what we really want, which is for every single new block to include the block height in the coinbase. --- src/main.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index fc57713129..1821576dc5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1554,8 +1554,17 @@ bool CBlock::AcceptBlock() if (!Checkpoints::CheckBlock(nHeight, hash)) return error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight); + // Reject block.nVersion=1 blocks when 95% (75% on testnet) of the network has upgraded: + if (nVersion < 2) + { + if ((!fTestNet && CBlockIndex::IsSuperMajority(2, pindexPrev, 950, 1000)) || + (fTestNet && CBlockIndex::IsSuperMajority(2, pindexPrev, 75, 100))) + { + return error("AcceptBlock() : rejected nVersion=1 block"); + } + } // Enforce block.nVersion=2 rule that the coinbase starts with serialized block height - if (nVersion > 1) + if (nVersion >= 2) { // if 750 of the last 1,000 blocks are version 2 or greater (51/100 if testnet): if ((!fTestNet && CBlockIndex::IsSuperMajority(2, pindexPrev, 750, 1000)) || -- cgit v1.2.3 From 52153a6e08df63ff19dd40b9119c6c010b1b1796 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 26 Aug 2012 21:49:50 +0000 Subject: Minimal adaptations to getmemorypool for BIP 34 - As long as version 1 blocks are valid, provide them to getmemorypool clients (only) - Include BIP 22 "height" key in getmemorypool output --- src/bitcoinrpc.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index efc69a4e43..9c9ff255d7 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1744,6 +1744,7 @@ Value getmemorypool(const Array& params, bool fHelp) " \"coinbasevalue\" : maximum allowable input to coinbase transaction, including the generation award and transaction fees\n" " \"time\" : timestamp appropriate for next block\n" " \"bits\" : compressed target of next block\n" + " \"height\" : height of the next block (backported, required by BIP 34)\n" "If [data] is specified, tries to solve the block and returns true if it was successful."); if (params.size() == 0) @@ -1779,6 +1780,12 @@ Value getmemorypool(const Array& params, bool fHelp) pblock = NULL; } pblock = CreateNewBlock(reservekey); + if (!((!fTestNet && CBlockIndex::IsSuperMajority(2, pindexBest, 950, 1000)) || + (fTestNet && CBlockIndex::IsSuperMajority(2, pindexBest, 75, 100)))) + { + // As long as version 1 blocks are valid at all, use them to be more compatible with old implementations + pblock->nVersion = 1; + } if (!pblock) throw JSONRPCError(-7, "Out of memory"); @@ -1814,6 +1821,7 @@ Value getmemorypool(const Array& params, bool fHelp) } uBits; uBits.nBits = htonl((int32_t)pblock->nBits); result.push_back(Pair("bits", HexStr(BEGIN(uBits.cBits), END(uBits.cBits)))); + result.push_back(Pair("height", (int64_t)(pindexPrev->nHeight+1))); return result; } -- cgit v1.2.3 From bfe7cc638d1f6a11a030730130262e49eb6e7940 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 24 Aug 2012 14:47:54 +0200 Subject: Override progress bar on platforms with segmented progress bars Windows & WindowsXP style have a problem with displaying the block progress. Add a custom stylesheet as workaround, but only when one of those renderers is active, otherwise leave the theme alone (issue #1071). --- src/qt/bitcoingui.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index f8e7517431..f444f3a154 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -52,6 +52,7 @@ #include #include +#include #include @@ -141,6 +142,15 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): progressBar->setToolTip(tr("Block chain synchronization in progress")); progressBar->setVisible(false); + // Override style sheet for progress bar for styles that have a segmented progress bar, + // as they make the text unreadable (workaround for issue #1071) + // See https://qt-project.org/doc/qt-4.8/gallery.html + 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; }"); + } + statusBar()->addWidget(progressBarLabel); statusBar()->addWidget(progressBar); statusBar()->addPermanentWidget(frameBlocks); -- cgit v1.2.3 From bfd2ddfc47dc9157f919b3c21ce985121af1c61b Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 19 Jun 2012 15:48:29 -0400 Subject: Checkpoint at block 185333 (and remove a couple of intermediate checkpoints) --- src/checkpoints.cpp | 5 +---- src/test/Checkpoints_tests.cpp | 14 +++++++------- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index ee74d25930..2d49f2b641 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -23,14 +23,11 @@ namespace Checkpoints boost::assign::map_list_of ( 11111, uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d")) ( 33333, uint256("0x000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6")) - ( 68555, uint256("0x00000000001e1b4903550a0b96e9a9405c8a95f387162e4944e8d9fbe501cd6a")) - ( 70567, uint256("0x00000000006a49b14bcf27462068f1264c961f11fa2e0eddd2be0791e1d4124a")) ( 74000, uint256("0x0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20")) (105000, uint256("0x00000000000291ce28027faea320c8d2b054b2e0fe44a773f3eefb151d6bdc97")) - (118000, uint256("0x000000000000774a7f8a7a12dc906ddb9e17e75d684f15e00f8767f9e8f36553")) (134444, uint256("0x00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe")) - (140700, uint256("0x000000000000033b512028abb90e1626d8b346fd0ed598ac0a3c371138dce2bd")) (168000, uint256("0x000000000000099e61ea72015e79632f216fe6cb33d7899acb35b75c8303b763")) + (185333, uint256("0x00000000000002334c71b8706940c20348af897a9cfc0f1a6dab0d14d4ceb815")) ; bool CheckBlock(int nHeight, const uint256& hash) diff --git a/src/test/Checkpoints_tests.cpp b/src/test/Checkpoints_tests.cpp index 0d8a366d7a..b14e9f7057 100644 --- a/src/test/Checkpoints_tests.cpp +++ b/src/test/Checkpoints_tests.cpp @@ -15,20 +15,20 @@ BOOST_AUTO_TEST_SUITE(Checkpoints_tests) BOOST_AUTO_TEST_CASE(sanity) { uint256 p11111 = uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d"); - uint256 p140700 = uint256("0x000000000000033b512028abb90e1626d8b346fd0ed598ac0a3c371138dce2bd"); + uint256 p134444 = uint256("0x00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe"); BOOST_CHECK(Checkpoints::CheckBlock(11111, p11111)); - BOOST_CHECK(Checkpoints::CheckBlock(140700, p140700)); + BOOST_CHECK(Checkpoints::CheckBlock(134444, p134444)); // Wrong hashes at checkpoints should fail: - BOOST_CHECK(!Checkpoints::CheckBlock(11111, p140700)); - BOOST_CHECK(!Checkpoints::CheckBlock(140700, p11111)); + BOOST_CHECK(!Checkpoints::CheckBlock(11111, p134444)); + BOOST_CHECK(!Checkpoints::CheckBlock(134444, p11111)); // ... but any hash not at a checkpoint should succeed: - BOOST_CHECK(Checkpoints::CheckBlock(11111+1, p140700)); - BOOST_CHECK(Checkpoints::CheckBlock(140700+1, p11111)); + BOOST_CHECK(Checkpoints::CheckBlock(11111+1, p134444)); + BOOST_CHECK(Checkpoints::CheckBlock(134444+1, p11111)); - BOOST_CHECK(Checkpoints::GetTotalBlocksEstimate() >= 140700); + BOOST_CHECK(Checkpoints::GetTotalBlocksEstimate() >= 134444); } BOOST_AUTO_TEST_SUITE_END() -- cgit v1.2.3 From 01cc7bf0c5f7ebe0a3cde208edf5fceac9d2e1fb Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 26 Aug 2012 22:43:42 +0000 Subject: Support sending to script (P2SH) addresses Upstream partials from 9e470585b35a84fcb7f6aa41ac0216c117e2a5e1, e679ec969c8b22c676ebb10bea1038f6c8f13b33, and 922e8e2929a2e78270868385aa46f96002fbcff3. --- src/base58.h | 18 ++++++++++++++++++ src/script.h | 5 ++++- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/src/base58.h b/src/base58.h index af1022dfc0..9fe80781bd 100644 --- a/src/base58.h +++ b/src/base58.h @@ -242,6 +242,14 @@ public: class CBitcoinAddress : public CBase58Data { public: + enum + { + PUBKEY_ADDRESS = 0, + SCRIPT_ADDRESS = 5, + PUBKEY_ADDRESS_TEST = 111, + SCRIPT_ADDRESS_TEST = 196, + }; + bool SetHash160(const uint160& hash160) { SetData(fTestNet ? 111 : 0, &hash160, 20); @@ -260,9 +268,11 @@ public: switch(nVersion) { case 0: + case SCRIPT_ADDRESS: break; case 111: + case SCRIPT_ADDRESS_TEST: fExpectTestNet = true; break; @@ -271,6 +281,14 @@ public: } return fExpectTestNet == fTestNet && vchData.size() == nExpectedSize; } + bool IsScript() const + { + if (!IsValid()) + return false; + if (fTestNet) + return nVersion == SCRIPT_ADDRESS_TEST; + return nVersion == SCRIPT_ADDRESS; + } CBitcoinAddress() { diff --git a/src/script.h b/src/script.h index 8dddb893f4..7f4aaae2d5 100644 --- a/src/script.h +++ b/src/script.h @@ -654,7 +654,10 @@ public: void SetBitcoinAddress(const CBitcoinAddress& address) { this->clear(); - *this << OP_DUP << OP_HASH160 << address.GetHash160() << OP_EQUALVERIFY << OP_CHECKSIG; + if (address.IsScript()) + *this << OP_HASH160 << address.GetHash160() << OP_EQUAL; + else + *this << OP_DUP << OP_HASH160 << address.GetHash160() << OP_EQUALVERIFY << OP_CHECKSIG; } void SetBitcoinAddress(const std::vector& vchPubKey) -- cgit v1.2.3 From e1c2163fb7b3f37932be9093cadd6cce250844a5 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Sun, 26 Aug 2012 17:08:18 -0400 Subject: Alert system DoS prevention This fixes two alert system vulnerabilities found by Sergio Lerner; you could send peers unlimited numbers of invalid alert message to try to either fill up their debug.log with messages and/or keep their CPU busy checking signatures. Fixed by disconnecting/banning peers if they send 10 or more bad (invalid/expired/cancelled) alerts. --- src/main.cpp | 25 +++++++++++++++++++------ src/main.h | 2 +- 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index e9577ed27f..cd9c8e5e49 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2614,13 +2614,26 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) CAlert alert; vRecv >> alert; - if (alert.ProcessAlert()) + uint256 alertHash = alert.GetHash(); + if (pfrom->setKnown.count(alertHash) == 0) { - // Relay - pfrom->setKnown.insert(alert.GetHash()); - CRITICAL_BLOCK(cs_vNodes) - BOOST_FOREACH(CNode* pnode, vNodes) - alert.RelayTo(pnode); + if (alert.ProcessAlert()) + { + // Relay + pfrom->setKnown.insert(alertHash); + CRITICAL_BLOCK(cs_vNodes) + BOOST_FOREACH(CNode* pnode, vNodes) + alert.RelayTo(pnode); + } + else { + // Small DoS penalty so peers that send us lots of + // duplicate/expired/invalid-signature/whatever alerts + // eventually get banned. + // This isn't a Misbehaving(100) (immediate ban) because the + // peer might be an older or different implementation with + // a different signature key, etc. + pfrom->Misbehaving(10); + } } } diff --git a/src/main.h b/src/main.h index 7a8e2d45cf..b7d47cfdfd 100644 --- a/src/main.h +++ b/src/main.h @@ -1577,7 +1577,7 @@ public: uint256 GetHash() const { - return SerializeHash(*this); + return Hash(this->vchMsg.begin(), this->vchMsg.end()); } bool IsInEffect() const -- cgit v1.2.3 From 7b66ece1e594782bd1310edda8bcc27015976e6f Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Sun, 26 Aug 2012 17:08:18 -0400 Subject: Alert system DoS prevention This fixes two alert system vulnerabilities found by Sergio Lerner; you could send peers unlimited numbers of invalid alert message to try to either fill up their debug.log with messages and/or keep their CPU busy checking signatures. Fixed by disconnecting/banning peers if they send 10 or more bad (invalid/expired/cancelled) alerts. --- src/main.cpp | 25 +++++++++++++++++++------ src/main.h | 2 +- 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index ecf2fafc89..0237106dcb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2796,14 +2796,27 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) CAlert alert; vRecv >> alert; - if (alert.ProcessAlert()) + uint256 alertHash = alert.GetHash(); + if (pfrom->setKnown.count(alertHash) == 0) { - // Relay - pfrom->setKnown.insert(alert.GetHash()); + if (alert.ProcessAlert()) { - LOCK(cs_vNodes); - BOOST_FOREACH(CNode* pnode, vNodes) - alert.RelayTo(pnode); + // Relay + pfrom->setKnown.insert(alertHash); + { + LOCK(cs_vNodes); + BOOST_FOREACH(CNode* pnode, vNodes) + alert.RelayTo(pnode); + } + } + else { + // Small DoS penalty so peers that send us lots of + // duplicate/expired/invalid-signature/whatever alerts + // eventually get banned. + // This isn't a Misbehaving(100) (immediate ban) because the + // peer might be an older or different implementation with + // a different signature key, etc. + pfrom->Misbehaving(10); } } } diff --git a/src/main.h b/src/main.h index b9a1945861..e562cec7c4 100644 --- a/src/main.h +++ b/src/main.h @@ -1554,7 +1554,7 @@ public: uint256 GetHash() const { - return SerializeHash(*this); + return Hash(this->vchMsg.begin(), this->vchMsg.end()); } bool IsInEffect() const -- cgit v1.2.3 From e0adf1389774c802a39715b1de76f0b1115eb77f Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Mon, 27 Aug 2012 10:22:57 -0400 Subject: Special-case the last alert for alert-key-compromised case Hard-code a special nId=max int alert, to be broadcast if the alert key is ever compromised. It applies to all versions, never expires, cancels all previous alerts, and has a fixed message: URGENT: Alert key compromised, upgrade required Variations are not allowed (ignored), so an attacker with the private key cannot broadcast empty-message nId=max alerts. --- src/main.cpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 1821576dc5..1860f471da 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1970,6 +1970,28 @@ bool CAlert::ProcessAlert() if (!IsInEffect()) return false; + // alert.nID=max is reserved for if the alert key is + // compromised. It must have a pre-defined message, + // must never expire, must apply to all versions, + // and must cancel all previous + // alerts or it will be ignored (so an attacker can't + // send an "everything is OK, don't panic" version that + // cannot be overridden): + int maxInt = std::numeric_limits::max(); + if (nID == maxInt) + { + if (!( + nExpiration == maxInt && + nCancel == (maxInt-1) && + nMinVer == 0 && + nMaxVer == maxInt && + setSubVer.empty() && + nPriority == maxInt && + strStatusBar == "URGENT: Alert key compromised, upgrade required" + )) + return false; + } + CRITICAL_BLOCK(cs_mapAlerts) { // Cancel previous alerts -- cgit v1.2.3 From b9b15578bb52a7a7394fd1ef497f186c5c950cb1 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 27 Aug 2012 19:07:05 +0000 Subject: Bump version to 0.4.8 --- contrib/Bitcoin.app/Contents/Info.plist | 4 ++-- doc/README | 2 +- doc/README_windows.txt | 2 +- share/setup.nsi | 6 +++--- src/serialize.h | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/contrib/Bitcoin.app/Contents/Info.plist b/contrib/Bitcoin.app/Contents/Info.plist index a7efd905f1..1517aecc04 100644 --- a/contrib/Bitcoin.app/Contents/Info.plist +++ b/contrib/Bitcoin.app/Contents/Info.plist @@ -17,11 +17,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.4.7 + 0.4.8 CFBundleSignature ???? CFBundleVersion - 400 + 408 LSMinimumSystemVersion 10.5 CFBundleIconFile diff --git a/doc/README b/doc/README index 00e24e7819..789cbe37f8 100644 --- a/doc/README +++ b/doc/README @@ -1,4 +1,4 @@ -Bitcoin 0.4.7 BETA +Bitcoin 0.4.8 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/doc/README_windows.txt b/doc/README_windows.txt index f611b6acd3..2255a55e75 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -Bitcoin 0.4.7 BETA +Bitcoin 0.4.8 BETA Copyright (c) 2009-2012 Bitcoin Developers Distributed under the MIT/X11 software license, see the accompanying diff --git a/share/setup.nsi b/share/setup.nsi index c044083858..b44446e83f 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.4.7 +!define VERSION 0.4.8 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.4.7-win32-setup.exe +OutFile bitcoin-0.4.8-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.4.7.0 +VIProductVersion 0.4.8.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" diff --git a/src/serialize.h b/src/serialize.h index c7e64dac76..18aa2a56a3 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -59,7 +59,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 40703; +static const int VERSION = 40800; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; -- cgit v1.2.3 From 3dbe71bd35cbcce1acef01301414bd544becebca Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 27 Aug 2012 19:22:29 +0000 Subject: Revert "Revert "Update gitian descriptors to point at stable git repo"" This reverts commit 6e0c5e3778b83f128f6f14c311d5728392053581. --- contrib/gitian-descriptors/gitian-win32.yml | 2 +- contrib/gitian-descriptors/gitian.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/gitian-descriptors/gitian-win32.yml b/contrib/gitian-descriptors/gitian-win32.yml index 9752626d6a..a48e54da85 100644 --- a/contrib/gitian-descriptors/gitian-win32.yml +++ b/contrib/gitian-descriptors/gitian-win32.yml @@ -12,7 +12,7 @@ packages: - "faketime" reference_datetime: "2011-01-30 00:00:00" remotes: -- "url": "https://github.com/bitcoin/bitcoin.git" +- "url": "https://git.gitorious.org/+bitcoin-stable-developers/bitcoin/bitcoind-stable.git" "dir": "bitcoin" files: - "qt-win32-4.7.4-gitian.zip" diff --git a/contrib/gitian-descriptors/gitian.yml b/contrib/gitian-descriptors/gitian.yml index 8243c5c301..36a2000551 100644 --- a/contrib/gitian-descriptors/gitian.yml +++ b/contrib/gitian-descriptors/gitian.yml @@ -20,7 +20,7 @@ packages: - "libpng12-dev" reference_datetime: "2011-01-30 00:00:00" remotes: -- "url": "https://github.com/bitcoin/bitcoin.git" +- "url": "https://git.gitorious.org/+bitcoin-stable-developers/bitcoin/bitcoind-stable.git" "dir": "bitcoin" files: - "miniupnpc-1.6.tar.gz" -- cgit v1.2.3 From d011dc270a1824b04a1a4cf513f3800379b525db Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 28 Aug 2012 03:12:43 +0000 Subject: Update supported translations --- src/qt/bitcoinstrings.cpp | 14 +- src/qt/locale/bitcoin_da.ts | 823 +++++++++++++++--------------- src/qt/locale/bitcoin_de.ts | 998 +++++++++++++++++++------------------ src/qt/locale/bitcoin_en.ts | 486 ++++++++++-------- src/qt/locale/bitcoin_es.ts | 1071 +++++++++++++++++++++------------------- src/qt/locale/bitcoin_es_CL.ts | 847 ++++++++++++++++--------------- src/qt/locale/bitcoin_hu.ts | 757 ++++++++++++++-------------- src/qt/locale/bitcoin_it.ts | 801 ++++++++++++++++-------------- src/qt/locale/bitcoin_nb.ts | 890 +++++++++++++++++---------------- src/qt/locale/bitcoin_nl.ts | 1010 +++++++++++++++++++------------------ src/qt/locale/bitcoin_pt_BR.ts | 900 +++++++++++++++++---------------- src/qt/locale/bitcoin_ru.ts | 945 ++++++++++++++++++----------------- src/qt/locale/bitcoin_uk.ts | 865 +++++++++++++++++--------------- src/qt/locale/bitcoin_zh_CN.ts | 1001 +++++++++++++++++++------------------ src/qt/locale/bitcoin_zh_TW.ts | 988 ++++++++++++++++++------------------ 15 files changed, 6507 insertions(+), 5889 deletions(-) diff --git a/src/qt/bitcoinstrings.cpp b/src/qt/bitcoinstrings.cpp index 2d77441b46..d544ec369e 100644 --- a/src/qt/bitcoinstrings.cpp +++ b/src/qt/bitcoinstrings.cpp @@ -20,19 +20,30 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Specify data directory\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Specify connection timeout (in milliseconds)\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Connect through socks4 proxy\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Allow DNS lookups for addnode and connect\n"), +QT_TRANSLATE_NOOP("bitcoin-core", "Listen for connections on (default: 8333 or testnet: 18333)\n"), +QT_TRANSLATE_NOOP("bitcoin-core", "Maintain at most connections to peers (default: 125)\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Add a node to connect to\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Connect only to the specified node\n"), +QT_TRANSLATE_NOOP("bitcoin-core", "Don't find peers using internet relay chat\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Don't accept connections from outside\n"), +QT_TRANSLATE_NOOP("bitcoin-core", "Don't bootstrap list of peers using DNS\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Threshold for disconnecting misbehaving peers (default: 100)\n"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Number of seconds to keep misbehaving peers from reconnecting (default: " "86400)\n"), +QT_TRANSLATE_NOOP("bitcoin-core", "" +"Maximum per-connection receive buffer, *1000 bytes (default: 10000)\n"), +QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection send buffer, *1000 bytes (default: 10000)\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Don't attempt to use UPnP to map the listening port\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Attempt to use UPnP to map the listening port\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Fee per kB to add to transactions you send\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Accept command line and JSON-RPC commands\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Run in the background as a daemon and accept commands\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Use the test network\n"), +QT_TRANSLATE_NOOP("bitcoin-core", "Output extra debugging information\n"), +QT_TRANSLATE_NOOP("bitcoin-core", "Prepend debug output with timestamp\n"), +QT_TRANSLATE_NOOP("bitcoin-core", "Send trace/debug info to console instead of debug.log file\n"), +QT_TRANSLATE_NOOP("bitcoin-core", "Send trace/debug info to debugger\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Username for JSON-RPC connections\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Password for JSON-RPC connections\n"), QT_TRANSLATE_NOOP("bitcoin-core", "Listen for JSON-RPC connections on (default: 8332)\n"), @@ -61,6 +72,7 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Loading wallet..."), QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet corrupted \n"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Error loading wallet.dat: Wallet requires newer version of Bitcoin \n"), +QT_TRANSLATE_NOOP("bitcoin-core", "Wallet needed to be rewritten: restart Bitcoin to complete \n"), QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat \n"), QT_TRANSLATE_NOOP("bitcoin-core", "Rescanning..."), QT_TRANSLATE_NOOP("bitcoin-core", "Done loading"), @@ -70,7 +82,7 @@ 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", "Error: CreateThread(StartNode) failed"), -QT_TRANSLATE_NOOP("bitcoin-core", "Warning: Disk space is low "), +QT_TRANSLATE_NOOP("bitcoin-core", "Warning: Disk space is low"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Unable to bind to port %d on this computer. Bitcoin is probably already " "running."), diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index 81e864e30b..0da4b47251 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -80,22 +80,22 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open &Slet - + Export Address Book Data Eksporter Adressekartoteketsdata - + Comma separated file (*.csv) Kommasepareret fil (*. csv) - + Error exporting Fejl under eksport - + Could not write to file %1. Kunne ikke skrive til filen %1. @@ -126,23 +126,22 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open Dialog - - + TextLabel TekstEtiket - + Enter passphrase Indtast adgangskode - + New passphrase Ny adgangskode - + Repeat new passphrase Gentag ny adgangskode @@ -205,10 +204,9 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Tegnebog krypteret - - - Warning: The Caps Lock key is on. - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. @@ -223,11 +221,6 @@ Er du sikker på at du ønsker at kryptere din tegnebog? 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. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin will close now to finish the encryption process. Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. - @@ -253,195 +246,201 @@ Er du sikker på at du ønsker at kryptere din tegnebog? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Tegnebogskodeord blev ændret. + + + + Warning: The Caps Lock key is on. + + BitcoinGUI - + + Show the Bitcoin window + Vis Bitcoinvinduet + + + Bitcoin Wallet Bitcoin Tegnebog - - + + Synchronizing with network... Synkroniserer med netværk ... - + Block chain synchronization in progress Blokkæde synkronisering i gang - + &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 Rediger listen over gemte adresser og etiketter - + &Receive coins &Modtag coins - + Show the list of addresses for receiving payments Vis listen over adresser for at modtage betalinger - + &Send coins &Send coins - + Send coins to a bitcoin address Send coins til en bitcoinadresse - + E&xit &Luk - + Quit application Afslut program - + &About %1 &Om %1 - + Show information about Bitcoin Vis oplysninger om Bitcoin - + &Options... &Indstillinger ... - + Modify configuration options for bitcoin Rediger konfigurationsindstillinger af bitcoin - + Open &Bitcoin Åbn &Bitcoin - - Show the Bitcoin window - Vis Bitcoinvinduet - - - + &Export... &Eksporter... - - Export the current view to a file - Eksportér den aktuelle visning til en fil - - - + &Encrypt Wallet &Kryptér tegnebog - + Encrypt or decrypt wallet Kryptér eller dekryptér tegnebog - + &Change Passphrase &Skift adgangskode - + Change the passphrase used for wallet encryption Skift kodeord anvendt til tegnebogskryptering - + About &Qt Om &Qt - + Show information about Qt Vis oplysninger om Qt - + + Export the current view to a file + Eksportér den aktuelle visning til en fil + + + &File &Fil - + &Settings &Indstillinger - + &Help &Hjælp - + Tabs toolbar Faneværktøjslinje - + Actions toolbar Handlingsværktøjslinje - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network %n aktiv(e) forbindelse(r) til Bitcoinnetværket @@ -449,17 +448,17 @@ Er du sikker på at du ønsker at kryptere din tegnebog? - + Downloaded %1 of %2 blocks of transaction history. Downloadet %1 af %2 blokke af transaktionshistorie. - + Downloaded %1 blocks of transaction history. Downloadet %1 blokke af transaktionshistorie. - + %n second(s) ago %n sekund(er) siden @@ -467,7 +466,7 @@ Er du sikker på at du ønsker at kryptere din tegnebog? - + %n minute(s) ago %n minut(ter) siden @@ -475,7 +474,7 @@ Er du sikker på at du ønsker at kryptere din tegnebog? - + %n hour(s) ago %n time(r) siden @@ -483,7 +482,7 @@ Er du sikker på at du ønsker at kryptere din tegnebog? - + %n day(s) ago %n dag(e) siden @@ -491,42 +490,42 @@ Er du sikker på at du ønsker at kryptere din tegnebog? - + 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 størrelsesbegrænsningen. Du kan stadig sende den for et gebyr på %1 som går til de noder der behandler din transaktion, og som hjælper med at støtte netværket. Ønsker du at betale gebyret? - + Sending... Sender... - + Sent transaction Afsendt transaktion - + Incoming transaction Indgående transaktion - + Date: %1 Amount: %2 Type: %3 @@ -539,40 +538,40 @@ Adresse: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Tegnebog er <b>krypteret</b> og i øjeblikket <b>ulåst</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &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 når du sender coins - + &Display addresses in transaction list &Vis adresser i transaktionensliste - + Whether to show Bitcoin addresses in the transaction list @@ -647,6 +646,16 @@ Adresse: %4 MainOptionsPage + + + IP address of the proxy (e.g. 127.0.0.1) + IP-adressen på proxyen (f.eks. 127.0.0.1) + + + + Port of the proxy (e.g. 1234) + Porten på proxyen (f.eks. 1234) + &Start Bitcoin on window system startup @@ -694,7 +703,7 @@ Adresse: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Opret forbindelse til Bitconnetværket via en SOCKS4 proxy (f.eks. ved tilslutning gennem Tor) @@ -702,36 +711,21 @@ Adresse: %4 Proxy &IP: Proxy-&IP: - - - IP address of the proxy (e.g. 127.0.0.1) - IP-adressen på proxyen (f.eks. 127.0.0.1) - &Port: &Port: - - - Port of the proxy (e.g. 1234) - Porten på proxyen (f.eks. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1 kB. Gebyr på 0.01 anbefales. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1 kB. Gebyr på 0.01 anbefales. Pay transaction &fee Betal transaktions&gebyr - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1 kB. Gebyr på 0.01 anbefales. - OptionsDialog @@ -763,11 +757,6 @@ Adresse: %4 Balance: Saldo: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -779,25 +768,15 @@ Adresse: %4 0 - - Unconfirmed: - Ubekræftede: - - - - 0 BTC - 0 BTC + + <b>Recent transactions</b> + <b>Nyeste transaktioner</b> Wallet - - - <b>Recent transactions</b> - <b>Nyeste transaktioner</b> - Your current balance @@ -813,18 +792,23 @@ Adresse: %4 Total number of transactions in wallet Samlede antal transaktioner i tegnebogen + + + Unconfirmed: + Ubekræftede: + SendCoinsDialog - - - - - - - + + + + + + + Send Coins Send Coins @@ -833,16 +817,6 @@ Adresse: %4 Send to multiple recipients at once Send til flere modtagere på én gang - - - &Add recipient... - &Tilføj modtager... - - - - Clear all - Ryd alle - Remove all transaction fields @@ -869,68 +843,73 @@ Adresse: %4 &Afsend - + + &Add recipient... + &Tilføj modtager... + + + + Clear all + Ryd alle + + + <b>%1</b> to %2 (%3) <b>%1</b> til %2 (%3) - + Confirm send coins Bekræft afsendelse af coins - + Are you sure you want to send %1? Er du sikker på at du vil sende %1? - + and og - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance - Beløbet overstiger din saldo + + The amount exceeds your balance. + Beløbet overstiger din saldo. - - Total exceeds your balance when the %1 transaction fee is included - Totalen overstiger din saldo når %1 transaktionsgebyr er inkluderet + + 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 in one send operation + + 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: Oprettelse af transaktionen mislykkedes + + Error: Transaction creation failed. + Fejl: Oprettelse af transaktionen 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. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Fejl: Transaktionen blev afvist. Dette kan ske hvis nogle af dine coins i din tegnebog allerede var brugt, som hvis du brugte en kopi af wallet.dat og dine coins er blevet brugt i kopien, men ikke er markeret som brugt her. SendCoinsEntry - - - Form - Formular - A&mount: @@ -952,11 +931,6 @@ Adresse: %4 &Label: &Etiket: - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adresse som betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose address from address book @@ -967,11 +941,6 @@ Adresse: %4 Alt+A Alt+A - - - Paste address from clipboard - Indsæt adresse fra udklipsholderen - Alt+P @@ -982,6 +951,21 @@ Adresse: %4 Remove this recipient Fjern denne modtager + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adresse som betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Form + Formular + + + + Paste address from clipboard + Indsæt adresse fra udklipsholderen + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -990,6 +974,21 @@ Adresse: %4 TransactionDesc + + + %1 confirmations + %1 bekræftelser + + + + , has not been successfully broadcast yet + , er ikke blevet transmitteret endnu + + + + unknown + ukendt + Open for %1 blocks @@ -1010,21 +1009,11 @@ Adresse: %4 %1/unconfirmed %1/ubekræftet - - - %1 confirmations - %1 bekræftelser - <b>Status:</b> <b>Status:</b> - - - , has not been successfully broadcast yet - , er ikke blevet transmitteret endnu - , broadcast through %1 node @@ -1051,11 +1040,6 @@ Adresse: %4 <b>From:</b> <b>Fra:</b> - - - unknown - ukendt - @@ -1096,12 +1080,12 @@ Adresse: %4 <b>Debit:</b> - <b>Debet:</b> + <b>Debet:</b> <b>Transaction fee:</b> - <b>Transaktionsgebyr:</b> + <b>Transaktionsgebyr:</b> @@ -1139,6 +1123,11 @@ Adresse: %4 TransactionTableModel + + + This block was not received by any other nodes and will probably not be accepted! + Denne blok blev ikke modtaget af nogen andre noder, og vil formentlig ikke blive accepteret! + Date @@ -1160,7 +1149,7 @@ Adresse: %4 Beløb - + Open for %n block(s) Åben for %n blok(ke) @@ -1168,98 +1157,93 @@ Adresse: %4 - + Open until %1 Åben indtil %1 - + Offline (%1 confirmations) Offline (%1 bekræftelser) - + Unconfirmed (%1 of %2 confirmations) Ubekræftet (%1 af %2 bekræftelser) - + Confirmed (%1 confirmations) Bekræftet (%1 bekræftelser) - - - Mined balance will be available in %n more blocks - - Minerede balance vil være tilgængelig om %n blok(ke) - Minerede balance vil være tilgængelig om %n blok(ke) - - - - This block was not received by any other nodes and will probably not be accepted! - Denne blok blev ikke modtaget af nogen andre noder, 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 Minerede - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. Transactionsstatus. Hold musen over dette felt for at vise antallet af bekræftelser. - + Date and time that the transaction was received. Dato og tid for at transaktionen blev modtaget. - + Type of transaction. Type af transaktion. - + Destination address of transaction. Destinationsadresse for transaktion. - + Amount removed from or added to balance. Beløb fjernet eller tilføjet balance. + + + Mined balance will be available in %n more blocks + + Minerede balance vil være tilgængelig om %n blok(ke) + Minerede balance vil være tilgængelig om %n blok(ke) + + TransactionView @@ -1350,75 +1334,75 @@ Adresse: %4 Rediger etiket - - Show details... - Vis detaljer... - - - + Export Transaction Data Eksportér Transaktionsdata - + Comma separated file (*.csv) Kommasepareret fil (*.csv) - + Confirmed Bekræftet - + Date Dato - + Type Type - + Label Etiket - + Address Adresse - + Amount Beløb - + ID ID - + Error exporting Fejl under eksport - + Could not write to file %1. Kunne ikke skrive til filen %1. - + Range: Interval: - + to til + + + Show details... + Vis detaljer... + WalletModel @@ -1441,9 +1425,49 @@ Adresse: %4 Anvendelse: - - Send command to -server or bitcoind - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kan låse data-biblioteket %s. Bitcoin kører sikkert allerede. + + + + Loading addresses... + Indlæser adresser... + + + + Loading block index... + Indlæser blok-indeks... + + + + Loading wallet... + Indlæser tegnebog... + + + + Rescanning... + Genindlæser... + + + + 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. + + + + Error: CreateThread(StartNode) failed + Fejl: CreateThread(StartNode) mislykkedes + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Advarsel: Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet. Hvis der er fejl i disse vil Bitcoin ikke fungere korrekt. + + + + Send command to -server or bitcoind + Send kommando til -server eller bitcoind @@ -1494,13 +1518,6 @@ Adresse: %4 Don't generate coins Generér ikke coins - - - - - Start minimized - - Start minimeret @@ -1532,117 +1549,224 @@ Adresse: %4 - + Add a node to connect to Tilføj en node til at forbinde til - + Connect only to the specified node Tilslut kun til den angivne node - + Don't accept connections from outside Acceptér ikke forbindelser udefra + + + Fee per kB to add to transactions you send + + Gebyr pr. kB, som skal tilføjes til transaktioner du sender + + + + + Run in the background as a daemon and accept commands + + Kør i baggrunden som en service, og acceptér kommandoer + + + + + Username for JSON-RPC connections + + Brugernavn til JSON-RPC-forbindelser + + + + + Done loading + Indlæsning gennemført + + + + Invalid -proxy address + Ugyldig -proxy adresse + + + + Invalid amount for -paytxfee=<amount> + Ugyldigt beløb for -paytxfee=<amount> + + + + Warning: Disk space is low + Advarsel: Diskplads er lav + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Kunne ikke binde sig til port %d på denne computer. Bitcoin kører sikkert allerede. + + + + beta + beta + + + + Use OpenSSL (https) for JSON-RPC connections + + Brug OpenSSL (https) for JSON-RPC-forbindelser + + + + + Start minimized + + Start minimeret + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + + Lyt til forbindelser på <port> (standard: 8333 or testnet: 18333) + + + + Maintain at most <n> connections to peers (default: 125) + + + + + + Don't find peers using internet relay chat + + + + + + Don't bootstrap list of peers using DNS + + + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + + + + Don't attempt to use UPnP to map the listening port Forsøg ikke at bruge UPnP til at konfigurere den lyttende port - + Attempt to use UPnP to map the listening port Forsøg at bruge UPnP til at kofnigurere den lyttende port - - Fee per kB to add to transactions you send + + Accept command line and JSON-RPC commands - Gebyr pr. kB, som skal tilføjes til transaktioner du sender - + Accepter kommandolinje- og JSON-RPC-kommandoer - - Accept command line and JSON-RPC commands + + Use the test network - Accepter kommandolinje- og JSON-RPC-kommandoer - + Brug test-netværket - - Run in the background as a daemon and accept commands + + Output extra debugging information - Kør i baggrunden som en service, og acceptér kommandoer - + - - Use the test network + + Prepend debug output with timestamp - Brug test-netværket - + - - Username for JSON-RPC connections + + Send trace/debug info to console instead of debug.log file - Brugernavn til JSON-RPC-forbindelser - + - + + Send trace/debug info to debugger + + + + + Password for JSON-RPC connections - Password til JSON-RPC-forbindelser - + Password til JSON-RPC-forbindelser - + Listen for JSON-RPC connections on <port> (default: 8332) - Lyt til JSON-RPC-forbindelser på <port> (standard: 8332) - + Lyt til JSON-RPC-forbindelser på <port> (standard: 8332) - + Allow JSON-RPC connections from specified IP address - Tillad JSON-RPC-forbindelser fra bestemt IP-adresse - + Tillad JSON-RPC-forbindelser fra bestemt IP-adresse - + Send commands to node running on <ip> (default: 127.0.0.1) - Send kommandoer til node, der kører på <ip> (standard: 127.0.0.1) - + Send kommandoer til node, der kører på <ip> (standard: 127.0.0.1) - + Set key pool size to <n> (default: 100) - Sæt nøglepoolstørrelse til <n> (standard: 100) - + Sæt nøglepoolstørrelse til <n> (standard: 100) - + Rescan the block chain for missing wallet transactions - Gennemsøg blokkæden for manglende tegnebogstransaktioner - + Gennemsøg blokkæden for manglende tegnebogstransaktioner - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1650,162 +1774,79 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-indstillinger: (se Bitcoin Wiki for SSL opsætningsinstruktioner) - - 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) Server private nøgle (standard: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Acceptabele ciphers (standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Denne hjælpebesked - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kan låse data-biblioteket %s. Bitcoin kører sikkert allerede. - - - - Loading addresses... - Indlæser adresser... - - - + Error loading addr.dat Fejl ved indlæsning af addr.dat - - Loading block index... - Indlæser blok-indeks... - - - + 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 - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Fejl ved indlæsning af wallet.dat: Tegnebog kræver en nyere version af Bitcoin - - Error loading wallet.dat - - Fejl ved indlæsning af wallet.dat - - - - - Rescanning... - Genindlæser... - - - - Threshold for disconnecting misbehaving peers (default: 100) + + Wallet needed to be rewritten: restart Bitcoin to complete - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + Error loading wallet.dat - - - - - Done loading - Indlæsning gennemført - - - - Invalid -proxy address - Ugyldig -proxy adresse - - - - Invalid amount for -paytxfee=<amount> - Ugyldigt beløb for -paytxfee=<amount> - - - - 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. - - - - Error: CreateThread(StartNode) failed - Fejl: CreateThread(StartNode) mislykkedes - - - - Warning: Disk space is low - Advarsel: Diskplads er lav - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Kunne ikke binde sig til port %d på denne computer. Bitcoin kører sikkert allerede. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Advarsel: Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet. Hvis der er fejl i disse vil Bitcoin ikke fungere korrekt. - - - - beta - beta + Fejl ved indlæsning af wallet.dat + main - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index 01b108ff7f..50b2b7740c 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -42,7 +42,7 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open These are your Bitcoin 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. - Dies sind Ihre Bitcoin-Adressen zum Empfangen von Zahlungen. Es steht Ihnen frei, jedem Absender eine andere mitzuteilen, um einen besseren Überblick über eingehende Zahlungen zu erhalten. + Dies sind Ihre Bitcoin-Adressen zum Empfangen von Zahlungen. Es steht Ihnen frei, jedem Absender eine Andere mitzuteilen, um einen besseren Überblick über eingehende Zahlungen zu erhalten. @@ -80,22 +80,22 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open &Löschen - + Export Address Book Data Adressbuch exportieren - + Comma separated file (*.csv) Kommagetrennte Datei (*.csv) - + Error exporting Fehler beim Exportieren - + Could not write to file %1. Konnte nicht in Datei %1 schreiben. @@ -121,36 +121,35 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open AskPassphraseDialog - - Dialog - Dialog - - - - - TextLabel - Textbezeichnung - - - + Enter passphrase Passphrase eingeben - + New passphrase Neue Passphrase - + Repeat new passphrase Neue Passphrase wiederholen + + + Dialog + Dialog + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Geben Sie die neue Passphrase für die Brieftasche ein.<br>Bitte benutzen Sie eine Passphrase bestehend aus <b>10 oder mehr zufälligen Zeichen</b> oder <b>8 oder mehr Wörtern</b>. + + + TextLabel + Textbezeichnung + Encrypt wallet @@ -186,17 +185,6 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Enter the old and new passphrase to the wallet. Geben Sie die alte und die neue Passphrase der Brieftasche ein. - - - Confirm wallet encryption - Verschlüsselung der Brieftasche bestätigen - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - WARNUNG: Wenn Sie Ihre Brieftasche verschlüsseln und Ihre Passphrase verlieren, werden Sie <b>ALLE IHRE BITCOINS VERLIEREN</b>!<br><br>Sind Sie sich sicher, dass Sie Ihre Brieftasche verschlüsseln möchten? - @@ -204,10 +192,9 @@ Are you sure you wish to encrypt your wallet? Brieftasche verschlüsselt - - - Warning: The Caps Lock key is on. - Warnung: Die Feststelltaste ist aktiviert. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung Ihrer Brieftasche nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadsoftware schützt, die Ihren Computer befällt. @@ -222,11 +209,6 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Die Verschlüsselung der Brieftasche ist aufgrund eines internen Fehlers fehlgeschlagen. Ihre Brieftasche wurde nicht verschlüsselt. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung Ihrer Brieftasche nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadsoftware schützt, die Ihren Computer befällt. - @@ -250,197 +232,209 @@ Are you sure you wish to encrypt your wallet? Wallet decryption failed Entschlüsselung der Brieftasche fehlgeschlagen + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + WARNUNG: Wenn Sie Ihre Brieftasche verschlüsseln und Ihre Passphrase verlieren, werden Sie <b>ALLE IHRE BITCOINS VERLIEREN</b>!<br><br>Sind Sie sich sicher, dass Sie Ihre Brieftasche verschlüsseln möchten? + - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Die Passphrase der Brieftasche wurde erfolgreich geändert. + + + + Warning: The Caps Lock key is on. + Warnung: Die Feststelltaste ist aktiviert. + + + + Confirm wallet encryption + Verschlüsselung der Brieftasche bestätigen + BitcoinGUI - + Bitcoin Wallet Bitcoin-Brieftasche - - + + Synchronizing with network... Synchronisiere mit Netzwerk... - + Block chain synchronization in progress Synchronisation der Blockkette wird durchgeführt - + &Overview &Übersicht - + Show general overview of wallet Allgemeine Übersicht der Brieftasche anzeigen - + &Transactions &Transaktionen - + Browse transaction history Transaktionsverlauf durchsehen - + &Address Book &Adressbuch - + Edit the list of stored addresses and labels Liste der gespeicherten Zahlungsadressen und Bezeichnungen bearbeiten - + &Receive coins Bitcoins &empfangen - + Show the list of addresses for receiving payments Liste der Empfangsadressen anzeigen - + &Send coins Bitcoins &überweisen - + Send coins to a bitcoin address Bitcoins an eine Bitcoin-Adresse überweisen - + E&xit &Beenden - - Quit application - Anwendung beenden - - - + &About %1 &Über %1 - - Show information about Bitcoin - Informationen über Bitcoin anzeigen - - - + &Options... &Erweiterte Einstellungen... - - Modify configuration options for bitcoin - Erweiterte Bitcoin-Einstellungen ändern - - - - Open &Bitcoin - &Bitcoin öffnen - - - + Show the Bitcoin window Bitcoin-Fenster anzeigen - - &Export... - &Exportieren nach... - - - + Export the current view to a file Aktuelle Ansicht in eine Datei exportieren - - &Encrypt Wallet - Brieftasche &verschlüsseln... - - - + Encrypt or decrypt wallet Brieftasche ent- oder verschlüsseln - + &Change Passphrase Passphrase &ändern... - + Change the passphrase used for wallet encryption Ändert die Passphrase, die für die Verschlüsselung der Brieftasche benutzt wird - + + Sending... + Senden... + + + About &Qt Über &Qt - + Show information about Qt Informationen über Qt anzeigen - + &File &Datei - + &Settings &Einstellungen - + &Help &Hilfe - + + Quit application + Anwendung beenden + + + Tabs toolbar - Registerkarten-Leiste + Registerkartenleiste + + + + Show information about Bitcoin + Informationen über Bitcoin anzeigen - + Actions toolbar - Aktionen-Werkzeugleiste + Aktionssymbolleiste - + [testnet] - [testnet] + [Testnetz] + + + + Modify configuration options for bitcoin + Erweiterte Bitcoin-Einstellungen ändern - + + Open &Bitcoin + &Bitcoin öffnen + + + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network %n aktive Verbindung zum Bitcoin-Netzwerk @@ -448,17 +442,22 @@ Are you sure you wish to encrypt your wallet? - - Downloaded %1 of %2 blocks of transaction history. - %1 von %2 Blöcken des Transaktionsverlaufs heruntergeladen. + + &Export... + &Exportieren nach... - + + &Encrypt Wallet + Brieftasche &verschlüsseln... + + + Downloaded %1 blocks of transaction history. %1 Blöcke des Transaktionsverlaufs heruntergeladen. - + %n second(s) ago vor %n Sekunde @@ -466,7 +465,7 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago vor %n Minute @@ -474,7 +473,7 @@ Are you sure you wish to encrypt your wallet? - + %n hour(s) ago vor %n Stunde @@ -482,7 +481,7 @@ Are you sure you wish to encrypt your wallet? - + %n day(s) ago vor %n Tag @@ -490,42 +489,37 @@ Are you sure you wish to encrypt your wallet? - + Up to date Auf aktuellem Stand - + Catching up... Hole auf... - + Last received block was generated %1. Der letzte empfangene Block wurde %1 generiert. - + 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? Die Transaktion übersteigt das Größenlimit. Sie können sie trotzdem senden, wenn Sie eine zusätzliche Transaktionsgebühr in Höhe von %1 zahlen. Diese wird an die Knoten verteilt, die Ihre Transaktion bearbeiten und unterstützt damit das Bitcoin-Netzwerk.<br><br>Möchten Sie die Gebühr bezahlen? - - Sending... - Transaktionsgebühr bestätigen - - - + Sent transaction Gesendete Transaktion - + Incoming transaction Eingehende Transaktion - + Date: %1 Amount: %2 Type: %3 @@ -537,42 +531,47 @@ Typ: %3 Adresse: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Brieftasche ist <b>verschlüsselt</b> und aktuell <b>entsperrt</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Brieftasche ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> - - A fatal error occured. Bitcoin can no longer continue safely and will quit. - + + Downloaded %1 of %2 blocks of transaction history. + %1 von %2 Blöcken des Transaktionsverlaufs heruntergeladen. + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Ein schwerer Fehler ist aufgetreten. Bitcoin kann nicht stabil weiter ausgeführt werden und wird beendet. DisplayOptionsPage - + &Unit to show amounts in: &Einheit der Beträge: - + Choose the default subdivision unit to show in the interface, and when sending coins Wählen Sie die Standard-Untereinheit, die in der Benutzeroberfläche und beim Überweisen von Bitcoins angezeigt werden soll - + &Display addresses in transaction list - &Adressen in der Transaktionsliste anzeigen + Adressen in der Transaktionsliste &anzeigen - + Whether to show Bitcoin addresses in the transaction list - + Legt fest, ob Bitcoin-Adressen in der Transaktionsliste angezeigt werden @@ -627,11 +626,6 @@ Adresse: %4 The entered address "%1" is already in the address book. Die eingegebene Adresse "%1" befindet sich bereits im Adressbuch. - - - The entered address "%1" is not a valid bitcoin address. - Die eingegebene Adresse "%1" ist keine gültige Bitcoin-Adresse. - Could not unlock wallet. @@ -642,6 +636,11 @@ Adresse: %4 New key generation failed. Generierung eines neuen Schlüssels fehlgeschlagen. + + + The entered address "%1" is not a valid bitcoin address. + Die eingegebene Adresse "%1" ist keine gültige Bitcoin-Adresse. + MainOptionsPage @@ -692,8 +691,8 @@ Adresse: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Über einen SOCKS4-Proxy zum Bitcoin-Netzwerk verbinden (z.B. bei einer Verbindung über Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Über einen SOCKS4-Proxy mit dem Bitcoin-Netzwerk verbinden (z.B. beim Verbinden über Tor) @@ -703,36 +702,36 @@ Adresse: %4 IP address of the proxy (e.g. 127.0.0.1) - IP-Adresse des Proxy-Servers (z.B. 127.0.0.1) + IP-Adresse des Proxyservers (z.B. 127.0.0.1) &Port: - &Port: + &Port: Port of the proxy (e.g. 1234) - Port des Proxy-Servers (z.B. 1234) + Port des Proxies (z.B. 1234) - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Optionale Transaktionsgebühr pro kB, die sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 wird empfohlen. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optionale Transaktionsgebühr pro kB, die sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 BTC wird empfohlen. Pay transaction &fee Transaktions&gebühr bezahlen - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Optionale Transaktionsgebühr pro kB, die sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 wird empfohlen. - OptionsDialog + + + Options + Erweiterte Einstellungen + Main @@ -743,11 +742,6 @@ Adresse: %4 Display Anzeige - - - Options - Erweiterte Einstellungen - OverviewPage @@ -761,40 +755,25 @@ Adresse: %4 Balance: Kontostand: - - - 123.456 BTC - 123.456 BTC - Number of transactions: Anzahl der Transaktionen: - - - 0 - 0 - Unconfirmed: Unbestätigt: - - - 0 BTC - 0 BTC - Wallet - Brieftasche + Brieftasche - - <b>Recent transactions</b> - <b>Letzte Transaktionen</b> + + 0 + 0 @@ -806,6 +785,11 @@ Adresse: %4 Total of transactions that have yet to be confirmed, and do not yet count toward the current balance Betrag aus unbestätigten Transaktionen, der noch nicht im aktuellen Kontostand enthalten ist + + + <b>Recent transactions</b> + <b>Letzte Transaktionen</b> + Total number of transactions in wallet @@ -814,15 +798,20 @@ Adresse: %4 SendCoinsDialog + + + and + und + - - - - - - - + + + + + + + Send Coins Bitcoins überweisen @@ -831,21 +820,16 @@ Adresse: %4 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 - Remove all transaction fields Alle Überweisungsfelder zurücksetzen + + + &Add recipient... + &Empfänger hinzufügen + Balance: @@ -867,58 +851,58 @@ Adresse: %4 &Überweisen - + + Clear all + Zurücksetzen + + + <b>%1</b> to %2 (%3) <b>%1</b> an %2 (%3) - + Confirm send coins Überweisung bestätigen - + Are you sure you want to send %1? Sind Sie sich sicher, dass Sie die folgende Überweisung ausführen möchten?<br>%1 - - and - und - - - - The recepient address is not valid, please recheck. + + 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 0 sein. + Der zu zahlende Betrag muss größer als 0 sein. - - Amount exceeds your balance + + The amount exceeds your balance. Der angegebene Betrag übersteigt Ihren Kontostand. - - Total exceeds your balance when the %1 transaction fee is included + + 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 in one send operation - Doppelte Adresse gefunden, pro Überweisung kann an jede Adresse nur einmalig etwas überwiesen werden + + 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. - - Error: Transaction creation failed - Fehler: Transaktionserstellung fehlgeschlagen + + Error: Transaction creation failed. + Fehler: Transaktionserstellung fehlgeschlagen. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. Fehler: Die Transaktion wurde abgelehnt. Dies kann passieren, wenn einige Bitcoins aus Ihrer Brieftasche bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie Ihrer wallet.dat genutzt, die Bitcoins dort ausgegeben haben und dies daher in der derzeit aktiven Brieftasche nicht vermerkt ist. @@ -929,42 +913,21 @@ Adresse: %4 Form Formular - - - A&mount: - &Betrag: - Pay &To: &Empfänger: - - - - Enter a label for this address to add it to your address book - Adressbezeichnung eingeben (diese wird bei unbekannten Adressen inkl. der Adresse dem Adressbuch hinzugefügt) - &Label: &Bezeichnung: - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Die Zahlungsadresse der Überweisung (z.B. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose address from address book Adresse aus Adressbuch wählen - - - Alt+A - Alt+A - Paste address from clipboard @@ -981,47 +944,58 @@ Adresse: %4 Diesen Empfänger entfernen - - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Bitcoin-Adresse eingeben (z.B. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + A&mount: + &Betrag: - - - TransactionDesc - - Open for %1 blocks - Offen für %1 Blöcke + + + Enter a label for this address to add it to your address book + Adressbezeichnung eingeben (diese wird bei unbekannten Adressen inkl. der Adresse dem Adressbuch hinzugefügt) - - Open until %1 - Offen bis %1 + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Die Zahlungsadresse der Überweisung (z.B. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - %1/offline? - %1/offline? + + Alt+A + Alt+A - - %1/unconfirmed - %1/unbestätigt + + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Bitcoin-Adresse eingeben (z.B. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + TransactionDesc %1 confirmations %1 Bestätigungen + + + , has not been successfully broadcast yet + , wurde noch nicht erfolgreich übertragen + <b>Status:</b> <b>Status:</b> - - , has not been successfully broadcast yet - , wurde noch nicht erfolgreich übertragen + + Open for %1 blocks + Offen für %1 Blöcke + + + + %1/offline? + %1/offline? @@ -1054,6 +1028,16 @@ Adresse: %4 unknown unbekannt + + + Open until %1 + Offen bis %1 + + + + %1/unconfirmed + %1/unbestätigt + @@ -1158,7 +1142,7 @@ Adresse: %4 Betrag - + Open for %n block(s) Offen für %n Block @@ -1166,101 +1150,176 @@ Adresse: %4 - + Open until %1 Offen bis %1 - + Offline (%1 confirmations) - Nicht verbunden (%1 Bestätigungen) + Offline (%1 Bestätigungen) - + Unconfirmed (%1 of %2 confirmations) Unbestätigt (%1 von %2 Bestätigungen) - + Confirmed (%1 confirmations) Bestätigt (%1 Bestätigungen) - - - Mined balance will be available in %n more blocks - - Der erarbeitete Betrag wird in %n Block verfügbar sein - Der erarbeitete Betrag wird in %n Blöcken verfügbar sein - - - + This block was not received by any other nodes and will probably not be accepted! Dieser Block wurde von keinem anderen Knoten empfangen und wird wahrscheinlich nicht angenommen werden! - + Generated but not accepted Generiert, jedoch nicht angenommen - + Received with Empfangen über - + Received from Empfangen von - + Sent to Überwiesen an - + Payment to yourself Eigenüberweisung - + Mined Erarbeitet - + (n/a) (k.A.) - + Transaction status. Hover over this field to show number of confirmations. Transaktionsstatus. Fahren Sie mit der Maus über dieses Feld, um die Anzahl der Bestätigungen zu sehen. - + Date and time that the transaction was received. Datum und Uhrzeit als die Transaktion empfangen wurde. - + Type of transaction. Art der Transaktion - + Destination address of transaction. - Zieladresse der Transaktion. + Zieladresse der Transaktion - + Amount removed from or added to balance. Der Betrag, der dem Kontostand abgezogen oder hinzugefügt wurde. + + + Mined balance will be available in %n more blocks + + Der erarbeitete Betrag wird in %n Block verfügbar sein + Der erarbeitete Betrag wird in %n Blöcken verfügbar sein + + TransactionView + + + Edit label + Bezeichnung bearbeiten + + + + Export Transaction Data + Transaktionen exportieren + + + + 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. + Konnte nicht in Datei %1 schreiben. + + + + Range: + Zeitraum: + + + + to + bis + + + + Show details... + Transaktionsdetails anzeigen + @@ -1277,16 +1336,6 @@ Adresse: %4 This week Diese Woche - - - This month - Diesen Monat - - - - Last month - Letzten Monat - This year @@ -1295,7 +1344,7 @@ Adresse: %4 Range... - Zeitraum + Zeitraum... @@ -1343,100 +1392,106 @@ Adresse: %4 Bezeichnung kopieren - - Edit label - Bezeichnung bearbeiten + + This month + Diesen Monat - - Show details... - Transaktionsdetails anzeigen + + Last month + Letzten Monat + + + WalletModel - - Export Transaction Data - Transaktionen exportieren + + Sending... + Überweise... + + + bitcoin-core - - Comma separated file (*.csv) - Kommagetrennte Datei (*.csv) + + Bitcoin version + Bitcoin Version - - Confirmed - Bestätigt + + Usage: + Benutzung: - - Date - Datum + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Datenverzeichnis %s kann nicht gesperrt werden. Evtl. wurde Bitcoin bereits gestartet. - - Type - Typ + + Loading addresses... + Lade Adressen... - - Label - Bezeichnung + + Loading block index... + Lade Blockindex... - - Address - Adresse + + Loading wallet... + Lade Brieftasche... - - Amount - Betrag + + Wallet needed to be rewritten: restart Bitcoin to complete + + Brieftasche muss neu geschrieben werden: Starten Sie Bitcoin zur Fertigstellung neu - - ID - ID + + Rescanning... + Durchsuche erneut... - - Error exporting - Fehler beim Exportieren + + Done loading + Laden abgeschlossen - - Could not write to file %1. - Konnte nicht in Datei %1 schreiben. + + Invalid -proxy address + Fehlerhafte Proxy-Adresse - - Range: - Zeitraum: + + Invalid amount for -paytxfee=<amount> + Ungültige Angabe für -paytxfee=<Betrag> - - to - bis + + 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 gesetzt. Dies ist die Gebühr die beim Senden einer Transaktion fällig wird. - - - WalletModel - - Sending... - Überweise... + + Error: CreateThread(StartNode) failed + Fehler: CreateThread(StartNode) fehlgeschlagen - - - bitcoin-core - - Bitcoin version - Bitcoin Version + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Fehler beim registrieren des Ports %d auf diesem Computer. Evtl. wurde Bitcoin bereits gestartet. - - Usage: - Verwendung: + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Warnung: Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen Ihres Computers, da Bitcoin ansonsten nicht ordnungsgemäß funktionieren wird. + + + + beta + Beta @@ -1500,19 +1555,19 @@ Adresse: %4 Specify data directory - Bitte wählen Sie das Datenverzeichnis + Datenverzeichnis angeben Specify connection timeout (in milliseconds) - Netzwerkverbindungsabbruch nach (in Millisekunden) + Verbindungstimeout angeben (in Millisekunden) Connect through socks4 proxy - Durch SOCKS4-Proxy verbinden + Über einen SOCKS4-Proxy verbinden @@ -1522,114 +1577,189 @@ Adresse: %4 - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - Bitcoin Knoten hinzufügen - + <port> nach Verbindungen abhören (Standard: 8333 oder Testnetz: 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) - Nur zu angegebenen Knoten verbinden - + Maximal <n> Verbindungen zu Gegenstellen aufrechterhalten (Standard: 125) + Add a node to connect to + + Einen Knoten hinzufügen, mit dem sich verbunden werden soll + + + + Connect only to the specified node + + Nur mit dem/den angegebenen Knoten verbinden + + + + Don't find peers using internet relay chat + + Keine Gegenstellen via Internet Relay Chat finden + + + Don't accept connections from outside - Keine externen Transatkionen akzeptieren + Keine Verbindungen von außen akzeptieren + + + + Don't bootstrap list of peers using DNS + + Keine Peerliste durch die Nutzung von DNS erzeugen + 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: 10000) + + Maximale Größe, <n> * 1000 Byte, des Empfangspuffers pro Verbindung (Standard: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + Maximale Größe, <n> * 1000 Byte, des Sendepuffers pro Verbindung (Standard: 10000) + + + Don't attempt to use UPnP to map the listening port UPnP nicht verwenden - + + Warning: Disk space is low + Warnung: Festplattenplatz wird knapp + + + Attempt to use UPnP to map the listening port Versuche eine Verbindung mittels UPnP herzustellen - + Fee per kB to add to transactions you send Gebühr pro kB, die gesendeten Transaktionen hinzugefügt wird - + Accept command line and JSON-RPC commands Erlaube Kommandozeilen und JSON-RPC Befehle - + Run in the background as a daemon and accept commands Als Hintergrunddienst starten und Befehle akzeptieren - + Use the test network Das Test Netzwerk verwenden - + + Output extra debugging information + + Ausgabe zusätzlicher Debugging-Informationen + + + + Prepend debug output with timestamp + + Der Debugausgabe einen Zeitstempel voranstellen + + + + Send trace/debug info to console instead of debug.log file + + Rückverfolgungs- und Debuginformationen an die Konsole senden anstatt sie in die debug.log Datei zu schreiben + + + + Send trace/debug info to debugger + + Rückverfolgungs- und Debuginformationen an den Debugger senden + + + 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: 8332) Port für JSON-RPC Befehle (Standard: 8332) - + Allow JSON-RPC connections from specified IP address JSON-RPC Befehle nur von dieser IP-Adresse erlauben - + Send commands to node running on <ip> (default: 127.0.0.1) Befehle an Bitcoin Knoten <ip> senden (Standard: 127.0.0.1) - + Set key pool size to <n> (default: 100) Menge der vorgenerierten Adressen (Standard: 100) - + Rescan the block chain for missing wallet transactions Blockkette nach verlorenen Transaktionen durchsuchen (rescan) - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1637,157 +1767,75 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Use OpenSSL (https) for JSON-RPC connections JSON-RPC Befehle über OpenSSL (https) - + Server certificate file (default: server.cert) SSL Server Zertifikat (Standard: server.cert) - + Server private key (default: server.pem) Privater SSL Schlüssel (Standard: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Erlaubte Kryptographiealgorithmen (Standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Dieser Hilfetext - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Konnte das Datenverzeichnis %s nicht sperren. Evtl. wurde Bitcoin bereits gestartet. - - - - Loading addresses... - Lade Adressen... - - - + Error loading addr.dat Fehler beim Laden der addr.dat - - Loading block index... - Lade Blockindex... - - - + Error loading blkindex.dat Fehler beim laden der blkindex.dat - - Loading wallet... - Lade Geldbörse... - - - + Error loading wallet.dat: Wallet corrupted Fehler beim Laden von wallet.dat: Brieftasche beschädigt - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Fehler beim Laden von wallet.dat: Neuere Version von Bitcoin notwendig - + Error loading wallet.dat Fehler beim Laden von wallet.dat - - - Rescanning... - Durchsuche erneut... - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - - Done loading - Laden abgeschlossen - - - - Invalid -proxy address - Fehlerhafte Proxy-Adresse - - - - Invalid amount for -paytxfee=<amount> - Ungültige Angabe für -paytxfee=<Betrag> - - - - 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 gesetzt. Dies ist die Gebühr die beim Senden einer Transaktion fällig wird. - - - - Error: CreateThread(StartNode) failed - Fehler: CreateThread(StartNode) fehlgeschlagen - - - - Warning: Disk space is low - Warnung: Festplattenplatz wird knapp - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Fehler beim registrieren des Ports %d auf diesem Computer. Evtl. wurde Bitcoin bereits gestartet. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Warnung: Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen Ihres Computers, da Bitcoin ansonsten nicht ordnungsgemäß funktionieren wird. - - - - beta - Beta - main - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index 31ea0e5d0c..e95625e202 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -74,22 +74,22 @@ This product includes software developed by the OpenSSL Project for use in the O - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. @@ -120,26 +120,25 @@ This product includes software developed by the OpenSSL Project for use in the O - - - TextLabel - - - - + Enter passphrase - + New passphrase - + Repeat new passphrase + + + TextLabel + + 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>. @@ -198,9 +197,8 @@ Are you sure you wish to encrypt your wallet? - - - Warning: The Caps Lock key is on. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. @@ -216,11 +214,6 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - @@ -246,195 +239,201 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on. BitcoinGUI - + Bitcoin Wallet - - + + Synchronizing with network... - + Block chain synchronization in progress - + &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 - + Send coins to a bitcoin address - + E&xit - + Quit application - + &About %1 - + Show information about Bitcoin - + + About &Qt + + + + + Show information about Qt + + + + &Options... - + Modify configuration options for bitcoin - + Open &Bitcoin - + Show the Bitcoin window - + &Export... - + Export the current view to a file - + &Encrypt Wallet - + Encrypt or decrypt wallet - + &Change Passphrase - + Change the passphrase used for wallet encryption - - About &Qt - - - - - Show information about Qt - - - - + &File - + &Settings - + &Help - + Tabs toolbar - + Actions toolbar - + [testnet] - + bitcoin-qt - + %n active connection(s) to Bitcoin network %n active connection to Bitcoin network @@ -442,17 +441,17 @@ Are you sure you wish to encrypt your wallet? - + Downloaded %1 of %2 blocks of transaction history. - + Downloaded %1 blocks of transaction history. - + %n second(s) ago %n second ago @@ -460,7 +459,7 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago %n minute ago @@ -468,7 +467,7 @@ Are you sure you wish to encrypt your wallet? - + %n hour(s) ago %n hour ago @@ -476,7 +475,7 @@ Are you sure you wish to encrypt your wallet? - + %n day(s) ago %n day ago @@ -484,42 +483,42 @@ Are you sure you wish to encrypt your wallet? - + 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? - + Sending... - + Sent transaction - + Incoming transaction - + Date: %1 Amount: %2 Type: %3 @@ -528,40 +527,40 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: - + Choose the default subdivision unit to show in the interface, and when sending coins - + &Display addresses in transaction list - + Whether to show Bitcoin addresses in the transaction list @@ -683,7 +682,7 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) @@ -708,7 +707,7 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. @@ -716,11 +715,6 @@ Address: %4 Pay transaction &fee - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - OptionsDialog @@ -752,11 +746,6 @@ Address: %4 Balance: - - - 123.456 BTC - - Number of transactions: @@ -772,11 +761,6 @@ Address: %4 Unconfirmed: - - - 0 BTC - - Wallet @@ -807,13 +791,13 @@ Address: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins @@ -828,13 +812,13 @@ Address: %4 - - Clear all + + Remove all transaction fields - - Remove all transaction fields + + Clear all @@ -858,58 +842,58 @@ Address: %4 - + <b>%1</b> to %2 (%3) - + Confirm send coins - + Are you sure you want to send %1? - + and - - The recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. - + The amount to pay must be larger than 0. - - Amount exceeds your balance + + The amount exceeds your balance. - - 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 in one 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. @@ -1149,7 +1133,7 @@ Address: %4 - + Open for %n block(s) Open for %n block @@ -1157,27 +1141,27 @@ Address: %4 - + Open until %1 - + Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) - + Mined balance will be available in %n more blocks Mined balance will be available in %n more block @@ -1185,67 +1169,67 @@ Address: %4 - + 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. @@ -1344,67 +1328,67 @@ Address: %4 - + Export Transaction Data - + Comma separated file (*.csv) - + Confirmed - + Date - + Type - + Label - + Address - + Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to @@ -1509,246 +1493,312 @@ Address: %4 - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) + Add a node to connect to + + + + + + Connect only to the specified node + + + + + + Don't find peers using internet relay chat + + + + + Don't accept connections from outside + + + + + + Don't bootstrap list of peers using DNS - Don't attempt to use UPnP to map the listening port + Threshold for disconnecting misbehaving peers (default: 100) + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + + + + + Don't attempt to use UPnP to map the listening port + + + + + Attempt to use UPnP to map the listening port - + Fee per kB to add to transactions you send - + Accept command line and JSON-RPC commands - + Run in the background as a daemon and accept commands - + Use the test network - + + Output extra debugging information + + + + + + Prepend debug output with timestamp + + + + + + Send trace/debug info to console instead of debug.log file + + + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections - + Password for JSON-RPC connections - + Listen for JSON-RPC connections on <port> (default: 8332) - + Allow JSON-RPC connections from specified IP address - + Send commands to node running on <ip> (default: 127.0.0.1) - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + SSL options: (see the Bitcoin 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) - + This help message - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + Loading addresses... - + Error loading addr.dat - + Loading block index... - + Error loading blkindex.dat - + Loading wallet... - + Error loading wallet.dat: Wallet corrupted - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - - Error loading wallet.dat + + Wallet needed to be rewritten: restart Bitcoin to complete - - Rescanning... - - - - - Threshold for disconnecting misbehaving peers (default: 100) + + Error loading wallet.dat - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + + Rescanning... - + Done loading - + Invalid -proxy address - + Invalid amount for -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + Error: CreateThread(StartNode) failed - - Warning: Disk space is low + + Warning: Disk space is low - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + beta @@ -1756,7 +1806,7 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) main - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index 826a28c9d9..198249b90f 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -7,12 +7,12 @@ About Bitcoin - Sobre Bitcoin + Acerca de Bitcoin <b>Bitcoin</b> version - <b>Bitcoin</b> - versión + <b>Bitcoin</b> versión @@ -40,7 +40,7 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. Address Book - Guia de direcciones + Libreta de direcciones @@ -50,22 +50,32 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. Double-click to edit address or label - Haz doble click para editar una dirección o etiqueta + Haga doble clic para editar una dirección o etiqueta Create a new address - Crea una nueva dirección + Crear una nueva dirección - - &New Address... - &Nueva Dirección + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Borrar de la lista la dirección seleccionada . Sólo se pueden borrar las direcciones de envío. + + + + &Delete + &Borrar Copy the currently selected address to the system clipboard - Copia la dirección seleccionada al portapapeles + Copiar la dirección seleccionada al portapapeles + + + + &New Address... + &Nueva Dirección @@ -73,34 +83,24 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.&Copiar al portapapeles - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Borra la dirección seleccionada de la lista. Solo las direcciónes de envio se pueden borrar. - - - - &Delete - Bo&rrar - - - + Export Address Book Data - Exporta datos de la Guia de direcciones + Exportar datos de la libreta de direcciones - + Comma separated file (*.csv) - Archivos separados por coma (*.csv) + Archivos de columnas separadas por coma (*.csv) - + Error exporting - Exportar errores + Error al exportar - + Could not write to file %1. - No se pudo escribir al archivo %1. + No se pudo escribir en el archivo %1. @@ -124,88 +124,93 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. AskPassphraseDialog - - Dialog - Cambiar contraseña - - - - - TextLabel - Cambiar contraseña: - - - + Enter passphrase - Introduce contraseña actual + Contraseña actual - + New passphrase Nueva contraseña - + + Dialog + Cambiar contraseña + + + Repeat new passphrase - Repite nueva contraseña: + Repita la nueva contraseña + + + + TextLabel + Cambiar contraseña: Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Introduce la nueva contraseña de cartera.<br/>Por favor utiliza un contraseña <b>de 10 o mas caracteres aleatorios</b>, u <b>ocho o mas palabras</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 - Encriptar cartera + Cifrar el monedero This operation needs your wallet passphrase to unlock the wallet. - Esta operación necesita la contraseña para desbloquear la cartera. + Para desbloquear el monedero esta operación necesita de su contraseña. Unlock wallet - Desbloquea cartera + Desbloquear monedero This operation needs your wallet passphrase to decrypt the wallet. - Esta operación necesita la contraseña para decriptar la cartera. + Para descifrar el monedero esta operación necesita de su contraseña. Decrypt wallet - Decriptar cartera + Descifrar monedero Change passphrase - Cambia contraseña + Cambiar contraseña Enter the old and new passphrase to the wallet. - Introduce la contraseña anterior y la nueva de cartera + Introduzca la contraseña anterior del monedero y la nueva. Confirm wallet encryption - Confirma la encriptación de cartera - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ATENCION: ¡Si encriptas tu cartera y pierdes la contraseña perderas <b>TODOS TUS BITCOINS</b>!" -¿Seguro que quieres seguir encriptando la cartera? + Confirmar cifrado del monedero Wallet encrypted - Cartera encriptada + Monedero cifrado + + + + + + + Wallet encryption failed + Ha fallado el cifrado del monedero + + + + Wallet passphrase was successfully changed. + La contraseña de cartera ha sido cambiada con exit. @@ -214,22 +219,16 @@ Are you sure you wish to encrypt your wallet? - - - - - Wallet encryption failed - Encriptación de cartera fallida + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ATENCION: ¡Si encriptas tu cartera y pierdes la contraseña perderas <b>TODOS TUS BITCOINS</b>!" +¿Seguro que quieres seguir encriptando la cartera? Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Encriptación de cartera fallida debido a un error interno. Tu cartera no ha sido encriptada. - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerda que encriptando tu cartera no garantiza mantener a salvo tus bitcoins en caso de tener viruses en el ordenador. + Ha fallado el cifrado del monedero debido a un error interno. El monedero no ha sido cifrado. @@ -240,211 +239,196 @@ Are you sure you wish to encrypt your wallet? Wallet unlock failed - Desbloqueo de cartera fallido + Ha fallado el desbloqueo del monedero The passphrase entered for the wallet decryption was incorrect. - La contraseña introducida para decriptar la cartera es incorrecta. + La contraseña introducida para descifrar el monedero es incorrecta. - - Wallet decryption failed - Decriptación de cartera fallida + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerda que encriptando tu cartera no garantiza mantener a salvo tus bitcoins en caso de tener viruses en el ordenador. - - Wallet passphrase was succesfully changed. - La contraseña de cartera ha sido cambiada con exit. + + Wallet decryption failed + Ha fallado el descifrado del monedero BitcoinGUI - + Bitcoin Wallet Cartera Bitcoin - - + + Synchronizing with network... Sincronizando con la red... - + Block chain synchronization in progress Sincronización cadena de bloques en progreso - + &Overview &Vista general - + Show general overview of wallet Muestra una vista general de cartera - + &Transactions &Transacciónes - + Browse transaction history Visiona el historial de transacciónes - + &Address Book &Guia de direcciónes - + Edit the list of stored addresses and labels Edita la lista de las direcciónes y etiquetas almacenada - + &Receive coins &Recibe monedas - + Show the list of addresses for receiving payments Muestra la lista de direcciónes utilizadas para recibir pagos - + &Send coins &Envia monedas - + Send coins to a bitcoin address Envia monedas a una dirección bitcoin - + E&xit &Salir - + Quit application Salir de la aplicación - + &About %1 S&obre %1 - + Show information about Bitcoin Muestra información sobre Bitcoin - + &Options... - &Opciones + &Opciones... - + Modify configuration options for bitcoin Modifica opciones de configuración - + Open &Bitcoin Abre &Bitcoin - + Show the Bitcoin window Muestra la ventana de Bitcoin - - &Export... - &Exporta... - - - - Export the current view to a file - Exporta la vista actual a un archivo - - - - &Encrypt Wallet - &Encriptar cartera - - - - Encrypt or decrypt wallet - Encriptar o decriptar cartera + + &File + &Archivo - - &Change Passphrase - &Cambiar la contraseña + + &Settings + &Configuración - - Change the passphrase used for wallet encryption - Cambiar la contraseña utilizada para la encriptación de cartera + + &Help + A&yuda - - About &Qt - + + Tabs toolbar + Barra de pestañas - - Show information about Qt - Muestra información sobre Qt + + Actions toolbar + Barra de acciones - - &File - &Archivo + + Encrypt or decrypt wallet + Encriptar o decriptar cartera - - &Settings - &Configuración + + &Export... + &Exporta... - - &Help - &Ayuda + + Export the current view to a file + Exporta la vista actual a un archivo - - Tabs toolbar - Barra de pestañas + + &Encrypt Wallet + &Encriptar cartera - - Actions toolbar - Barra de acciónes + + &Change Passphrase + &Cambiar la contraseña - + [testnet] [testnet] - - bitcoin-qt - bitcoin-qt + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para la encriptación de cartera - + %n active connection(s) to Bitcoin network %n conexión activa hacia la red Bitcoin @@ -452,84 +436,84 @@ Are you sure you wish to encrypt your wallet? - - Downloaded %1 of %2 blocks of transaction history. - Se han bajado %1 de %2 bloques de historial. + + About &Qt + Acerca de &Qt - + Downloaded %1 blocks of transaction history. Se han bajado %1 bloques de historial. + + + Show information about Qt + Mostrar información acerca de Qt + - + %n second(s) ago - Hace %n segundo - Hace %n segundos + hace %n segundo + hace %n segundos - + %n minute(s) ago - Hace %n minuto - Hace %n minutos + hace %n minuto + hace %n minutos - + %n hour(s) ago - Hace %n hora - Hace %n horas + hace %n hora + hace %n horas - + %n day(s) ago - Hace %n día - Hace %n días + hace %n día + hace %n días - + Up to date Actualizado - + Catching up... Recuperando... - + Last received block was generated %1. - El ultimo bloque recibido fue generado %1. + El último bloque recibido fue 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? - Esta transacción supera el límite. Puedes seguir enviandola incluyendo una comisión de %s que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Quieres seguir con la transacción? - - - - Sending... - Enviando... + Esta transacción supera el límite. Puede seguir enviándola incluyendo una comisión de %1 que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Desea pagar esa tarifa? - + Sent transaction Transacción enviada - + Incoming transaction Transacción entrante - + Date: %1 Amount: %2 Type: %3 @@ -541,42 +525,57 @@ Tipo: %3 Dirección: %4 - + + bitcoin-qt + bitcoin-qt + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - La cartera esta <b>encriptada</b> y actualmente <b>desbloqueda</b> + El monedero está <b>cifrado</b> y actualmente <b>desbloqueado</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> - La cartera esta <b>encriptada</b> y actualmente <b>bloqueda</b> + El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> + + + + Downloaded %1 of %2 blocks of transaction history. + Se han bajado %1 de %2 bloques de historial. + + + + Sending... + Enviando... - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &Unidad en la que mostrar cantitades: - + Choose the default subdivision unit to show in the interface, and when sending coins Elige la subdivisión por defecto para mostrar cantidaded en la interfaz cuando se envien monedas - + &Display addresses in transaction list &Muestra direcciones en el listado de movimientos - + Whether to show Bitcoin addresses in the transaction list - + Mostrar las direcciones Bitcoin en la lista de transacciones @@ -594,7 +593,7 @@ Dirección: %4 The label associated with this address book entry - La etiqueta asociada con esta entrada de la guia + La etiqueta asociada con esta entrada en la libreta @@ -604,7 +603,7 @@ Dirección: %4 The address associated with this address book entry. This can only be modified for sending addresses. - La dirección asociada con esta entrada en la guia. Solo puede ser modificada para direcciónes de envío. + La dirección asociada con esta entrada en la guia. Solo puede ser modificada para direcciones de envío. @@ -629,26 +628,36 @@ Dirección: %4 The entered address "%1" is already in the address book. - La dirección introducia "%1" ya esta guardada en la guia. - - - - The entered address "%1" is not a valid bitcoin address. - La dirección introducida "%1" no es una dirección Bitcoin valida. + La dirección introducida "%1" ya está presente en la libreta de direcciones. Could not unlock wallet. - No se pudo desbloquear la cartera. + No se pudo desbloquear el monedero. New key generation failed. - La generación de nueva clave fallida. + Ha fallado la generación de la nueva clave. + + + + The entered address "%1" is not a valid bitcoin address. + La dirección introducida "%1" no es una dirección Bitcoin valida. MainOptionsPage + + + Proxy &IP: + &IP Proxy: + + + + &Port: + &Puerto: + &Start Bitcoin on window system startup @@ -696,24 +705,14 @@ Dirección: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Conecta a la red Bitcoin atraves de un proxy SOCKS4 (ej. para conectar con la red Tor) - - - Proxy &IP: - &IP Proxy: - IP address of the proxy (e.g. 127.0.0.1) Dirección IP del proxy (ej. 127.0.0.1) - - - &Port: - &Puerto: - Port of the proxy (e.g. 1234) @@ -721,7 +720,7 @@ Dirección: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Comisión opcional a las transacciones por kB que ayuda a asegurar que tus transacciones son procesadas rápidamente. La mayoría de las transacciones son de 1 kB. Se recomienda una comisión de 0.01. @@ -729,14 +728,14 @@ Dirección: %4 Pay transaction &fee Comision de &transacciónes - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Comisión opcional a las transacciones por kB que ayuda a asegurar que tus transacciones son procesadas rápidamente. La mayoría de las transacciones son de 1 kB. Se recomienda una comisión de 0.01. - OptionsDialog + + + Options + Opciones + Main @@ -747,11 +746,6 @@ Dirección: %4 Display Mostrado - - - Options - Opciones - OverviewPage @@ -763,43 +757,28 @@ Dirección: %4 Balance: - Balance: - - - - 123.456 BTC - 123.456 BTC + Saldo: Number of transactions: - Numero de movimientos: + Número de movimientos: + + + + <b>Recent transactions</b> + <b>Movimientos recientes</b> 0 0 - - - Unconfirmed: - No confirmado(s): - - - - 0 BTC - 0 BTC - Wallet Cartera - - - <b>Recent transactions</b> - <b>Movimientos recientes</b> - Your current balance @@ -815,45 +794,35 @@ Dirección: %4 Total number of transactions in wallet El numero total de movimiento en cartera + + + Unconfirmed: + No confirmado(s): + SendCoinsDialog - - - - - - - - - Send Coins - Envia monedas + + Are you sure you want to send %1? + Estas seguro que quieres enviar %1? - - Send to multiple recipients at once - Envia a multiples destinatarios de una vez - - - - &Add recipient... - &Agrega destinatario... - - - - Clear all - &Borra todos + + + + + + + + + Send Coins + Envía monedas Remove all transaction fields - - - - - Balance: - Balance: + Eliminar todos los campos de las transacciones @@ -863,7 +832,7 @@ Dirección: %4 Confirm the send action - Confirma el envio + Confirma el envío @@ -871,59 +840,74 @@ Dirección: %4 &Envía - + + Send to multiple recipients at once + Envia a multiples destinatarios de una vez + + + + &Add recipient... + &Agrega destinatario... + + + + Clear all + &Borra todos + + + + Balance: + Balance: + + + <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) - + Confirm send coins Confirmar el envio de monedas - - Are you sure you want to send %1? - Estas seguro que quieres enviar %1? - - - + and y - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance - La cantidad sobrepasa tu saldo + + The amount exceeds your balance. + La cantidad sobrepasa su saldo. - - Total exceeds your balance when the %1 transaction fee is included - El total sobrepasa tu saldo cuando se incluyen %1 como tasa de envio + + 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 in one send operation - Tienes una dirección duplicada, solo puedes enviar a direcciónes individuales de una sola vez + + 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. - - Error: Transaction creation failed - Error: La transacción no se pudo crear + + Error: Transaction creation failed. + Error: ha fallado la creación de 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 fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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: transacción rechazada. Puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado así aquí. @@ -931,7 +915,7 @@ Dirección: %4 Form - Envio + Desde @@ -962,7 +946,7 @@ Dirección: %4 Choose address from address book - Elije dirección de la guia + Elije dirección de la guia @@ -972,7 +956,7 @@ Dirección: %4 Paste address from clipboard - Pega dirección desde portapapeles + Pega dirección desde portapapelesPega dirección desde portapapeles @@ -992,6 +976,16 @@ Dirección: %4 TransactionDesc + + + %1 confirmations + %1 confirmaciones + + + + unknown + desconocido + Open for %1 blocks @@ -1012,11 +1006,6 @@ Dirección: %4 %1/unconfirmed %1/no confirmado - - - %1 confirmations - %1 confirmaciónes - <b>Status:</b> @@ -1053,11 +1042,6 @@ Dirección: %4 <b>From:</b> <b>De:</b> - - - unknown - desconocido - @@ -1086,7 +1070,7 @@ Dirección: %4 (%1 matures in %2 more blocks) - (%1 madura en %1 bloques mas) + (%1 madura en %2 bloques mas) @@ -1162,7 +1146,7 @@ Dirección: %4 Cantidad - + Open for %n block(s) Abierto por %n bloque @@ -1170,101 +1154,106 @@ Dirección: %4 - + Open until %1 Abierto hasta %1 - + Offline (%1 confirmations) - Fuera de linea (%1 confirmaciónes) + Fuera de linea (%1 confirmaciones) - + Unconfirmed (%1 of %2 confirmations) - No confirmado (%1 de %2 confirmaciónes) + No confirmado (%1 de %2 confirmaciones) - + Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) - - - Mined balance will be available in %n more blocks - - El balance minado estará disponible en %n bloque mas - El balance minado estará disponible en %n bloques mas - - - + This block was not received by any other nodes and will probably not be accepted! Este bloque no ha sido recibido por otros nodos y probablemente no sea aceptado ! - + Generated but not accepted - Generado pero no acceptado + Generado pero no aceptado - + Received with Recibido con - - Received from - Recibido de - - - + Sent to Enviado a - + Payment to yourself - Pago proprio + Pago propio - + Mined Minado - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. - Estado de transacción. Pasa el raton sobre este campo para ver el numero de confirmaciónes. + 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 cuando se recibió la transaccion + Fecha y hora de cuando se recibió la transacción. - + Type of transaction. Tipo de transacción. - + Destination address of transaction. - Dirección de destino para la transacción + Dirección de destino de la transacción. - + Amount removed from or added to balance. - Cantidad restada o añadida al balance + Cantidad retirada o añadida al balance. + + + + Mined balance will be available in %n more blocks + + El balance minado estará disponible en %n bloque mas + El balance minado estará disponible en %n bloques mas + + + + + Received from + Recibidos de TransactionView + + + to + para + @@ -1284,7 +1273,7 @@ Dirección: %4 This month - Esta mes + Este mes @@ -1329,97 +1318,92 @@ Dirección: %4 Enter address or label to search - Introduce una dirección o etiqueta para buscar + Introduzca una dirección o etiqueta que buscar Min amount - Cantidad minima + Cantidad mínima Copy address - Copia dirección + Copiar dirección Copy label - Copia etiqueta + Copiar etiqueta Edit label - Edita etiqueta + Editar etiqueta - - Show details... - Muestra detalles... - - - + Export Transaction Data - Exportar datos de transacción + Exportar datos de la transacción - + Comma separated file (*.csv) - Archivos separados por coma (*.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 exportando - + Could not write to file %1. No se pudo escribir en el archivo %1. - + Range: Rango: - - to - para + + Show details... + Muestra detalles... @@ -1435,13 +1419,59 @@ Dirección: %4 Bitcoin version - Versión Bitcoin + Versión de Bitcoin Usage: Uso: + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. + + + + + Loading block index... + Cargando el índice de bloques... + + + + Loading wallet... + Cargando monedero... + + + + Rescanning... + Rescaneando... + + + + Done loading + Generado pero no aceptado + + + + Invalid -proxy address + Dirección -proxy invalida + + + + Invalid amount for -paytxfee=<amount> + Cantidad inválida para -paytxfee=<amount> + + + + 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. + + + + Error: CreateThread(StartNode) failed + Error: CreateThread(StartNode) fallido + Send command to -server or bitcoind @@ -1535,118 +1565,212 @@ Dirección: %4 + Listen for connections on <port> (default: 8333 or testnet: 18333) + + Preste atención a las conexiones en <puerto> (por defecto: 8333 o testnet: 18333) + + + + Maintain at most <n> connections to peers (default: 125) + + Mantener en la mayoría de las conexiones <n> a sus compañeros (por defecto: 125) + + + Add a node to connect to Agrega un nodo para conectarse - + Connect only to the specified node Conecta solo al nodo especificado - + + Don't find peers using internet relay chat + + No encontrar los pares utilizando Internet Relay Chat + + + Don't accept connections from outside No aceptar conexiones desde el exterior - - Don't attempt to use UPnP to map the listening port + + Loading addresses... + Cargando direcciónes... + + + + Attempt to use UPnP to map the listening port - No intentar usar UPnP para mapear el puerto de entrada + Intenta usar UPnP para mapear el puerto de escucha + + + Don't bootstrap list of peers using DNS + + + + + + Threshold for disconnecting misbehaving peers (default: 100) + + Umbral para la desconexión de los compañeros se portan mal (por defecto: 100) + - Attempt to use UPnP to map the listening port + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Intenta usar UPnP para mapear el puerto de escucha. - + Número de segundos que se mantienen los compañeros se portan mal en volver a conectarse (por defecto: 86400) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + + + + + Don't attempt to use UPnP to map the listening port + + No intentar usar UPnP para mapear el puerto de entrada + + + Fee per kB to add to transactions you send - Comisión por kB para agregar a las transacciones que envias - + Tarifa por kB que añadir a las transacciones que envíe - + Accept command line and JSON-RPC commands Aceptar comandos consola y JSON-RPC - + Run in the background as a daemon and accept commands - Correr como demonio y acepta comandos - + Correr como demonio y acepta comandos - + Use the test network Usa la red de pruebas - + + Output extra debugging information + + + + + + Prepend debug output with timestamp + + Anteponer la salida de depuración, con indicación de la hora + + + + Send trace/debug info to console instead of debug.log file + + Enviar rastrear/debug info a la consola en lugar de debug.log archivo + + + + Send trace/debug info to debugger + + Enviar rastrear / debug info al depurador + + + Username for JSON-RPC connections Usuario para las conexiones JSON-RPC - + Password for JSON-RPC connections - Contraseña para las conexiones JSON-RPC - + Contraseña para las conexiones JSON-RPC - + Listen for JSON-RPC connections on <port> (default: 8332) - Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) - + Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) - + Allow JSON-RPC connections from specified IP address - Permite conexiones JSON-RPC desde la dirección IP especificada - + Permite conexiones JSON-RPC desde la dirección IP especificada - + Send commands to node running on <ip> (default: 127.0.0.1) - Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - + Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - + Set key pool size to <n> (default: 100) - Ajusta el numero de claves en reserva <n> (predeterminado: 100) - + Ajusta el número de claves en reserva <n> (predeterminado: 100) - + Rescan the block chain for missing wallet transactions - Rescanea la cadena de bloques para transacciones perdidas de la cartera - + Rescanea la cadena de bloques para transacciones perdidas de la cartera - + + Wallet needed to be rewritten: restart Bitcoin to complete + + El monedero ha necesitado ser reescrito. Reinicie Bitcoin para completar el proceso + + + + Warning: Disk space is low + Atención: Poco espacio en el disco duro + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Precaución: Por favor revisa que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal Bitcoin no funcionará correctamente. + + + + beta + beta + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1654,163 +1778,80 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Use OpenSSL (https) for JSON-RPC connections Usa OpenSSL (https) para las conexiones JSON-RPC - + Server certificate file (default: server.cert) Certificado del servidor (Predeterminado: server.cert) - + Server private key (default: server.pem) Clave privada del servidor (Predeterminado: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Este mensaje de ayuda - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. - - - - - Loading addresses... - Cargando direcciónes... - - - + Error loading addr.dat Error cargando addr.dat - - Loading block index... - Cargando el index de bloques... - - - + Error loading blkindex.dat Error cargando blkindex.dat - - Loading wallet... - Cargando cartera... - - - + Error loading wallet.dat: Wallet corrupted Error cargando wallet.dat: Cartera dañada - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Error cargando el archivo wallet.dat: Se necesita una versión mas nueva de Bitcoin - + Error loading wallet.dat Error cargando wallet.dat - - - Rescanning... - Rescaneando... - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - - Done loading - Carga completa - - - - Invalid -proxy address - Dirección -proxy invalida - - - - Invalid amount for -paytxfee=<amount> - Cantidad inválida para -paytxfee=<amount> - - - - 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. - - - - Error: CreateThread(StartNode) failed - Error: CreateThread(StartNode) fallido - - - - Warning: Disk space is low - Atención: Poco espacio en el disco duro - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Precaución: Por favor revisa que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal Bitcoin no funcionará correctamente. - - - - beta - beta - main - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index af883fdebe..30e2fe1a73 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -83,22 +83,22 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.&Borrar - + Export Address Book Data Exporta datos de la guia de direcciones - + Comma separated file (*.csv) Archivos separados por coma (*.csv) - + Error exporting Exportar errores - + Could not write to file %1. No se pudo escribir al archivo %1. @@ -129,23 +129,22 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Cambiar contraseña - - + TextLabel Cambiar contraseña: - + Enter passphrase Introduce contraseña actual - + New passphrase Nueva contraseña - + Repeat new passphrase Repite nueva contraseña: @@ -208,10 +207,9 @@ Are you sure you wish to encrypt your wallet? Billetera codificada - - - Warning: The Caps Lock key is on. - Precaucion: Mayúsculas Activadas + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus bitcoins de ser robados por malware que infecte su computador @@ -226,11 +224,6 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. La codificación de la billetera falló debido a un error interno. Tu billetera no ha sido codificada. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus bitcoins de ser robados por malware que infecte su computador - @@ -256,195 +249,196 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. La contraseña de billetera ha sido cambiada con éxito. + + + + Warning: The Caps Lock key is on. + Precaucion: Mayúsculas Activadas + BitcoinGUI - + + &About %1 + S&obre %1 + + + Bitcoin Wallet Billetera Bitcoin - - + + Synchronizing with network... Sincronizando con la red... - + Block chain synchronization in progress Sincronización de la cadena de bloques en progreso - + &Overview &Vista general - + Show general overview of wallet Muestra una vista general de la billetera - + &Transactions &Transacciónes - + Browse transaction history Explora el historial de transacciónes - + &Address Book &Guia de direcciónes - + Edit the list of stored addresses and labels Edita la lista de direcciones y etiquetas almacenadas - + &Receive coins &Recibir monedas - + Show the list of addresses for receiving payments Muestra la lista de direcciónes utilizadas para recibir pagos - + &Send coins &Envíar monedas - + Send coins to a bitcoin address Enviar monedas a una dirección bitcoin - + E&xit &Salir - + Quit application Salir del programa - - &About %1 - S&obre %1 - - - + Show information about Bitcoin Muestra información acerca de Bitcoin - + &Options... &Opciones - + Modify configuration options for bitcoin Modifica las opciones de configuración de bitcoin - + Open &Bitcoin Abre &Bitcoin - + Show the Bitcoin window Muestra la ventana de Bitcoin - + &Export... &Exportar... - + Export the current view to a file Exportar la vista actual a un archivo - + &Encrypt Wallet &Codificar la billetera - + Encrypt or decrypt wallet Codificar o decodificar la billetera - + &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 - + About &Qt Acerca de - + Show information about Qt Mostrar Información sobre QT - + &File &Archivo - + &Settings &Configuración - + &Help &Ayuda - + Tabs toolbar Barra de pestañas - + Actions toolbar Barra de acciónes - + [testnet] [red-de-pruebas] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network %n conexión activa hacia la red Bitcoin @@ -452,17 +446,17 @@ Are you sure you wish to encrypt your wallet? - - Downloaded %1 of %2 blocks of transaction history. - Descargados %1 de %2 bloques del historial de transacciones. - - - + Downloaded %1 blocks of transaction history. Descargado %1 bloques del historial de transacciones. + + + bitcoin-qt + bitcoin-qt + - + %n second(s) ago Hace %n segundo @@ -470,15 +464,20 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago Hace %n minuto Hace %n minutos + + + Downloaded %1 of %2 blocks of transaction history. + Descargados %1 de %2 bloques del historial de transacciones. + - + %n hour(s) ago Hace %n hora @@ -486,7 +485,7 @@ Are you sure you wish to encrypt your wallet? - + %n day(s) ago Hace %n día @@ -494,42 +493,37 @@ Are you sure you wish to encrypt your wallet? - + Up to date Actualizado - + Catching up... Recuperando... - + Last received block was generated %1. El ultimo bloque recibido fue 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? Esta transacción supera el límite. Puedes seguir enviandola incluyendo una comisión de %s que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Quieres seguir con la transacción? - - Sending... - Enviando... - - - + Sent transaction Transacción enviada - + Incoming transaction Transacción entrante - + Date: %1 Amount: %2 Type: %3 @@ -541,40 +535,45 @@ Tipo: %3 Dirección: %4 - + + Sending... + Enviando... + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> La billetera esta <b>codificada</b> y actualmente <b>desbloqueda</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> La billetera esta <b>codificada</b> y actualmente <b>bloqueda</b> - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &Unidad en la que mostrar cantitades: - + Choose the default subdivision unit to show in the interface, and when sending coins Elige la subdivisión por defecto para mostrar cantidaded en la interfaz cuando se envien monedas - + &Display addresses in transaction list &Muestra direcciones en el listado de transaccioines - + Whether to show Bitcoin addresses in the transaction list @@ -631,11 +630,6 @@ Dirección: %4 The entered address "%1" is already in the address book. La dirección introducida "%1" ya esta guardada en la libreta de direcciones. - - - The entered address "%1" is not a valid bitcoin address. - La dirección introducida "%1" no es una dirección Bitcoin valida. - Could not unlock wallet. @@ -646,6 +640,11 @@ Dirección: %4 New key generation failed. La generación de nueva clave falló. + + + The entered address "%1" is not a valid bitcoin address. + La dirección introducida "%1" no es una dirección Bitcoin valida. + MainOptionsPage @@ -696,7 +695,7 @@ Dirección: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Conecta a la red Bitcoin a través de un proxy SOCKS4 (ej. cuando te conectas por la red Tor) @@ -712,7 +711,7 @@ Dirección: %4 &Port: - &Puerto: + &Puerto: @@ -721,19 +720,14 @@ Dirección: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Comisión opcional por kB que ayuda a asegurar que sus transacciones son procesadas rápidamente. La mayoria de transacciones son de 1 KB. Se recomienda comisión de 0.01 + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Comisión opcional por kB que ayuda a asegurar que sus transacciones son procesadas rápidamente. La mayoria de transacciones son de 1 KB. Se recomienda comisión de 0.01. Pay transaction &fee Comisión de &transacciónes - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Comisión opcional por kB que ayuda a asegurar que sus transacciones son procesadas rápidamente. La mayoria de transacciones son de 1 KB. Se recomienda comisión de 0.01 - OptionsDialog @@ -765,36 +759,26 @@ Dirección: %4 Balance: Saldo: - - - 123.456 BTC - 123.456 BTC - Number of transactions: Numero de transacciones: - - - 0 - 0 - Unconfirmed: No confirmados: - - - 0 BTC - 0 BTC - Wallet Cartera + + + 0 + 0 + <b>Recent transactions</b> @@ -818,38 +802,28 @@ Dirección: %4 SendCoinsDialog + + + Remove all transaction fields + Remover todos los campos de la transacción + - - - - - - - + + + + + + + Send Coins Enviar monedas - - - Send to multiple recipients at once - Enviar a múltiples destinatarios - - - - &Add recipient... - &Agrega destinatario... - Clear all &Borra todos - - - Remove all transaction fields - Remover todos los campos de la transacción - Balance: @@ -871,58 +845,68 @@ Dirección: %4 &Envía - + + &Add recipient... + &Agrega destinatario... + + + + Send to multiple recipients at once + Enviar a múltiples destinatarios + + + <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) - + Confirm send coins Confirmar el envio de monedas - - Are you sure you want to send %1? - Estas seguro que quieres enviar %1? - - - + and y - - The recepient address is not valid, please recheck. + + Are you sure you want to send %1? + Estas seguro que quieres enviar %1? + + + + 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. - - Amount exceeds your balance - La cantidad sobrepasa tu saldo + + The amount exceeds your balance. + La cantidad sobrepasa tu saldo. - - Total exceeds your balance when the %1 transaction fee is included - El total sobrepasa tu saldo cuando se incluyen %1 como tasa de envio + + 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 in one send operation - Tienes una dirección duplicada, solo puedes enviar a direcciónes individuales de una sola vez + + 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. - - Error: Transaction creation failed - Error: La transacción no se pudo crear + + Error: Transaction creation failed. + Error: La transacción no se pudo crear. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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: La transacción fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. @@ -933,11 +917,6 @@ Dirección: %4 Form Envio - - - A&mount: - Cantidad: - Pay &To: @@ -974,16 +953,21 @@ Dirección: %4 Paste address from clipboard Pega dirección desde portapapeles - - - Alt+P - Alt+P - Remove this recipient Elimina destinatario + + + A&mount: + Cantidad: + + + + Alt+P + Alt+P + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -992,6 +976,16 @@ Dirección: %4 TransactionDesc + + + %1 confirmations + %1 confirmaciónes + + + + unknown + desconocido + Open for %1 blocks @@ -1012,11 +1006,6 @@ Dirección: %4 %1/unconfirmed %1/no confirmado - - - %1 confirmations - %1 confirmaciónes - <b>Status:</b> @@ -1047,17 +1036,6 @@ Dirección: %4 <b>Source:</b> Generated<br> <b>Fuente:</b> Generado<br> - - - - <b>From:</b> - <b>De:</b> - - - - unknown - desconocido - @@ -1068,13 +1046,19 @@ Dirección: %4 (yours, label: - (tuya, etiqueta: + (tuya, etiqueta: (yours) (tuya) + + + + <b>From:</b> + <b>De:</b> + @@ -1162,7 +1146,7 @@ Dirección: %4 Cantidad - + Open for %n block(s) Abierto por %n bloque @@ -1170,120 +1154,155 @@ Dirección: %4 - + Open until %1 Abierto hasta %1 - + Offline (%1 confirmations) Fuera de linea (%1 confirmaciónes) - + Unconfirmed (%1 of %2 confirmations) No confirmado (%1 de %2 confirmaciónes) - + Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) - - - Mined balance will be available in %n more blocks - - El balance minado estará disponible en %n bloque mas - El balance minado estará disponible en %n bloques mas - - - + This block was not received by any other nodes and will probably not be accepted! Este bloque no ha sido recibido por otros nodos y probablemente no sea aceptado ! - + Generated but not accepted Generado pero no acceptado - + Received with Recibido con - + Received from Recibido de - + Sent to Enviado a - + Payment to yourself Pagar a usted mismo - + Mined Minado - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. Estado de transacción. Pasa el raton sobre este campo para ver el numero de confirmaciónes. - + Date and time that the transaction was received. Fecha y hora cuando se recibió la transaccion - + Type of transaction. Tipo de transacción. - + Destination address of transaction. Dirección de destino para la transacción - + Amount removed from or added to balance. Cantidad restada o añadida al balance + + + Mined balance will be available in %n more blocks + + El balance minado estará disponible en %n bloque mas + El balance minado estará disponible en %n bloques mas + + TransactionView - - - All - Todo + + Type + Tipo - - Today - Hoy + + Label + Etiqueta - - This week - Esta semana + + Address + Dirección - - This month + + ID + ID + + + + Could not write to file %1. + No se pudo escribir en el archivo %1. + + + + Range: + Rango: + + + + to + para + + + + + All + Todo + + + + Today + Hoy + + + + This week + Esta semana + + + + This month Esta mes @@ -1352,75 +1371,40 @@ Dirección: %4 Edita etiqueta - - Show details... - Muestra detalles... - - - + Export Transaction Data Exportar datos de transacción - + Comma separated file (*.csv) Archivos separados por coma (*.csv) - + Confirmed Confirmado - + Date Fecha - - Type - Tipo - - - - Label - Etiqueta - - - - Address - Dirección + + Show details... + Muestra detalles... - + Amount Cantidad - - ID - ID - - - + Error exporting Error exportando - - - Could not write to file %1. - No se pudo escribir en el archivo %1. - - - - Range: - Rango: - - - - to - para - WalletModel @@ -1442,6 +1426,52 @@ Dirección: %4 Usage: Uso: + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. + + + + + Loading addresses... + Cargando direcciónes... + + + + Loading block index... + Cargando el index de bloques... + + + + Loading wallet... + Cargando cartera... + + + + Rescanning... + Rescaneando... + + + + Done loading + Carga completa + + + + Invalid amount for -paytxfee=<amount> + Cantidad inválida para -paytxfee=<amount> + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. + + + + beta + beta + Send command to -server or bitcoind @@ -1530,123 +1560,212 @@ Dirección: %4 Allow DNS lookups for addnode and connect - Permite búsqueda DNS para addnode y connect - + Permite búsqueda DNS para addnode y connect - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - Agrega un nodo para conectarse - + Escuchar por conecciones en <puerto> (Por defecto: 8333 o red de prueba: 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) - Conecta solo al nodo especificado - + Mantener al menos <n> conecciones por cliente (por defecto: 125) + Add a node to connect to + + Agrega un nodo para conectarse + + + + Connect only to the specified node + + Conecta solo al nodo especificado + + + + Don't find peers using internet relay chat + + No buscar pares usando 'internet relay chat (IRC)' + + + Don't accept connections from outside No aceptar conexiones desde el exterior + + + Don't bootstrap list of peers using DNS + + + - Don't attempt to use UPnP to map the listening port + Threshold for disconnecting misbehaving peers (default: 100) - No intentar usar UPnP para mapear el puerto de entrada - + Umbral de desconección de clientes con mal comportamiento (por defecto: 100) + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + + + + + Don't attempt to use UPnP to map the listening port + + No intentar usar UPnP para mapear el puerto de entrada + + + Attempt to use UPnP to map the listening port - Intenta usar UPnP para mapear el puerto de escucha. - + Intenta usar UPnP para mapear el puerto de escucha - + Fee per kB to add to transactions you send - Comisión por kB para agregar a las transacciones que envias - + Comisión por kB para adicionarla a las transacciones enviadas - + Accept command line and JSON-RPC commands - Aceptar comandos consola y JSON-RPC - + Aceptar comandos consola y JSON-RPC - + Run in the background as a daemon and accept commands - Correr como demonio y acepta comandos - + Correr como demonio y acepta comandos - + Use the test network - Usa la red de pruebas - + Usa la red de pruebas - + + Output extra debugging information + + Adjuntar informacion extra de depuracion + + + + Prepend debug output with timestamp + + Anteponer salida de depuracion con marca de tiempo + + + + Send trace/debug info to console instead of debug.log file + + Enviar informacion de seguimiento a la consola en vez del archivo debug.log + + + + Send trace/debug info to debugger + + Enviar informacion de seguimiento al depurador + + + + Wallet needed to be rewritten: restart Bitcoin to complete + + La billetera necesita ser reescrita: reinicie Bitcoin para completar + + + + Invalid -proxy address + Dirección -proxy invalida + + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + Precaución: -paytxfee es muy alta. Esta es la comisión que pagarás si envias una transacción. + + + + Warning: Disk space is low + Atención: Poco espacio en el disco duro + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Precaución: Por favor revise que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal configurado Bitcoin no funcionará correctamente. + + + Username for JSON-RPC connections 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: 8332) Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) - + Allow JSON-RPC connections from specified IP address Permite conexiones JSON-RPC desde la dirección IP especificada - + Send commands to node running on <ip> (default: 127.0.0.1) Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - + Set key pool size to <n> (default: 100) Ajusta el numero de claves en reserva <n> (predeterminado: 100) - + Rescan the block chain for missing wallet transactions Rescanea la cadena de bloques para transacciones perdidas de la cartera - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1654,163 +1773,85 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Use OpenSSL (https) for JSON-RPC connections Usa OpenSSL (https) para las conexiones JSON-RPC - + Server certificate file (default: server.cert) Certificado del servidor (Predeterminado: server.cert) - + Server private key (default: server.pem) Clave privada del servidor (Predeterminado: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Este mensaje de ayuda - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. - - - - - Loading addresses... - Cargando direcciónes... - - - + Error loading addr.dat Error cargando addr.dat - - Loading block index... - Cargando el index de bloques... - - - + Error loading blkindex.dat Error cargando blkindex.dat - - Loading wallet... - Cargando cartera... - - - + Error loading wallet.dat: Wallet corrupted Error cargando wallet.dat: Cartera dañada - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Error cargando el archivo wallet.dat: Se necesita una versión mas nueva de Bitcoin - + Error loading wallet.dat Error cargando wallet.dat - - Rescanning... - Rescaneando... - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - - Done loading - Carga completa - - - - Invalid -proxy address - Dirección -proxy invalida - - - - Invalid amount for -paytxfee=<amount> - Cantidad inválida para -paytxfee=<amount> - - - - 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. - - - + Error: CreateThread(StartNode) failed Error: CreateThread(StartNode) fallido - - - Warning: Disk space is low - Atención: Poco espacio en el disco duro - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Precaución: Por favor revise que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal configurado Bitcoin no funcionará correctamente. - - - - beta - beta - main - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index d39ab42bb5..20797df8a1 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -79,22 +79,22 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt &Törlés - + Export Address Book Data Címjegyzék adatainak exportálása - + Comma separated file (*.csv) Vesszővel elválasztott fájl (*. csv) - + Error exporting Hiba exportálás közben - + Could not write to file %1. %1 nevű fájl nem írható. @@ -125,23 +125,22 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt Párbeszéd - - + TextLabel SzövegCímke - + Enter passphrase Add meg a jelszót - + New passphrase Új jelszó - + Repeat new passphrase Új jelszó újra @@ -204,10 +203,9 @@ Biztosan kódolni akarod a tárcát? Tárca kódolva - - - Warning: The Caps Lock key is on. - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. @@ -222,11 +220,6 @@ Biztosan kódolni akarod a tárcát? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Tárca kódolása belső hiba miatt sikertelen. A tárcád nem lett kódolva. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. - @@ -252,275 +245,281 @@ Biztosan kódolni akarod a tárcát? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Jelszó megváltoztatva. + + + + Warning: The Caps Lock key is on. + + BitcoinGUI - + + Show the Bitcoin window + A Bitcoin-ablak mutatása + + + Bitcoin Wallet Bitcoin-tárca - - + + Synchronizing with network... Szinkronizálás a hálózattal... - + Block chain synchronization in progress Blokklánc-szinkronizálás folyamatban - + &Overview &Áttekintés - + Show general overview of wallet Tárca általános áttekintése - + &Transactions &Tranzakciók - + Browse transaction history Tranzakciótörténet megtekintése - + &Address Book Cím&jegyzék - + Edit the list of stored addresses and labels Tárolt címek és címkék listájának szerkesztése - + &Receive coins Érmék &fogadása - + Show the list of addresses for receiving payments Kiizetést fogadó címek listája - + &Send coins Érmék &küldése - + Send coins to a bitcoin address Érmék küldése megadott címre - + E&xit &Kilépés - + Quit application Kilépés - + &About %1 &A %1-ról - + Show information about Bitcoin Információk a Bitcoinról - + &Options... &Opciók... - + Modify configuration options for bitcoin Bitcoin konfigurációs opciók - + Open &Bitcoin A &Bitcoin megnyitása - - Show the Bitcoin window - A Bitcoin-ablak mutatása - - - + &Export... &Exportálás... - - Export the current view to a file - Jelenlegi nézet exportálása fájlba - - - + &Encrypt Wallet Tárca &kódolása - + Encrypt or decrypt wallet Tárca kódolása vagy dekódolása - + &Change Passphrase Jelszó &megváltoztatása - + Change the passphrase used for wallet encryption Tárcakódoló jelszó megváltoztatása - + About &Qt A &Qt-ról - + Show information about Qt Információk a Qt ról - + + Export the current view to a file + Jelenlegi nézet exportálása fájlba + + + &File &Fájl - + &Settings &Beállítások - + &Help &Súgó - + Tabs toolbar Fül eszköztár - + Actions toolbar Parancsok eszköztár - + [testnet] [teszthálózat] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network %n aktív kapcsolat a Bitcoin-hálózattal - + Downloaded %1 of %2 blocks of transaction history. %1 blokk letöltve a tranzakciótörténet %2 blokkjából. - + Downloaded %1 blocks of transaction history. %1 blokk letöltve a tranzakciótörténetből. - + %n second(s) ago %n másodperccel ezelőtt - + %n minute(s) ago %n perccel ezelőtt - + %n hour(s) ago %n órával ezelőtt - + %n day(s) ago %n nappal ezelőtt - + Up to date Naprakész - + Catching up... Frissítés... - + Last received block was generated %1. Az utolsóként kapott blokk generálva: %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? Ez a tranzakció túllépi a mérethatárt, de %1 tranzakciós díj ellenében így is elküldheted. Ezt a plusz összeget a tranzakcióidat feldolgozó csomópontok kapják, így magát a hálózatot támogatod vele. Hajlandó vagy megfizetni a díjat? - + Sending... Küldés... - + Sent transaction Tranzakció elküldve. - + Incoming transaction Beérkező tranzakció - + Date: %1 Amount: %2 Type: %3 @@ -533,40 +532,40 @@ Cím: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Tárca <b>kódolva</b> és jelenleg <b>nyitva</b>. - + Wallet is <b>encrypted</b> and currently <b>locked</b> Tárca <b>kódolva</b> és jelenleg <b>zárva</b>. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &Mértékegység: - + Choose the default subdivision unit to show in the interface, and when sending coins Válaszd ki az interfészen és érmék küldésekor megjelenítendő alapértelmezett alegységet. - + &Display addresses in transaction list &Címek megjelenítése a tranzakciólistában - + Whether to show Bitcoin addresses in the transaction list @@ -641,6 +640,11 @@ Cím: %4 MainOptionsPage + + + &Port: + &Port: + &Start Bitcoin on window system startup @@ -688,7 +692,7 @@ Cím: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) SOCKS4 proxyn keresztüli csatlakozás a Bitcoin hálózatához (pl. Tor-on keresztüli csatlakozás esetén) @@ -701,11 +705,6 @@ Cím: %4 IP address of the proxy (e.g. 127.0.0.1) Proxy IP címe (pl.: 127.0.0.1) - - - &Port: - &Port: - Port of the proxy (e.g. 1234) @@ -713,7 +712,7 @@ Cím: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Opcionális, kB-onkénti tranzakciós díj a tranzakcióid minél gyorsabb feldolgozásának elősegítésére. A legtöbb tranzakció 1 kB-os. 0,01 BTC ajánlott. @@ -721,11 +720,6 @@ Cím: %4 Pay transaction &fee Tranzakciós &díj fizetése - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Opcionális, kB-onkénti tranzakciós díj a tranzakcióid minél gyorsabb feldolgozásának elősegítésére. A legtöbb tranzakció 1 kB-os. 0,01 BTC ajánlott. - OptionsDialog @@ -757,11 +751,6 @@ Cím: %4 Balance: Egyenleg: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -772,16 +761,6 @@ Cím: %4 0 0 - - - Unconfirmed: - Megerősítetlen: - - - - 0 BTC - 0 BTC - Wallet @@ -807,18 +786,23 @@ Cím: %4 Total number of transactions in wallet Tárca összes tranzakcióinak száma + + + Unconfirmed: + Megerősítetlen: + SendCoinsDialog - - - - - - - + + + + + + + Send Coins Érmék küldése @@ -827,25 +811,15 @@ Cím: %4 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 - Remove all transaction fields - - Balance: - Egyenleg: + + Clear all + Mindent töröl @@ -863,59 +837,69 @@ Cím: %4 &Küldés - - <b>%1</b> to %2 (%3) - <b>%1</b> %2-re (%3) + + &Add recipient... + &Címzett hozzáadása ... - + Confirm send coins Küldés megerősítése - - Are you sure you want to send %1? - Valóban el akarsz küldeni %1-t? + + Balance: + Egyenleg: - + + <b>%1</b> to %2 (%3) + <b>%1</b> %2-re (%3) + + + and és - - The recepient address is not valid, please recheck. + + Are you sure you want to send %1? + Valóban el akarsz küldeni %1-t? + + + + 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. - - Amount exceeds your balance + + The amount exceeds your balance. Nincs ennyi bitcoin az egyenlegeden. - - Total exceeds your balance when the %1 transaction fee is included + + 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 in one send operation + + 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. - - Error: Transaction creation failed - Hiba: nem sikerült létrehozni a tranzakciót + + Error: Transaction creation failed. + Hiba: nem sikerült létrehozni a tranzakciót. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból - például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. @@ -947,11 +931,6 @@ Cím: %4 &Label: Címke: - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Címzett címe (pl.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L ) - Choose address from address book @@ -967,16 +946,21 @@ Cím: %4 Paste address from clipboard Cím beillesztése a vágólapról - - - Alt+P - Alt+P - Remove this recipient Címzett eltávolítása + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Címzett címe (pl.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L ) + + + + Alt+P + Alt+P + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -985,21 +969,11 @@ Cím: %4 TransactionDesc - - - Open for %1 blocks - Megnyitva %1 blokkra - Open until %1 Megnyitva %1-ig - - - %1/offline? - %1/offline? - %1/unconfirmed @@ -1010,16 +984,31 @@ Cím: %4 %1 confirmations %1 megerősítés - - - <b>Status:</b> - <b>Állapot:</b> - , has not been successfully broadcast yet , még nem sikerült elküldeni. + + + unknown + ismeretlen + + + + Open for %1 blocks + Megnyitva %1 blokkra + + + + %1/offline? + %1/offline? + + + + <b>Status:</b> + <b>Állapot:</b> + , broadcast through %1 node @@ -1046,11 +1035,6 @@ Cím: %4 <b>From:</b> <b>Űrlap:</b> - - - unknown - ismeretlen - @@ -1134,6 +1118,11 @@ Cím: %4 TransactionTableModel + + + Generated but not accepted + Legenerálva, de még el nem fogadva. + Date @@ -1155,101 +1144,96 @@ Cím: %4 Összeg - + Open for %n block(s) %n blokkra megnyitva - + Open until %1 %1-ig megnyitva - + Offline (%1 confirmations) Offline (%1 megerősítés) - + Unconfirmed (%1 of %2 confirmations) Megerősítetlen (%1 %2 megerősítésből) - + Confirmed (%1 confirmations) Megerősítve (%1 megerősítés) - + Mined balance will be available in %n more blocks - %n blokk múlva lesz elérhető a bányászott egyenleg. + %n blokk múlva lesz elérhető a bányászott egyenleg - + This block was not received by any other nodes and will probably not be accepted! Ezt a blokkot egyetlen másik csomópont sem kapta meg, így valószínűleg nem lesz elfogadva! - - Generated but not accepted - Legenerálva, de még el nem fogadva. - - - + Received with Erre a címre - + Received from Erről az - + Sent to Erre a címre - + Payment to yourself Magadnak kifizetve - + Mined Kibányászva - + (n/a) (nincs) - + Transaction status. Hover over this field to show number of confirmations. Tranzakció állapota. Húzd ide a kurzort, hogy lásd a megerősítések számát. - + Date and time that the transaction was received. Tranzakció fogadásának dátuma és időpontja. - + Type of transaction. Tranzakció típusa. - + Destination address of transaction. A tranzakció címzettjének címe. - + Amount removed from or added to balance. Az egyenleghez jóváírt vagy ráterhelt összeg. @@ -1343,75 +1327,75 @@ Cím: %4 Címke szerkesztése - - Show details... - Részletek... - - - + Export Transaction Data Tranzakció adatainak exportálása - + 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 lépett fel exportálás közben - + Could not write to file %1. %1 fájlba való kiírás sikertelen. - + Range: Tartomány: - + to meddig + + + Show details... + Részletek... + WalletModel @@ -1433,6 +1417,46 @@ Cím: %4 Usage: Használat: + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Az %s adatkönyvtár nem zárható. A Bitcoin valószínűleg fut már. + + + + Loading addresses... + Címek betöltése... + + + + Loading block index... + Blokkindex betöltése... + + + + Loading wallet... + Tárca betöltése... + + + + Rescanning... + Újraszkennelés... + + + + 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. + + + + Error: CreateThread(StartNode) failed + Hiba: CreateThread(StartNode) sikertelen + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Figyelem: Ellenőrizd, hogy helyesen van-e beállítva a gépeden a dátum és az idő. A Bitcoin nem fog megfelelően működni, ha rosszul van beállítvaaz órád. + Send command to -server or bitcoind @@ -1507,15 +1531,13 @@ Cím: %4 Specify connection timeout (in milliseconds) - Csatlakozás időkerete (milliszekundumban) - + Csatlakozás időkerete (milliszekundumban) Connect through socks4 proxy - Csatlakozás SOCKS4 proxyn keresztül - + Csatlakozás SOCKS4 proxyn keresztül @@ -1526,282 +1548,299 @@ Cím: %4 + Listen for connections on <port> (default: 8333 or testnet: 18333) + + + + + + Maintain at most <n> connections to peers (default: 125) + + + + + Add a node to connect to Elérendő csomópont megadása - + Connect only to the specified node Csatlakozás csak a megadott csomóponthoz - + + Don't find peers using internet relay chat + + + + + Don't accept connections from outside Külső csatlakozások elutasítása + + + Don't bootstrap list of peers using DNS + + + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + + + + Don't attempt to use UPnP to map the listening port UPnP-használat letiltása a figyelő port feltérképezésénél - + Attempt to use UPnP to map the listening port - UPnP-használat engedélyezése a figyelő port feltérképezésénél - + UPnP-használat engedélyezése a figyelő port feltérképezésénél - + Fee per kB to add to transactions you send - kB-onként felajánlandó díj az általad küldött tranzakciókhoz - + kB-onként felajánlandó díj az általad küldött tranzakciókhoz - + Accept command line and JSON-RPC commands Parancssoros és JSON-RPC parancsok elfogadása - + Run in the background as a daemon and accept commands - Háttérben futtatás daemonként és parancsok elfogadása - + Háttérben futtatás daemonként és parancsok elfogadása - + Use the test network Teszthálózat használata - + + Output extra debugging information + + + + + + Prepend debug output with timestamp + + + + + + Send trace/debug info to console instead of debug.log file + + + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections Felhasználói név JSON-RPC csatlakozásokhoz - + Password for JSON-RPC connections Jelszó JSON-RPC csatlakozásokhoz - + Listen for JSON-RPC connections on <port> (default: 8332) - JSON-RPC csatlakozásokhoz figyelendő <port> (alapértelmezett: 8332) - + JSON-RPC csatlakozásokhoz figyelendő <port> (alapértelmezett: 8332) - + 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) - + 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 - + 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) - +SSL-opciók: (lásd a Bitcoin Wiki SSL-beállítási instrukcióit) - + + Wallet needed to be rewritten: restart Bitcoin to complete + + + + + + Done loading + Betöltés befejezve. + + + + Invalid -proxy address + Érvénytelen -proxy cím + + + + Invalid amount for -paytxfee=<amount> + Étvénytelen -paytxfee=<összeg> összeg + + + + Warning: Disk space is low + Figyelem: kevés a hely a lemezen + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + A %d port nem elérhető ezen a gépen. A Bitcoin valószínűleg fut már. + + + + beta + béta + + + Use OpenSSL (https) for JSON-RPC connections OpenSSL (https) használata JSON-RPC csatalkozásokhoz - + Server certificate file (default: server.cert) Szervertanúsítvány-fájl (alapértelmezett: server.cert) - + Server private key (default: server.pem) Szerver titkos kulcsa (alapértelmezett: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Elfogadható rejtjelkulcsok (alapértelmezett: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH ) - + This help message Ez a súgó-üzenet - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Az %s adatkönyvtár nem zárható. A Bitcoin valószínűleg fut már. - - - - Loading addresses... - Címek betöltése... - - - + Error loading addr.dat Hiba az addr.dat betöltése közben - - Loading block index... - Blokkindex betöltése... - - - + Error loading blkindex.dat Hiba a blkindex.dat betöltése közben - - Loading wallet... - Tárca 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 Bitcoin Hiba a wallet.dat betöltése közben: ehhez a tárcához újabb verziójú Bitcoin-kliens szükséges - + Error loading wallet.dat Hiba a wallet.dat betöltése közben - - - Rescanning... - Újraszkennelés... - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - - Done loading - Betöltés befejezve. - - - - Invalid -proxy address - Érvénytelen -proxy cím - - - - Invalid amount for -paytxfee=<amount> - Étvénytelen -paytxfee=<összeg> összeg - - - - 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. - - - - Error: CreateThread(StartNode) failed - Hiba: CreateThread(StartNode) sikertelen - - - - Warning: Disk space is low - Figyelem: kevés a hely a lemezen. - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - A %d port nem elérhető ezen a gépen. A Bitcoin valószínűleg fut már. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Figyelem: Ellenőrizd, hogy helyesen van-e beállítva a gépeden a dátum és az idő. A Bitcoin nem fog megfelelően működni, ha rosszul van beállítvaaz órád. - - - - beta - béta - main - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts index b163f35865..ebf2e926b2 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -80,22 +80,22 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso &Cancella - + Export Address Book Data Esporta gli indirizzi della rubrica - + Comma separated file (*.csv) Testo CSV (*.csv) - + Error exporting Errore nell'esportazione - + Could not write to file %1. Impossibile scrivere sul file %1. @@ -126,23 +126,22 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Dialogo - - + TextLabel Etichetta - + Enter passphrase Inserisci la passphrase - + New passphrase Nuova passphrase - + Repeat new passphrase Ripeti la passphrase @@ -205,10 +204,9 @@ Si è sicuri di voler cifrare il portamonete? Portamonete cifrato - - - Warning: The Caps Lock key is on. - Attenzione: tasto Blocco maiuscole attivo. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin verrà ora chiuso per finire il processo di crittazione. Ricorda che criptare il tuo portamonete non può fornire una protezione totale contro furti causati da malware che dovessero infettare il tuo computer. @@ -223,11 +221,6 @@ Si è sicuri di voler cifrare il portamonete? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Cifratura del portamonete fallita a causa di un errore interno. Il portamonete non è stato cifrato. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin verrà ora chiuso per finire il processo di crittazione. Ricorda che criptare il tuo portamonete non può fornire una protezione totale contro furti causati da malware che dovessero infettare il tuo computer. - @@ -253,195 +246,196 @@ Si è sicuri di voler cifrare il portamonete? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Passphrase del portamonete modificata con successo. + + + + Warning: The Caps Lock key is on. + Attenzione: tasto Blocco maiuscole attivo. + BitcoinGUI - + + &About %1 + &Informazioni su %1 + + + Bitcoin Wallet Portamonete di bitcoin - - + + Synchronizing with network... Sto sincronizzando con la rete... - + Block chain synchronization in progress sincronizzazione della catena di blocchi in corso - + &Overview &Sintesi - + Show general overview of wallet Mostra lo stato generale del portamonete - + &Transactions &Transazioni - + Browse transaction history Cerca nelle transazioni - + &Address Book &Rubrica - + Edit the list of stored addresses and labels Modifica la lista degli indirizzi salvati e delle etichette - + &Receive coins &Ricevi monete - + Show the list of addresses for receiving payments Mostra la lista di indirizzi su cui ricevere pagamenti - + &Send coins &Invia monete - + Send coins to a bitcoin address Invia monete ad un indirizzo bitcoin - + E&xit &Esci - + Quit application Chiudi applicazione - - &About %1 - &Informazioni su %1 - - - + Show information about Bitcoin Mostra informazioni su Bitcoin - + &Options... &Opzioni... - + Modify configuration options for bitcoin Modifica configurazione opzioni per bitcoin - + Open &Bitcoin Apri &Bitcoin - + Show the Bitcoin window Mostra la finestra Bitcoin - + &Export... &Esporta... - + Export the current view to a file Esporta la visualizzazione corrente su file - + &Encrypt Wallet &Cifra il portamonete - + Encrypt or decrypt wallet Cifra o decifra il portamonete - + &Change Passphrase &Cambia la passphrase - + Change the passphrase used for wallet encryption Cambia la passphrase per la cifratura del portamonete - + About &Qt Informazioni su &Qt - + Show information about Qt Mostra informazioni su Qt - + &File &File - + &Settings &Impostazioni - + &Help &Aiuto - + Tabs toolbar Barra degli strumenti "Tabs" - + Actions toolbar Barra degli strumenti "Azioni" - + [testnet] [testnet] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network %n connessione attiva alla rete Bitcoin @@ -449,17 +443,17 @@ Si è sicuri di voler cifrare il portamonete? - - Downloaded %1 of %2 blocks of transaction history. - Scaricati %1 dei %2 blocchi dello storico transazioni. - - - + Downloaded %1 blocks of transaction history. Scaricati %1 blocchi dello storico transazioni. + + + bitcoin-qt + bitcoin-qt + - + %n second(s) ago %n secondo fa @@ -467,15 +461,20 @@ Si è sicuri di voler cifrare il portamonete? - + %n minute(s) ago %n minuto fa %n minuti fa + + + Downloaded %1 of %2 blocks of transaction history. + Scaricati %1 dei %2 blocchi dello storico transazioni. + - + %n hour(s) ago %n ora fa @@ -483,7 +482,7 @@ Si è sicuri di voler cifrare il portamonete? - + %n day(s) ago %n giorno fa @@ -491,42 +490,37 @@ Si è sicuri di voler cifrare il portamonete? - + Up to date Aggiornato - + Catching up... In aggiornamento... - + Last received block was generated %1. L'ultimo blocco ricevuto è stato generato %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? Questa transazione è superiore al limite di dimensione. È comunque possibile inviarla con una commissione di %1, che va ai nodi che processano la tua transazione e contribuisce a sostenere la rete. Vuoi pagare la commissione? - - Sending... - Invio... - - - + Sent transaction Transazione inviata - + Incoming transaction Transazione ricevuta - + Date: %1 Amount: %2 Type: %3 @@ -540,40 +534,45 @@ Indirizzo: %4 - + + Sending... + Invio... + + + 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> - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &Unità di misura degli importi in: - + Choose the default subdivision unit to show in the interface, and when sending coins Scegli l'unità di suddivisione di default per l'interfaccia e per l'invio di monete - + &Display addresses in transaction list &Mostra gli indirizzi nella lista delle transazioni - + Whether to show Bitcoin addresses in the transaction list @@ -630,11 +629,6 @@ Indirizzo: %4 The entered address "%1" is already in the address book. L'indirizzo inserito "%1" è già in rubrica. - - - The entered address "%1" is not a valid bitcoin address. - L'indirizzo inserito "%1" non è un indirizzo bitcoin valido. - Could not unlock wallet. @@ -645,6 +639,11 @@ Indirizzo: %4 New key generation failed. Generazione della nuova chiave non riuscita. + + + The entered address "%1" is not a valid bitcoin address. + L'indirizzo inserito "%1" non è un indirizzo bitcoin valido. + MainOptionsPage @@ -695,24 +694,9 @@ Indirizzo: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Connettiti alla rete Bitcon attraverso un proxy SOCKS4 (ad esempio quando ci si collega via Tor) - - - Proxy &IP: - &IP del proxy: - - - - IP address of the proxy (e.g. 127.0.0.1) - Indirizzo IP del proxy (ad esempio 127.0.0.1) - - - - &Port: - &Porta: - Port of the proxy (e.g. 1234) @@ -720,18 +704,28 @@ Indirizzo: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. Pay transaction &fee - Paga la &commissione + Paga la &commissione - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. + + Proxy &IP: + &IP del proxy: + + + + IP address of the proxy (e.g. 127.0.0.1) + Indirizzo IP del proxy (ad esempio 127.0.0.1) + + + + &Port: + &Porta: @@ -764,35 +758,25 @@ Indirizzo: %4 Balance: Saldo - - - 123.456 BTC - 123,456 BTC - Number of transactions: Numero di transazioni: - - - 0 - 0 - Unconfirmed: Non confermato: - - - 0 BTC - 0 BTC - Wallet - + Portamonete + + + + 0 + 0 @@ -817,23 +801,23 @@ Indirizzo: %4 SendCoinsDialog + + + Remove all transaction fields + Rimuovi tutti i campi della transazione + - - - - - - - + + + + + + + Send Coins Spedisci Bitcoin - - - Send to multiple recipients at once - Spedisci a diversi beneficiari in una volta sola - &Add recipient... @@ -844,16 +828,6 @@ Indirizzo: %4 Clear all Cancella tutto - - - Remove all transaction fields - Rimuovi tutti i campi della transazione - - - - Balance: - Saldo: - 123.456 BTC @@ -870,58 +844,68 @@ Indirizzo: %4 &Spedisci - + + Send to multiple recipients at once + Spedisci a diversi beneficiari in una volta sola + + + + Balance: + Saldo: + + + <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) - + Confirm send coins Conferma la spedizione di bitcoin - + Are you sure you want to send %1? Si è sicuri di voler spedire %1? - + and e - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance - L'importo è superiore al saldo attuale + + The amount exceeds your balance. + L'importo è superiore al saldo attuale. - - Total exceeds your balance when the %1 transaction fee is included - Il totale è superiore al saldo attuale includendo la commissione %1 + + 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 in one send operation + + 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. - - Error: Transaction creation failed - Errore: creazione della transazione fallita + + Error: Transaction creation failed. + Errore: creazione della transazione fallita. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. Errore: la transazione è stata rifiutata. Ciò accade se alcuni bitcoin nel portamonete sono stati già spesi, ad esempio se è stata usata una copia del file wallet.dat e i bitcoin sono stati spesi dalla copia ma non segnati come spesi qui. @@ -951,18 +935,13 @@ Indirizzo: %4 &Label: - &Etichetta + &Etichetta: The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) L'indirizzo del beneficiario cui inviare il pagamento (ad esempio 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - Choose address from address book - Scegli l'indirizzo dalla rubrica - Alt+A @@ -983,6 +962,11 @@ Indirizzo: %4 Remove this recipient Rimuovere questo beneficiario + + + Choose address from address book + Scegli l'indirizzo dalla rubrica + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -991,6 +975,11 @@ Indirizzo: %4 TransactionDesc + + + , has not been successfully broadcast yet + , non è stato ancora trasmesso con successo + Open for %1 blocks @@ -1021,11 +1010,6 @@ Indirizzo: %4 <b>Status:</b> <b>Stato:</b> - - - , has not been successfully broadcast yet - , non è stato ancora trasmesso con successo - , broadcast through %1 node @@ -1161,7 +1145,7 @@ Indirizzo: %4 Importo - + Open for %n block(s) Aperto per %n blocco @@ -1169,101 +1153,131 @@ Indirizzo: %4 - + Open until %1 Aperto fino a %1 - + Offline (%1 confirmations) Offline (%1 conferme) - + Unconfirmed (%1 of %2 confirmations) Non confermati (%1 su %2 conferme) - + Confirmed (%1 confirmations) Confermato (%1 conferme) - - - Mined balance will be available in %n more blocks - - Il saldo generato sarà disponibile tra %n altro blocco - Il saldo generato sarà disponibile tra %n altri blocchi - - - + This block was not received by any other nodes and will probably not be accepted! Questo blocco non è stato ricevuto da altri nodi e probabilmente non sarà accettato! - + 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 - + 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. + + + Mined balance will be available in %n more blocks + + Il saldo generato sarà disponibile tra %n altro blocco + Il saldo generato sarà disponibile tra %n altri blocchi + + TransactionView + + + Type + Tipo + + + + Label + Etichetta + + + + Amount + Importo + + + + Error exporting + Errore nell'esportazione + + + + Could not write to file %1. + Impossibile scrivere sul file %1. + + + + Range: + Intervallo: + @@ -1351,72 +1365,42 @@ Indirizzo: %4 Modifica l'etichetta - - Show details... - Mostra i dettagli... - - - + Export Transaction Data Esporta i dati della transazione - + Comma separated file (*.csv) Testo CSV (*.csv) - + Confirmed Confermato - + Date Data - - Type - Tipo - - - - Label - Etichetta + + Show details... + Mostra i dettagli... - + Address Indirizzo - - Amount - Importo - - - + ID ID - - Error exporting - Errore nell'esportazione - - - - Could not write to file %1. - Impossibile scrivere sul file %1. - - - - Range: - Intervallo: - - - + to a @@ -1441,6 +1425,66 @@ Indirizzo: %4 Usage: Utilizzo: + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Non è possibile ottenere i dati sulla directory %s. Probabilmente Bitcoin è già in esecuzione. + + + + Loading addresses... + Caricamento indirizzi... + + + + Loading block index... + Caricamento dell'indice del blocco... + + + + Loading wallet... + Caricamento portamonete... + + + + Rescanning... + Ripetere la scansione... + + + + Done loading + Caricamento completato + + + + Invalid -proxy address + Indirizzo -proxy non valido + + + + Invalid amount for -paytxfee=<amount> + Importo non valido per -paytxfee=<amount> + + + + 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. + + + + Error: CreateThread(StartNode) failed + Errore: CreateThread(StartNode) non riuscito + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Impossibile collegarsi alla porta %d su questo computer. Probabilmente Bitcoin è già in esecuzione. + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Attenzione: si prega di controllare che la data del computer e l'ora siano corrette. Se il vostro orologio è sbagliato Bitcoin non funziona correttamente. + Send command to -server or bitcoind @@ -1529,123 +1573,198 @@ Indirizzo: %4 Allow DNS lookups for addnode and connect - Consenti ricerche DNS per aggiungere nodi e collegare - + Consenti ricerche DNS per aggiungere nodi e collegare - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - Aggiungi un nodo e connetti a - + Ascolta le connessioni JSON-RPC su <porta> (default: 8333 o testnet: 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) - Connetti solo al nodo specificato - + Mantieni al massimo <n> connessioni ai peer (default: 125) + Add a node to connect to + + Aggiungi un nodo e connetti a + + + + Connect only to the specified node + + Connetti solo al nodo specificato + + + + Don't find peers using internet relay chat + + + + + Don't accept connections from outside Non accettare connessioni dall'esterno + + + Don't bootstrap list of peers using DNS + + Non avviare la lista dei peer usando il DNS + - Don't attempt to use UPnP to map the listening port + Threshold for disconnecting misbehaving peers (default: 100) - Non usare l'UPnP per mappare la porta - + Soglia di disconnessione dei peer di cattiva qualità (default: 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 (default: 86400) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + Buffer di ricezione massimo per connessione, <n>*1000 byte (default: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + Buffer di invio massimo per connessione, <n>*1000 byte (default: 10000) + + + + Don't attempt to use UPnP to map the listening port + + Non usare l'UPnP per mappare la porta + + + Attempt to use UPnP to map the listening port - Prova ad usare l'UPnp per mappare la porta - + Prova ad usare l'UPnp per mappare la porta - + Fee per kB to add to transactions you send - Commissione al kB da aggiungere alle transazioni in uscita - + Commissione per kB da aggiungere alle transazioni in uscita - + Accept command line and JSON-RPC commands - Accetta da linea di comando e da comandi JSON-RPC - + Accetta da linea di comando e da comandi JSON-RPC - + + Output extra debugging information + + Produci informazioni extra utili al debug + + + + Prepend debug output with timestamp + + Anteponi all'output di debug una marca temporale + + + + 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 + + Invia le informazioni di trace/debug al debugger + + + + Warning: Disk space is low + Attenzione: lo spazio su disco è scarso + + + + beta + beta + + + 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 - + 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: 8332) Attendi le connessioni JSON-RPC su <porta> (default: 8332) - + 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> (default: 127.0.0.1) - + Set key pool size to <n> (default: 100) Impostare la quantità di chiavi di riserva a <n> (default: 100) - + Rescan the block chain for missing wallet transactions Ripeti analisi della catena dei blocchi per cercare le transazioni mancanti dal portamonete - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1654,162 +1773,86 @@ Opzioni SSL: (vedi il wiki di Bitcoin per le istruzioni di configurazione SSL) - + Use OpenSSL (https) for JSON-RPC connections Utilizzare OpenSSL (https) per le connessioni JSON-RPC - + Server certificate file (default: server.cert) File certificato del server (default: server.cert) - + Server private key (default: server.pem) Chiave privata del server (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Cifrari accettabili (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Questo messaggio di aiuto - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Non è possibile ottenere i dati sulla directory %s. Probabilmente Bitcoin è già in esecuzione. - - - - Loading addresses... - Caricamento indirizzi... - - - + Error loading addr.dat Errore nel caricamento di addr.dat - - Loading block index... - Caricamento dell'indice del blocco... - - - + Error loading blkindex.dat Errore nel caricamento di blkindex.dat - - Loading wallet... - Caricamento portamonete... - - - + Error loading wallet.dat: Wallet corrupted Errore nel caricamento di wallet.dat: il portamonete è danneggiato - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Errore nel caricamento di wallet.dat: il portamonete richiede una versione più recente di Bitcoin - - Error loading wallet.dat + + Wallet needed to be rewritten: restart Bitcoin to complete - Errore nel caricamento di wallet.dat - + Il portamonete deve essere riscritto: riavviare Bitcoin per completare - - Rescanning... - Ripetere la scansione... - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + Error loading wallet.dat - - - - - Done loading - Caricamento completato - - - - Invalid -proxy address - Indirizzo -proxy non valido - - - - Invalid amount for -paytxfee=<amount> - Importo non valido per -paytxfee=<amount> - - - - 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. - - - - Error: CreateThread(StartNode) failed - Errore: CreateThread(StartNode) non riuscito - - - - Warning: Disk space is low - Attenzione: lo spazio su disco è scarso - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Impossibile collegarsi alla porta %d su questo computer. Probabilmente Bitcoin è già in esecuzione. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Attenzione: si prega di controllare che la data del computer e l'ora siano corrette. Se il vostro orologio è sbagliato Bitcoin non funziona correttamente. - - - - beta - beta + Errore nel caricamento di wallet.dat + main - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index 4b03d18c53..67e3732969 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -57,7 +57,7 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &New Address... - &Ny adresse... + &Ny adresse... @@ -67,7 +67,7 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &Copy to Clipboard - &Kopier til utklippstavle + &Kopier til utklippstavle @@ -80,22 +80,22 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &Slett - + Export Address Book Data Eksporter adressebok - + Comma separated file (*.csv) Kommaseparert fil (*.csv) - + Error exporting Feil ved eksportering - + Could not write to file %1. Kunne ikke skrive til filen %1. @@ -121,36 +121,35 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i AskPassphraseDialog - - Dialog - Dialog - - - - - TextLabel - Merkelapp - - - + Enter passphrase Angi adgangsfrase - + New passphrase Ny adgangsfrase - + Repeat new passphrase Gjenta ny adgangsfrase + + + Dialog + Dialog + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Skriv inn den nye adgangsfrasen for lommeboken.<br/>Vennligst bruk en adgangsfrase med <b>10 eller flere tilfeldige tegn</b>, eller <b>åtte eller flere ord</b>. + + + TextLabel + Merkelapp + Encrypt wallet @@ -186,18 +185,6 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Enter the old and new passphrase to the wallet. Skriv inn gammel og ny adgangsfrase for lommeboken. - - - Confirm wallet encryption - Bekreft kryptering av lommebok - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ADVARSEL: Hvis du krypterer lommeboken og mister adgangsfrasen vil du <b>MISTE ALLE DINE BITCOINS</b>! -Er du sikker på at du vil kryptere lommeboken? - @@ -205,10 +192,9 @@ Er du sikker på at du vil kryptere lommeboken? Lommebok kryptert - - - Warning: The Caps Lock key is on. - Advarsel: Caps lock tasten er på. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. @@ -223,11 +209,6 @@ Er du sikker på at du vil kryptere lommeboken? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Kryptering av lommebok feilet på grunn av en intern feil. Din lommebok ble ikke kryptert. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. - @@ -251,197 +232,180 @@ Er du sikker på at du vil kryptere lommeboken? Wallet decryption failed Dekryptering av lommebok feilet + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ADVARSEL: Hvis du krypterer lommeboken og mister adgangsfrasen vil du <b>MISTE ALLE DINE BITCOINS</b>! +Er du sikker på at du vil kryptere lommeboken? + - Wallet passphrase was succesfully changed. - Lommebokens adgangsfrase ble endret. + Wallet passphrase was successfully changed. + Adgangsfrase for lommebok endret. + + + + + Warning: The Caps Lock key is on. + Advarsel: Caps lock tasten er på. + + + + Confirm wallet encryption + Bekreft kryptering av lommebok BitcoinGUI - + Bitcoin Wallet Bitcoin Lommebok - - + + Synchronizing with network... Synkroniserer med nettverk... - + Block chain synchronization in progress Synkronisering av blokk-kjede igang - + &Overview &Oversikt - + Show general overview of wallet Vis generell oversikt over lommeboken - + &Transactions &Transaksjoner - + Browse transaction history Vis transaksjonshistorikk - + &Address Book &Adressebok - + Edit the list of stored addresses and labels Rediger listen over adresser og deres merkelapper - + &Receive coins &Motta bitcoins - + Show the list of addresses for receiving payments Vis listen over adresser for mottak av betalinger - + &Send coins &Send bitcoins - + Send coins to a bitcoin address Send bitcoins til en adresse - + E&xit &Avslutt - - Quit application - Avslutt applikasjonen - - - + &About %1 &Om %1 - - Show information about Bitcoin - Vis informasjon om Bitcoin - - - - &Options... - &Innstillinger... - - - - Modify configuration options for bitcoin - Endre innstillinger for bitcoin - - - - Open &Bitcoin - Åpne &Bitcoin - - - - Show the Bitcoin window - Vis Bitcoin-vinduet - - - + &Export... &Eksporter... - + Export the current view to a file Eksporter visningen til en fil - - &Encrypt Wallet - &Krypter Lommebok - - - - Encrypt or decrypt wallet - Krypter eller dekrypter lommebok - - - + &Change Passphrase &Endre Adgangsfrase - + Change the passphrase used for wallet encryption Endre adgangsfrasen brukt for kryptering av lommebok - + + Sending... + Sender... + + + About &Qt Om &Qt - + Show information about Qt Vis informasjon om Qt - + &File &Fil - + &Settings &Innstillinger - + &Help &Hjelp - + Tabs toolbar Verktøylinje for faner - + Actions toolbar Verktøylinje for handlinger - + [testnet] [testnett] - - bitcoin-qt - bitcoin-qt + + &Options... + &Innstillinger... - + %n active connection(s) to Bitcoin network %n aktiv forbindelse til Bitcoin-nettverket @@ -449,17 +413,32 @@ Er du sikker på at du vil kryptere lommeboken? - - Downloaded %1 of %2 blocks of transaction history. - Lastet ned %1 av %2 blokker med transaksjonshistorikk. + + Modify configuration options for bitcoin + Endre innstillinger for bitcoin + + + + Open &Bitcoin + Åpne &Bitcoin + + + + Show the Bitcoin window + Vis Bitcoin-vinduet - + Downloaded %1 blocks of transaction history. Lastet ned %1 blokker med transaksjonshistorikk. + + + &Encrypt Wallet + &Krypter Lommebok + - + %n second(s) ago for %n sekund siden @@ -467,23 +446,33 @@ Er du sikker på at du vil kryptere lommeboken? - + %n minute(s) ago for %n minutt siden for %n minutter siden + + + Quit application + Avslutt applikasjonen + - + %n hour(s) ago for %n time siden for %n timer siden + + + Show information about Bitcoin + Vis informasjon om Bitcoin + - + %n day(s) ago for %n dag siden @@ -491,42 +480,42 @@ Er du sikker på at du vil kryptere lommeboken? - + Up to date Ajour - + Catching up... Kommer ajour... - + Last received block was generated %1. Siste mottatte blokk ble generert %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 transaksjonen overstiger størrelsesbegrensningen. Du kan likevel sende den med et gebyr på %1, som går til nodene som prosesserer transaksjonen din og støtter nettverket. Vil du betale gebyret? + + Encrypt or decrypt wallet + Krypter eller dekrypter lommebok - - Sending... - Sender... + + 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 transaksjonen overstiger størrelsesbegrensningen. Du kan likevel sende den med et gebyr på %1, som går til nodene som prosesserer transaksjonen din og støtter nettverket. Vil du betale gebyret? - + Sent transaction Sendt transaksjon - + Incoming transaction Innkommende transaksjon - + Date: %1 Amount: %2 Type: %3 @@ -539,42 +528,52 @@ Adresse: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Lommeboken er <b>kryptert</b> og for tiden <b>ulåst</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Lommeboken er <b>kryptert</b> og for tiden <b>låst</b> - - A fatal error occured. Bitcoin can no longer continue safely and will quit. - + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + Lastet ned %1 av %2 blokker med transaksjonshistorikk. + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + En fatal feil har inntruffet. Det er ikke trygt å fortsette og Bitcoin må derfor avslutte. DisplayOptionsPage - + &Unit to show amounts in: &Enhet for å vise beløp i: - + Choose the default subdivision unit to show in the interface, and when sending coins Velg standard underenhet som skal vises i grensesnittet og ved sending av mynter - + &Display addresses in transaction list &Vis adresser i transaksjonslisten - + Whether to show Bitcoin addresses in the transaction list - + Om Bitcoin-adresser skal vises i transaksjonslisten eller ikke @@ -629,11 +628,6 @@ Adresse: %4 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 bitcoin address. - en oppgitte adressen "%1" er ikke en gyldig bitcoin-adresse. - Could not unlock wallet. @@ -644,6 +638,11 @@ Adresse: %4 New key generation failed. Generering av ny nøkkel feilet. + + + The entered address "%1" is not a valid bitcoin address. + en oppgitte adressen "%1" er ikke en gyldig bitcoin-adresse. + MainOptionsPage @@ -694,8 +693,18 @@ Adresse: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Koble til Bitcoin nettverket gjennom en SOCKS4 mellomtjener (f.eks. for tilkobling gjennom Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Koble til Bitcoin-nettverket gjennom en SOCKS4 proxy (f.eks. ved tilkobling gjennom Tor) + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. + + + + Pay transaction &fee + Betal transaksjons&gebyr @@ -717,21 +726,6 @@ Adresse: %4 Port of the proxy (e.g. 1234) Port for mellomtjener (f.eks. 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. - - - - Pay transaction &fee - Betal transaksjons&gebyr - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. - OptionsDialog @@ -763,40 +757,25 @@ Adresse: %4 Balance: Saldo: - - - 123.456 BTC - 123.456 BTC - Number of transactions: Antall transaksjoner: - - - 0 - 0 - Unconfirmed: Ubekreftet - - - 0 BTC - 0 BTC - Wallet Lommebok - - <b>Recent transactions</b> - <b>Siste transaksjoner</b> + + 0 + 0 @@ -813,18 +792,23 @@ Adresse: %4 Total number of transactions in wallet Totalt antall transaksjoner i lommeboken + + + <b>Recent transactions</b> + <b>Siste transaksjoner</b> + SendCoinsDialog - - - - - - - + + + + + + + Send Coins Send Bitcoins @@ -843,11 +827,6 @@ Adresse: %4 Clear all Fjern alle - - - Remove all transaction fields - Fjern alle transaksjonsfelter - Balance: @@ -869,59 +848,64 @@ Adresse: %4 &Send - + + Remove all transaction fields + Fjern alle transaksjonsfelter + + + <b>%1</b> to %2 (%3) <b>%1</b> til %2 (%3) - + Confirm send coins Bekreft sending av bitcoins - + Are you sure you want to send %1? Er du sikker på at du vil sende %1? - + and og - - The recepient address is not valid, please recheck. - Mottaksadressen er ugyldig, prøv igjen. + + 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. - - Amount exceeds your balance - Beløpet overstiger saldoen din + + The amount exceeds your balance. + Beløpet overstiger saldo. - - Total exceeds your balance when the %1 transaction fee is included - Totalen overgår din saldo når transaksjonsgebyret på %1 tas med + + 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 in one send operation - Duplikate adresser funnet, kan kun sende til hver adresse en gang i hver sendeoperasjon + + 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. - - Error: Transaction creation failed - Feil: Opprettelse av transaksjon feilet + + Error: Transaction creation failed. + Feil: opprettelse av transaksjon feilet. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Feil: Transaksjonen ble avvist. Dette kan skje hvis noen av myntene i lommeboken allerede var brukt, f.eks. hvis du kopierte wallet.dat og mynter ble brukt i kopien uten å bli markert brukt her. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Feil: Transaksjonen ble avvist. Dette kan skje om noe av beløpet allerede var brukt, f.eks. hvis du kopierte wallet.dat og noen bitcoins ble brukt i kopien men ikke ble markert som brukt her. @@ -998,7 +982,7 @@ Adresse: %4 Open until %1 - Åpen til %1 + Åpen til %1 @@ -1160,7 +1144,7 @@ Adresse: %4 Beløp - + Open for %n block(s) Åpen for %n blokk @@ -1168,101 +1152,146 @@ Adresse: %4 - + Open until %1 Åpen til %1 - + Offline (%1 confirmations) Frakoblet (%1 bekreftelser) - + Unconfirmed (%1 of %2 confirmations) Ubekreftet (%1 av %2 bekreftelser) - + Confirmed (%1 confirmations) Bekreftet (%1 bekreftelser) - - - Mined balance will be available in %n more blocks - - Utvunnet saldo vil bli tilgjengelig om %n blokk - Utvunnet saldo vil bli tilgjengelig om %n blokker - - - + 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 - + 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. + + + Mined balance will be available in %n more blocks + + Utvunnet saldo vil bli tilgjengelig om %n blokk + Utvunnet saldo vil bli tilgjengelig om %n blokker + + TransactionView + + + Type + Type + + + + Label + Merkelapp + + + + Address + Adresse + + + + Amount + Beløp + + + + ID + ID + + + + Error exporting + Feil ved eksport + + + + Could not write to file %1. + Kunne ikke skrive til filen %1. + + + + Range: + Intervall: + + + + to + til + @@ -1345,79 +1374,34 @@ Adresse: %4 Kopier merkelapp - - Edit label - Rediger merkelapp - - - - Show details... - Vis detaljer... - - - + Export Transaction Data Eksporter transaksjonsdata - + 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 ved eksport - - - - Could not write to file %1. - Kunne ikke skrive til filen %1. - - - - Range: - Intervall: + + Show details... + Vis detaljer... - - to - til + + Edit label + Rediger merkelapp @@ -1440,6 +1424,71 @@ Adresse: %4 Usage: Bruk: + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kunne ikke låse datamappen %s. Bitcoin kjører sannsynligvis allerede. + + + + Loading addresses... + Laster adresser... + + + + Loading block index... + Laster blokkindeks... + + + + Loading wallet... + Laster lommebok... + + + + Rescanning... + Leser gjennom... + + + + Done loading + Ferdig med lasting + + + + Invalid -proxy address + Ugyldig -proxy adresse for mellomtjener + + + + Invalid amount for -paytxfee=<amount> + Ugyldig gebyrbeløp for -paytxfee=<beløp> + + + + 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 en transaksjon. + + + + Error: CreateThread(StartNode) failed + Feil: CreateThread(StartNode) feilet + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Klarer ikke binde til port %d på denne datamaskinen. Bitcoin kjører sannsynligvis allerede. + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Advarsel: Vennligst sjekk at dato og klokke er riktig innstilt på datamaskinen. Hvis klokken er feil vil ikke Bitcoin fungere ordentlig. + + + + beta + beta + Send command to -server or bitcoind @@ -1494,7 +1543,6 @@ Adresse: %4 Don't generate coins Ikke generer mynter - @@ -1529,121 +1577,199 @@ Adresse: %4 Allow DNS lookups for addnode and connect - Tillat DNS-oppslag for addnode og connect - + Tillat DNS-oppslag for addnode og connect - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - Legg til node for tilkobling - + Lytt etter tilkoblinger på <port>; (standardverdi: 8333 eller testnet: 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) - Koble kun til en oppgitt node - + Hold maks <n> koblinger åpne til andre noder (standardverdi: 125) + Add a node to connect to + + Legg til node for tilkobling + + + + Connect only to the specified node + + Koble kun til angitt node + + + + Don't find peers using internet relay chat + + Ikke finn andre noder via internet relay chat + + + Don't accept connections from outside Ikke ta imot tilkoblinger fra utsiden + + + Don't bootstrap list of peers using DNS + + Ikke lag initiell nodeliste ved hjelp av DNS + - Don't attempt to use UPnP to map the listening port + Threshold for disconnecting misbehaving peers (default: 100) - Ikke forsøk å bruke UPnP for å sette opp lytteport + 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: 10000) + + Maksimum mottaksbuffer per tilkobling, <n>*1000 bytes (standardverdi: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + Maksimum sendebuffer per tilkobling, <n>*1000 bytes (standardverdi: 10000) + + + + Don't attempt to use UPnP to map the listening port + + Ikke sett opp port vha. UPnP + + + Attempt to use UPnP to map the listening port - Forsøk å bruke UPnP for å sette opp lytteport + Sett opp port vha. UPnP - + Fee per kB to add to transactions you send - Gebyr per kB som skal legges til transaksjoner du sender - + Gebyr per kB for transaksjoner du sender - + Accept command line and JSON-RPC commands - Ta imot kommandoer fra både kommandolinje og JSON-RPC - + Ta imot kommandolinje-og JSON-RPC-kommandoer - + Run in the background as a daemon and accept commands Kjør som bakgrunnsprosess og ta imot kommandoer - + + Wallet needed to be rewritten: restart Bitcoin to complete + + Lommeboken måtte skrives om: start Bitcoin på nytt for å fullføre + + + + Warning: Disk space is low + Advarsel: Lite ledig diskplass + + + Use the test network Bruk testnettet - + + Output extra debugging information + + Gi ut ekstra debuginformasjon + + + + Prepend debug output with timestamp + + Sett tidsstempel på debugmeldinger + + + + 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 + + Send spor/debug informasjon til 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: 8332) Lytt etter JSON-RPC forbindelser på <port> (standard: 8332) - + Allow JSON-RPC connections from specified IP address Tillat JSON-RPC forbindelser fra oppgitt IP-adresse - + Send commands to node running on <ip> (default: 127.0.0.1) Send kommandoer til noden som kjører på <ip> (standard: 127.0.0.1) - + Set key pool size to <n> (default: 100) Sett størrelsen på lager for nye nøkler til <n> (standard: 100) - + Rescan the block chain for missing wallet transactions Se igjennom blokk-kjeden på nytt etter manglende lommebokstransaksjoner - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1651,162 +1777,80 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Use OpenSSL (https) for JSON-RPC connections Bruk OpenSSL (https) for JSON-RPC forbindelser - + Server certificate file (default: server.cert) Fil for tjenersertifikat (standard: server.cert) - + Server private key (default: server.pem) Privat nøkkel for tjener (standard: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Akseptable krypteringsmetoder (standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Denne hjelpemeldingen - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kunne ikke låse datamappen %s. Bitcoin kjører sannsynligvis allerede. - - - - Loading addresses... - Laster adresser... - - - + Error loading addr.dat Feil ved lasting av addr.dat - - Loading block index... - Laster blokkindeks... - - - + Error loading blkindex.dat Feil ved lasting av blkindex.dat - - Loading wallet... - Laster lommebok... - - - + Error loading wallet.dat: Wallet corrupted Feil ved lasting av wallet.dat: Skadde data i lommeboken - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Feil ved lasting av wallet.dat: Lommeboken krever en nyere versjon av Bitcoin - + Error loading wallet.dat Feil ved lasting av wallet.dat - - - Rescanning... - Leser gjennom... - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - - Done loading - Ferdig med lasting - - - - Invalid -proxy address - Ugyldig -proxy adresse for mellomtjener - - - - Invalid amount for -paytxfee=<amount> - Ugyldig gebyrbeløp for -paytxfee=<beløp> - - - - 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 en transaksjon. - - - - Error: CreateThread(StartNode) failed - Feil: CreateThread(StartNode) feilet - - - - Warning: Disk space is low - Advarsel: Lite ledig diskplass - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Klarer ikke binde til port %d på denne datamaskinen. Bitcoin kjører sannsynligvis allerede. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Advarsel: Vennligst sjekk at dato og klokke er riktig innstilt på datamaskinen. Hvis klokken er feil vil ikke Bitcoin fungere ordentlig. - - - - beta - beta - main - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index 5925bf25db..18ddf5ba64 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -68,7 +68,7 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d &Copy to Clipboard - &Kopieer naar Klembord + &Kopieer naar Klembord @@ -81,22 +81,22 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d &Verwijder - + Export Address Book Data Exporteer Gegevens van het Adresboek - + Comma separated file (*.csv) Kommagescheiden bestand (*.csv) - + Error exporting Fout bij exporteren - + Could not write to file %1. Kon niet schrijven naar bestand %1. @@ -122,36 +122,35 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d AskPassphraseDialog - - Dialog - Dialoog - - - - - TextLabel - TekstLabel - - - + Enter passphrase Huidig wachtwoord - + New passphrase Nieuwe wachtwoord - + Repeat new passphrase Herhaal wachtwoord + + + Dialog + Dialoog + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Vul een nieuw wachtwoord in voor uw portemonnee. <br/> Gebruik een wachtwoord van <b>10 of meer lukrake karakters</b>, of <b> acht of meer woorden</b> . + + + TextLabel + TekstLabel + Encrypt wallet @@ -187,18 +186,6 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d 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 BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - WAARSCHUWING: Wanneer uw portemonnee wordt versleuteld en u verliest uw wachtwoord, dan verliest u<b>AL UW BITCOINS</b>! -Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? - @@ -206,10 +193,9 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Portemonnee versleuteld - - - Warning: The Caps Lock key is on. - Waarschuwing: De Caps-Lock-toets staat aan. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. @@ -224,16 +210,11 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Portemonneeversleuteling mislukt door een interne fout, Uw portemonnee is niet versleuteld. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. - The supplied passphrases do not match. - Het opgegeven wachtwoord is niet correct + De opgegeven wachtwoorden komen niet overeen @@ -252,197 +233,210 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Wallet decryption failed Portemonnee-ontsleuteling mislukt + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + WAARSCHUWING: Wanneer uw portemonnee wordt versleuteld en u verliest uw wachtwoord, dan verliest u<b>AL UW BITCOINS</b>! +Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? + - Wallet passphrase was succesfully changed. - Portemonneewachtwoord is succesvol gewijzigd + Wallet passphrase was successfully changed. + Portemonneewachtwoord is met succes gewijzigd. + + + + + Warning: The Caps Lock key is on. + Waarschuwing: De Caps-Lock-toets staat aan. + + + + Confirm wallet encryption + Bevestig versleuteling van de portemonnee BitcoinGUI - + Bitcoin Wallet Bitcoin-portemonnee - - + + Synchronizing with network... Synchroniseren met netwerk... - + Block chain synchronization in progress Bezig met blokkenketen-synchronisatie - + &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 Bewerk de lijst van opgeslagen adressen en labels - + &Receive coins &Ontvang munten - + Show the list of addresses for receiving payments Toon lijst van adressen om betalingen mee te ontvangen - + &Send coins &Verstuur munten - + Send coins to a bitcoin address Verstuur munten naar een bitcoin-adres - + E&xit &Afsluiten - - Quit application - Programma afsluiten - - - + &About %1 &Over %1 - - Show information about Bitcoin - Laat informatie zien over Bitcoin - - - + &Options... &Opties... - - Modify configuration options for bitcoin - Wijzig instellingen van Bitcoin - - - - Open &Bitcoin - Open &Bitcoin - - - + Show the Bitcoin window - Toon Bitcoin-venster - - - - &Export... - &Exporteer... + Toon Bitcoin-venster - + Export the current view to a file Exporteer huidige overzicht naar een bestand - - &Encrypt Wallet - &Versleutel Portemonnee - - - + Encrypt or decrypt wallet Versleutel of ontsleutel portemonnee - + &Change Passphrase &Wijzig Wachtwoord - + Change the passphrase used for wallet encryption wijzig het wachtwoord voor uw portemonneversleuteling - + + Sending... + Versturen... + + + About &Qt Over &Qt - + Show information about Qt Toon informatie over Qt - + &File &Bestand - + &Settings &Instellingen - + &Help &Hulp - + + Quit application + Programma afsluiten + + + Tabs toolbar Tab-werkbalk - + + Show information about Bitcoin + Laat informatie zien over Bitcoin + + + Actions toolbar Actie-werkbalk - + [testnet] [testnetwerk] - + + Modify configuration options for bitcoin + Wijzig instellingen van Bitcoin + + + + Open &Bitcoin + Open &Bitcoin + + + bitcoin-qt - bitcoin-qt + - + %n active connection(s) to Bitcoin network %n actieve connectie naar Bitcoinnetwerk @@ -450,17 +444,22 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? - - Downloaded %1 of %2 blocks of transaction history. - %1 van %2 blokken van transactiehistorie opgehaald. + + &Export... + &Exporteer... + + + + &Encrypt Wallet + &Versleutel Portemonnee - + Downloaded %1 blocks of transaction history. %1 blokken van transactiehistorie opgehaald. - + %n second(s) ago %n seconde geleden @@ -468,7 +467,7 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? - + %n minute(s) ago %n minuut geleden @@ -476,7 +475,7 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? - + %n hour(s) ago %n uur geleden @@ -484,7 +483,7 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? - + %n day(s) ago %n dag geleden @@ -492,42 +491,37 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? - + Up to date Bijgewerkt - + Catching up... Aan het bijwerken... - + Last received block was generated %1. Laatst ontvangen blok is %1 gegenereerd. - + 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? Deze transactie overschrijdt de groottelimiet. Om de transactie alsnog te versturen kunt u transactiekosten betalen van %1. Deze transactiekosten gaan naar de nodes die uw transactie verwerken en het helpt op deze manier bij het ondersteunen van het netwerk. Wilt u de transactiekosten betalen? - - Sending... - Versturen... - - - + Sent transaction Verzonden transactie - + Incoming transaction Binnenkomende transactie - + Date: %1 Amount: %2 Type: %3 @@ -540,42 +534,47 @@ Adres: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Portemonnee is <b>versleuteld</b> en momenteel <b>geopend</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Portemonnee is <b>versleuteld</b> en momenteel <b>gesloten</b> - - A fatal error occured. Bitcoin can no longer continue safely and will quit. - + + Downloaded %1 of %2 blocks of transaction history. + %1 van %2 blokken van transactiehistorie opgehaald. + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Er is een fatale fout opgetreden. Bitcoin kan niet meer veilig doorgaan en zal nu afgesloten worden. DisplayOptionsPage - + &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 - + &Display addresses in transaction list &Toon adressen in uw transactielijst - + Whether to show Bitcoin addresses in the transaction list - + Of Bitcoinadressen getoond worden in de transactielijst @@ -603,7 +602,7 @@ Adres: %4 The address associated with this address book entry. This can only be modified for sending addresses. - Het adres dat geassocieerd is met deze adresboek-opgave. Dit kan alleen worden veranderd voor zend-adressen. + Het adres dat geassocieerd is met deze inschrijving in het adresboek. Dit kan alleen worden veranderd voor zend-adressen. @@ -630,11 +629,6 @@ Adres: %4 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 bitcoin address. - Het opgegeven adres "%1" is een ongeldig bitcoinadres - Could not unlock wallet. @@ -645,6 +639,11 @@ Adres: %4 New key generation failed. Genereren nieuwe sleutel mislukt. + + + The entered address "%1" is not a valid bitcoin address. + Het opgegeven adres "%1" is een ongeldig bitcoinadres + MainOptionsPage @@ -691,17 +690,17 @@ Adres: %4 &Connect through SOCKS4 proxy: - &Verbind via SOCKS4 proxy: + &Verbind via SOCKS4 proxy: - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Verbind met het Bitcoin-netwerk door een SOCKS4 proxy (bijv. wanneer Tor gebruikt wordt) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Verbind met het Bitcoin-netwerk via een SOCKS4-proxy (bijv. wanneer u via Tor wilt verbinden) Proxy &IP: - Proxy &IP: + Proxy &IP: @@ -711,7 +710,7 @@ Adres: %4 &Port: - &Poort: + &Poort: @@ -720,22 +719,22 @@ Adres: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Optionele transactiekosten per kB die helpen om uw transacties snel te verwerken. De meeste transacties zijn 1 kB. Transactiekosten van 0,01 wordt aangeraden + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optionele transactiekosten per kB die helpen om uw transacties snel te verwerken. De meeste transacties zijn 1 kB. Transactiekosten van 0,01 wordt aangeraden. Pay transaction &fee - Betaal &transactiekosten - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Optionele transactiekosten per kB die helpen om uw transacties snel te verwerken. De meeste transacties zijn 1 kB. Transactiekosten van 0,01 wordt aangeraden + Betaal &transactiekosten OptionsDialog + + + Options + Opties + Main @@ -746,11 +745,6 @@ Adres: %4 Display Beeldscherm - - - Options - Opties - OverviewPage @@ -764,40 +758,25 @@ Adres: %4 Balance: Saldo: - - - 123.456 BTC - 123.456 BTC - Number of transactions: Aantal transacties: - - - 0 - 0 - Unconfirmed: Onbevestigd: - - - 0 BTC - 0 BTC - Wallet Portemonnee - - <b>Recent transactions</b> - <b>Recente transacties</b> + + 0 + 0 @@ -807,7 +786,12 @@ Adres: %4 Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Totaal aantal transacties dat nog moet worden bevestigd, en nog niet is meegeteld in uw huidige saldo + Totaal van de transacties die nog moeten worden bevestigd en nog niet zijn meegeteld in uw huidige saldo + + + + <b>Recent transactions</b> + <b>Recente transacties</b> @@ -817,15 +801,20 @@ Adres: %4 SendCoinsDialog + + + and + en + - - - - - - - + + + + + + + Send Coins Verstuur munten @@ -834,21 +823,16 @@ Adres: %4 Send to multiple recipients at once Verstuur aan verschillende ontvangers ineens - - - &Add recipient... - Voeg &ontvanger toe... - - - - Clear all - Verwijder alles - Remove all transaction fields Verwijder alle transactievelden + + + &Add recipient... + Voeg &ontvanger toe... + Balance: @@ -870,58 +854,58 @@ Adres: %4 &Verstuur - + + Clear all + Verwijder alles + + + <b>%1</b> to %2 (%3) <b>%1</b> aan %2 (%3) - + Confirm send coins Bevestig versturen munten - + Are you sure you want to send %1? Weet u zeker dat u %1 wil versturen? - - and - en - - - - The recepient address is not valid, please recheck. - Het ontvangstadres is niet geldig, controleer uw opgave. + + 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 gedrag moet groter zijn dan 0. - - Amount exceeds your balance - Bedrag overschrijdt uw huidige saldo + + The amount exceeds your balance. + Bedrag is hoger dan uw huidige saldo. - - Total exceeds your balance when the %1 transaction fee is included - Totaal overschrijdt uw huidige saldo wanneer de %1 transactiekosten worden meegerekend + + 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 in one send operation - Dubbel adres gevonden, u kunt slechts eenmaal naar een bepaald adres verzenden per verstuurtransactie + + 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: Aanmaak transactie mislukt + + Error: Transaction creation failed. + Fout: Aanmaak 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. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Fout: De transactie was afgewezen. Dit kan gebeuren als u eerder uitgegeven munten opnieuw wilt versturen, zoals wanneer u een kopie van uw wallet.dat heeft gebruikt en in de kopie deze munten zijn gemarkeerd als uitgegeven, maar in de huidige nog niet. @@ -932,42 +916,21 @@ Adres: %4 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Het adres waaraan u wilt betalen (bijv. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose address from address book Kies adres uit adresboek - - - Alt+A - Alt+A - Paste address from clipboard @@ -976,7 +939,7 @@ Adres: %4 Alt+P - Alt+P + Alt+P @@ -984,47 +947,58 @@ Adres: %4 Verwijder deze ontvanger - - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Vul een Bitcoinadres in (bijv. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + A&mount: + Bedra&g: - - - TransactionDesc - - Open for %1 blocks - Openen voor %1 blokken + + + 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 - - Open until %1 - Openen totdat %1 + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Het adres waaraan u wilt betalen (bijv. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - %1/offline? - %1/niet verbonden? + + Alt+A + Alt+A - - %1/unconfirmed - %1/onbevestigd + + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Vul een Bitcoinadres in (bijv. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + TransactionDesc %1 confirmations %1 bevestigingen + + + , has not been successfully broadcast yet + , is nog niet met succes uitgezonden + <b>Status:</b> <b>Status:</b> - - , has not been successfully broadcast yet - , is nog niet succesvol uitgezonden + + Open for %1 blocks + Openen voor %1 blokken + + + + %1/offline? + %1/niet verbonden? @@ -1044,7 +1018,7 @@ Adres: %4 <b>Source:</b> Generated<br> - <b>Bron:</b>Gegenereerd<br> + <b>Bron:</b> Gegenereerd<br> @@ -1057,6 +1031,16 @@ Adres: %4 unknown onbekend + + + Open until %1 + Openen totdat %1 + + + + %1/unconfirmed + %1/onbevestigd + @@ -1161,7 +1145,7 @@ Adres: %4 Bedrag - + Open for %n block(s) Open gedurende %n blok @@ -1169,101 +1153,176 @@ Adres: %4 - + Open until %1 Open tot %1 - + Offline (%1 confirmations) Niet verbonden (%1 bevestigingen) - + Unconfirmed (%1 of %2 confirmations) Onbevestigd (%1 van %2 bevestigd) - + Confirmed (%1 confirmations) Bevestigd (%1 bevestigingen) - - - Mined balance will be available in %n more blocks - - Ontgonnen saldo komt beschikbaar na %n blok - Ontgonnen saldo komt beschikbaar na %n blokken - - - + 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 Ontgonnen - + (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 + + + Mined balance will be available in %n more blocks + + Ontgonnen saldo komt beschikbaar na %n blok + Ontgonnen saldo komt beschikbaar na %n blokken + + TransactionView + + + Edit label + Bewerk label + + + + Export Transaction Data + Exporteer transactiegegevens + + + + 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. + Kon niet schrijven naar bestand %1. + + + + Range: + Bereik: + + + + to + naar + + + + Show details... + Toon details... + @@ -1280,16 +1339,6 @@ Adres: %4 This week Deze week - - - This month - Deze maand - - - - Last month - Vorige maand - This year @@ -1346,100 +1395,106 @@ Adres: %4 Kopieer label - - Edit label - Bewerk label + + This month + Deze maand - - Show details... - Toon details... + + Last month + Vorige maand + + + WalletModel - - Export Transaction Data - Exporteer transactiegegevens + + Sending... + Versturen... + + + bitcoin-core - - Comma separated file (*.csv) - Kommagescheiden bestand (*.csv) + + Bitcoin version + Bitcoinversie - - Confirmed - Bevestigd + + Usage: + Gebruik: - - Date - Datum + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kan geen lock op de datamap %s verkrijgen. Bitcoin draait vermoedelijk reeds. - - Type - Type + + Loading addresses... + Adressen aan het laden... - - Label - Label + + Loading block index... + Blokindex aan het laden... - - Address - Adres + + Loading wallet... + Portemonnee aan het laden... - - Amount - Bedrag + + Wallet needed to be rewritten: restart Bitcoin to complete + + Portemonnee moest herschreven worden: Herstart Bitcoin om te voltooien - - ID - ID + + Rescanning... + Opnieuw aan het scannen ... - - Error exporting - Fout bij exporteren + + Done loading + Klaar met laden - - Could not write to file %1. - Kon niet schrijven naar bestand %1. + + Invalid -proxy address + Foutief -proxy adres - - Range: - Bereik: + + Invalid amount for -paytxfee=<amount> + Ongeldig bedrag voor -paytxfee=<bedrag> - - to - naar + + 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. - - - WalletModel - - Sending... - Versturen... + + Error: CreateThread(StartNode) failed + Fout: CreateThread(StartNode) is mislukt - - - bitcoin-core - - Bitcoin version - Bitcoinversie + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Kan niet binden aan poort %d op deze computer. Bitcoin draait vermoedelijk reeds. - - Usage: - Gebruik: + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Waarschuwing: Controleer dat de datum en tijd op uw computer correct zijn ingesteld. Als uw klok fout staat zal Bitcoin niet correct werken. + + + + beta + beta @@ -1508,22 +1563,19 @@ Adres: %4 Specify data directory - Stel datamap in - + Stel datamap in Specify connection timeout (in milliseconds) - Specificeer de time-out tijd (in milliseconden) - + Specificeer de time-out tijd (in milliseconden) Connect through socks4 proxy - Verbind via socks4 proxy - + Verbind via socks4 proxy @@ -1534,118 +1586,192 @@ Adres: %4 - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - Voeg een node toe om mee te verbinden - + Luister voor verbindingen op <poort> (standaard: 8333 of testnet: 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) - Verbind alleen met deze node - + Onderhoud maximaal <n> verbindingen naar peers (standaard: 125) + Add a node to connect to + + Voeg een node toe om mee te verbinden + + + + Connect only to the specified node + + Verbind alleen met deze node + + + + Don't find peers using internet relay chat + + Don't Vind anderen door middel van Internet Relay Chat + + + Don't accept connections from outside - Sta geen verbindingen van buitenaf toe - + Sta geen verbindingen van buitenaf toe + + + + Don't bootstrap list of peers using DNS + + Gebruik geen DNS om de lijst met peers op te starten + 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: 10000) + + Maximale ontvangstbuffer per connectie, <n>*1000 bytes (standaard: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + Maximale zendbuffer per connectie, <n>*1000 bytes (standaard: 10000) + + + Don't attempt to use UPnP to map the listening port Probeer geen UPnP te gebruiken om de poort waarop geluisterd wordt te mappen - + + Warning: Disk space is low + Waarschuwing: Weinig schijfruimte over + + + Attempt to use UPnP to map the listening port Probeer UPnP te gebruiken om de poort waarop geluisterd wordt te mappen - + Fee per kB to add to transactions you send Kosten per kB om aan transacties toe te voegen die u verstuurt - + 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 + + Toon extra debuggingsinformatie + + + + Prepend debug output with timestamp + + Voorzie de debuggingsuitvoer van een tijdsaanduiding + + + + 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 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: 8332) Luister voor JSON-RPC verbindingen op <poort> (standaard: 8332) - + 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) - + 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 blokkenketting op ontbrekende portemonnee-transacties - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1654,160 +1780,78 @@ SSL opties: (zie de Bitcoin wiki voor SSL instructies) - + 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 ciphers (standaard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Dit helpbericht - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kan geen lock op de gegevensdirectory %s verkrijgen. Bitcoin draait vermoedelijk reeds. - - - - Loading addresses... - Adressen aan het laden... - - - + Error loading addr.dat Fout bij laden van bestand addr.dat - - Loading block index... - Blokindex aan het laden... - - - + Error loading blkindex.dat Fout bij laden van bestand addr.dat - - Loading wallet... - Portemonnee aan het laden... - - - + Error loading wallet.dat: Wallet corrupted Fout bij het laden van wallet.dat: Portemonnee corrupt - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Fout bij het laden van wallet.dat: Portemonnee vereist nieuwere versie van Bitcoin - + Error loading wallet.dat Fout bij laden van bestand wallet.dat - - - Rescanning... - Opnieuw aan het scannen ... - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - - Done loading - Klaar met laden - - - - Invalid -proxy address - Foutief -proxy adres - - - - Invalid amount for -paytxfee=<amount> - Ongeldig bedrag voor -paytxfee=<bedrag> - - - - 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. - - - - Error: CreateThread(StartNode) failed - Fout: CreateThread(StartNode) is mislukt - - - - Warning: Disk space is low - Waarschuwing: Weinig schijfruimte over - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Kan niet binden aan poort %d op deze computer. Bitcoin draait vermoedelijk reeds. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Waarschuwing: Controleer dat de datum en tijd op uw computer correct zijn ingesteld. Als uw klok fout staat zal Bitcoin niet correct werken. - - - - beta - beta - main - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index 22037b881c..b1e2808150 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -51,7 +51,7 @@ This product includes software developed by the OpenSSL Project for use in the O &New Address... - & Novo endereço ... + &amp; Novo endereço ... @@ -61,7 +61,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - & Copie para a área de transferência do sistema + &amp; Copie para a área de transferência do sistema @@ -71,25 +71,25 @@ This product includes software developed by the OpenSSL Project for use in the O &Delete - & Excluir + &Excluir - + Export Address Book Data Exportação de dados do Catálogo de Endereços - + Comma separated file (*.csv) Arquivo separado por vírgulas (*. csv) - + Error exporting Erro ao exportar - + Could not write to file %1. Could not write to file %1. @@ -120,23 +120,22 @@ This product includes software developed by the OpenSSL Project for use in the O Diálogo - - + TextLabel TextoDoRótulo - + 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 @@ -197,12 +196,6 @@ Are you sure you wish to encrypt your wallet? Wallet encrypted Carteira criptografada - - - - Warning: The Caps Lock key is on. - - @@ -211,26 +204,32 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed A criptografia da carteira falhou + + + Wallet unlock failed + A abertura da carteira falhou + + + + Wallet passphrase was successfully changed. + A frase de segurança da carteira foi alterada com êxito. + + + + + Warning: The Caps Lock key is on. + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. A criptografia da carteira falhou devido a um erro interno. Sua carteira não estava criptografada. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin will close now to finish the encryption process. Lembre-se que sua carteira criptografada não poderá proteger totalmente os seus bitcoins de serem roubados por softwares maldosos que infectem seu computador. - The supplied passphrases do not match. - A frase de segurança fornecida não confere. - - - - Wallet unlock failed - A abertura da carteira falhou + A frase de segurança fornecida não confere. @@ -245,196 +244,191 @@ Are you sure you wish to encrypt your wallet? A descriptografia da carteira falhou - - Wallet passphrase was succesfully changed. - A frase de segurança da carteira foi alterada com êxito. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + O Bitcoin irá fechar agora para finalizar o processo de encriptação. Lembre-se de que encriptar sua carteira não protege totalmente suas bitcoins de serem roubadas por malwares que tenham infectado o seu computador. BitcoinGUI - + + Show the Bitcoin window + Mostrar a janela Bitcoin + + + + &Change Passphrase + &Mudar frase de segurança + + + Bitcoin Wallet Carteira Bitcoin - - + + Synchronizing with network... Sincronizando com a rede... - + Block chain synchronization in progress Sincronização da corrente de blocos em andamento - + &Overview &Visão geral - + Show general overview of wallet Mostrar visão geral da carteira - + &Transactions &Transações - + Browse transaction history Navegar pelo histórico de transações - + &Address Book &Catálogo de endereços - + Edit the list of stored addresses and labels Editar a lista de endereços e rótulos - + &Receive coins &Receber moedas - + Show the list of addresses for receiving payments Mostrar a lista de endereços para receber pagamentos - + &Send coins &Enviar moedas - + Send coins to a bitcoin address Enviar moedas para um endereço bitcoin - + E&xit E&xit - + Quit application Sair da aplicação - + &About %1 &About %1 - + Show information about Bitcoin Mostrar informação sobre Bitcoin - + &Options... &Opções... - + Modify configuration options for bitcoin Modificar opções de configuração para bitcoin - + Open &Bitcoin Abrir &Bitcoin - - Show the Bitcoin window - Mostrar a janela Bitcoin - - - + &Export... &Exportar... - + Export the current view to a file Export para arquivo - + &Encrypt Wallet &Criptografar Carteira - + Encrypt or decrypt wallet Criptografar ou decriptogravar carteira - - &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 - - - + About &Qt - About &Qt + Sobre &Qt - + Show information about Qt - Mostrar informação sobre Qt + Mostrar informações sobre o Qt + + + + Change the passphrase used for wallet encryption + Mudar a frase de segurança utilizada na criptografia da carteira - + &File - & Arquivo + &Arquivo - + &Settings E configurações - + &Help - & Ajuda + &Ajuda - + Tabs toolbar Barra de ferramentas - + Actions toolbar Barra de ações - + [testnet] [testnet] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network %n conexão ativa na rede Bitcoin @@ -442,17 +436,12 @@ Are you sure you wish to encrypt your wallet? - - Downloaded %1 of %2 blocks of transaction history. - Carregados %1 de %2 blocos do histórico de transações. - - - + Downloaded %1 blocks of transaction history. Carregados %1 blocos do histórico de transações. - + %n second(s) ago %n segundo atrás @@ -460,15 +449,20 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago %n minutos atrás %n minutos atrás + + + bitcoin-qt + bitcoin-qt + - + %n hour(s) ago %n hora atrás @@ -476,7 +470,7 @@ Are you sure you wish to encrypt your wallet? - + %n day(s) ago %n dia atrás @@ -484,42 +478,42 @@ Are you sure you wish to encrypt your wallet? - + + Downloaded %1 of %2 blocks of transaction history. + Carregados %1 de %2 blocos do histórico de transações. + + + Up to date Atualizado - + Catching up... Recuperando o atraso ... - + 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? 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? - - Sending... - Sending... - - - + Sent transaction Sent transaction - + Incoming transaction Incoming transaction - + Date: %1 Amount: %2 Type: %3 @@ -531,40 +525,45 @@ Tipo: %3 Endereço: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Wallet is <b>encrypted</b> and currently <b>locked</b> - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + Sending... + Sending... + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &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 - + &Display addresses in transaction list - + Whether to show Bitcoin addresses in the transaction list @@ -621,11 +620,6 @@ Endereço: %4 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 bitcoin address. - The entered address "%1" is not a valid bitcoin address. - Could not unlock wallet. @@ -636,6 +630,11 @@ Endereço: %4 New key generation failed. New key generation failed. + + + The entered address "%1" is not a valid bitcoin address. + The entered address "%1" is not a valid bitcoin address. + MainOptionsPage @@ -686,13 +685,13 @@ Endereço: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Proxy &IP: - Proxy &IP: + @@ -702,7 +701,7 @@ Endereço: %4 &Port: - &Port: + @@ -711,22 +710,22 @@ Endereço: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Taxa opcional de transações por kB que ajuda a garantir que suas transações serão processadas rapidamente. A maior parte das transações é de 1 kB. Taxa de 0.01 recomendada. 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 0.01 recommended. - - OptionsDialog + + + Options + Options + Main @@ -737,11 +736,6 @@ Endereço: %4 Display Display - - - Options - Options - OverviewPage @@ -755,11 +749,6 @@ Endereço: %4 Balance: Balance: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -768,17 +757,7 @@ Endereço: %4 0 - 0 - - - - Unconfirmed: - Unconfirmed: - - - - 0 BTC - 0 BTC + @@ -795,50 +774,45 @@ Endereço: %4 Your current balance Your current balance - - - 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 number of transactions in wallet Total number of transactions in wallet - - - SendCoinsDialog - - - - - - - - - Send Coins - Send Coins + + Unconfirmed: + Unconfirmed: - - Send to multiple recipients at once - Send to multiple recipients at once + + 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 + + + SendCoinsDialog - - &Add recipient... - &Add recipient... + + Confirm send coins + Confirm send coins - - Clear all - Clear all + + + + + + + + + Send Coins + Send Coins Remove all transaction fields - + Remover todos os campos da transação @@ -855,65 +829,75 @@ Endereço: %4 Confirm the send action Confirm the send action + + + Send to multiple recipients at once + Send to multiple recipients at once + + + + &Add recipient... + &Add recipient... + + + + Clear all + Clear all + &Send &Send - + <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 recepient address is not valid, please recheck. - The recepient 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. - - Amount exceeds your balance - Amount exceeds your balance + + The amount exceeds your balance. + - - Total exceeds your balance when the %1 transaction fee is included - 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 in one send operation - Duplicate address found, can only send to each address once in one send operation + + Duplicate address found, can only send to each address once per send operation. + - - Error: Transaction creation failed - 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 coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + @@ -982,21 +966,11 @@ Endereço: %4 TransactionDesc - - - Open for %1 blocks - Open for %1 blocks - Open until %1 Open until %1 - - - %1/offline? - %1/offline? - %1/unconfirmed @@ -1007,11 +981,6 @@ Endereço: %4 %1 confirmations %1 confirmations - - - <b>Status:</b> - <b>Status:</b> - , has not been successfully broadcast yet @@ -1020,28 +989,22 @@ Endereço: %4 , broadcast through %1 node - , broadcast through %1 node + , broadcast through %1 nodes - , broadcast through %1 nodes + <b>Date:</b> - <b>Date:</b> + <b>Source:</b> Generated<br> - <b>Source:</b> Generated<br> - - - - - <b>From:</b> - <b>From:</b> + @@ -1049,17 +1012,38 @@ Endereço: %4 unknown - - - - <b>To:</b> - <b>To:</b> + + Open for %1 blocks + Open for %1 blocks - - (yours, label: - (yours, label: - + + %1/offline? + %1/offline? + + + + <b>Status:</b> + <b>Status:</b> + + + + + <b>From:</b> + <b>From:</b> + + + + + + <b>To:</b> + <b>To:</b> + + + + (yours, label: + (yours, label: + (yours) @@ -1093,7 +1077,7 @@ Endereço: %4 <b>Transaction fee:</b> - <b>Transaction fee:</b> + @@ -1152,7 +1136,7 @@ Endereço: %4 Amount - + Open for %n block(s) Open for %n block @@ -1160,98 +1144,98 @@ Endereço: %4 - + Open until %1 Open until %1 - + Offline (%1 confirmations) Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) Confirmed (%1 confirmations) - - - Mined balance will be available in %n more blocks - - Mined balance will be available in %n more block - Mined balance will be available in %n more blocks - - - + 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 - + Recebido de - + Sent to Sent to - + Payment to yourself Payment to yourself - + 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. + + + Mined balance will be available in %n more blocks + + Mined balance will be available in %n more block + Mined balance will be available in %n more blocks + + TransactionView @@ -1342,75 +1326,75 @@ Endereço: %4 Edit label - - Show details... - Show 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 + + + Show details... + Show details... + WalletModel @@ -1432,6 +1416,56 @@ Endereço: %4 Usage: Usage: + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + + + + Loading wallet... + Loading wallet... + + + + Done loading + Done loading + + + + Invalid -proxy address + Invalid -proxy address + + + + Invalid amount for -paytxfee=<amount> + Invalid amount for -paytxfee=<amount> + + + + Error: CreateThread(StartNode) failed + Error: CreateThread(StartNode) failed + + + + Warning: Disk space is low + + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Unable to bind to port %d on this computer. Bitcoin is probably already running. + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + + + beta + beta + Send command to -server or bitcoind @@ -1524,283 +1558,287 @@ Endereço: %4 - + Add a node to connect to Add a node to connect to - + Connect only to the specified node Connect only to the specified node - + Don't accept connections from outside Don't accept connections from outside - - Don't attempt to use UPnP to map the listening port + + Loading addresses... + Loading addresses... + + + + Fee per kB to add to transactions you send - Don't attempt to use UPnP to map the listening port + Fee per kB to add to transactions you send - - Attempt to use UPnP to map the listening port + + Loading block index... + Loading block index... + + + + Run in the background as a daemon and accept commands - Attempt to use UPnP to map the listening port + Run in the background as a daemon and accept commands - - Fee per kB to add to transactions you send + + Listen for connections on <port> (default: 8333 or testnet: 18333) - Fee per kB to add to transactions you send - + Procurar por conexões em <port> (padrão: 8333 ou testnet:18333) - - Accept command line and JSON-RPC commands + + Maintain at most <n> connections to peers (default: 125) - Accept command line and JSON-RPC commands - + Manter no máximo <n> conexões aos peers (padrão: 125) + + + + Don't find peers using internet relay chat + + + + + + Don't bootstrap list of peers using DNS + + + + + + 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) - Run in the background as a daemon and accept commands + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Run in the background as a daemon and accept commands - + - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + + + + + Don't attempt to use UPnP to map the listening port + + + + + + Attempt to use UPnP to map the listening port + + + + + + Accept command line and JSON-RPC commands + + + + + Use the test network - Use the test network - + - + + Output extra debugging information + + + + + + Prepend debug output with timestamp + + Pré anexar a saída de debug com estampa de tempo + + + + 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 + + Mandar informação de trace/debug para o 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: 8332) - Listen for JSON-RPC connections on <port> (default: 8332) - + - + 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) - + - + 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 - + - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + - + + Wallet needed to be rewritten: restart Bitcoin to complete + + A Carteira precisou ser reescrita: reinicie o Bitcoin para completar + + + + Rescanning... + Rescanning... + + + + 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. + + + 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 - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - - - - Loading addresses... - Loading addresses... - - - + Error loading addr.dat Error loading addr.dat - - 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 - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Error loading wallet.dat: Wallet requires newer version of Bitcoin - + Error loading wallet.dat Error loading wallet.dat - - - Rescanning... - Rescanning... - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - - Done loading - Done loading - - - - Invalid -proxy address - Invalid -proxy address - - - - Invalid amount for -paytxfee=<amount> - Invalid amount for -paytxfee=<amount> - - - - 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. - - - - Error: CreateThread(StartNode) failed - Error: CreateThread(StartNode) failed - - - - Warning: Disk space is low - Warning: Disk space is low - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Unable to bind to port %d on this computer. Bitcoin is probably already running. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - - - - beta - beta - main - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts index 10a4ce4afb..69386b1d1f 100644 --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -42,7 +42,7 @@ This product includes software developed by the OpenSSL Project for use in the O These are your Bitcoin 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. - Здесь перечислены Ваши адреса для получения платежей. Вы можете использовать их для того, чтобы давать разным людям разные адреса и таким образом иметь возможность отслеживать кто и сколько Вам платил, а так же поддерживать бо́льшую анонимность.. + Здесь перечислены Ваши адреса для получения платежей. Вы можете использовать их для того, чтобы давать разным людям разные адреса и таким образом иметь возможность отслеживать кто и сколько Вам платил, а так же поддерживать бо́льшую анонимность. @@ -67,7 +67,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - &Kопировать + &Kопировать @@ -80,22 +80,22 @@ This product includes software developed by the OpenSSL Project for use in the O &Удалить - + Export Address Book Data Экспортировать адресную книгу - + Comma separated file (*.csv) Текст, разделённый запятыми (*.csv) - + Error exporting Ошибка экспорта - + Could not write to file %1. Невозможно записать в файл %1. @@ -121,36 +121,35 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - - Dialog - Dialog - - - - - TextLabel - TextLabel - - - + Enter passphrase Введите пароль - + New passphrase Новый пароль - + Repeat new passphrase Повторите новый пароль + + + Dialog + Dialog + 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> + + + TextLabel + TextLabel + Encrypt wallet @@ -186,18 +185,6 @@ 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 BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ВНИМАНИЕ: Если вы зашифруете бумажник и потеряете свой ​​пароль, вы <b>ПОТЕРЯЕТЕ ВСЕ ВАШИ БИТКОИНЫ!</b> -Вы действительно хотите зашифровать ваш бумажник? - @@ -205,10 +192,9 @@ Are you sure you wish to encrypt your wallet? Бумажник зашифрован - - - Warning: The Caps Lock key is on. - Внимание: Caps Lock включен. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши биткоины от кражи с помощью инфицирования вашего компьютера вредоносным ПО. @@ -223,11 +209,6 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Шифрование бумажника не удалось из-за внутренней ошибки. Ваш бумажник не был зашифрован. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши биткоины от кражи с помощью инфицирования вашего компьютера вредоносным ПО. - @@ -251,197 +232,175 @@ Are you sure you wish to encrypt your wallet? Wallet decryption failed Расшифрование бумажника не удалось + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ВНИМАНИЕ: Если вы зашифруете бумажник и потеряете свой ​​пароль, вы <b>ПОТЕРЯЕТЕ ВСЕ ВАШИ БИТКОИНЫ!</b> +Вы действительно хотите зашифровать ваш бумажник? + - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Пароль бумажника успешно изменён. + + + + Warning: The Caps Lock key is on. + Внимание: Caps Lock включен. + + + + Confirm wallet encryption + Подтвердите шифрование бумажника + BitcoinGUI - + Bitcoin Wallet Bitcoin-бумажник - - + + Synchronizing with network... Синхронизация с сетью... - + Block chain synchronization in progress Идёт синхронизация цепочки блоков - + &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 Отп&равка монет - + Send coins to a bitcoin address Отправить монеты на указанный адрес - + E&xit В&ыход - - Quit application - Закрыть приложение - - - + &About %1 &О %1 - - Show information about Bitcoin - Показать информацию о Bitcoin'е - - - - &Options... - Оп&ции... - - - - Modify configuration options for bitcoin - Изменить настройки - - - - Open &Bitcoin - &Показать бумажник - - - - Show the Bitcoin window - Показать окно бумажника - - - + &Export... &Экспорт... - + Export the current view to a file Экспортировать в файл - - &Encrypt Wallet - &Зашифровать бумажник - - - - Encrypt or decrypt wallet - Зашифровать или расшифровать бумажник - - - + &Change Passphrase &Изменить пароль - + Change the passphrase used for wallet encryption Изменить пароль шифрования бумажника - + About &Qt О &Qt - + Show information about Qt Показать информацию о Qt - + &File &Файл - + &Settings &Настройки - + &Help &Помощь - + Tabs toolbar Панель вкладок - + Actions toolbar Панель действий - + [testnet] [тестовая сеть] - - bitcoin-qt - bitcoin-qt + + &Options... + Оп&ции... - + %n active connection(s) to Bitcoin network %n активное соединение с сетью @@ -450,17 +409,32 @@ Are you sure you wish to encrypt your wallet? - - Downloaded %1 of %2 blocks of transaction history. - Загружено %1 из %2 блоков истории транзакций. + + Modify configuration options for bitcoin + Изменить настройки + + + + Open &Bitcoin + &Показать бумажник + + + + Show the Bitcoin window + Показать окно бумажника - + Downloaded %1 blocks of transaction history. Загружено %1 блоков истории транзакций. + + + &Encrypt Wallet + &Зашифровать бумажник + - + %n second(s) ago %n секунду назад @@ -469,7 +443,7 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago %n минуту назад @@ -477,8 +451,13 @@ Are you sure you wish to encrypt your wallet? %n минут назад + + + Quit application + Закрыть приложение + - + %n hour(s) ago %n час назад @@ -486,8 +465,13 @@ Are you sure you wish to encrypt your wallet? %n часов назад + + + Show information about Bitcoin + Показать информацию о Bitcoin'е + - + %n day(s) ago %n день назад @@ -496,42 +480,42 @@ Are you sure you wish to encrypt your wallet? - + 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, которая отправится тем узлам, которые обработают Вашу транзакцию и поможет поддержать сеть. Вы хотите добавить комиссию? + + Encrypt or decrypt wallet + Зашифровать или расшифровать бумажник - - Sending... - Отправка... + + 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, которая отправится тем узлам, которые обработают Вашу транзакцию, и поможет поддержать сеть. Вы хотите добавить комиссию? - + Sent transaction Исходящая транзакция - + Incoming transaction Входящая транзакция - + Date: %1 Amount: %2 Type: %3 @@ -544,42 +528,57 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Бумажник <b>зашифрован</b> и в настоящее время <b>разблокирован</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> - - A fatal error occured. Bitcoin can no longer continue safely and will quit. - + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + Загружено %1 из %2 блоков истории транзакций. + + + + Sending... + Отправка... + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Произошла неисправимая ошибка. Bitcoin не может безопасно продолжать работу и будет закрыт. DisplayOptionsPage - + &Unit to show amounts in: &Измерять монеты в: - + Choose the default subdivision unit to show in the interface, and when sending coins Единица измерения количества монет при отображении и при отправке - + &Display addresses in transaction list &Показывать адреса в списке транзакций - + Whether to show Bitcoin addresses in the transaction list - + Показывать ли адреса Bitcoin в списке транзакций @@ -634,11 +633,6 @@ Address: %4 The entered address "%1" is already in the address book. Введённый адрес «%1» уже находится в адресной книге. - - - The entered address "%1" is not a valid bitcoin address. - Введённый адрес «%1» не является правильным Bitcoin-адресом. - Could not unlock wallet. @@ -649,6 +643,11 @@ Address: %4 New key generation failed. Генерация нового ключа не удалась. + + + The entered address "%1" is not a valid bitcoin address. + Введённый адрес «%1» не является правильным Bitcoin-адресом. + MainOptionsPage @@ -699,8 +698,8 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Подключаться к сети Bitcoin через SOCKS4 прокси (например, при использовании Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Подключаться к сети Bitcoin через прокси SOCKS4 (например, при подключении через Tor) @@ -724,18 +723,13 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработано быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработана быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. Pay transaction &fee - Добавлять ко&миссию - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработано быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. + Заплатить ко&миссию @@ -768,45 +762,25 @@ Address: %4 Balance: Баланс: - - - 123.456 BTC - 123.456 BTC - Number of transactions: Количество транзакций: - - - 0 - 0 - Unconfirmed: Не подтверждено: - - - 0 BTC - 0 BTC - Wallet Бумажник - - <b>Recent transactions</b> - <b>Последние транзакции</b> - - - - Your current balance - Ваш текущий баланс + + 0 + 0 @@ -818,18 +792,28 @@ Address: %4 Total number of transactions in wallet Общее количество транзакций в Вашем бумажнике + + + <b>Recent transactions</b> + <b>Последние транзакции</b> + + + + Your current balance + Ваш текущий баланс + SendCoinsDialog - - - - - - - + + + + + + + Send Coins Отправка @@ -848,11 +832,6 @@ Address: %4 Clear all Очистить всё - - - Remove all transaction fields - Удалить все поля транзакции - Balance: @@ -874,59 +853,64 @@ Address: %4 &Отправить - + + Remove all transaction fields + Удалить все поля транзакции + + + <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 recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. Адрес получателя неверный, пожалуйста, перепроверьте. - + The amount to pay must be larger than 0. Количество монет для отправки должно быть больше 0. - - Amount exceeds your balance + + The amount exceeds your balance. Количество отправляемых монет превышает Ваш баланс - - Total exceeds your balance when the %1 transaction fee is included - Сумма превысит Ваш баланс, если комиссия в %1 будет добавлена к транзакции + + The total exceeds your balance when the %1 transaction fee is included. + Сумма превысит Ваш баланс, если комиссия в размере %1 будет добавлена к транзакции - - Duplicate address found, can only send to each address once in one 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. - Ошибка: В транзакции отказано. Такое может произойти, если некоторые монеты уже были потрачены, например, если Вы используете одну копию бумажника (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. + Ошибка: В транзакции отказано. Такое может произойти, если некоторые монеты уже были потрачены, например, если Вы используете одну копию файла wallet.dat, а монеты были потрачены из другой копии, но не были отмечены как потраченные в этой. @@ -970,17 +954,17 @@ Address: %4 Alt+A - Alt+A + Alt+A Paste address from clipboard - Вставить адрес из буфера обмена + Вставить адрес из буфера обмена Alt+P - Alt+P + Alt+P @@ -995,6 +979,16 @@ Address: %4 TransactionDesc + + + %1 confirmations + %1 подтверждений + + + + , has not been successfully broadcast yet + , ещё не было успешно разослано + Open for %1 blocks @@ -1015,21 +1009,11 @@ Address: %4 %1/unconfirmed %1/не подтверждено - - - %1 confirmations - %1 подтверждений - <b>Status:</b> <b>Статус:</b> - - - , has not been successfully broadcast yet - , ещё не было успешно разослано - , broadcast through %1 node @@ -1165,7 +1149,7 @@ Address: %4 Количество - + Open for %n block(s) Открыто для %n блока @@ -1174,102 +1158,152 @@ Address: %4 - + Open until %1 Открыто до %1 - + Offline (%1 confirmations) Оффлайн (%1 подтверждений) - + Unconfirmed (%1 of %2 confirmations) Не подтверждено (%1 из %2 подтверждений) - + Confirmed (%1 confirmations) Подтверждено (%1 подтверждений) - - - Mined balance will be available in %n more blocks - - Добытыми монетами можно будет воспользоваться через %n блок - Добытыми монетами можно будет воспользоваться через %n блока - Добытыми монетами можно будет воспользоваться через %n блоков - - - + 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. Сумма, добавленная, или снятая с баланса. + + + Mined balance will be available in %n more blocks + + Добытыми монетами можно будет воспользоваться через %n блок + Добытыми монетами можно будет воспользоваться через %n блока + Добытыми монетами можно будет воспользоваться через %n блоков + + TransactionView + + + Date + Дата + + + + Type + Тип + + + + Label + Метка + + + + Address + Адрес + + + + Amount + Количество + + + + ID + ID + + + + Error exporting + Ошибка экспорта + + + + Could not write to file %1. + Невозможно записать в файл %1. + + + + Range: + Промежуток от: + + + + to + до + @@ -1336,16 +1370,6 @@ Address: %4 Enter address or label to search Введите адрес или метку для поиска - - - Min amount - Мин. сумма - - - - Copy address - Копировать адрес - Copy label @@ -1357,74 +1381,34 @@ Address: %4 Изменить метку - - Show 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. - Невозможно записать в файл %1. + + Min amount + Мин. сумма - - Range: - Промежуток от: + + Copy address + Копировать адрес - - to - до + + Show details... + Показать детали... @@ -1447,6 +1431,72 @@ Address: %4 Usage: Использование: + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Невозможно установить блокировку на рабочую директорию %s. Возможно, бумажник уже запущен. + + + + Loading addresses... + Загрузка адресов... + + + + Loading wallet... + Загрузка бумажника... + + + + Wallet needed to be rewritten: restart Bitcoin to complete + + Необходимо перезаписать бумажник, перезапустите Bitcoin для завершения операции + + + + Rescanning... + Сканирование... + + + + Done loading + Загрузка завершена + + + + Invalid -proxy address + Ошибка в адресе прокси + + + + Invalid amount for -paytxfee=<amount> + Ошибка в сумме комиссии + + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + ВНИМАНИЕ: Установлена слишком большая комиссия (-paytxfee=). Данный параметр отвечает за комиссию, которую Вы будете добавлять к сумме при осуществлении транзакций. + + + + Error: CreateThread(StartNode) failed + Ошибка: Созданиние потока (запуск узла) не удался + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Невозможно забиндить порт %d на данном компьютере. Возможно, бумажник ужк запущен. + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + ВНИМАНИЕ: Проверьте дату и время, установленные на Вашем компьютере. Если Ваши часы идут не правильно Bitcoin может наботать не корректно. + + + + beta + бета + Send command to -server or bitcoind @@ -1521,13 +1571,6 @@ Address: %4 Specify connection timeout (in milliseconds) Указать таймаут соединения (в миллисекундах) - - - - - Connect through socks4 proxy - - Соединяться через socks4-прокси @@ -1538,119 +1581,203 @@ Address: %4 - - Add a node to connect to + + Don't bootstrap list of peers using DNS - Добавить узел для соединения - + Не получать начальный список узлов через DNS - - Connect only to the specified node + + Threshold for disconnecting misbehaving peers (default: 100) - Соединяться только с указанным узлом - + Порог для отключения неправильно ведущих себя узлов (по умолчанию: 100) - - Don't accept connections from outside + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Не принимать внешние соединения - + Число секунд блокирования неправильно ведущих себя узлов (по умолчанию: 86400) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + Максимальный размер буфера приёма на соединение, <n>*1000 байт (по умолчанию: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + Максимальный размер буфера отправки на соединение, <n>*1000 байт (по умолчанию: 10000) + + + Don't attempt to use UPnP to map the listening port - Не пытаться использовать UPnP - + Не пытаться использовать UPnP для назначения входящего порта - + Attempt to use UPnP to map the listening port - Попытаться использовать UPnP для проброса прослушиваемого порта на роутере - + Пытаться использовать UPnP для назначения входящего порта - + Fee per kB to add to transactions you send - Комиссия (за каждый kB транзакции) - + Комиссия на Кб, добавляемая к вашим переводам - + Accept command line and JSON-RPC commands - Принимать команды из командной строки и через JSON-RPC + Принимать командную строку и команды JSON-RPC + + + + Output extra debugging information + + Выводить больше отладочной информации + + + + Prepend debug output with timestamp + + Дописывать отметки времени к отладочному выводу + + + + Send trace/debug info to console instead of debug.log file + + Выводить информацию трассировки/отладки на консоль вместо файла debug.log + + + + Send trace/debug info to debugger + + Отправлять информацию трассировки/отладки в отладчик + + + + Loading block index... + Загрузка индекса блоков... + + + + Warning: Disk space is low + ВНИМАНИЕ: На диске заканчивается свободное пространство + + + + Add a node to connect to + + Добавить узел для соединения - + + Connect through socks4 proxy + + Подключаться через socks4 прокси + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + + Принимать входящие подключения на <port> (по умолчанию: 8333 или 18333 в тестовой сети) + + + + Maintain at most <n> connections to peers (default: 125) + + Поддерживать не более <n> подключений к узлам (по умолчанию: 125) + + + + Connect only to the specified node + + Соединяться только с указанным узлом + + + + + Don't find peers using internet relay chat + + Don't Найти участников через IRC + + + + Don't accept connections from outside + + Не принимать внешние соединения + + + + Run in the background as a daemon and accept commands Запустить в бекграунде (как демон) и принимать команды - + Use the test network Использовать тестовую сеть - + Username for JSON-RPC connections Имя пользователя для JSON-RPC соединений - + Password for JSON-RPC connections Пароль для JSON-RPC соединений - + Listen for JSON-RPC connections on <port> (default: 8332) Слушать <порт> для JSON-RPC соединений (по умолчанию: 8332) - + 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) - + Set key pool size to <n> (default: 100) Установить размер key pool'а в <n> (по умолчанию: 100) - + Rescan the block chain for missing wallet transactions Просканировать цепочку блоков в поисках пропущенных транзакций для бумажника - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1658,161 +1785,79 @@ SSL options: (see the Bitcoin 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) Допустимые Cipher'ы для сервера (по умолчанию: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Данная справка - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Невозможно установить блокировку на рабочую директорию %s. Возможно, бумажник уже запущен. - - - - Loading addresses... - Загрузка адресов... - - - + Error loading addr.dat Ошибка при загрузке addr.dat - - Loading block index... - Загрузка индекса блоков... - - - + Error loading blkindex.dat Ошибка при загрузке blkindex.dat - - Loading wallet... - Загрузка бумажника... - - - + Error loading wallet.dat: Wallet corrupted Ошибка загрузки wallet.dat: Бумажник повреждён - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Ошибка загрузки wallet.dat: Для данного бумажника требуется более новая версия Bitcoin - + Error loading wallet.dat Ошибка при загрузке wallet.dat - - - Rescanning... - Сканирование... - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - - Done loading - Загрузка завершена - - - - Invalid -proxy address - Ошибка в адресе прокси - - - - Invalid amount for -paytxfee=<amount> - Ошибка в сумме комиссии - - - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - ВНИМАНИЕ: Установлена слишком большая комиссия (-paytxfee=). Данный параметр отвечает за комиссию, которую Вы будете добавлять к сумме при осуществлении транзакций. - - - - Error: CreateThread(StartNode) failed - Ошибка: Созданиние потока (запуск узла) не удался - - - - Warning: Disk space is low - ВНИМАНИЕ: На диске заканчивается свободное пространство - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Невозможно забиндить порт %d на данном компьютере. Возможно, бумажник ужк запущен. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - ВНИМАНИЕ: Проверьте дату и время, установленные на Вашем компьютере. Если Ваши часы идут не правильно Bitcoin может наботать не корректно. - - - - beta - бета - main - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts index 70a13aa63f..454540090c 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -80,22 +80,22 @@ This product includes software developed by the OpenSSL Project for use in the O &Видалити - + Export Address Book Data Експортувати адресну книгу - + Comma separated file (*.csv) Файли відділені комами (*.csv) - + Error exporting Помилка при експортуванні - + Could not write to file %1. Неможливо записати у файл %1. @@ -126,23 +126,22 @@ This product includes software developed by the OpenSSL Project for use in the O Діалог - - + TextLabel Текстова мітка - + Enter passphrase Введіть пароль - + New passphrase Новий пароль - + Repeat new passphrase Повторіть пароль @@ -205,10 +204,9 @@ Are you sure you wish to encrypt your wallet? Гаманець зашифровано - - - Warning: The Caps Lock key is on. - Увага: Ввімкнено Caps Lock + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. @@ -223,11 +221,6 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Виникла помилка під час шифрування гаманця. Ваш гаманець не було зашифровано. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. - @@ -253,195 +246,201 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Пароль було успішно змінено. + + + + Warning: The Caps Lock key is on. + Увага: Ввімкнено Caps Lock + BitcoinGUI - + + &About %1 + П&ро %1 + + + Bitcoin Wallet Гаманець - - + + Synchronizing with network... Синхронізація з мережею... - + Block chain synchronization in progress Відбувається синхронізація ланцюжка блоків... - + &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 В&ідправити - + Send coins to a bitcoin address Відправити монети на вказану адресу - + E&xit &Вихід - + Quit application Вийти - - &About %1 - П&ро %1 - - - + Show information about Bitcoin Показати інформацію про Bitcoin - + &Options... &Параметри... - + Modify configuration options for bitcoin Редагувати параметри - + Open &Bitcoin Показати &гаманець - + Show the Bitcoin window Показати вікно гаманця - + &Export... &Експорт... - + Export the current view to a file Експортувати в файл - + &Encrypt Wallet &Шифрування гаманця - + Encrypt or decrypt wallet Зашифрувати чи розшифрувати гаманець - + &Change Passphrase Змінити парол&ь - + Change the passphrase used for wallet encryption Змінити пароль, який використовується для шифрування гаманця - + About &Qt &Про Qt - + Show information about Qt Показати інформацію про Qt - + &File &Файл - + &Settings &Налаштування - + &Help &Довідка - + Tabs toolbar Панель вкладок - + Actions toolbar Панель дій - + [testnet] [тестова мережа] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network %n активне з’єднання з мережею @@ -450,17 +449,17 @@ Are you sure you wish to encrypt your wallet? - + Downloaded %1 of %2 blocks of transaction history. Завантажено %1 з %2 блоків історії переказів. - + Downloaded %1 blocks of transaction history. Завантажено %1 блоків історії транзакцій. - + %n second(s) ago %n секунду тому @@ -469,7 +468,7 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago %n хвилину тому @@ -478,7 +477,7 @@ Are you sure you wish to encrypt your wallet? - + %n hour(s) ago %n годину тому @@ -487,7 +486,7 @@ Are you sure you wish to encrypt your wallet? - + %n day(s) ago %n день тому @@ -496,42 +495,42 @@ Are you sure you wish to encrypt your wallet? - + 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, яка відправиться тим вузлам що оброблять ваш переказ, та допоможе підтримати мережу. Ви хочете додати комісію? - + Sending... Відправлення... - + Sent transaction Надіслані перекази - + Incoming transaction Отримані перекази - + Date: %1 Amount: %2 Type: %3 @@ -544,40 +543,40 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> <b>Зашифрований</b> гаманець <b>розблоковано</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> <b>Зашифрований</b> гаманець <b>заблоковано</b> - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: В&имірювати монети в: - + Choose the default subdivision unit to show in the interface, and when sending coins Виберіть одиницю вимірювання монет, яка буде відображатись в гаманці та при відправленні. - + &Display addresses in transaction list &Відображати адресу в списку переказів - + Whether to show Bitcoin addresses in the transaction list @@ -634,11 +633,6 @@ Address: %4 The entered address "%1" is already in the address book. Введена адреса «%1» вже присутня в адресній книзі. - - - The entered address "%1" is not a valid bitcoin address. - Введена адреса «%1» не є коректною адресою в мережі Bitcoin. - Could not unlock wallet. @@ -649,6 +643,11 @@ Address: %4 New key generation failed. Не вдалося згенерувати нові ключі. + + + The entered address "%1" is not a valid bitcoin address. + Введена адреса «%1» не є коректною адресою в мережі Bitcoin. + MainOptionsPage @@ -699,18 +698,8 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Підключатись до мережі Bitcoin через SOCKS4-проксі (наприклад при використанні Tor) - - - - Proxy &IP: - &IP проксі: - - - - IP address of the proxy (e.g. 127.0.0.1) - IP-адреса проксі-сервера (наприклад 127.0.0.1) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Підключатись до мережі Bitcoin через SOCKS4-проксі (наприклад при використанні Tor) @@ -724,18 +713,23 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Добровільна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Добровільна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. Pay transaction &fee - Заплатити комісі&ю + Заплатити комісі&ю - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Добровільна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. + + Proxy &IP: + &IP проксі: + + + + IP address of the proxy (e.g. 127.0.0.1) + IP-адреса проксі-сервера (наприклад 127.0.0.1) @@ -768,20 +762,15 @@ Address: %4 Balance: Баланс: - - - 123.456 BTC - 123.456 BTC - Number of transactions: Кількість переказів: - - 0 - 0 + + Wallet + Гаманець @@ -789,14 +778,19 @@ Address: %4 Непідтверджені: - - 0 BTC - 0 BTC + + 0 + 0 - - Wallet - Гаманець + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Загальна сума всіх переказів, які ще не підтверджені, та до сих пір не враховуються в загальному балансі + + + + Total number of transactions in wallet + Загальна кількість переказів в гаманці @@ -808,28 +802,18 @@ Address: %4 Your current balance Ваш поточний баланс - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Загальна сума всіх переказів, які ще не підтверджені, та до сих пір не враховуються в загальному балансі - - - - Total number of transactions in wallet - Загальна кількість переказів в гаманці - SendCoinsDialog - - - - - - - + + + + + + + Send Coins Відправити @@ -841,18 +825,18 @@ Address: %4 &Add recipient... - Дод&ати одержувача... - - - - Clear all - Очистити все + Дод&ати одержувача... Remove all transaction fields Видалити всі поля транзакції + + + Clear all + Очистити все + Balance: @@ -874,58 +858,58 @@ Address: %4 &Відправити - + <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 recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. Адреса отримувача невірна, будьласка перепровірте. - + The amount to pay must be larger than 0. Кількість монет для відправлення повинна бути більшою 0. - - Amount exceeds your balance - Кількість монет для відправлення перевищує ваш баланс + + The amount exceeds your balance. + Кількість монет для відправлення перевищує ваш баланс. - - Total exceeds your balance when the %1 transaction fee is included - Сума перевищить ваш баланс, якщо комісія %1 буде додана до вашого переказу + + The total exceeds your balance when the %1 transaction fee is included. + Сума перевищить ваш баланс, якщо комісія %1 буде додана до вашого переказу. - - Duplicate address found, can only send to each address once in one 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. Помилка: переказ було відхилено. Це може статись, якщо декілька монет з вашого гаманця вже використані, наприклад, якщо ви використовуєте одну копію гаманця (wallet.dat), а монети були використані з іншої копії, але не позначені як використані в цій. @@ -936,16 +920,6 @@ Address: %4 Form Форма - - - A&mount: - &Кількість: - - - - Pay &To: - &Отримувач: - @@ -967,26 +941,36 @@ Address: %4 Choose address from address book Вибрати адресу з адресної книги - - - Alt+A - Alt+A - Paste address from clipboard Вставити адресу - - - Alt+P - Alt+P - Remove this recipient Видалити цього отримувача + + + A&mount: + &Кількість: + + + + Pay &To: + &Отримувач: + + + + Alt+A + Alt+A + + + + Alt+P + Alt+P + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -995,6 +979,16 @@ Address: %4 TransactionDesc + + + %1 confirmations + %1 підтверджень + + + + , has not been successfully broadcast yet + , ще не було успішно розіслано + Open for %1 blocks @@ -1015,21 +1009,11 @@ Address: %4 %1/unconfirmed %1/не підтверджено - - - %1 confirmations - %1 підтверджень - <b>Status:</b> <b>Статус:</b> - - - , has not been successfully broadcast yet - , ще не було успішно розіслано - , broadcast through %1 node @@ -1061,6 +1045,16 @@ Address: %4 unknown невідомий + + + Comment: + Коментар: + + + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Після генерації монет, потрібно зачекати 120 блоків, перш ніж їх можна буде використати. Коли ви згенерували цей блок, його було відправлено в мережу для того, щоб він був доданий до ланцюжка блоків. Якщо ця процедура не вдасться, статус буде змінено на «не підтверджено» і ви не зможете потратити згенеровані монету. Таке може статись, якщо хтось інший згенерував блок на декілька секунд раніше. + @@ -1084,7 +1078,7 @@ Address: %4 <b>Credit:</b> - <b>Кредит:</b> + <b>Кредит:</b> @@ -1118,16 +1112,6 @@ Address: %4 Message: Повідомлення: - - - Comment: - Коментар: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Після генерації монет, потрібно зачекати 120 блоків, перш ніж їх можна буде використати. Коли ви згенерували цей блок, його було відправлено в мережу для того, щоб він був доданий до ланцюжка блоків. Якщо ця процедура не вдасться, статус буде змінено на «не підтверджено» і ви не зможете потратити згенеровані монету. Таке може статись, якщо хтось інший згенерував блок на декілька секунд раніше. - TransactionDescDialog @@ -1165,7 +1149,7 @@ Address: %4 Кількість - + Open for %n block(s) Відкрити для %n блоку @@ -1174,96 +1158,96 @@ Address: %4 - + Open until %1 Відкрити до %1 - + Offline (%1 confirmations) Поза інтернетом (%1 підтверджень) - + Unconfirmed (%1 of %2 confirmations) Непідтверджено (%1 із %2 підтверджень) - + Confirmed (%1 confirmations) Підтверджено (%1 підтверджень) - + Mined balance will be available in %n more blocks - + + Добутими монетами можна буде скористатись через %n блок Добутими монетами можна буде скористатись через %n блок Добутими монетами можна буде скористатись через %n блоки - Добутими монетами можна буде скористатись через %n блоків - + 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. Сума, додана чи знята з балансу. @@ -1271,26 +1255,66 @@ Address: %4 TransactionView - - - All - Всі + + Type + Тип - - Today - Сьогодні + + Label + Мітка - - This week - На цьому тижні + + Address + Адреса - - This month - На цьому місяці - + + Amount + Кількість + + + + ID + Ідентифікатор + + + + Error exporting + Помилка експорту + + + + Could not write to file %1. + Неможливо записати у файл %1 + + + + Range: + Діапазон від: + + + + + All + Всі + + + + Today + Сьогодні + + + + This week + На цьому тижні + + + + This month + На цьому місяці + Last month @@ -1357,96 +1381,111 @@ Address: %4 Редагувати мітку - - Show details... - Показати деталі... - - - + Export Transaction Data Експортувати дані переказів - + Comma separated file (*.csv) Файли, розділені комою (*.csv) - + Confirmed Підтверджені - + Date Дата - - Type - Тип + + Show details... + Показати деталі... - - Label - Мітка + + to + до + + + WalletModel - - Address - Адреса + + Sending... + Відправка... + + + bitcoin-core - - Amount - Кількість + + Usage: + Вкористання: - - ID - Ідентифікатор + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Неможливо встановити блокування на робочий каталог %s. Можливо, гаманець вже запущено. - - Error exporting - Помилка експорту + + Loading addresses... + Завантаження адрес... - - Could not write to file %1. - Неможливо записати у файл %1 + + Loading block index... + Завантаження індексу блоків... - - Range: - Діапазон від: + + Loading wallet... + Завантаження гаманця... - - to - до + + Rescanning... + Сканування... - - - WalletModel - - Sending... - Відправка... + + Done loading + Завантаження завершене + + + + Invalid amount for -paytxfee=<amount> + Помилка у величині комісії + + + + Error: CreateThread(StartNode) failed + Помилка: CreateThread(StartNode) дала збій + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Неможливо прив’язати до порту %d на цьому комп’ютері. Молживо гаманець вже запущено. + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Увага: будь ласка, перевірте дату і час на свому комп’ютері. Якщо ваш годинник йде неправильно, Bitcoin може працювати некоректно. + + + + beta + бета - - - bitcoin-core Bitcoin version Версія - - - Usage: - Вкористання: - Send command to -server or bitcoind @@ -1535,123 +1574,209 @@ Address: %4 Allow DNS lookups for addnode and connect - Дозволити пошук в DNS для команд «addnode» і «connect» - + Дозволити пошук в DNS для команд «addnode» і «connect» - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - Додати вузол для підключення - + Чекати на з'єднання на порту (по замовченню 8333 або тестова мережа 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) - Підключитись лише до вказаного вузла - + Підтримувати не більше <n> зв'язків з колегами (за замовчуванням: 125) + Add a node to connect to + + Додати вузол для підключення + + + + Connect only to the specified node + + Підключитись лише до вказаного вузла + + + + Don't find peers using internet relay chat + + + + + Don't accept connections from outside Не приймати підключення ззовні + + + Don't bootstrap list of peers using DNS + + Не завантажувати список пірів за допомогою DNS + - Don't attempt to use UPnP to map the listening port + Threshold for disconnecting misbehaving peers (default: 100) - Не намагатись використовувати UPnP для відображення порту що прослуховується на роутері - + Поріг відключення неправильно підєднаних пірів (за замовчуванням: 100) + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + Максимальній розмір вхідного буферу на одне з'єднання (за замовчуванням 86400) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + Максимальоий буфер , <n> * 1000 байт (за умовчанням: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + Максимальній розмір виіхідного буферу на одне з'єднання (за замовчуванням 10000) + + + + Don't attempt to use UPnP to map the listening port + + Не намагатись використовувати UPnP для відображення порту що прослуховується на роутері + + + Attempt to use UPnP to map the listening port - Намагатись використовувати UPnP для відображення порту що прослуховується на роутері - + Намагатись використовувати UPnP для відображення порту що прослуховується на роутері - + Fee per kB to add to transactions you send - Комісія за Кб - + Комісія за Кб - + Accept command line and JSON-RPC commands - Приймати команди із командного рядка та команди JSON-RPC - + Приймати команди із командного рядка та команди JSON-RPC - + + Output extra debugging information + + Виводити більше налагоджувальної інформації + + + + Prepend debug output with timestamp + + Доповнювати налагоджувальний вивід відміткою часу + + + + Send trace/debug info to console instead of debug.log file + + Відсилаті налагоджувальну інформацію на консоль, а не у файл debug.log + + + + Send trace/debug info to debugger + + Відсилаті налагоджувальну інформацію до налагоджувача + + + + Wallet needed to be rewritten: restart Bitcoin to complete + + Потрібно перезаписати гаманець: перезапустіть Біткоін-клієнт для завершення + + + + Invalid -proxy address + Помилка в адресі проксі-сервера + + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + Увага: встановлено занадто велику комісію (-paytxfee). Комісія зніматиметься кожен раз коли ви проводитимете перекази. + + + + Warning: Disk space is low + Увага: На диску мало вільного місця + + + Run in the background as a daemon and accept commands Запустити в фоновому режимі (як демон) та приймати команди - + Use the test network Використовувати тестову мережу - + Username for JSON-RPC connections Ім’я користувача для JSON-RPC-з’єднань - + Password for JSON-RPC connections Пароль для JSON-RPC-з’єднань - + Listen for JSON-RPC connections on <port> (default: 8332) Прослуховувати <port> для JSON-RPC-з’єднань (за промовчуванням: 8332) - + 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) - + Set key pool size to <n> (default: 100) Встановити розмір пулу ключів <n> (за промовчуванням: 100) - + Rescan the block chain for missing wallet transactions Пересканувати ланцюжок блоків, в пошуку втрачених переказів - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1660,162 +1785,80 @@ SSL options: (see the Bitcoin 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) - + This help message Дана довідка - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Неможливо встановити блокування на робочий каталог %s. Можливо, гаманець вже запущено. - - - - Loading addresses... - Завантаження адрес... - - - + Error loading addr.dat Помилка при завантаженні addr.dat - - Loading block index... - Завантаження індексу блоків... - - - + Error loading blkindex.dat Помилка при завантаженні blkindex.dat - - Loading wallet... - Завантаження гаманця... - - - + Error loading wallet.dat: Wallet corrupted Помилка при завантаженні wallet.dat: Гаманець пошкоджено - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Помилка при завантаженні wallet.dat: Гаманець потребує новішої версії Bitcoin'а - + Error loading wallet.dat Помилка при завантаженні wallet.dat - - - Rescanning... - Сканування... - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - - Done loading - Завантаження завершене - - - - Invalid -proxy address - Помилка в адресі проксі-сервера - - - - Invalid amount for -paytxfee=<amount> - Помилка у величині комісії - - - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - Увага: встановлено занадто велику комісію (-paytxfee). Комісія зніматиметься кожен раз коли ви проводитимете перекази. - - - - Error: CreateThread(StartNode) failed - Помилка: CreateThread(StartNode) дала збій - - - - Warning: Disk space is low - Увага: На диску мало вільного місця - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Неможливо прив’язати до порту %d на цьому комп’ютері. Молживо гаманець вже запущено. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Увага: будь ласка, перевірте дату і час на свому комп’ютері. Якщо ваш годинник йде неправильно, Bitcoin може працювати некоректно. - - - - beta - бета - main - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index 73e7e6c378..5bbb8bcea6 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -37,7 +37,7 @@ This product includes software developed by the OpenSSL Project for use in the O Address Book - 地址薄 + 地址簿 @@ -80,22 +80,22 @@ This product includes software developed by the OpenSSL Project for use in the O &删除 - + Export Address Book Data - 导出地址薄数据 + 导出地址簿数据 - + Comma separated file (*.csv) 逗号分隔文件 (*.csv) - + Error exporting 导出错误 - + Could not write to file %1. 无法写入文件 %1。 @@ -120,29 +120,28 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog + + + Enter passphrase + 输入口令 + Dialog 会话 - - - TextLabel - 文本标签 - - - - Enter passphrase - 输入口令 - - - + New passphrase 新口令 - + + TextLabel + 文本标签 + + + Repeat new passphrase 重复新口令 @@ -186,11 +185,6 @@ 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 BITCOINS</b>! @@ -205,10 +199,9 @@ Are you sure you wish to encrypt your wallet? 钱包已加密 - - - Warning: The Caps Lock key is on. - 警告:大写锁定键CapsLock开启 + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的比特币还是有可能丢失。 @@ -223,11 +216,6 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. 由于一个本地错误,加密钱包操作已经失败。您的钱包没有被加密。 - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的比特币还是有可能丢失。 - @@ -253,275 +241,276 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. 钱包口令修改成功 + + + + Warning: The Caps Lock key is on. + 警告:大写锁定键CapsLock开启 + + + + Confirm wallet encryption + 确认加密钱包 + BitcoinGUI - + Bitcoin Wallet 比特币钱包 - - + + Synchronizing with network... 正在与网络同步... - + Block chain synchronization in progress 正在同步区域锁链 - + &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 &发送货币 - + Send coins to a bitcoin address 将货币发送到一个比特币地址 - + E&xit 退出 - + Quit application 退出程序 - + &About %1 &关于 %1 - + Show information about Bitcoin 显示比特币的相关信息 - + &Options... &选项... - + Modify configuration options for bitcoin 修改比特币配置选项 - + Open &Bitcoin 打开 &比特币 - + Show the Bitcoin window 显示比特币窗口 - + &Export... &导出... - + Export the current view to a file 导出当前视图到指定文件 - + &Encrypt Wallet &加密钱包 - Encrypt or decrypt wallet - 加密或解密钱包 - - - - &Change Passphrase - &修改口令 - - - - Change the passphrase used for wallet encryption - 修改钱包加密口令 - - - - About &Qt - 关于 &Qt - - - Show information about Qt 显示Qt相关信息 - + &File &文件 - + &Settings &设置 - + &Help &帮助 - + Tabs toolbar 分页工具栏 - + + Encrypt or decrypt wallet + 加密或解密钱包 + + + Actions toolbar 动作工具栏 - + [testnet] [testnet] - - bitcoin-qt - bitcoin-qt + + Change the passphrase used for wallet encryption + 修改钱包加密口令 - + %n active connection(s) to Bitcoin network - %n 个到比特币网络的活动连接 + 您连接到比特币网络的连接数量共有%n条 - - Downloaded %1 of %2 blocks of transaction history. - %1 / %2 个交易历史的区块已下载 + + About &Qt + 关于 &Qt - + Downloaded %1 blocks of transaction history. - %1 个交易历史的区块已下载 + %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 交易费, 交易费将支付给处理该笔交易的网络节点,有助于维持比特币网络的运行. 您愿意支付交易费用吗? - - Sending... - 发送中 + + bitcoin-qt + bitcoin-qt + + + + &Change Passphrase + &修改口令 - + Sent transaction 已发送交易 - + Incoming transaction 流入交易 - + Date: %1 Amount: %2 Type: %3 @@ -534,42 +523,52 @@ Address: %4 - + + Downloaded %1 of %2 blocks of transaction history. + %1 / %2 个交易历史的区块已下载 + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> 钱包已被<b>加密</b>,当前为<b>解锁</b>状态 - + Wallet is <b>encrypted</b> and currently <b>locked</b> 钱包已被<b>加密</b>,当前为<b>锁定</b>状态 - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + Sending... + 发送中 + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &金额显示单位: - + Choose the default subdivision unit to show in the interface, and when sending coins 选择显示及发送比特币时使用的最小单位 - + &Display addresses in transaction list - &在交易列表中显示地址 + 在交易清单中&显示比特币地址 - + Whether to show Bitcoin addresses in the transaction list - + 是否需要在交易清单中显示比特币地址。 @@ -622,7 +621,7 @@ Address: %4 The entered address "%1" is already in the address book. - 输入的地址 "%1" 已经存在于地址薄。 + 输入的地址 "%1" 已经存在于地址簿。 @@ -689,7 +688,7 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) 通过一个SOCKS4代理连接到比特币网络 (如使用Tor连接时) @@ -700,7 +699,7 @@ Address: %4 IP address of the proxy (e.g. 127.0.0.1) - 代理服务器IP (如 127.0.0.1) + 代理服务器IP (如 127.0.0.1) @@ -710,26 +709,26 @@ Address: %4 Port of the proxy (e.g. 1234) - 代理端口 (比如 1234) + 代理端口(例如 9050) {1234)?} - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. 建议支付交易费用,有助于您的交易得到尽快处理. 绝大多数交易的字节数为 1 kB. 建议支付0.01个比特币. Pay transaction &fee - 支付交易 &费用 - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - 建议支付交易费用,有助于您的交易得到尽快处理. 绝大多数交易的字节数为 1 kB. 建议支付0.01个比特币. + 支付交易 &费用 OptionsDialog + + + Options + 选项 + Main @@ -740,11 +739,6 @@ Address: %4 Display 查看 - - - Options - 选项 - OverviewPage @@ -756,42 +750,27 @@ Address: %4 Balance: - 余额 - - - - 123.456 BTC - 123.456 BTC + 余额: Number of transactions: - 交易笔数 - - - - 0 - 0 + 交易笔数: Unconfirmed: 未确认: - - - 0 BTC - 0 BTC - Wallet 钱包 - - <b>Recent transactions</b> - <b>当前交易</b> + + 0 + 0 @@ -803,6 +782,11 @@ Address: %4 Total of transactions that have yet to be confirmed, and do not yet count toward the current balance 尚未确认的交易总额, 未计入当前余额 + + + <b>Recent transactions</b> + <b>最近交易记录</b> + Total number of transactions in wallet @@ -812,16 +796,9 @@ Address: %4 SendCoinsDialog - - - - - - - - - Send Coins - 发送货币 + + and + @@ -829,24 +806,31 @@ Address: %4 一次发送给多个接收者 - - &Add recipient... - &添加接收者... + + Remove all transaction fields + 移除所有交易项 - - Clear all - 清除全部 + + + + + + + + + Send Coins + 发送货币 - - Remove all transaction fields - 移除所有交易项 + + &Add recipient... + &添加接收者... Balance: - 余额 + 余额: @@ -864,72 +848,97 @@ Address: %4 &发送 - + + Clear all + 清除全部 + + + <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 recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. 接收者地址不合法,请检查。 - + The amount to pay must be larger than 0. 支付金额必须大于0. - - Amount exceeds your balance - 余额不足。 + + The amount exceeds your balance. + 金额超出您的账上余额。 - - Total exceeds your balance when the %1 transaction fee is included - 计入 %1 的交易费后,您的余额不足以支付总价。 + + The total exceeds your balance when the %1 transaction fee is included. + 计入 %1 交易费后的金额超出您的账上余额。 - - Duplicate address found, can only send to each address once in one 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. - 错误:交易被拒绝。这种情况通常发生在您钱包中的一些货币已经被消费之后,比如您使用了一个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. + 错误: 交易被拒绝. 如果您使用的是备份钱包,可能存在两个钱包不同步的情况,另一个钱包中的比特币已经被使用,但本地的这个钱包尚没有记录。 SendCoinsEntry - - Form - 表单 + + &Label: + &标签: + + + + Choose address from address book + 从地址簿选择地址 + + + + Paste address from clipboard + 从剪贴板粘贴地址 + + + + Alt+P + Alt+P + + + + Remove this recipient + 移除此接收者 A&mount: - 金额 + 金额 + + + + Form + 表单 @@ -942,41 +951,16 @@ Address: %4 Enter a label for this address to add it to your address book 为这个地址输入一个标签,以便将它添加到您的地址簿 - - - &Label: - &标签: - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) 付款地址 (例如: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - Choose address from address book - 从地址薄选择地址 - Alt+A Alt+A - - - Paste address from clipboard - 从剪贴板粘贴地址 - - - - Alt+P - Alt+P - - - - Remove this recipient - 移除此接收者 - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -986,71 +970,71 @@ Address: %4 TransactionDesc - - Open for %1 blocks - 开启 %1 个数据块 + + %1 confirmations + %1 确认项 - - Open until %1 - 至 %1 个数据块时开启 + + , has not been successfully broadcast yet + , 未被成功广播 - - %1/offline? - %1/离线? + + , broadcast through %1 node + ,同过 %1 节点广播 - - %1/unconfirmed - %1/未确认 + + , broadcast through %1 nodes + ,同过 %1 节点组广播 - - %1 confirmations - %1 确认项 + + + <b>From:</b> + <b>从:</b> - - <b>Status:</b> - <b>状态:</b> + + unknown + 未知 - - , has not been successfully broadcast yet - , 未被成功广播 + + Open until %1 + 至 %1 个数据块时开启 - - , broadcast through %1 node - ,同过 %1 节点广播 + + Open for %1 blocks + 开启 %1 个数据块 - - , broadcast through %1 nodes - ,同过 %1 节点组广播 + + %1/offline? + %1/离线? + + + + %1/unconfirmed + %1/未确认 + + + + <b>Status:</b> + <b>状态:</b> <b>Date:</b> - <b>日期:</b> + <b>日期:</b> <b>Source:</b> Generated<br> <b>来源:</b> 生成<br> - - - - <b>From:</b> - <b>从:</b> - - - - unknown - 未知 - @@ -1124,12 +1108,12 @@ Address: %4 Transaction details - 交易细节 + 交易明细 This pane shows a detailed description of the transaction - 当前面板显示了交易的详细描述 + 当前面板显示了交易的详细信息 @@ -1155,107 +1139,177 @@ Address: %4 数量 - + Open for %n block(s) 开启 %n 个数据块 - + Open until %1 至 %1 个数据块时开启 - + Offline (%1 confirmations) 离线 (%1 个确认项) - + Unconfirmed (%1 of %2 confirmations) 未确认 (%1 / %2 条确认信息) - + Confirmed (%1 confirmations) 已确认 (%1 条确认信息) - - - Mined balance will be available in %n more blocks - - 挖矿所得将在 %n 个数据块之后可用 - - - + 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. - 从余额添加或移除的金额 + 从余额添加或移除的金额。 + + + + Mined balance will be available in %n more blocks + + 挖矿所得将在 %n 个数据块之后可用 + TransactionView + + + Edit label + 编辑标签 + + + + 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。 + + + + Show details... + 显示细节... + + + + Range: + 范围: + @@ -1338,100 +1392,95 @@ Address: %4 复制标签 - - Edit label - 编辑标签 - - - - Show details... - 显示细节... + + to + + + + WalletModel - - Export Transaction Data - 导出交易数据 + + Sending... + 发送中... + + + bitcoin-core - - Comma separated file (*.csv) - 逗号分隔文件(*.csv) + + Bitcoin version + 比特币版本 - - Confirmed - 已确认 + + Usage: + 使用: - - Date - 日期 + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + 无法给数据目录 %s 加锁。比特币进程可能已在运行。 - - Type - 类别 + + Loading addresses... + 正在加载地址... - - Label - 标签 + + Loading block index... + 加载区块索引... - - Address - 地址 + + Loading wallet... + 正在加载钱包... - - Amount - 金额 + + Rescanning... + 正在重新扫描... - - ID - ID + + Done loading + 加载完成 - - Error exporting - 导出错误 + + Invalid -proxy address + 代理地址不合法 - - Could not write to file %1. - 无法写入文件 %1。 + + Invalid amount for -paytxfee=<amount> + 不合适的交易费 -paytxfee=<amount> - - Range: - 范围: + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + 警告: -paytxfee 交易费设置过高. 每进行一笔交易您都将支付该数量的交易费. - - to - + + Error: CreateThread(StartNode) failed + 错误:线程创建(StartNode)失败 - - - WalletModel - - Sending... - 发送中... + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + 无法绑定端口 %d 到这台计算机。比特币进程可能已在运行。 - - - bitcoin-core - - Bitcoin version - 比特币版本 + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + 警告:请确定您当前计算机的日期和时间是正确的。比特币将无法在错误的时间下正常工作。 - - Usage: - 使用: + + beta + 测试 @@ -1500,22 +1549,19 @@ Address: %4 Specify data directory - 指定数据目录 - + 指定数据目录 Specify connection timeout (in milliseconds) - 指定连接超时时间 (微秒) - + 指定连接超时时间 (微秒) Connect through socks4 proxy - 通过 socks4 代理连接 - + 通过 socks4 代理连接 @@ -1526,53 +1572,128 @@ Address: %4 + Listen for connections on <port> (default: 8333 or testnet: 18333) + + 监听端口连接 <port> (缺省: 8333 or testnet: 18333) + + + + Maintain at most <n> connections to peers (default: 125) + + 最大连接数 <n> (缺省: 125) + + + Add a node to connect to 连接到指定节点 - + Connect only to the specified node - 只连接到指定节点 - + 只连接到指定节点 - + + Don't find peers using internet relay chat + + Don't 通过IRC聊天室查找网络上的比特币节点 + + + Don't accept connections from outside - 禁止接收外部连接 - + 禁止接收外部连接 + + + + Don't bootstrap list of peers using DNS + + 不要用DNS启动 + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + + + + Don't attempt to use UPnP to map the listening port 禁止使用 UPnP 映射监听端口 - + + Output extra debugging information + + 输出调试信息 + + + + Prepend debug output with timestamp + + 为调试输出信息添加时间戳 + + + + Send trace/debug info to console instead of debug.log file + + 跟踪/调试信息输出到控制台,不输出到debug.log文件 + + + + Send trace/debug info to debugger + + 跟踪/调试信息输出到 调试器debugger + + + + Warning: Disk space is low + 警告:磁盘空间不足 + + + Attempt to use UPnP to map the listening port 尝试使用 UPnP 映射监听端口 - + Fee per kB to add to transactions you send 每发送1kB交易所需的费用 - + Accept command line and JSON-RPC commands 接受命令行和 JSON-RPC 命令 - + Run in the background as a daemon and accept commands 在后台运行并接受命令 @@ -1580,63 +1701,63 @@ Address: %4 - + Use the test network 使用测试网络 - + Username for JSON-RPC connections JSON-RPC连接用户名 - + Password for JSON-RPC connections JSON-RPC连接密码 - + Listen for JSON-RPC connections on <port> (default: 8332) JSON-RPC连接监听<端口> (默认为 8332) - + 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) - + Set key pool size to <n> (default: 100) 设置密钥池大小为 <n> (缺省: 100) - + Rescan the block chain for missing wallet transactions 重新扫描数据链以查找遗漏的交易 - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1645,161 +1766,85 @@ SSL 选项: (SSL 安装教程具体见比特币维基百科) - + 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) - + This help message 该帮助信息 - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - 无法给数据目录 %s 加锁。比特币进程可能已在运行。 - - - - Loading addresses... - 正在加载地址... - - - + Error loading addr.dat 加载 addr.dat 错误 - - Loading block index... - 加载区块索引... - - - + Error loading blkindex.dat 加载 blkindex.dat 失败 - - Loading wallet... - 正在加载钱包... - - - + Error loading wallet.dat: Wallet corrupted 加载 wallet.dat 失败:钱包崩溃 - + Error loading wallet.dat: Wallet requires newer version of Bitcoin 加载 wallet.dat 失败:运行钱包需要一个更新版本的比特币软件 - - Error loading wallet.dat + + Wallet needed to be rewritten: restart Bitcoin to complete - 加载 wallet.dat 失败 - - - - - Rescanning... - 正在重新扫描... + 钱包文件需要重写:请退出并重新启动Bitcoin客户端 - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + Error loading wallet.dat - - - - - Done loading - 加载完成 - - - - Invalid -proxy address - 代理地址不合法 - - - - Invalid amount for -paytxfee=<amount> - 不合适的交易费 -paytxfee=<amount> - - - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - 警告: -paytxfee 交易费设置过高. 每进行一笔交易您都将支付该数量的交易费. - - - - Error: CreateThread(StartNode) failed - 错误:线程创建(StartNode)失败 - - - - Warning: Disk space is low - 警告:磁盘空间不足 - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - 无法绑定端口 %d 到这台计算机。比特币进程可能已在运行。 - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - 警告:请确定您当前计算机的日期和时间是正确的。比特币将无法在错误的时间下正常工作。 - - - - beta - 测试 + 加载 wallet.dat 失败 + main - + Bitcoin-Qt 比特币-Qt diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index 980a24d8fb..8f6c376394 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -67,7 +67,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - 複製到剪貼簿 + 複製到剪貼簿 @@ -80,22 +80,22 @@ This product includes software developed by the OpenSSL Project for use in the O 刪除 - + Export Address Book Data 匯出位址簿資料 - + Comma separated file (*.csv) 逗號區隔資料檔 (*.csv) - + Error exporting 資料匯出有誤 - + Could not write to file %1. 無法寫入檔案 %1. @@ -121,35 +121,34 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - - Dialog - 對話視窗 - - - - - TextLabel - 文字標籤 - - - + Enter passphrase 輸入密碼 - + New passphrase 新的密碼 - + Repeat new passphrase 重複新密碼 + + + Dialog + 對話視窗 + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - 輸入錢包的新密碼.<br/>請用<b>10個以上的字元</b>, 或是<b>8個以上的字詞</b>. + 輸入錢包的新密碼.<br/>請用<b>10個以上的字元</b>, 或是<b>8個以上的單字</b>. + + + + TextLabel + 文字標籤 @@ -186,18 +185,6 @@ 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 BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - 警告: 如果將錢包加密後忘記密碼, 你會<b>失去其中所有的位元幣</b>! -你確定要將錢包加密嗎? - @@ -205,10 +192,9 @@ Are you sure you wish to encrypt your wallet? 錢包已加密 - - - Warning: The Caps Lock key is on. - 警告: 鍵盤輸入鎖定為大寫字母中. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 位元幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的位元幣. @@ -223,11 +209,6 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. 錢包加密因程式內部有誤而失敗. 你的錢包還是沒有加密. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 位元幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的位元幣. - @@ -251,277 +232,290 @@ Are you sure you wish to encrypt your wallet? Wallet decryption failed 錢包解密失敗 + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + 警告: 如果將錢包加密後忘記密碼, 你會<b>失去其中所有的位元幣</b>! +你確定要將錢包加密嗎? + - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. 錢包密碼變更成功. + + + + Warning: The Caps Lock key is on. + 警告: 鍵盤輸入鎖定為大寫字母中. + + + + Confirm wallet encryption + 錢包加密確認 + BitcoinGUI - + Bitcoin Wallet 位元幣錢包 - - + + Synchronizing with network... 網路同步中... - + Block chain synchronization in progress 正在進行區塊鎖鏈的同步中 - + &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 付錢 - + Send coins to a bitcoin address 付錢至某個位元幣位址 - + E&xit 結束 - - Quit application - 結束應用程式 - - - + &About %1 關於%1 - - Show information about Bitcoin - 顯示位元幣相關資訊 - - - + &Options... 選項... - - Modify configuration options for bitcoin - 修改位元幣的設定選項 - - - - Open &Bitcoin - 開啟位元幣 - - - + Show the Bitcoin window 顯示位元幣主視窗 - - &Export... - 匯出... - - - + Export the current view to a file 將目前版面匯出至檔案 - - &Encrypt Wallet - 錢包加密 - - - + Encrypt or decrypt wallet 將錢包加解密 - + &Change Passphrase 變更密碼 - + Change the passphrase used for wallet encryption 變更錢包加密用的密碼 - + + Sending... + 付出中... + + + About &Qt 關於 &Qt - + Show information about Qt 顯示有關於 Qt 的資訊 - + &File 檔案 - + &Settings 設定 - + &Help 求助 - + + Quit application + 結束應用程式 + + + Tabs toolbar 分頁工具列 - + + Show information about Bitcoin + 顯示位元幣相關資訊 + + + Actions toolbar 動作工具列 - + [testnet] [testnet] - + + Modify configuration options for bitcoin + 修改位元幣的設定選項 + + + + Open &Bitcoin + 開啟位元幣 + + + bitcoin-qt - bitcoin-qt + - + %n active connection(s) to Bitcoin network 與位元幣網路有 %n 個連線在使用中 - - Downloaded %1 of %2 blocks of transaction history. - 已下載了 %1/%2 個交易紀錄的區塊. + + &Export... + 匯出... + + + + &Encrypt Wallet + 錢包加密 - + 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 的費用來傳送. 這筆費用會付給處理該筆交易的節點, 並幫助維持整個網路. 你願意支付這項費用嗎? - - Sending... - 付出中... - - - + Sent transaction 付款交易 - + Incoming transaction 收款交易 - + Date: %1 Amount: %2 Type: %3 @@ -533,42 +527,47 @@ Address: %4 位址: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> 錢包<b>已加密</b>並且正<b>解鎖中</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> 錢包<b>已加密</b>並且正<b>上鎖中</b> - - A fatal error occured. Bitcoin can no longer continue safely and will quit. - + + Downloaded %1 of %2 blocks of transaction history. + 已下載了 %1/%2 個交易紀錄的區塊. + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + 發生了致命的錯誤. 位元幣程式無法再繼續安全執行, 只好結束. DisplayOptionsPage - + &Unit to show amounts in: 金額顯示單位: - + Choose the default subdivision unit to show in the interface, and when sending coins 選擇操作界面與付錢時預設顯示的細分單位 - + &Display addresses in transaction list &在交易列表中顯示位址 - + Whether to show Bitcoin addresses in the transaction list - + 是否要在交易列表中顯示位元幣位址 @@ -623,11 +622,6 @@ Address: %4 The entered address "%1" is already in the address book. 輸入的位址"%1"已存在於位址簿中. - - - The entered address "%1" is not a valid bitcoin address. - 輸入的位址"%1"並非有效的位元幣位址 - Could not unlock wallet. @@ -638,6 +632,11 @@ Address: %4 New key generation failed. 新密鑰產生失敗. + + + The entered address "%1" is not a valid bitcoin address. + 輸入的位址"%1"並非有效的位元幣位址 + MainOptionsPage @@ -688,7 +687,7 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) 透過 SOCKS4 代理伺服器連線至位元幣網路 (比如說透過 Tor) @@ -713,22 +712,22 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - 非必要的交易手續費, 以 kB 為計費單位, 且有助於縮短你的交易處理時間. 大部份交易的資料大小是 1 kB. 建議設定為 0.01 元. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + 非必要的交易手續費, 以 kB 為計費單位, 且有助於縮短你的交易處理時間. 大部份交易的資料大小是 1 kB. 建議設定為 0.01 元. Pay transaction &fee - 付交易手續費 - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - 非必要的交易手續費, 以 kB 為計費單位, 且有助於縮短你的交易處理時間. 大部份交易的資料大小是 1 kB. 建議設定為 0.01 元. + 付交易手續費 OptionsDialog + + + Options + 選項 + Main @@ -739,11 +738,6 @@ Address: %4 Display 顯示 - - - Options - 選項 - OverviewPage @@ -757,40 +751,25 @@ Address: %4 Balance: 餘額: - - - 123.456 BTC - 123.456 BTC - Number of transactions: 交易次數: - - - 0 - 0 - Unconfirmed: 未確認額: - - - 0 BTC - 0 BTC - Wallet 錢包 - - <b>Recent transactions</b> - <b>最近交易</b> + + 0 + 0 @@ -802,6 +781,11 @@ Address: %4 Total of transactions that have yet to be confirmed, and do not yet count toward the current balance 尚未確認之交易的總額, 不包含在目前餘額中 + + + <b>Recent transactions</b> + <b>最近交易</b> + Total number of transactions in wallet @@ -810,15 +794,20 @@ Address: %4 SendCoinsDialog + + + and + + - - - - - - - + + + + + + + Send Coins 付錢 @@ -827,21 +816,16 @@ Address: %4 Send to multiple recipients at once 一次付給多個人 - - - &Add recipient... - 加收款人... - - - - Clear all - 全部清掉 - Remove all transaction fields 移除所有交易欄位 + + + &Add recipient... + 加收款人... + Balance: @@ -863,58 +847,58 @@ Address: %4 付出 - + + Clear all + 全部清掉 + + + <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 recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. 無效的收款位址, 請再檢查看看. - + The amount to pay must be larger than 0. 付款金額必須大於 0. - - Amount exceeds your balance - 金額超過了你的餘額 + + The amount exceeds your balance. + 金額超過了餘額 - - Total exceeds your balance when the %1 transaction fee is included - 加上交易手續費 %1 後的總金額超過了你的餘額 + + The total exceeds your balance when the %1 transaction fee is included. + 包含 %1 的交易手續費後, 總金額超過了你的餘額 - - Duplicate address found, can only send to each address once in one 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. 錯誤: 交易被拒絕. 有時候會發生這種錯誤, 是因為你錢包中的一些錢已經被花掉了. 比如說你複製了錢包檔 wallet.dat, 然後用複製的錢包花掉了錢, 你現在所用的原來的錢包中卻沒有該筆交易紀錄. @@ -925,42 +909,21 @@ Address: %4 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - 付款的目標位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose address from address book 從位址簿中選一個位址 - - - Alt+A - Alt+A - Paste address from clipboard @@ -969,7 +932,7 @@ Address: %4 Alt+P - Alt+P + Alt+P @@ -977,47 +940,58 @@ Address: %4 去掉這個收款人 - - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - 輸入位元幣位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + A&mount: + 金額: - - - TransactionDesc - - Open for %1 blocks - 在 %1 個區塊內未定 + + + Enter a label for this address to add it to your address book + 給這個位址輸入一個標記, 並加到位址簿中 - - Open until %1 - 在 %1 前未定 + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + 付款的目標位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - %1/offline? - %1/離線中? + + Alt+A + Alt+A - - %1/unconfirmed - %1/未確認 + + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + 輸入位元幣位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + TransactionDesc %1 confirmations 經確認 %1 次 + + + , has not been successfully broadcast yet + , 尚未成功公告出去 + <b>Status:</b> <b>狀態:</b> - - , has not been successfully broadcast yet - , 尚未成功公告出去 + + Open for %1 blocks + 在 %1 個區塊內未定 + + + + %1/offline? + %1/離線中? @@ -1050,6 +1024,16 @@ Address: %4 unknown 未知 + + + Open until %1 + 在 %1 前未定 + + + + %1/unconfirmed + %1/未確認 + @@ -1154,107 +1138,182 @@ Address: %4 金額 - + Open for %n block(s) 在 %n 個區塊內未定 - + Open until %1 在 %1 前未定 - + Offline (%1 confirmations) 離線中 (經確認 %1 次) - + Unconfirmed (%1 of %2 confirmations) 未確認 (經確認 %1 次, 應確認 %2 次) - + Confirmed (%1 confirmations) 已確認 (經確認 %1 次) - - - Mined balance will be available in %n more blocks - - 生產金額將在 %n 個區塊產出後可用 - - - + 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. 減去或加入至餘額的金額 + + + Mined balance will be available in %n more blocks + + 生產金額將在 %n 個區塊產出後可用 + + TransactionView + + + Edit label + 編輯標記 + + + + 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 + + + + + Show details... + 顯示明細... + @@ -1271,16 +1330,6 @@ Address: %4 This week 這週 - - - This month - 這個月 - - - - Last month - 上個月 - This year @@ -1337,100 +1386,106 @@ Address: %4 複製標記 - - Edit label - 編輯標記 + + This month + 這個月 - - Show details... - 顯示明細... + + Last month + 上個月 + + + WalletModel - - Export Transaction Data - 匯出交易資料 + + Sending... + 付出中... + + + bitcoin-core - - Comma separated file (*.csv) - 逗號分隔資料檔 (*.csv) + + Bitcoin version + 位元幣版本 - - Confirmed - 已確認 + + Usage: + 用法: - - Date - 日期 + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + 無法鎖定資料目錄 %s. 也許位元幣已經在執行了. - - Type - 種類 + + Loading addresses... + 載入位址中... - - Label - 標記 + + Loading block index... + 載入區塊索引中... - - Address - 位址 + + Loading wallet... + 載入錢包中... - - Amount - 金額 + + Wallet needed to be rewritten: restart Bitcoin to complete + + 錢包需要重寫: 請重啟位元幣來完成 - - ID - 識別碼 + + Rescanning... + 重新掃描中... - - Error exporting - 匯出錯誤 + + Done loading + 載入完成 - - Could not write to file %1. - 無法寫入至 %1 檔案. + + Invalid -proxy address + 無效的 -proxy 位址 - - Range: - 範圍: + + Invalid amount for -paytxfee=<amount> + -paytxfee=<金額> 中的金額無效 - - to - + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + 警告: -paytxfee 設定得很高. 這是當你交易付款時所要支付的手續費. - - - WalletModel - - Sending... - 付出中... + + Error: CreateThread(StartNode) failed + 錯誤: CreateThread(StartNode) 失敗 - - - bitcoin-core - - Bitcoin version - 位元幣版本 + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + 無法與這台電腦上的通訊埠 %d 連結. 也許 Bitcoin 已經在執行了. - - Usage: - 用法: + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + 警告: 請檢查電腦時間日期是否正確. 位元幣無法在時鐘不準的情況下正常運作. + + + + beta + 公測版 @@ -1499,22 +1554,19 @@ Address: %4 Specify data directory - 指定資料目錄 - + 指定資料目錄 Specify connection timeout (in milliseconds) - 指定連線逾時時間 (毫秒) - + 指定連線逾時時間 (毫秒) Connect through socks4 proxy - 透過 socks4 代理伺服器連線 - + 透過 socks4 代理伺服器連線 @@ -1525,112 +1577,186 @@ Address: %4 - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - 新增連線節點 - + 在通訊埠 <port> 聽候連線 (預設: 8333, 或若為測試網路: 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) - 只連線至指定節點 - + 維持與節點連線數的上限為 <n> 個 (預設: 125) + Add a node to connect to + + 新增連線節點 + + + + Connect only to the specified node + + 只連線至指定節點 + + + + Don't find peers using internet relay chat + + Don't 是否使用網際網路中繼聊天(IRC)來找節點 + + + Don't accept connections from outside - 不接受外來連線 - + 不接受外來連線 + + + + Don't bootstrap list of peers using DNS + + 初始化節點列表時不使用 DNS + 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: 10000) + + 每個連線的接收緩衝區大小上限為 <n>*1000 個位元組 (預設: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + 每個連線的傳送緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) + + + Don't attempt to use UPnP to map the listening port 不嘗試用 UPnP 來設定服務連接埠的對應 - + + Warning: Disk space is low + 警告: 磁碟空間很少 + + + Attempt to use UPnP to map the listening port 嘗試用 UPnP 來設定服務連接埠的對應 - + Fee per kB to add to transactions you send 交易付款時每 kB 的交易手續費 - + 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 + + 輸出額外的除錯資訊 + + + + Prepend debug output with timestamp + + 在除錯輸出內容前附加時間 + + + + 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: 8332) 在通訊埠 <port> 聽候 JSON-RPC 連線 (預設: 8332) - + 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) - + Set key pool size to <n> (default: 100) 設定密鑰池大小為 <n> (預設: 100) - + Rescan the block chain for missing wallet transactions 重新掃描區塊鎖鏈, 以尋找錢包所遺漏的交易. - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1639,162 +1765,80 @@ SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) - + 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 此協助訊息 - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - 無法鎖定資料目錄 %s. 也許位元幣已經在執行了. - - - - Loading addresses... - 載入位址中... - - - + Error loading addr.dat 載入 addr.dat 錯誤 - - Loading block index... - 載入區塊索引中... - - - + Error loading blkindex.dat 載入 blkindex.dat 失敗 - - Loading wallet... - 載入錢包中... - - - + Error loading wallet.dat: Wallet corrupted 載入 wallet.dat 失敗: 錢包壞掉了 - + Error loading wallet.dat: Wallet requires newer version of Bitcoin 載入 wallet.dat 錯誤: 此錢包需要新版的 Bitcoin - + Error loading wallet.dat 載入 wallet.dat 錯誤 - - - Rescanning... - 重新掃描中... - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - - Done loading - 載入完成 - - - - Invalid -proxy address - 無效的 -proxy 位址 - - - - Invalid amount for -paytxfee=<amount> - -paytxfee=<金額> 中的金額無效 - - - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - 警告: -paytxfee 設定得很高. 這是當你交易付款時所要支付的手續費. - - - - Error: CreateThread(StartNode) failed - 錯誤: CreateThread(StartNode) 失敗 - - - - Warning: Disk space is low - 警告: 磁碟空間很少 - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - 無法與這台電腦上的通訊埠 %d 連結. 也許 Bitcoin 已經在執行了. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - 警告: 請檢查電腦時間日期是否正確. 位元幣無法在時鐘不準的情況下正常運作. - - - - beta - 公測版 - main - + Bitcoin-Qt 位元幣Qt版 -- cgit v1.2.3 From 4c93f17e9ec7b9f4fda22ade34c5b9958948473b Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 28 Aug 2012 07:30:52 +0000 Subject: Update supported translations --- src/qt/bitcoinstrings.cpp | 29 +- src/qt/locale/bitcoin_ca_ES.ts | 559 +++++++------- src/qt/locale/bitcoin_cs.ts | 715 +++++++++-------- src/qt/locale/bitcoin_da.ts | 1183 ++++++++++++++-------------- src/qt/locale/bitcoin_de.ts | 1459 ++++++++++++++++++----------------- src/qt/locale/bitcoin_en.ts | 567 +++++++------- src/qt/locale/bitcoin_es.ts | 1660 ++++++++++++++++++++-------------------- src/qt/locale/bitcoin_es_CL.ts | 1424 +++++++++++++++++----------------- src/qt/locale/bitcoin_et.ts | 491 ++++++------ src/qt/locale/bitcoin_eu_ES.ts | 510 ++++++------ src/qt/locale/bitcoin_fa.ts | 766 +++++++++--------- src/qt/locale/bitcoin_fa_IR.ts | 1318 ++++++++++++++++--------------- src/qt/locale/bitcoin_fi.ts | 711 +++++++++-------- src/qt/locale/bitcoin_fr_CA.ts | 492 ++++++------ src/qt/locale/bitcoin_fr_FR.ts | 531 +++++++------ src/qt/locale/bitcoin_he.ts | 755 +++++++++--------- src/qt/locale/bitcoin_hr.ts | 829 ++++++++++---------- src/qt/locale/bitcoin_hu.ts | 1192 +++++++++++++++-------------- src/qt/locale/bitcoin_it.ts | 1403 ++++++++++++++++----------------- src/qt/locale/bitcoin_lt.ts | 531 +++++++------ src/qt/locale/bitcoin_nb.ts | 1533 +++++++++++++++++++------------------ src/qt/locale/bitcoin_nl.ts | 1483 +++++++++++++++++------------------ src/qt/locale/bitcoin_pl.ts | 814 ++++++++++---------- src/qt/locale/bitcoin_pt_BR.ts | 1421 +++++++++++++++++----------------- src/qt/locale/bitcoin_ro_RO.ts | 565 +++++++------- src/qt/locale/bitcoin_ru.ts | 1633 ++++++++++++++++++++------------------- src/qt/locale/bitcoin_sk.ts | 713 +++++++++-------- src/qt/locale/bitcoin_sr.ts | 577 +++++++------- src/qt/locale/bitcoin_sv.ts | 975 ++++++++++++----------- src/qt/locale/bitcoin_tr.ts | 739 +++++++++--------- src/qt/locale/bitcoin_uk.ts | 1284 ++++++++++++++++--------------- src/qt/locale/bitcoin_zh_CN.ts | 1326 ++++++++++++++++---------------- src/qt/locale/bitcoin_zh_TW.ts | 1573 ++++++++++++++++++------------------- 33 files changed, 16527 insertions(+), 15234 deletions(-) diff --git a/src/qt/bitcoinstrings.cpp b/src/qt/bitcoinstrings.cpp index 73a63e92ba..e95b3e5b64 100644 --- a/src/qt/bitcoinstrings.cpp +++ b/src/qt/bitcoinstrings.cpp @@ -16,25 +16,29 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Specify pid file (default: bitcoind.pid)"), QT_TRANSLATE_NOOP("bitcoin-core", "Generate coins"), QT_TRANSLATE_NOOP("bitcoin-core", "Don't generate coins"), QT_TRANSLATE_NOOP("bitcoin-core", "Start minimized"), +QT_TRANSLATE_NOOP("bitcoin-core", "Show splash screen on startup (default: 1)"), QT_TRANSLATE_NOOP("bitcoin-core", "Specify data directory"), +QT_TRANSLATE_NOOP("bitcoin-core", "Set database cache size in megabytes (default: 25)"), QT_TRANSLATE_NOOP("bitcoin-core", "Specify connection timeout (in milliseconds)"), QT_TRANSLATE_NOOP("bitcoin-core", "Connect through socks4 proxy"), QT_TRANSLATE_NOOP("bitcoin-core", "Allow DNS lookups for addnode and connect"), QT_TRANSLATE_NOOP("bitcoin-core", "Listen for connections on (default: 8333 or testnet: 18333)"), QT_TRANSLATE_NOOP("bitcoin-core", "Maintain at most connections to peers (default: 125)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Add a node to connect to"), +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"), -QT_TRANSLATE_NOOP("bitcoin-core", "Don't accept connections from outside"), -QT_TRANSLATE_NOOP("bitcoin-core", "Don't bootstrap list of peers using DNS"), +QT_TRANSLATE_NOOP("bitcoin-core", "Find peers using internet relay chat (default: 0)"), +QT_TRANSLATE_NOOP("bitcoin-core", "Accept connections from outside (default: 1)"), +QT_TRANSLATE_NOOP("bitcoin-core", "Set language, for example \"de_DE\" (default: system locale)"), +QT_TRANSLATE_NOOP("bitcoin-core", "Find peers using DNS lookup (default: 1)"), 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: 10000)"), QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection send buffer, *1000 bytes (default: 10000)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Don't attempt to use UPnP to map the listening port"), -QT_TRANSLATE_NOOP("bitcoin-core", "Attempt to use UPnP to map the listening port"), -QT_TRANSLATE_NOOP("bitcoin-core", "Fee per kB to add to transactions you send"), +QT_TRANSLATE_NOOP("bitcoin-core", "Use Universal Plug and Play to map the listening port (default: 1)"), +QT_TRANSLATE_NOOP("bitcoin-core", "Use Universal Plug and Play to map the listening port (default: 0)"), +QT_TRANSLATE_NOOP("bitcoin-core", "Fee per KB to add to transactions you send"), 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"), @@ -47,8 +51,14 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Password for JSON-RPC connections"), QT_TRANSLATE_NOOP("bitcoin-core", "Listen for JSON-RPC connections on (default: 8332)"), 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", "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", "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", "" "\n" "SSL options: (see the Bitcoin Wiki for SSL setup instructions)"), @@ -71,6 +81,9 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet corrupted"), QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet requires newer version of Bitcoin"), QT_TRANSLATE_NOOP("bitcoin-core", "Wallet needed to be rewritten: restart Bitcoin 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", "Done loading"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -proxy address"), @@ -79,7 +92,7 @@ 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", "Error: CreateThread(StartNode) failed"), -QT_TRANSLATE_NOOP("bitcoin-core", "Warning: Disk space is low "), +QT_TRANSLATE_NOOP("bitcoin-core", "Warning: Disk space is low"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Unable to bind to port %d on this computer. Bitcoin is probably already " "running."), @@ -87,4 +100,4 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" "Warning: Please check that your computer's date and time are correct. If " "your clock is wrong Bitcoin will not work properly."), QT_TRANSLATE_NOOP("bitcoin-core", "beta"), -}; +}; \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ca_ES.ts b/src/qt/locale/bitcoin_ca_ES.ts index e85456fbe7..59ab5adf8d 100644 --- a/src/qt/locale/bitcoin_ca_ES.ts +++ b/src/qt/locale/bitcoin_ca_ES.ts @@ -106,25 +106,25 @@ This product includes software developed by the OpenSSL Project for use in the O Delete - + Borrar - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. @@ -149,32 +149,6 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - - - Dialog - - - - - - TextLabel - - - - - Enter passphrase - - - - - New passphrase - - - - - Repeat new passphrase - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. @@ -237,12 +211,6 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Warning: The Caps Lock key is on. - - @@ -281,295 +249,326 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on. + + + + + Dialog + + + + + Enter passphrase + + + + + New passphrase + + + + + Repeat new passphrase + + + + + TextLabel BitcoinGUI - + Bitcoin Wallet - - + + Synchronizing with network... Sincronització amb la xarxa ... - + Block chain synchronization in progress Sincronització de la cadena en el progrés - + &Overview - + Show general overview of wallet Mostra panorama general de la cartera - + &Transactions - + Browse transaction history Cerca a l'historial de transaccions - + &Address Book - + llibreta d'&adreces - + Edit the list of stored addresses and labels Edita la llista d'adreces emmagatzemada i etiquetes - + &Receive coins &Rebre monedes - + Show the list of addresses for receiving payments - + &Send coins - + Send coins to a bitcoin address - + Sign &message - + Prove you control an address - + E&xit - + Quit application Sortir de l'aplicació - + &About %1 - + &Sobre %1 - + Show information about Bitcoin Mostra informació sobre Bitcoin - + About &Qt - + Sobre &Qt - + Show information about Qt - + &Options... &Opcions ... - + Modify configuration options for bitcoin Modificar les opcions de configuració per bitcoin - + Open &Bitcoin - + Show the Bitcoin window - + &Export... - + Export the data in the current tab to a file - + &Encrypt Wallet - + &Xifrar la Cartera - + Encrypt or decrypt wallet - + &Backup Wallet - + Backup wallet to another location - + &Change Passphrase - + Change the passphrase used for wallet encryption - + &File - + &Settings - + &Help &Ajuda - + Tabs toolbar - + Actions toolbar Accions de la barra d'eines - + [testnet] - + bitcoin-qt - + %n active connection(s) to Bitcoin network - + Downloaded %1 of %2 blocks of transaction history. - + 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 Al dia - + Catching up... Posar-se 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? - + Sending... L'enviament de ... - + Sent transaction Transacció enviada - + Incoming transaction - + Date: %1 Amount: %2 Type: %3 @@ -578,60 +577,60 @@ Address: %4 - + 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. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: - + Choose the default subdivision unit to show in the interface, and when sending coins - + &Display addresses in transaction list - + Whether to show Bitcoin addresses in the transaction list @@ -646,7 +645,7 @@ Address: %4 &Label - + &Etiqueta @@ -656,7 +655,7 @@ Address: %4 &Address - + &Direcció @@ -753,7 +752,7 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) @@ -778,7 +777,7 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. @@ -786,11 +785,6 @@ Address: %4 Pay transaction &fee - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - MessagePage @@ -897,7 +891,7 @@ Address: %4 Options - + Opcions @@ -912,11 +906,6 @@ Address: %4 Balance: Balanç: - - - 123.456 BTC - - Number of transactions: @@ -925,18 +914,13 @@ Address: %4 0 - + Unconfirmed: Sense confirmar: - - - 0 BTC - - Wallet @@ -988,12 +972,12 @@ Address: %4 BTC - + Label: - + Etiqueta: @@ -1025,13 +1009,13 @@ Address: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins Enviar monedes @@ -1063,7 +1047,7 @@ Address: %4 123.456 BTC - + @@ -1076,58 +1060,58 @@ Address: %4 - + <b>%1</b> to %2 (%3) - + Confirm send coins - + Are you sure you want to send %1? - + and - + i - - The recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. - + The amount to pay must be larger than 0. La quantitat a pagar ha de ser major que 0. - - Amount exceeds your balance - Import superi el saldo de la seva compte + + The amount exceeds your balance. + Import superi el saldo de la seva compte. - - 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 in one 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. @@ -1157,7 +1141,7 @@ Address: %4 &Label: - + &Etiqueta: @@ -1353,18 +1337,18 @@ Address: %4 TransactionTableModel - Date - + Address + Direcció - Type + Date - Address - Direcció + Type + @@ -1372,101 +1356,101 @@ Address: %4 - + Open for %n block(s) - + Open until %1 - + Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) - + Mined balance will be available in %n more blocks - + 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. @@ -1570,67 +1554,67 @@ Address: %4 - + Export Transaction Data - + Comma separated file (*.csv) - + Confirmed - + Date - + Type - + Label Etiqueta - + Address Direcció - + Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to @@ -1702,287 +1686,342 @@ Address: %4 - Specify data directory + Show splash screen on startup (default: 1) - Specify connection timeout (in milliseconds) + Specify data directory - Connect through socks4 proxy + Set database cache size in megabytes (default: 25) - Allow DNS lookups for addnode and connect + Specify connection timeout (in milliseconds) - Listen for connections on <port> (default: 8333 or testnet: 18333) + Connect through socks4 proxy - Maintain at most <n> connections to peers (default: 125) + Allow DNS lookups for addnode and connect - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) - Don't accept connections from outside + Add a node to connect to and attempt to keep the connection open - Don't bootstrap list of peers using DNS + Connect only to the specified node - 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) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Threshold for disconnecting misbehaving peers (default: 100) + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - Don't attempt to use UPnP to map the listening port + + Use Universal Plug and Play to map the listening port (default: 1) - - Attempt to use UPnP to map the listening port + + Use Universal Plug and Play to map the listening port (default: 0) - - Fee per kB to add to transactions you send + + Fee per KB to add to transactions you send - + Accept command line and JSON-RPC commands - + Run in the background as a daemon and accept commands - + Use the test network - + Output extra debugging information - + Prepend debug output with timestamp - + Send trace/debug info to console instead of debug.log file - + Send trace/debug info to debugger - + Username for JSON-RPC connections - + Password for JSON-RPC connections - + Listen for JSON-RPC connections on <port> (default: 8332) - + Allow JSON-RPC connections from specified IP address - + Send commands to node running on <ip> (default: 127.0.0.1) - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin 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) - + This help message - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + Loading addresses... - + Error loading addr.dat - + + Loading block index... + + + + Error loading blkindex.dat - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete - + Error loading wallet.dat - - Loading block index... + + Cannot downgrade wallet - - Loading wallet... + + Cannot initialize keypool - + + Cannot write default address + + + + Rescanning... - + Done loading - + Invalid -proxy address - + Invalid amount for -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + Error: CreateThread(StartNode) failed - - Warning: Disk space is low + + Warning: Disk space is low - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + beta diff --git a/src/qt/locale/bitcoin_cs.ts b/src/qt/locale/bitcoin_cs.ts index 0e8a32f3db..e590b6c719 100644 --- a/src/qt/locale/bitcoin_cs.ts +++ b/src/qt/locale/bitcoin_cs.ts @@ -67,18 +67,13 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open &Copy to Clipboard - &Zkopíruj do schránky + &Zkopíruj do schránky Show &QR Code Zobraz &QR kód - - - Sign a message to prove you own this address - Podepiš zprávu, čímž prokážeš, že jsi vlastníkem této adresy - &Sign Message @@ -94,20 +89,25 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open &Delete S&maž + + + Sign a message to prove you own this address + Podepiš zprávu, čímž prokážeš, že jsi vlastníkem této adresy + Copy address - Kopíruj adresu + Kopíruj adresu Copy label - Kopíruj označení + Kopíruj její označení Edit - Uprav + Uprav @@ -115,22 +115,22 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Smaž - + Export Address Book Data Exportuj data adresáře - + Comma separated file (*.csv) CSV formát (*.csv) - + Error exporting Chyba při exportu - + Could not write to file %1. Nemohu zapisovat do souboru %1. @@ -158,29 +158,28 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Dialog - Dialog + Dialog - - - TextLabel - Textový popisek - - - + Enter passphrase Zadej platné heslo - + New passphrase Zadej nové heslo - + Repeat new passphrase Totéž heslo ještě jednou + + + TextLabel + Textový popisek + 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>. @@ -244,12 +243,6 @@ Jsi si jistý, že chceš peněženku zašifrovat? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin se teď ukončí, aby dokončil zašifrování. Pamatuj však, že pouhé zašifrování peněženky úplně nezabraňuje krádeži tvých bitcoinů malwarem, kterým se může počítač nakazit. - - - - Warning: The Caps Lock key is on. - Upozornění: Caps Lock je zapnutý. - @@ -288,215 +281,211 @@ Jsi si jistý, že chceš peněženku zašifrovat? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Heslo k peněžence bylo v pořádku změněno. + + + + Warning: The Caps Lock key is on. + Upozornění: Caps Lock je zapnutý! + BitcoinGUI - - Bitcoin Wallet - Bitcoinová peněženka - - - - + + Synchronizing with network... Synchronizuji se sítí... - - Block chain synchronization in progress - Provádí se synchronizace řetězce bloků - - - + &Overview &Přehled - + Show general overview of wallet Zobraz celkový přehled peněženky - + &Transactions &Transakce - + Browse transaction history Procházet historii transakcí - + &Address Book &Adresář - + Edit the list of stored addresses and labels Uprav seznam uložených adres a jejich označení - + &Receive coins Pří&jem mincí - + Show the list of addresses for receiving payments Zobraz seznam adres pro příjem plateb - + &Send coins P&oslání mincí - - Send coins to a bitcoin address - Pošli mince na Bitcoinovou adresu - - - - Sign &message - Po&depiš zprávu - - - - Prove you control an address - Prokaž vlastnictví adresy + + Bitcoin Wallet + Bitcoinová peněženka - + E&xit &Konec - + Quit application Ukončit aplikaci - - &About %1 - &O %1 - - - + Show information about Bitcoin Zobraz informace o Bitcoinu - + About &Qt O &Qt - + Show information about Qt Zobraz informace o Qt - + &Options... &Možnosti... - - Modify configuration options for bitcoin - Uprav nastavení Bitcoinu - - - - Open &Bitcoin - Otevři &Bitcoin - - - - Show the Bitcoin window - Zobraz okno Bitcoinu - - - + &Export... &Export... - + Export the data in the current tab to a file Exportovat data z tohoto panelu do souboru - - &Encrypt Wallet - Zaši&fruj peněženku + + Sign &message + Po&depiš zprávu - + Encrypt or decrypt wallet Zašifruj nebo dešifruj peněženku - - &Backup Wallet - &Zazálohovat 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 - + &File &Soubor - + &Settings &Nastavení - + &Help Ná&pověda - + Tabs toolbar Panel s listy - + Actions toolbar Panel akcí - + [testnet] [testnet] - - bitcoin-qt - bitcoin-qt + + &About %1 + &O %1 + + + + Block chain synchronization in progress + Provádí se synchronizace řetězce bloků + + + + Send coins to a bitcoin address + Pošli mince na Bitcoinovou adresu + + + + Prove you control an address + Prokaž vlastnictví adresy + + + + Modify configuration options for bitcoin + Uprav nastavení Bitcoinu + + + + Open &Bitcoin + Otevři &Bitcoin + + + + Show the Bitcoin window + Zobraz okno Bitcoinu + + + + &Encrypt Wallet + Zaši&fruj peněženku + + + + &Change Passphrase + Změň &heslo... - + %n active connection(s) to Bitcoin network %n aktivní spojení do Bitcoinové sítě @@ -505,17 +494,12 @@ Jsi si jistý, že chceš peněženku zašifrovat? - - Downloaded %1 of %2 blocks of transaction history. - Staženo %1 z %2 bloků transakční historie. - - - + Downloaded %1 blocks of transaction history. Staženo %1 bloků transakční historie. - + %n second(s) ago před vteřinou @@ -524,7 +508,7 @@ Jsi si jistý, že chceš peněženku zašifrovat? - + %n minute(s) ago před minutou @@ -533,7 +517,7 @@ Jsi si jistý, že chceš peněženku zašifrovat? - + %n hour(s) ago před hodinou @@ -542,7 +526,7 @@ Jsi si jistý, že chceš peněženku zašifrovat? - + %n day(s) ago včera @@ -551,42 +535,42 @@ Jsi si jistý, že chceš peněženku zašifrovat? - + Up to date - aktuální + Aktuální - + Catching up... Stahuji... - + Last received block was generated %1. Poslední stažený blok byl vygenerován %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? Tahle transakce přesahuje velikostní limit. I tak ji ale můžeš poslat, pokud za ni zaplatíš poplatek %1, který půjde uzlům, které tvou transakci zpracují, a navíc tak podpoříš síť. Chceš zaplatit poplatek? - - Sending... - Posílám... + + &Backup Wallet + &Zazálohovat peněženku - + Sent transaction Odeslané transakce - + Incoming transaction Příchozí transakce - + Date: %1 Amount: %2 Type: %3 @@ -599,62 +583,77 @@ Adresa: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Peněženka je <b>zašifrovaná</b> a momentálně <b>odemčená</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> - + Backup Wallet Záloha peněženky - + Wallet Data (*.dat) Data peněženky (*.dat) - + Backup Failed Zálohování selhalo - + There was an error trying to save the wallet data to the new location. Při ukládání peněženky na nové místo se přihodila nějaká chyba. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. - + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + Staženo %1 z %2 bloků transakční historie. + + + + Sending... + Posílám... + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Stala se fatální chyba. Bitcoin nemůže bezpečně pokračovat v činnosti, a proto skončí. DisplayOptionsPage - + &Unit to show amounts in: &Jednotka pro částky: - + Choose the default subdivision unit to show in the interface, and when sending coins Zvol výchozí podjednotku, která se bude zobrazovat v programu a při posílání mincí - + &Display addresses in transaction list &Ukazovat adresy ve výpisu transakcí - + Whether to show Bitcoin addresses in the transaction list - + Zda ukazovat bitcoinové adresy ve výpisu transakcí nebo ne @@ -774,7 +773,7 @@ Adresa: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Připojí se do Bitcoinové sítě přes SOCKS4 proxy (např. když se připojuje přes Tor) @@ -797,18 +796,13 @@ Adresa: %4 Port of the proxy (e.g. 1234) Port proxy (např. 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Dobrovolný transakční poplatek za každý započatý kB dopomáhá k rychlému zpracování tvých transakcí. Většina transakcí má do 1 kB. Doporučená výše poplatku je 0.01. - Pay transaction &fee Platit &transakční poplatek - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Dobrovolný transakční poplatek za každý započatý kB dopomáhá k rychlému zpracování tvých transakcí. Většina transakcí má do 1 kB. Doporučená výše poplatku je 0.01. @@ -828,7 +822,7 @@ Adresa: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Adresa, kterou se zpráva podepíše (např. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -873,7 +867,7 @@ Adresa: %4 Copy the current signature to the system clipboard - + Zkopíruj aktuálně vybraný podpis do systémové schránky @@ -934,9 +928,9 @@ Adresa: %4 Stav účtu: - - 123.456 BTC - 123.456 BTC + + Wallet + Peněženka @@ -953,21 +947,6 @@ Adresa: %4 Unconfirmed: Nepotvrzeno: - - - 0 BTC - 0 BTC - - - - Wallet - Peněženka - - - - <b>Recent transactions</b> - <b>Poslední transakce</b> - Your current balance @@ -983,6 +962,11 @@ Adresa: %4 Total number of transactions in wallet Celkový počet transakcí v peněžence + + + <b>Recent transactions</b> + <b>Poslední transakce</b> + QRCodeDialog @@ -1006,16 +990,16 @@ Adresa: %4 Amount: Částka: - - - BTC - BTC - Label: Označení: + + + BTC + BTC + Message: @@ -1029,7 +1013,7 @@ Adresa: %4 Error encoding URI into QR Code. - + Chyba při kódování URI do QR kódu. @@ -1046,13 +1030,13 @@ Adresa: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins Pošli mince @@ -1097,59 +1081,59 @@ Adresa: %4 &Pošli - + <b>%1</b> to %2 (%3) <b>%1</b> pro %2 (%3) - + Confirm send coins Potvrď odeslání mincí - + Are you sure you want to send %1? Jsi si jistý, že chceš poslat %1? - + and a - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance - Částka překračuje stav účtu + + The amount exceeds your balance. + Částka překračuje stav účtu. - - 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 + + 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 in one send operation - Zaznamenána duplikovaná adresa; každá adresa může být v odesílané platbě pouze jednou + + 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. - - Error: Transaction creation failed - Chyba: Vytvoření transakce selhalo + + Error: Transaction creation failed. + Chyba: Vytvoření transakce selhalo. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Chyba Transakce byla odmítnuta. Tohle může nastat, pokud nějaké mince z tvé peněženky už jednou byly utraceny, například pokud používáš kopii souboru wallet.dat a mince byly utraceny v druhé kopii, ale nebyly označeny jako utracené v této. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Chyba Transakce byla odmítnuta. Tohle může nastat, pokud nějaké mince z tvé peněženky už jednou byly utraceny, například pokud používáš kopii souboru wallet.dat a mince byly utraceny v druhé kopii, ale nebyly označeny jako utracené v této. @@ -1393,7 +1377,7 @@ Adresa: %4 Částka - + Open for %n block(s) Otevřeno pro 1 blok @@ -1402,27 +1386,27 @@ Adresa: %4 - + Open until %1 Otřevřeno dokud %1 - + Offline (%1 confirmations) Offline (%1 potvrzení) - + Unconfirmed (%1 of %2 confirmations) Nepotvrzeno (%1 z %2 potvrzení) - + Confirmed (%1 confirmations) Potvrzeno (%1 potvrzení) - + Mined balance will be available in %n more blocks Vytěžené mince budou použitelné po jednom bloku @@ -1431,67 +1415,67 @@ Adresa: %4 - + This block was not received by any other nodes and will probably not be accepted! Tento blok nedostal žádný jiný uzel a pravděpodobně nebude akceptován! - + Generated but not accepted Vygenerováno, ale neakceptováno - + Received with Přijato do - + Received from Přijato od - + Sent to Posláno na - + Payment to yourself Platba sama sobě - + Mined Vytěženo - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. Stav transakce. Najetím myši na toto políčko si zobrazíš počet potvrzení. - + Date and time that the transaction was received. Datum a čas přijetí transakce. - + Type of transaction. Druh transakce. - + Destination address of transaction. Cílová adresa transakce. - + Amount removed from or added to balance. Částka odečtená z nebo přičtená k účtu. @@ -1595,67 +1579,67 @@ Adresa: %4 Zobraz detaily.... - + Export Transaction Data Exportuj transakční 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 Chyba při exportu - + Could not write to file %1. Nemohu zapisovat do souboru %1. - + Range: Rozsah: - + to @@ -1727,288 +1711,343 @@ Adresa: %4 + Show splash screen on startup (default: 1) + Zobrazovat startovací obrazovku (výchozí: 1) + + + Specify data directory Adresář pro data - + Specify connection timeout (in milliseconds) Zadej časový limit spojení (v milisekundách) - + Connect through socks4 proxy Připojovat se přes socks4 proxy - + Allow DNS lookups for addnode and connect Povolit DNS dotazy pro addnode (přidání uzlu) a connect (připojení) - + Listen for connections on <port> (default: 8333 or testnet: 18333) Čekat na spojení na <portu> (výchozí: 8333 nebo testnet: 18333) - - Maintain at most <n> connections to peers (default: 125) - Povol nejvýše <n> připojení k uzlům (výchozí: 125) + + Accept connections from outside (default: 1) + Přijímat spojení zvenčí (výchozí: 1) - - Add a node to connect to - Přidat uzel, ke kterému se připojit + + Set language, for example "de_DE" (default: system locale) + Nastavit jazyk, například "de_DE" (výchozí: systémové nastavení) - - Connect only to the specified node - Připojovat se pouze k udanému uzlu + + Find peers using DNS lookup (default: 1) + Hledat uzly přes DNS (výchozí: 1) - - Don't accept connections from outside - Nepřijímat připojení zvenčí + + Use Universal Plug and Play to map the listening port (default: 1) + Použít UPnP k namapování naslouchacího portu (výchozí: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Použít UPnP k namapování naslouchacího portu (výchozí: 0) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Akceptovatelné šifry (výchozí: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Warning: Disk space is low + Upozornění: Na disku je málo místa + + + + Maintain at most <n> connections to peers (default: 125) + Povol nejvýše <n> připojení k uzlům (výchozí: 125) - Don't bootstrap list of peers using DNS - Nenačítat seznam uzlů z DNS + Connect only to the specified node + Připojovat se pouze k udanému uzlu - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Nedaří se mi získat zámek na datový adresář %s. Bitcoin pravděpodobně už jednou běží. + + + Threshold for disconnecting misbehaving peers (default: 100) Práh pro odpojování nesprávně se chovající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 nesprávně se chovající uzly znovu připojit (výchozí: 86400) - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) Maximální velikost přijímacího bufferu pro každé spojení, <n>*1000 bytů (výchozí: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maximální velikost odesílacího bufferu pro každé spojení, <n>*1000 bytů (výchozí: 10000) - - Don't attempt to use UPnP to map the listening port - Nesnažit se použít UPnP k namapování naslouchacího portu - - - - Attempt to use UPnP to map the listening port - Snažit se použít UPnP k namapování naslouchacího portu - - - - Fee per kB to add to transactions you send - Poplatek za kB, který se přidá ke každé odeslané transakci - - - + Accept command line and JSON-RPC commands Akceptovat příkazy z příkazové řádky a přes JSON-RPC - + + 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) + + + 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 Tisknout speciální ladící informace - + Prepend debug output with timestamp Připojit před ladící výstup časové razítko - + Send trace/debug info to console instead of debug.log file Posílat stopovací/ladící informace do konzole místo do souboru debug.log - + Send trace/debug info to debugger Posílat stopovací/ladící informace do debuggeru - + 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: 8332) Čekat na JSON-RPC spojení na <portu> (výchozí: 8332) - + 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) - + Set key pool size to <n> (default: 100) Nastavit zásobník klíčů na velikost <n> (výchozí: 100) - + Rescan the block chain for missing wallet transactions Přeskenovat řetězec bloků na chybějící transakce tvé pěněženky - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Možnosti SSL: (viz instrukce nastavení SSL v Bitcoin Wiki) - + Use OpenSSL (https) for JSON-RPC connections Použít OpenSSL (https) pro JSON-RPC spojení - + Server certificate file (default: server.cert) Soubor se serverovým certifikátem (výchozí: server.cert) - + Server private key (default: server.pem) Soubor se serverovým soukromým klíčem (výchozí: server.pem) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Akceptovatelné šifry (výchozí: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - + This help message Tato nápověda - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Nedaří se mi získat zámek na datový adresář %s. Bitcoin pravděpodobně už jednou běží. - - - + Loading addresses... Načítám adresy... - + + 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 + + + Error loading addr.dat Chyba při načítání addr.dat - + Error loading blkindex.dat Chyba při načítání blkindex.dat - + Error loading wallet.dat: Wallet corrupted Chyba při načítání wallet.dat: peněženka je poškozená - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Chyba při načítání wallet.dat: peněženka vyžaduje novější verzi Bitcoinu - + Wallet needed to be rewritten: restart Bitcoin to complete Soubor s peněženkou potřeboval přepsat: restartuj Bitcoin, aby se operace dokončila - + Error loading wallet.dat Chyba při načítání wallet.dat - + + Cannot downgrade wallet + Nemohu převést peněženku do staršího formátu + + + + Cannot initialize keypool + Nemohu inicializovat zásobník klíčů + + + + Cannot write default address + Nemohu napsat výchozí adresu + + + + Done loading + Načítání dokončeno + + + + Fee per KB to add to transactions you send + Poplatek za KB, který se přidá ke každé odeslané transakci + + + + Find peers using internet relay chat (default: 0) + Hledat uzly přes IRC (výchozí: 0) + + + + How many blocks to check at startup (default: 2500, 0 = all) + Kolik bloků při startu zkontrolovat (výchozí: 2500, 0 = všechny) + + + + How thorough the block verification is (0-6, default: 1) + Jak moc důkladná má verifikace bloků být (0-6, výchozí: 1) + + + Loading block index... Načítám index bloků... - + Loading wallet... Načítám peněženku... - + Rescanning... Přeskenovávám... - - Done loading - Načítání dokončeno + + Set database cache size in megabytes (default: 25) + Nastavit velikost databázové vyrovnávací paměti v megabajtech (výchozí: 25) - + + Upgrade wallet to latest format + Převést peněženku na nejnovější formát + + + Invalid -proxy address Neplatná -proxy adresa - + Invalid amount for -paytxfee=<amount> Neplatná částka pro -paytxfee=<částka> - + 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. - + Error: CreateThread(StartNode) failed Chyba: Selhalo CreateThread(StartNode) - - Warning: Disk space is low - Upozornění: Na disku je málo místa - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Nedaří se mi připojit na port %d na tomhle počítači. Bitcoin už pravděpodobně jednou běží. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Upozornění: Zkontroluj, že máš v počítači správně nastavený datum a čas. Pokud jsou nastaveny špatně, Bitcoin nebude fungovat správně. - + beta beta diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index 9b909d8b6b..9ff76e27c8 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -23,7 +23,13 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Copyright © 2009-2012 Bitcoin Developers + +Dette program er ekperimentielt. + +Det er gjort tilgængeligt under MIT/X11 softwarelicensen. Se den tilhørende fil "license.txt" 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 skrevet af Eric Young (eay@cryptsoft.com) og UPnP-software skrevet by Thomas Bernard. @@ -63,21 +69,11 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &Kopier til Udklipsholder - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Slet den valgte adresse fra listen. Kun adresser brugt til afsendelse kan slettes. - Show &QR Code - - - &Delete - &Slet - Sign a message to prove you own this address @@ -88,6 +84,16 @@ This product includes software developed by the OpenSSL Project for use in the O &Sign Message + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Slet den valgte adresse fra listen. Kun adresser brugt til afsendelse kan slettes. + + + + &Delete + &Slet + Copy address @@ -101,30 +107,30 @@ This product includes software developed by the OpenSSL Project for use in the O Edit - + Rediger Delete - + Slet - + Export Address Book Data Eksporter Adressekartoteketsdata - + Comma separated file (*.csv) Kommasepareret fil (*. csv) - + Error exporting Fejl under eksport - + Could not write to file %1. Kunne ikke skrive til filen %1. @@ -155,23 +161,29 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - - + TextLabel TekstEtiket - + Enter passphrase Indtast adgangskode - + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ADVARSEL: Hvis du krypterer din tegnebog og mister dit kodeord vil du <b>miste alle dine BITCOINS</b>! +Er du sikker på at du ønsker at kryptere din tegnebog? + + + New passphrase Ny adgangskode - + Repeat new passphrase Gentag ny adgangskode @@ -180,11 +192,21 @@ 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>. 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>. + + + Wallet unlock failed + Tegnebogsoplåsning mislykkedes + Encrypt wallet Krypter tegnebog + + + 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. + This operation needs your wallet passphrase to unlock the wallet. @@ -220,13 +242,6 @@ This product includes software developed by the OpenSSL Project for use in the O Confirm wallet encryption Bekræft tegnebogskryptering - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ADVARSEL: Hvis du krypterer din tegnebog og mister dit kodeord vil du <b>miste alle dine BITCOINS</b>! -Er du sikker på at du ønsker at kryptere din tegnebog? - @@ -234,10 +249,9 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Tegnebog krypteret - - - Warning: The Caps Lock key is on. - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. @@ -247,27 +261,12 @@ Er du sikker på at du ønsker at kryptere din tegnebog? 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. - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin will close now to finish the encryption process. Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. - The supplied passphrases do not match. De angivne kodeord stemmer ikke overens. - - - Wallet unlock failed - Tegnebogsoplåsning mislykkedes - @@ -282,215 +281,216 @@ Er du sikker på at du ønsker at kryptere din tegnebog? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Tegnebogskodeord blev ændret. + + + + Warning: The Caps Lock key is on. + + BitcoinGUI - + + &Change Passphrase + &Skift adgangskode + + + Bitcoin Wallet Bitcoin Tegnebog - - + + Synchronizing with network... Synkroniserer med netværk ... - + Block chain synchronization in progress Blokkæde synkronisering i gang - + &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 Rediger listen over gemte adresser og etiketter - + &Receive coins &Modtag coins - + Show the list of addresses for receiving payments Vis listen over adresser for at modtage betalinger - + &Send coins &Send coins - + Send coins to a bitcoin address Send coins til en bitcoinadresse - + Sign &message - + Prove you control an address - + E&xit &Luk - + Quit application Afslut program - + &About %1 &Om %1 - + Show information about Bitcoin Vis oplysninger om Bitcoin - + + About &Qt + Om &Qt + + + + Show information about Qt + Vis oplysninger om Qt + + + &Options... &Indstillinger ... - + Modify configuration options for bitcoin Rediger konfigurationsindstillinger af bitcoin - + Open &Bitcoin Åbn &Bitcoin - + Show the Bitcoin window Vis Bitcoinvinduet - + &Export... &Eksporter... - + + Export the data in the current tab to a file + + + + &Encrypt Wallet &Kryptér tegnebog - + Encrypt or decrypt wallet Kryptér eller dekryptér tegnebog - - &Change Passphrase - &Skift adgangskode - - - - Change the passphrase used for wallet encryption - Skift kodeord anvendt til tegnebogskryptering - - - - About &Qt - Om &Qt - - - - Show information about Qt - Vis oplysninger om Qt - - - - Export the data in the current tab to a file - - - - + &Backup Wallet &Backup tegnebog - + Backup wallet to another location - + + Change the passphrase used for wallet encryption + Skift kodeord anvendt til tegnebogskryptering + + + &File &Fil - + &Settings &Indstillinger - + &Help &Hjælp - + Tabs toolbar Faneværktøjslinje - + Actions toolbar Handlingsværktøjslinje - + [testnet] [testnet] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network %n aktiv(e) forbindelse(r) til Bitcoinnetværket @@ -498,41 +498,53 @@ Er du sikker på at du ønsker at kryptere din tegnebog? - - Downloaded %1 of %2 blocks of transaction history. - Downloadet %1 af %2 blokke af transaktionshistorie. + + Backup Wallet + Backup tegnebog - - Downloaded %1 blocks of transaction history. - Downloadet %1 blokke af transaktionshistorie. + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to the new location. + + + + + bitcoin-qt + bitcoin-qt - - %n second(s) ago + + %n hour(s) ago - %n sekund(er) siden - %n sekund(er) siden + %n time(r) siden + %n time(r) siden - + %n minute(s) ago %n minut(ter) siden %n minut(ter) siden - - - %n hour(s) ago - - %n time(r) siden - %n time(r) siden - + + + Downloaded %1 of %2 blocks of transaction history. + Downloadet %1 af %2 blokke af transaktionshistorie. - + %n day(s) ago %n dag(e) siden @@ -540,42 +552,42 @@ Er du sikker på at du ønsker at kryptere din tegnebog? - + 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 størrelsesbegrænsningen. Du kan stadig sende den for et gebyr på %1 som går til de noder der behandler din transaktion, og som hjælper med at støtte netværket. Ønsker du at betale gebyret? - + Sending... Sender... - + Sent transaction Afsendt transaktion - + Incoming transaction Indgående transaktion - + Date: %1 Amount: %2 Type: %3 @@ -588,60 +600,53 @@ Adresse: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Tegnebog er <b>krypteret</b> og i øjeblikket <b>ulåst</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> - - Backup Wallet - - - - - Wallet Data (*.dat) - - - - - Backup Failed - + + Downloaded %1 blocks of transaction history. + Downloadet %1 blokke af transaktionshistorie. - - - There was an error trying to save the wallet data to the new location. - + + + %n second(s) ago + + %n sekund(er) siden + %n sekund(er) siden + - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &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 når du sender coins - + &Display addresses in transaction list &Vis adresser i transaktionensliste - + Whether to show Bitcoin addresses in the transaction list @@ -684,9 +689,9 @@ Adresse: %4 Ny afsendelsesadresse - - Edit receiving address - Rediger modtagelsesadresse + + The entered address "%1" is already in the address book. + Den indtastede adresse "%1" er allerede i adressebogen. @@ -694,28 +699,33 @@ Adresse: %4 Rediger afsendelsesadresse - - The entered address "%1" is already in the address book. - Den indtastede adresse "%1" er allerede i adressebogen. + + Could not unlock wallet. + Kunne ikke låse tegnebog op. The entered address "%1" is not a valid bitcoin address. Den indtastede adresse "%1" er ikke en gyldig bitcoinadresse. - - - Could not unlock wallet. - Kunne ikke låse tegnebog op. - New key generation failed. Ny nøglegenerering mislykkedes. + + + Edit receiving address + Rediger modtagelsesadresse + MainOptionsPage + + + Show only a tray icon after minimizing the window + Vis kun et systembakkeikon efter minimering af vinduet + &Start Bitcoin on window system startup @@ -731,11 +741,6 @@ Adresse: %4 &Minimize to the tray instead of the taskbar &Minimer til systembakken i stedet for proceslinjen - - - Show only a tray icon after minimizing the window - Vis kun et systembakkeikon efter minimering af vinduet - Map port using &UPnP @@ -763,9 +768,19 @@ Adresse: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Opret forbindelse til Bitconnetværket via en SOCKS4 proxy (f.eks. ved tilslutning gennem Tor) + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1 kB. Gebyr på 0.01 anbefales. + + + + Pay transaction &fee + Betal transaktions&gebyr + Proxy &IP: @@ -786,21 +801,6 @@ Adresse: %4 Port of the proxy (e.g. 1234) Porten på proxyen (f.eks. 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - - - - Pay transaction &fee - Betal transaktions&gebyr - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - MessagePage @@ -824,21 +824,11 @@ Adresse: %4 Choose adress from address book Vælg adresse fra adressebog - - - 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 @@ -869,6 +859,16 @@ Adresse: %4 &Copy to Clipboard &Kopier til Udklipsholder + + + Alt+A + Alt+A + + + + Alt+P + Alt+P + @@ -899,16 +899,16 @@ Adresse: %4 Main Generelt - - - Display - Visning - Options Indstillinger + + + Display + Visning + OverviewPage @@ -922,11 +922,6 @@ Adresse: %4 Balance: Saldo: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -935,22 +930,17 @@ Adresse: %4 0 - 0 + Unconfirmed: Ubekræftede: - - - 0 BTC - 0 BTC - Wallet - + @@ -975,11 +965,6 @@ Adresse: %4 QRCodeDialog - - - Dialog - Dialog - QR Code @@ -998,12 +983,12 @@ Adresse: %4 BTC - + Label: - + Etiket: @@ -1015,6 +1000,11 @@ Adresse: %4 &Save As... + + + Dialog + Dialog + Error encoding URI into QR Code. @@ -1033,113 +1023,113 @@ Adresse: %4 SendCoinsDialog - - - - - - - - - - Send Coins - Send Coins - Send to multiple recipients at once Send til flere modtagere på én gang - - &Add recipient... - &Tilføj modtager... + + Confirm the send action + Bekræft afsendelsen - - Clear all - Ryd alle + + 123.456 BTC + 123.456 BTC - - Remove all transaction fields + + + + + + + + + Send Coins - - Balance: - Saldo: + + Remove all transaction fields + - - 123.456 BTC - 123.456 BTC + + &Send + &Afsend - - Confirm the send action - Bekræft afsendelsen + + &Add recipient... + &Tilføj modtager... - - &Send - &Afsend + + Balance: + Saldo: - + <b>%1</b> to %2 (%3) <b>%1</b> til %2 (%3) - + Confirm send coins Bekræft afsendelse af coins - + Are you sure you want to send %1? Er du sikker på at du vil sende %1? - + and og - - The recepient address is not valid, please recheck. + + 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. - - - - Amount exceeds your balance - Beløbet overstiger din saldo + + The amount exceeds your balance. + Beløbet overstiger din saldo. - - Total exceeds your balance when the %1 transaction fee is included - Totalen overstiger din saldo når %1 transaktionsgebyr er inkluderet + + 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 in one send operation + + 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: Oprettelse af transaktionen mislykkedes + + Error: Transaction creation failed. + Fejl: Oprettelse af transaktionen 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. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Fejl: Transaktionen blev afvist. Dette kan ske hvis nogle af dine coins i din tegnebog allerede var brugt, som hvis du brugte en kopi af wallet.dat og dine coins er blevet brugt i kopien, men ikke er markeret som brugt her. + + + Clear all + Ryd alle + + + + The amount to pay must be larger than 0. + Beløbet til betaling skal være større end 0. + SendCoinsEntry @@ -1169,11 +1159,6 @@ Adresse: %4 &Label: &Etiket: - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adresse som betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose address from address book @@ -1182,12 +1167,12 @@ Adresse: %4 Alt+A - Alt+A + Alt+A Paste address from clipboard - Indsæt adresse fra udklipsholderen + Indsæt adresse fra udklipsholderen @@ -1199,6 +1184,11 @@ Adresse: %4 Remove this recipient Fjern denne modtager + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adresse som betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1208,40 +1198,20 @@ Adresse: %4 TransactionDesc - - Open for %1 blocks - Åben for %1 blokke - - - - Open until %1 - Åben indtil %1 - - - - %1/offline? - %1/offline? - - - - %1/unconfirmed - %1/ubekræftet - - - - %1 confirmations - %1 bekræftelser - - - - <b>Status:</b> - <b>Status:</b> + + Message: + Besked: , has not been successfully broadcast yet , er ikke blevet transmitteret endnu + + + Open for %1 blocks + Åben for %1 blokke + , broadcast through %1 node @@ -1262,11 +1232,36 @@ Adresse: %4 <b>Source:</b> Generated<br> <b>Kilde:</b> Genereret<br> + + + %1/unconfirmed + %1/ubekræftet + + + + Open until %1 + Åben indtil %1 + + + + %1/offline? + + + + + %1 confirmations + %1 bekræftelser + + + + <b>Status:</b> + + <b>From:</b> - <b>Fra:</b> + <b>Fra:</b> @@ -1313,22 +1308,17 @@ Adresse: %4 <b>Debit:</b> - <b>Debet:</b> + <b>Debet:</b> <b>Transaction fee:</b> - <b>Transaktionsgebyr:</b> + <b>Transaktionsgebyr:</b> <b>Net amount:</b> - <b>Nettobeløb:</b> - - - - Message: - Besked: + <b>Nettobeløb:</b> @@ -1382,7 +1372,7 @@ Adresse: %4 Beløb - + Open for %n block(s) Åben for %n blok(ke) @@ -1390,27 +1380,27 @@ Adresse: %4 - + Open until %1 Åben indtil %1 - + Offline (%1 confirmations) Offline (%1 bekræftelser) - + Unconfirmed (%1 of %2 confirmations) Ubekræftet (%1 af %2 bekræftelser) - + Confirmed (%1 confirmations) Bekræftet (%1 bekræftelser) - + Mined balance will be available in %n more blocks Minerede balance vil være tilgængelig om %n blok(ke) @@ -1418,93 +1408,123 @@ Adresse: %4 - + This block was not received by any other nodes and will probably not be accepted! Denne blok blev ikke modtaget af nogen andre noder, og vil formentlig ikke blive accepteret! - + Generated but not accepted Genereret, men ikke accepteret - + Received with Modtaget med - + Received from - - - - - Sent to - Sendt til - - - - Payment to yourself - Betaling til dig selv - - - - Mined - Minerede + Modtaget fra - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. Transactionsstatus. Hold musen over dette felt for at vise antallet af bekræftelser. - + Date and time that the transaction was received. Dato og tid for at transaktionen blev modtaget. - + Type of transaction. Type af transaktion. - + Destination address of transaction. Destinationsadresse for transaktion. - + Amount removed from or added to balance. Beløb fjernet eller tilføjet balance. + + + Payment to yourself + Betaling til dig selv + + + + Mined + Minerede + + + + Sent to + Sendt til + TransactionView - - - All - Alle + + ID + ID - - Today - I dag + + Error exporting + Fejl under eksport - - This week - Denne uge + + Could not write to file %1. + Kunne ikke skrive til filen %1. - - This month - Denne måned + + Range: + Interval: + + + + to + til + + + + Show details... + Vis detaljer... + + + + + All + Alle + + + + Today + I dag + + + + This week + Denne uge + + + + This month + Denne måned @@ -1577,75 +1597,45 @@ Adresse: %4 Rediger etiket - - Show details... - Vis detaljer... - - - + Export Transaction Data Eksportér Transaktionsdata - + Comma separated file (*.csv) Kommasepareret fil (*.csv) - + Confirmed Bekræftet - + Date Dato - + Type Type - + Label Etiket - + Address Adresse - + Amount Beløb - - - ID - ID - - - - Error exporting - Fejl under eksport - - - - Could not write to file %1. - Kunne ikke skrive til filen %1. - - - - Range: - Interval: - - - - to - til - WalletModel @@ -1663,27 +1653,64 @@ Adresse: %4 Bitcoinversion - - Usage: - Anvendelse: + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kan låse data-biblioteket %s. Bitcoin kører sikkert allerede. - - Send command to -server or bitcoind - Send kommando til -server eller bitcoind - + + Loading addresses... + Indlæser adresser... - - List commands - Liste over kommandoer - + + Loading block index... + Indlæser blok-indeks... - - Get help for a command - Få hjælp til en kommando - + + Loading wallet... + Indlæser tegnebog... + + + + Wallet needed to be rewritten: restart Bitcoin to complete + + + + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Rescanning... + Genindlæser... + + + + 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 Bitcoin will not work properly. + Advarsel: Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet. Hvis der er fejl i disse vil Bitcoin ikke fungere korrekt. + + + + Done loading + Indlæsning gennemført @@ -1716,319 +1743,335 @@ Adresse: %4 - - Start minimized - Start minimeret - + + Invalid -proxy address + Ugyldig -proxy adresse - + Specify data directory Angiv databibliotek - + Specify connection timeout (in milliseconds) Angiv tilslutningstimeout (i millisekunder) - - Connect through socks4 proxy - Tilslut via SOCKS4 proxy - + + beta + beta - - Allow DNS lookups for addnode and connect - Tillad DNS-opslag for addnode og connect + + Accept command line and JSON-RPC commands + Accepter kommandolinje- og JSON-RPC-kommandoer - - Listen for connections on <port> (default: 8333 or testnet: 18333) + + Show splash screen on startup (default: 1) - - Maintain at most <n> connections to peers (default: 125) + + Set database cache size in megabytes (default: 25) - Add a node to connect to - Tilføj en node til at forbinde til - + Listen for connections on <port> (default: 8333 or testnet: 18333) + Lyt til forbindelser på <port> (standard: 8333 or testnet: 18333) - Connect only to the specified node - Tilslut kun til den angivne node - + Maintain at most <n> connections to peers (default: 125) + - Don't accept connections from outside - Acceptér ikke forbindelser udefra - - - - - Don't bootstrap list of peers using DNS - + Add a node to connect to and attempt to keep the connection open + Tilføj en node til at forbinde til and attempt to keep the connection open - 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) + Acceptér forbindelser udefra - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + Set language, for example "de_DE" (default: system locale) - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + Find peers using DNS lookup (default: 1) - - Don't attempt to use UPnP to map the listening port - Forsøg ikke at bruge UPnP til at konfigurere den lyttende port + + Threshold for disconnecting misbehaving peers (default: 100) + - - Attempt to use UPnP to map the listening port - Forsøg at bruge UPnP til at kofnigurere den lyttende port + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - Fee per kB to add to transactions you send + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Accept command line and JSON-RPC commands - Accepter kommandolinje- og JSON-RPC-kommandoer - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + Use Universal Plug and Play to map the listening port (default: 1) + Forsøg at bruge UPnP til at kofnigurere den lyttende port (standard: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Forsøg at bruge UPnP til at kofnigurere den lyttende port (standard: 0) + + + + Fee per KB to add to transactions you send + Gebyr pr. kB, som skal tilføjes til transaktioner du sender + + + Run in the background as a daemon and accept commands Kør i baggrunden som en service, og acceptér kommandoer - + Use the test network Brug test-netværket - + Output extra debugging information - + Prepend debug output with timestamp - + Send trace/debug info to console instead of debug.log file - + Send trace/debug info to debugger - - Username for JSON-RPC connections - Brugernavn til JSON-RPC-forbindelser - - - - + Password for JSON-RPC connections Password til JSON-RPC-forbindelser - + Listen for JSON-RPC connections on <port> (default: 8332) Lyt til JSON-RPC-forbindelser på <port> (standard: 8332) - + 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 node, 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) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) Sæt nøglepoolstørrelse til <n> (standard: 100) - + Rescan the block chain for missing wallet transactions Gennemsøg blokkæden for manglende tegnebogstransaktioner - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL-indstillinger: (se Bitcoin Wiki for SSL opsætningsinstruktioner) + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + - + 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) Server private nøgle (standard: server.pem) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kan låse data-biblioteket %s. Bitcoin kører sikkert allerede. - - - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Acceptabele ciphers (standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Loading addresses... - Indlæser adresser... - - - + This help message Denne hjælpebesked - - Loading block index... - Indlæser blok-indeks... + + Connect only to the specified node + Tilslut kun til den angivne node + - - Loading wallet... - Indlæser tegnebog... + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL-indstillinger: (se Bitcoin Wiki for SSL opsætningsinstruktioner) - - Rescanning... - Genindlæser... + + Send command to -server or bitcoind + Send kommando til -server eller bitcoind + - - Error loading addr.dat - Fejl ved indlæsning af addr.dat + + List commands + Liste over kommandoer + - - Error loading blkindex.dat - Fejl ved indlæsning af blkindex.dat + + Get help for a command + Få hjælp til en kommando + - - Error loading wallet.dat: Wallet corrupted - Fejl ved indlæsning af wallet.dat: Tegnebog ødelagt + + Usage: + Anvendelse: - - Done loading - Indlæsning gennemført + + Error: CreateThread(StartNode) failed + Fejl: CreateThread(StartNode) mislykkedes - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Fejl ved indlæsning af wallet.dat: Tegnebog kræver en nyere version af Bitcoin + + Invalid amount for -paytxfee=<amount> + Ugyldigt beløb for -paytxfee=<amount> - - Invalid -proxy address - Ugyldig -proxy adresse + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Kunne ikke binde sig til port %d på denne computer. Bitcoin kører sikkert allerede. - - Wallet needed to be rewritten: restart Bitcoin to complete - + + Start minimized + Start minimeret + - - Invalid amount for -paytxfee=<amount> - Ugyldigt beløb for -paytxfee=<amount> + + Connect through socks4 proxy + Tilslut via SOCKS4 proxy + - - Error loading wallet.dat - Fejl ved indlæsning af wallet.dat + + Allow DNS lookups for addnode and connect + Tillad DNS-opslag for addnode og connect + - - 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. + + Username for JSON-RPC connections + Brugernavn til JSON-RPC-forbindelser + - - Error: CreateThread(StartNode) failed - Fejl: CreateThread(StartNode) mislykkedes + + Error loading addr.dat + Fejl ved indlæsning af addr.dat - - Warning: Disk space is low - Advarsel: Diskplads er lav + + Error loading blkindex.dat + Fejl ved indlæsning af blkindex.dat - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Kunne ikke binde sig til port %d på denne computer. Bitcoin kører sikkert allerede. + + Error loading wallet.dat: Wallet corrupted + Fejl ved indlæsning af wallet.dat: Tegnebog ødelagt - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Advarsel: Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet. Hvis der er fejl i disse vil Bitcoin ikke fungere korrekt. + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Fejl ved indlæsning af wallet.dat: Tegnebog kræver en nyere version af Bitcoin - - beta - beta + + Error loading wallet.dat + Fejl ved indlæsning af wallet.dat + + + + Warning: Disk space is low + Advarsel: Diskplads er lav diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index d133e71431..919d7149b3 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -67,18 +67,23 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open &Copy to Clipboard - In die Zwischenablage &kopieren - - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Die ausgewählte Adresse aus der Liste entfernen. Sie können nur Zahlungsadressen entfernen. + Signatur in die Zwischenablage &kopieren Show &QR Code &QR-Code anzeigen + + + &Sign Message + Nachricht &signieren + + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Die ausgewählte Adresse aus der Liste entfernen. Sie können nur Zahlungsadressen entfernen. + &Delete @@ -90,20 +95,25 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Eine Nachricht signieren, um den Besitz einer Adresse zu beweisen - - &Sign Message - Nachricht &signieren + + Export Address Book Data + Adressbuch exportieren - - Copy address - Adresse kopieren + + Comma separated file (*.csv) + Kommagetrennte Datei (*.csv) Copy label Bezeichnung kopieren + + + Copy address + Adresse kopieren + Edit @@ -115,28 +125,23 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Löschen - - Export Address Book Data - Adressbuch exportieren - - - - Comma separated file (*.csv) - Kommagetrennte Datei (*.csv) - - - + Error exporting Fehler beim Exportieren - + Could not write to file %1. Konnte nicht in Datei %1 schreiben. AddressTableModel + + + (no label) + (keine Bezeichnung) + Label @@ -147,44 +152,41 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Address Adresse - - - (no label) - (keine Bezeichnung) - AskPassphraseDialog - - Dialog - Dialog + + + + + Wallet encryption failed + Verschlüsselung der Brieftasche fehlgeschlagen - - - TextLabel - Textbezeichnung + + Dialog + Dialog - + Enter passphrase Passphrase eingeben - + New passphrase Neue Passphrase - - Repeat new passphrase - Neue Passphrase wiederholen + + Decrypt wallet + Brieftasche entschlüsseln - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Geben Sie die neue Passphrase für die Brieftasche ein.<br>Bitte benutzen Sie eine Passphrase bestehend aus <b>10 oder mehr zufälligen Zeichen</b> oder <b>8 oder mehr Wörtern</b>. + + Repeat new passphrase + Neue Passphrase wiederholen @@ -192,45 +194,37 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Brieftasche verschlüsseln - - This operation needs your wallet passphrase to unlock the wallet. - Dieser Vorgang benötigt Ihre Passphrase um die Brieftasche zu entsperren. - - - - Unlock wallet - Brieftasche entsperren - - - - This operation needs your wallet passphrase to decrypt the wallet. - Dieser Vorgang benötigt Ihre Passphrase um die Brieftasche zu entschlüsseln. + + TextLabel + Textbezeichnung - - Decrypt wallet - Brieftasche entschlüsseln + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Die Verschlüsselung der Brieftasche ist aufgrund eines internen Fehlers fehlgeschlagen. Ihre Brieftasche wurde nicht verschlüsselt. - - Change passphrase - Passphrase ändern + + + The supplied passphrases do not match. + Die eingegebenen Passphrasen stimmen nicht überein. - - Enter the old and new passphrase to the wallet. - Geben Sie die alte und die neue Passphrase der Brieftasche ein. + + Wallet unlock failed + Entsperrung der Brieftasche fehlgeschlagen - - Confirm wallet encryption - Verschlüsselung der Brieftasche bestätigen + + + + The passphrase entered for the wallet decryption was incorrect. + Die eingegebene Passphrase zum Entschlüsseln der Brieftasche war nicht korrekt. - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - WARNUNG: Wenn Sie Ihre Brieftasche verschlüsseln und Ihre Passphrase verlieren, werden Sie <b>ALLE IHRE BITCOINS VERLIEREN</b>!<br><br>Sind Sie sich sicher, dass Sie Ihre Brieftasche verschlüsseln möchten? + + Wallet decryption failed + Entschlüsselung der Brieftasche fehlgeschlagen @@ -238,6 +232,21 @@ Are you sure you wish to encrypt your wallet? Wallet encrypted Brieftasche verschlüsselt + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung Ihrer Brieftasche nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadsoftware schützt, die Ihren Computer befällt. + + + + Enter the old and new passphrase to the wallet. + Geben Sie die alte und die neue Passphrase der Brieftasche ein. + + + + Wallet passphrase was successfully changed. + Die Passphrase der Brieftasche wurde erfolgreich geändert. + @@ -245,257 +254,192 @@ Are you sure you wish to encrypt your wallet? Warnung: Die Feststelltaste ist aktiviert. - - - - - Wallet encryption failed - Verschlüsselung der Brieftasche fehlgeschlagen - - - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Die Verschlüsselung der Brieftasche ist aufgrund eines internen Fehlers fehlgeschlagen. Ihre Brieftasche wurde nicht verschlüsselt. + + This operation needs your wallet passphrase to decrypt the wallet. + Dieser Vorgang benötigt Ihre Passphrase um die Brieftasche zu entschlüsseln. - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung Ihrer Brieftasche nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadsoftware schützt, die Ihren Computer befällt. + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Geben Sie die neue Passphrase für die Brieftasche ein.<br>Bitte benutzen Sie eine Passphrase bestehend aus <b>10 oder mehr zufälligen Zeichen</b> oder <b>8 oder mehr Wörtern</b>. - - - The supplied passphrases do not match. - Die eingegebenen Passphrasen stimmen nicht überein. + + This operation needs your wallet passphrase to unlock the wallet. + Dieser Vorgang benötigt Ihre Passphrase um die Brieftasche zu entsperren. - - Wallet unlock failed - Entsperrung der Brieftasche fehlgeschlagen + + Unlock wallet + Brieftasche entsperren - - - - The passphrase entered for the wallet decryption was incorrect. - Die eingegebene Passphrase zum Entschlüsseln der Brieftasche war nicht korrekt. + + Change passphrase + Passphrase ändern - - Wallet decryption failed - Entschlüsselung der Brieftasche fehlgeschlagen + + Confirm wallet encryption + Verschlüsselung der Brieftasche bestätigen - - Wallet passphrase was succesfully changed. - Die Passphrase der Brieftasche wurde erfolgreich geändert. + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + WARNUNG: Wenn Sie Ihre Brieftasche verschlüsseln und Ihre Passphrase verlieren, werden Sie <b>ALLE IHRE BITCOINS VERLIEREN</b>!<br><br>Sind Sie sich sicher, dass Sie Ihre Brieftasche verschlüsseln möchten? BitcoinGUI - + + Edit the list of stored addresses and labels + Liste der gespeicherten Zahlungsadressen und Bezeichnungen bearbeiten + + + + Show the list of addresses for receiving payments + Liste der Empfangsadressen anzeigen + + + + &Send coins + Bitcoins &überweisen + + + + Send coins to a bitcoin address + Bitcoins an eine Bitcoin-Adresse überweisen + + + + Show information about Qt + Informationen über Qt anzeigen + + + + Change the passphrase used for wallet encryption + Ändert die Passphrase, die für die Verschlüsselung der Brieftasche benutzt wird + + + Bitcoin Wallet Bitcoin-Brieftasche - - + + Synchronizing with network... Synchronisiere mit Netzwerk... - + Block chain synchronization in progress Synchronisation der Blockkette wird durchgeführt - - &Overview - &Übersicht + + Export the data in the current tab to a file + Daten der aktuellen Ansicht in eine Datei exportieren - + Show general overview of wallet Allgemeine Übersicht der Brieftasche anzeigen - + &Transactions &Transaktionen - + Browse transaction history Transaktionsverlauf durchsehen - + &Address Book &Adressbuch - - Edit the list of stored addresses and labels - Liste der gespeicherten Zahlungsadressen und Bezeichnungen bearbeiten - - - + &Receive coins Bitcoins &empfangen - - Show the list of addresses for receiving payments - Liste der Empfangsadressen anzeigen - - - - &Send coins - Bitcoins &überweisen - - - - Send coins to a bitcoin address - Bitcoins an eine Bitcoin-Adresse überweisen - - - - Sign &message - &Nachricht signieren... + + &Overview + &Übersicht - + Prove you control an address Beweisen Sie die Kontrolle einer Adresse - - E&xit - &Beenden - - - + Quit application Anwendung beenden - - &About %1 - &Über %1 - - - + Show information about Bitcoin Informationen über Bitcoin anzeigen - + + About &Qt + Über &Qt + + + &Options... &Erweiterte Einstellungen... - - Modify configuration options for bitcoin - Erweiterte Bitcoin-Einstellungen ändern + + Show the Bitcoin window + Bitcoin-Fenster anzeigen - - Open &Bitcoin - &Bitcoin öffnen - - - - Show the Bitcoin window - Bitcoin-Fenster anzeigen - - - - &Export... - &Exportieren nach... - - - + &Encrypt Wallet Brieftasche &verschlüsseln... - - Encrypt or decrypt wallet - Brieftasche ent- oder verschlüsseln - - - + &Change Passphrase Passphrase &ändern... - - Change the passphrase used for wallet encryption - Ändert die Passphrase, die für die Verschlüsselung der Brieftasche benutzt wird - - - - About &Qt - Über &Qt - - - - Show information about Qt - Informationen über Qt anzeigen - - - - Export the data in the current tab to a file - Daten der aktuellen Ansicht in eine Datei exportieren - - - - &Backup Wallet - Brieftasche &sichern... - - - - Backup wallet to another location - Eine Sicherungskopie der Brieftasche erstellen und abspeichern - - - - &File - &Datei - - - + &Settings &Einstellungen - + &Help &Hilfe - + Tabs toolbar Registerkarten-Leiste - + Actions toolbar Aktionen-Werkzeugleiste - - [testnet] - [testnet] - - - - bitcoin-qt - bitcoin-qt + + Backup wallet to another location + Eine Sicherungskopie der Brieftasche erstellen und abspeichern - + %n active connection(s) to Bitcoin network %n aktive Verbindung zum Bitcoin-Netzwerk @@ -503,25 +447,30 @@ Are you sure you wish to encrypt your wallet? - - Downloaded %1 of %2 blocks of transaction history. - %1 von %2 Blöcken des Transaktionsverlaufs heruntergeladen. + + [testnet] + [Testnetz] - + Downloaded %1 blocks of transaction history. %1 Blöcke des Transaktionsverlaufs heruntergeladen. - + %n second(s) ago vor %n Sekunde vor %n Sekunden + + + Sign &message + &Nachricht signieren... + - + %n minute(s) ago vor %n Minute @@ -529,58 +478,65 @@ Are you sure you wish to encrypt your wallet? - + %n hour(s) ago vor %n Stunde vor %n Stunden - - - %n day(s) ago - - vor %n Tag - vor %n Tagen - - - + Up to date Auf aktuellem Stand - + Catching up... Hole auf... - + + &About %1 + &Über %1 + + + Last received block was generated %1. Der letzte empfangene Block wurde %1 generiert. - + 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? Die Transaktion übersteigt das Größenlimit. Sie können sie trotzdem senden, wenn Sie eine zusätzliche Transaktionsgebühr in Höhe von %1 zahlen. Diese wird an die Knoten verteilt, die Ihre Transaktion bearbeiten und unterstützt damit das Bitcoin-Netzwerk.<br><br>Möchten Sie die Gebühr bezahlen? - - Sending... - Transaktionsgebühr bestätigen + + Modify configuration options for bitcoin + Erweiterte Bitcoin-Einstellungen ändern + + + + Open &Bitcoin + &Bitcoin öffnen + + + + bitcoin-qt + - + Sent transaction Gesendete Transaktion - + Incoming transaction Eingehende Transaktion - + Date: %1 Amount: %2 Type: %3 @@ -592,62 +548,105 @@ Typ: %3 Adresse: %4 - + + &Backup Wallet + Brieftasche &sichern... + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Brieftasche ist <b>verschlüsselt</b> und aktuell <b>entsperrt</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Brieftasche ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> - + + E&xit + &Beenden + + + Backup Wallet Brieftasche sichern - + Wallet Data (*.dat) - Brieftaschen-Datei (*.dat) + Brieftaschendaten (*.dat) - + Backup Failed Sicherung der Brieftasche fehlgeschlagen - + There was an error trying to save the wallet data to the new location. - Fehler beim abspeichern der Sicherungskopie der Brieftasche. + Fehler beim Abspeichern der Sicherungskopie der Brieftasche. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. - + + &Export... + &Exportieren... + + + + Encrypt or decrypt wallet + Brieftasche ent- oder verschlüsseln + + + + &File + &Datei + + + + %n day(s) ago + + vor %n Tag + vor %n Tagen + + + + + Sending... + Transaktionsgebühr bestätigen + + + + Downloaded %1 of %2 blocks of transaction history. + %1 von %2 Blöcken des Transaktionsverlaufs heruntergeladen. + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Ein schwerer Fehler ist aufgetreten. Bitcoin kann nicht stabil weiter ausgeführt werden und wird beendet. DisplayOptionsPage - + &Unit to show amounts in: &Einheit der Beträge: - + Choose the default subdivision unit to show in the interface, and when sending coins Wählen Sie die Standard-Untereinheit, die in der Benutzeroberfläche und beim Überweisen von Bitcoins angezeigt werden soll - + &Display addresses in transaction list &Adressen in der Transaktionsliste anzeigen - + Whether to show Bitcoin addresses in the transaction list - + Legt fest, ob Bitcoin-Adressen in der Transaktionsliste angezeigt werden @@ -702,11 +701,6 @@ Adresse: %4 The entered address "%1" is already in the address book. Die eingegebene Adresse "%1" befindet sich bereits im Adressbuch. - - - The entered address "%1" is not a valid bitcoin address. - Die eingegebene Adresse "%1" ist keine gültige Bitcoin-Adresse. - Could not unlock wallet. @@ -717,6 +711,11 @@ Adresse: %4 New key generation failed. Generierung eines neuen Schlüssels fehlgeschlagen. + + + The entered address "%1" is not a valid bitcoin address. + Die eingegebene Adresse "%1" ist keine gültige Bitcoin-Adresse. + MainOptionsPage @@ -767,8 +766,8 @@ Adresse: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Über einen SOCKS4-Proxy zum Bitcoin-Netzwerk verbinden (z.B. bei einer Verbindung über Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Über einen SOCKS4-Proxy mit dem Bitcoin-Netzwerk verbinden (z.B. beim Verbinden über Tor) @@ -778,7 +777,7 @@ Adresse: %4 IP address of the proxy (e.g. 127.0.0.1) - IP-Adresse des Proxy-Servers (z.B. 127.0.0.1) + IP-Adresse des Proxyservers (z.B. 127.0.0.1) @@ -790,18 +789,13 @@ Adresse: %4 Port of the proxy (e.g. 1234) Port des Proxy-Servers (z.B. 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Optionale Transaktionsgebühr pro kB, die sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 wird empfohlen. - Pay transaction &fee Transaktions&gebühr bezahlen - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Optionale Transaktionsgebühr pro kB, die sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 wird empfohlen. @@ -821,7 +815,7 @@ Adresse: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Die Adresse mit der die Nachricht signiert wird (z.B. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -848,6 +842,11 @@ Adresse: %4 Enter the message you want to sign here Zu signierende Nachricht hier eingeben + + + Copy the current signature to the system clipboard + Aktuelle Signatur in die Zwischenablage kopieren + Click "Sign Message" to get signature @@ -863,11 +862,6 @@ Adresse: %4 &Sign Message Nachricht &signieren - - - Copy the current signature to the system clipboard - - &Copy to Clipboard @@ -898,6 +892,11 @@ Adresse: %4 OptionsDialog + + + Options + Erweiterte Einstellungen + Main @@ -908,11 +907,6 @@ Adresse: %4 Display Anzeige - - - Options - Erweiterte Einstellungen - OverviewPage @@ -926,11 +920,6 @@ Adresse: %4 Balance: Kontostand: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -939,7 +928,12 @@ Adresse: %4 0 - 0 + + + + + Wallet + Brieftasche @@ -947,14 +941,14 @@ Adresse: %4 Unbestätigt: - - 0 BTC - 0 BTC + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Betrag aus unbestätigten Transaktionen, der noch nicht im aktuellen Kontostand enthalten ist - - Wallet - Brieftasche + + Total number of transactions in wallet + Anzahl aller Transaktionen in der Brieftasche @@ -966,19 +960,24 @@ Adresse: %4 Your current balance Ihr aktueller Kontostand + + + QRCodeDialog - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Betrag aus unbestätigten Transaktionen, der noch nicht im aktuellen Kontostand enthalten ist + + Request Payment + Zahlung anfordern - - Total number of transactions in wallet - Anzahl aller Transaktionen in der Brieftasche + + &Save As... + &Speichern unter... + + + + PNG Images (*.png) + PNG Bild (*.png) - - - QRCodeDialog Dialog @@ -989,11 +988,6 @@ Adresse: %4 QR Code QR-Code - - - Request Payment - Zahlung anfordern - Amount: @@ -1014,60 +1008,23 @@ Adresse: %4 Message: Nachricht: - - - &Save As... - &Speichern unter... - Error encoding URI into QR Code. - + Fehler beim Kodieren der URI in den QR-Code. Save Image... QR-Code abspeichern - - - PNG Images (*.png) - PNG Bild (*.png) - SendCoinsDialog - - - - - - - - - - Send Coins - Bitcoins überweisen - - - - 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 - - - - Remove all transaction fields - Alle Überweisungsfelder zurücksetzen + @@ -1090,58 +1047,85 @@ Adresse: %4 &Überweisen - + <b>%1</b> to %2 (%3) <b>%1</b> an %2 (%3) - - Confirm send coins - Überweisung bestätigen - - - + Are you sure you want to send %1? Sind Sie sich sicher, dass Sie die folgende Überweisung ausführen möchten?<br>%1 - - and - und - - + - The recepient address is not valid, please recheck. - Die Zahlungsadresse ist ungültig, bitte nochmals überprüfen. + + + + + + + Send Coins + Bitcoins überweisen - + + Send to multiple recipients at once + In einer Transaktion an mehrere Empfänger auf einmal überweisen + + + + &Add recipient... + &Empfänger hinzufügen + + + + Remove all transaction fields + Alle Überweisungsfelder zurücksetzen + + + + Confirm send coins + Überweisung bestätigen + + + + and + und + + + + 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 0 sein. + Der zu zahlende Betrag muss größer als 0 sein. - - Amount exceeds your balance + + The amount exceeds your balance. Der angegebene Betrag übersteigt Ihren Kontostand. - - Total exceeds your balance when the %1 transaction fee is included + + 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 in one send operation - Doppelte Adresse gefunden, pro Überweisung kann an jede Adresse nur einmalig etwas überwiesen werden + + 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. - - Error: Transaction creation failed - Fehler: Transaktionserstellung fehlgeschlagen + + Error: Transaction creation failed. + Fehler: Transaktionserstellung fehlgeschlagen. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. Fehler: Die Transaktion wurde abgelehnt. Dies kann passieren, wenn einige Bitcoins aus Ihrer Brieftasche bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie Ihrer wallet.dat genutzt, die Bitcoins dort ausgegeben haben und dies daher in der derzeit aktiven Brieftasche nicht vermerkt ist. @@ -1166,7 +1150,7 @@ Adresse: %4 Enter a label for this address to add it to your address book - Adressbezeichnung eingeben (diese wird bei unbekannten Adressen inkl. der Adresse dem Adressbuch hinzugefügt) + Adressbezeichnung eingeben (diese wird zusammen mit der Adresse dem Adressbuch hinzugefügt) @@ -1212,14 +1196,19 @@ Adresse: %4 TransactionDesc - - Open for %1 blocks - Offen für %1 Blöcke + + %1 confirmations + %1 Bestätigungen - - Open until %1 - Offen bis %1 + + , has not been successfully broadcast yet + , wurde noch nicht erfolgreich übertragen + + + + <b>Status:</b> + <b>Status:</b> @@ -1227,24 +1216,19 @@ Adresse: %4 %1/offline? - - %1/unconfirmed - %1/unbestätigt - - - - %1 confirmations - %1 Bestätigungen + + Open for %1 blocks + Offen für %1 Blöcke - - <b>Status:</b> - <b>Status:</b> + + Open until %1 + Offen bis %1 - - , has not been successfully broadcast yet - , wurde noch nicht erfolgreich übertragen + + %1/unconfirmed + %1/unbestätigt @@ -1259,7 +1243,7 @@ Adresse: %4 <b>Date:</b> - <b>Datum:</b> + <b>Datum:</b> @@ -1332,7 +1316,7 @@ Adresse: %4 Message: - Nachricht: + Nachricht: @@ -1365,10 +1349,55 @@ Adresse: %4 TransactionTableModel + + + Sent to + Überwiesen an + + + + Payment to yourself + Eigenüberweisung + + + + Mined + Erarbeitet + + + + (n/a) + (k.A.) + + + + Transaction status. Hover over this field to show number of confirmations. + Transaktionsstatus. Fahren Sie mit der Maus über dieses Feld, um die Anzahl der Bestätigungen zu sehen. + + + + Date and time that the transaction was received. + Datum und Uhrzeit als die Transaktion empfangen wurde. + + + + Type of transaction. + Art der Transaktion + + + + Destination address of transaction. + Zieladresse der Transaktion + + + + Amount removed from or added to balance. + Der Betrag, der dem Kontostand abgezogen oder hinzugefügt wurde. + - Date - Datum + Amount + Betrag @@ -1380,13 +1409,8 @@ Adresse: %4 Address Adresse - - - Amount - Betrag - - + Open for %n block(s) Offen für %n Block @@ -1394,27 +1418,27 @@ Adresse: %4 - + Open until %1 Offen bis %1 - + Offline (%1 confirmations) Nicht verbunden (%1 Bestätigungen) - + Unconfirmed (%1 of %2 confirmations) Unbestätigt (%1 von %2 Bestätigungen) - + Confirmed (%1 confirmations) Bestätigt (%1 Bestätigungen) - + Mined balance will be available in %n more blocks Der erarbeitete Betrag wird in %n Block verfügbar sein @@ -1422,73 +1446,103 @@ Adresse: %4 - + This block was not received by any other nodes and will probably not be accepted! Dieser Block wurde von keinem anderen Knoten empfangen und wird wahrscheinlich nicht angenommen werden! - - Generated but not accepted - Generiert, jedoch nicht angenommen - - - + Received with Empfangen über - + Received from Empfangen von - - Sent to - Überwiesen an + + Date + Datum - - Payment to yourself - Eigenüberweisung + + Generated but not accepted + Generiert, jedoch nicht angenommen + + + TransactionView - - Mined - Erarbeitet + + Could not write to file %1. + Konnte nicht in Datei %1 schreiben. - - (n/a) - (k.A.) + + Range: + Zeitraum: - - Transaction status. Hover over this field to show number of confirmations. - Transaktionsstatus. Fahren Sie mit der Maus über dieses Feld, um die Anzahl der Bestätigungen zu sehen. + + to + bis - - Date and time that the transaction was received. - Datum und Uhrzeit als die Transaktion empfangen wurde. + + Copy amount + Betrag kopieren - - Type of transaction. - Art der Transaktion + + Edit label + Bezeichnung bearbeiten - - Destination address of transaction. - Zieladresse der Transaktion. + + Comma separated file (*.csv) + Kommagetrennte Datei (*.csv) - - Amount removed from or added to balance. - Der Betrag, der dem Kontostand abgezogen oder hinzugefügt wurde. + + Confirmed + Bestätigt + + + + Date + Datum + + + + Type + Typ + + + + Label + Bezeichnung + + + + Address + Adresse + + + + Amount + Betrag + + + + ID + ID + + + + Error exporting + Fehler beim Exportieren - - - TransactionView @@ -1523,7 +1577,7 @@ Adresse: %4 Range... - Zeitraum + Zeitraum... @@ -1570,106 +1624,51 @@ Adresse: %4 Copy label Bezeichnung kopieren - - - Copy amount - Betrag kopieren - - - - Edit label - Bezeichnung bearbeiten - Show details... Transaktionsdetails anzeigen - + Export Transaction Data Transaktionen exportieren + + + WalletModel - - Comma separated file (*.csv) - Kommagetrennte Datei (*.csv) + + Sending... + Überweise... + + + bitcoin-core - - Confirmed - Bestätigt + + Bitcoin version + Bitcoin Version - - Date - Datum + + Usage: + Benutzung: - - Type - Typ + + Loading addresses... + Lade Adressen... - - Label - Bezeichnung - - - - Address - Adresse - - - - Amount - Betrag - - - - ID - ID - - - - Error exporting - Fehler beim Exportieren - - - - Could not write to file %1. - Konnte nicht in Datei %1 schreiben. - - - - Range: - Zeitraum: - - - - to - bis - - - - WalletModel - - - Sending... - Überweise... - - - - bitcoin-core - - - Bitcoin version - Bitcoin Version + + Loading block index... + Lade Blockindex... - - Usage: - Verwendung: + + Loading wallet... + Lade Brieftasche... @@ -1689,7 +1688,17 @@ Adresse: %4 Options: - Einstellungen: + Optionen: + + + + Prepend debug output with timestamp + Der Debugausgabe einen Zeitstempel voranstellen + + + + Set database cache size in megabytes (default: 25) + Größe des Datenbankcaches in MB festlegen (Standard: 25) @@ -1712,296 +1721,326 @@ Adresse: %4 Keine Bitcoins generieren - - Start minimized - Minimiert starten - - - - Specify data directory - Datenverzeichnis angeben - - - + Specify connection timeout (in milliseconds) Verbindungstimeout angeben (in Millisekunden) - - Connect through socks4 proxy - Über einen SOCKS4-Proxy verbinden: - - - - Allow DNS lookups for addnode and connect - Erlaube DNS Namensauflösung für addnode und connect + + Specify data directory + Datenverzeichnis angeben - + Listen for connections on <port> (default: 8333 or testnet: 18333) - Verbindungen erwarten an <port> (Standard: 8333 oder test-Netzwerk: 18333) + <port> nach Verbindungen abhören (Standard: 8333 oder Testnetz: 18333) - + Maintain at most <n> connections to peers (default: 125) - Maximal <n> Verbindungen zu Peers aufrechterhalten (Standard: 125) + Maximal <n> Verbindungen zu Gegenstellen aufrechterhalten (Standard: 125) - - Add a node to connect to - Einen Knoten hinzufügen, mit dem sich verbunden werden soll + + Threshold for disconnecting misbehaving peers (default: 100) + Schwellenwert, um Verbindungen zu sich nicht konform verhaltenden Gegenstellen zu beenden (Standard: 100) - - Connect only to the specified node - Nur mit dem angegebenem Knoten verbinden + + 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) - - Don't accept connections from outside - Keine Verbindungen von außen akzeptieren + + Accept command line and JSON-RPC commands + Kommandozeilenbefehle und JSON-RPC Befehle annehmen - - Don't bootstrap list of peers using DNS - Keine Peerliste durch die Nutzung von DNS erzeugen + + Send trace/debug info to console instead of debug.log file + Rückverfolgungs- und Debuginformationen an die Konsole senden anstatt sie in die debug.log Datei zu schreiben - - Threshold for disconnecting misbehaving peers (default: 100) - Schwellenwert, um Verbindungen zu sich nicht konform verhaltenden Peers zu beenden (Standard: 100) + + Username for JSON-RPC connections + Benutzername für JSON-RPC Verbindungen - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Anzahl Sekunden, während denen sich nicht konform verhaltenden Peers die Wiederverbindung verweigert wird (Standard: 86400) + + Send trace/debug info to debugger + Rückverfolgungs- und Debuginformationen an den Debugger senden - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maximale Größe des Empfangspuffers pro Verbindung, <n>*1000 Bytes (Standard: 10000) + + Password for JSON-RPC connections + Passwort für JSON-RPC Verbindungen - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maximale Größe des Sendepuffers pro Verbindung, <n>*1000 Bytes (Standard: 10000) + + Listen for JSON-RPC connections on <port> (default: 8332) + <port> nach JSON-RPC Verbindungen abhören (Standard: 8332) - - Don't attempt to use UPnP to map the listening port - Nicht versuchen UPnP zu verwenden, um den abgehörten Port weiterzuleiten + + Use the test network + Das Testnetz verwenden - - Attempt to use UPnP to map the listening port - Versuchen UPnP zu verwenden, um den abgehörten Port weiterzuleiten + + Show splash screen on startup (default: 1) + Startbildschirm beim Starten anzeigen (Standard: 1) - - Fee per kB to add to transactions you send - Gebühr pro kB, die gesendeten Transaktionen hinzugefügt wird + + Accept connections from outside (default: 1) + Eingehende Verbindungen annehmen (Standard: 1) - - Accept command line and JSON-RPC commands - Kommandozeilenbefehle und JSON-RPC Befehle annehmen + + Set language, for example "de_DE" (default: system locale) + Sprache festlegen, z.B. "de_DE" (Standard: System Locale) - - Run in the background as a daemon and accept commands - Als Hintergrunddienst starten und Befehle akzeptieren + + Find peers using DNS lookup (default: 1) + Gegenstellen via DNS-Namensauflösung finden (Standard: 1) - - Use the test network - Das test-Netzwerk verwenden + + Use Universal Plug and Play to map the listening port (default: 1) + UPnP verwenden, um die Portweiterleitung einzurichten (Standard: 1) - - Output extra debugging information - Ausgabe zusätzlicher Debugging-Informationen + + Use Universal Plug and Play to map the listening port (default: 0) + UPnP verwenden, um die Portweiterleitung einzurichten (Standard: 0) - - Prepend debug output with timestamp - Der Debug-Ausgabe einen Zeitstempel voranstellen + + Allow JSON-RPC connections from specified IP address + JSON-RPC Verbindungen von der angegebenen IP-Adresse erlauben - - Send trace/debug info to console instead of debug.log file - Rückverfolgungs- und Debug-Informationen an die Konsole senden anstatt sie in die debug.log Datei zu schreiben + + Send commands to node running on <ip> (default: 127.0.0.1) + Sende Befehle an Knoten <ip> (Standard: 127.0.0.1) - - Send trace/debug info to debugger - Rückverfolgungs- und Debug-Informationen an den Debugger senden + + Set key pool size to <n> (default: 100) + Größe des Schlüsselpools festlegen auf <n> (Standard: 100) - - Username for JSON-RPC connections - Benutzername für JSON-RPC Verbindungen + + Use OpenSSL (https) for JSON-RPC connections + OpenSSL (https) für JSON-RPC Verbindungen verwenden - - Password for JSON-RPC connections - Passwort für JSON-RPC Verbindungen + + Server certificate file (default: server.cert) + Serverzertifikat (Standard: server.cert) - - Listen for JSON-RPC connections on <port> (default: 8332) - JSON-RPC Verbindungen erwarten an <port> (Standard: 8332) + + Server private key (default: server.pem) + Privater Serverschlüssel (Standard: server.pem) - - Allow JSON-RPC connections from specified IP address - JSON-RPC Verbindungen von der angegebenen IP-Adresse erlauben + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Akzeptierte Chiffren (Standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Send commands to node running on <ip> (default: 127.0.0.1) - Sende Befehle an Knoten <ip> (Standard: 127.0.0.1) + + This help message + Dieser Hilfetext - - Set key pool size to <n> (default: 100) - Setze Größe des Schlüsselpools auf <n> (Standard: 100) + + Error loading blkindex.dat + Fehler beim Laden von blkindex.dat - - Rescan the block chain for missing wallet transactions - Blockkette erneut nach fehlenden Transaktionen der Brieftasche durchsuchen + + Error loading wallet.dat: Wallet corrupted + Fehler beim Laden von wallet.dat: Brieftasche beschädigt - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL Einstellungen: (siehe Bitcoin-Wiki für SSL Installationsanweisungen) + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Fehler beim Laden von wallet.dat: Brieftasche benötigt neuere Version von Bitcoin - - Use OpenSSL (https) for JSON-RPC connections - OpenSSL (https) für JSON-RPC Verbindungen benutzen + + Wallet needed to be rewritten: restart Bitcoin to complete + Brieftasche muss neu geschrieben werden: Starten Sie Bitcoin zur Fertigstellung neu - - Server certificate file (default: server.cert) - Server Zertifikat (Standard: server.cert) + + Error loading wallet.dat + Fehler beim Laden von wallet.dat (Brieftasche) - - Server private key (default: server.pem) - Privater Serverschlüssel (Standard: server.pem) + + Start minimized + Minimiert starten - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Konnte das Datenverzeichnis %s nicht sperren. Evtl. wurde Bitcoin bereits gestartet. + + Connect through socks4 proxy + Über einen SOCKS4-Proxy verbinden: - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Akzeptierte Chiffren (Standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Allow DNS lookups for addnode and connect + Erlaube DNS Namensauflösung für addnode und connect - - Loading addresses... - Lade Adressen... + + Connect only to the specified node + Nur mit dem angegebenem Knoten verbinden - - This help message - Dieser Hilfetext + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maximale Größe des Empfangspuffers pro Verbindung, <n>*1000 Bytes (Standard: 10000) - - Loading block index... - Lade Blockindex... + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maximale Größe des Sendepuffers pro Verbindung, <n>*1000 Bytes (Standard: 10000) - - Loading wallet... - Lade Geldbörse... + + Run in the background as a daemon and accept commands + Als Hintergrunddienst starten und Befehle akzeptieren - - Rescanning... - Durchsuche erneut... + + Output extra debugging information + Ausgabe zusätzlicher Debugging-Informationen - + Error loading addr.dat Fehler beim Laden von addr.dat - - Error loading blkindex.dat - Fehler beim Laden von blkindex.dat + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Konnte das Datenverzeichnis %s nicht sperren. Evtl. wurde Bitcoin bereits gestartet. - - Error loading wallet.dat: Wallet corrupted - Fehler beim Laden von wallet.dat: Brieftasche beschädigt + + Rescanning... + Durchsuche erneut... - + Done loading Laden abgeschlossen - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Fehler beim Laden von wallet.dat: Brieftasche benötigt neuere Version von Bitcoin - - - + Invalid -proxy address Fehlerhafte Proxy-Adresse - - Wallet needed to be rewritten: restart Bitcoin to complete - Brieftasche muss neu geschrieben werden: starten Sie Bitcoin zur Fertigstellung neu - - - + Invalid amount for -paytxfee=<amount> Ungültige Angabe für -paytxfee=<Betrag> - - Error loading wallet.dat - Fehler beim Laden von wallet.dat (Brieftasche) - - - + 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 gesetzt. Dies ist die Gebühr die beim Senden einer Transaktion fällig wird. - + Error: CreateThread(StartNode) failed Fehler: CreateThread(StartNode) fehlgeschlagen - - Warning: Disk space is low - Warnung: Festplattenplatz wird knapp - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Fehler beim registrieren des Ports %d auf diesem Computer. Evtl. wurde Bitcoin bereits gestartet. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Warnung: Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen Ihres Computers, da Bitcoin ansonsten nicht ordnungsgemäß funktionieren wird. - + beta Beta + + + Warning: Disk space is low + Warnung: Festplattenplatz wird knapp + + + + 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) + + + + Rescan the block chain for missing wallet transactions + Blockkette erneut nach fehlenden Transaktionen der Brieftasche durchsuchen + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL Einstellungen: (siehe Bitcoin-Wiki für SSL Installationsanweisungen) + + + + Add a node to connect to and attempt to keep the connection open + Mit dem Knoten verbinden und versuchen die Verbindung aufrecht zu halten + + + + Cannot downgrade wallet + Brieftasche kann nicht auf eine ältere Version herabgestuft werden + + + + Cannot initialize keypool + Schlüsselpool kann nicht initialisiert werden + + + + Cannot write default address + Standardadresse kann nicht geschrieben werden + + + + Fee per KB to add to transactions you send + Gebühr pro KB, die gesendeten Transaktionen hinzugefügt wird + + + + Find peers using internet relay chat (default: 0) + Gegenstellen via Internet Relay Chat finden (Standard: 0) + + + + How many blocks to check at startup (default: 2500, 0 = all) + Wieviele Blöcke sollen beim Starten geprüft werden (Standard: 2500, 0 = alle) + + + + How thorough the block verification is (0-6, default: 1) + Wie gründlich soll die Blockprüfung sein (0-6, Standard: 1) + + + + Upgrade wallet to latest format + Brieftasche auf das neueste Format aktualisieren + diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index 7648e0dd1d..b5c23c545d 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -63,21 +63,11 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - - Show &QR Code - - - &Delete - - Sign a message to prove you own this address @@ -88,6 +78,16 @@ This product includes software developed by the OpenSSL Project for use in the O &Sign Message + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + + + + + &Delete + + Copy address @@ -109,22 +109,22 @@ This product includes software developed by the OpenSSL Project for use in the O - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. @@ -155,26 +155,25 @@ This product includes software developed by the OpenSSL Project for use in the O - - - TextLabel - - - - + Enter passphrase - + New passphrase - + Repeat new passphrase + + + TextLabel + + 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>. @@ -233,9 +232,8 @@ Are you sure you wish to encrypt your wallet? - - - Warning: The Caps Lock key is on. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. @@ -251,11 +249,6 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - @@ -281,215 +274,221 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on. BitcoinGUI - + Bitcoin Wallet - - + + Synchronizing with network... - + Block chain synchronization in progress - + &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 - + Send coins to a bitcoin address - + Sign &message - + Prove you control an address - + E&xit - + Quit application - + &About %1 - + Show information about Bitcoin - - &Options... + + About &Qt - - Modify configuration options for bitcoin + + Show information about Qt - - Open &Bitcoin + + &Options... - - Show the Bitcoin window + + Modify configuration options for bitcoin - - &Export... + + Open &Bitcoin - - &Encrypt Wallet + + Show the Bitcoin window - - Encrypt or decrypt wallet + + &Export... - - &Change Passphrase + + Export the data in the current tab to a file - - Change the passphrase used for wallet encryption + + &Encrypt Wallet - - About &Qt + + Encrypt or decrypt wallet - - Show information about Qt + + &Backup Wallet - - Export the data in the current tab to a file + + Backup wallet to another location - - &Backup Wallet + + &Change Passphrase - - Backup wallet to another location + + Change the passphrase used for wallet encryption - + &File - + &Settings - + &Help - + Tabs toolbar - + Actions toolbar - + [testnet] - + bitcoin-qt - + %n active connection(s) to Bitcoin network %n active connection to Bitcoin network @@ -497,17 +496,17 @@ Are you sure you wish to encrypt your wallet? - + Downloaded %1 of %2 blocks of transaction history. - + Downloaded %1 blocks of transaction history. - + %n second(s) ago %n second ago @@ -515,7 +514,7 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago %n minute ago @@ -523,7 +522,7 @@ Are you sure you wish to encrypt your wallet? - + %n hour(s) ago %n hour ago @@ -531,7 +530,7 @@ Are you sure you wish to encrypt your wallet? - + %n day(s) ago %n day ago @@ -539,42 +538,42 @@ Are you sure you wish to encrypt your wallet? - + 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? - + Sending... - + Sent transaction - + Incoming transaction - + Date: %1 Amount: %2 Type: %3 @@ -583,60 +582,60 @@ Address: %4 - + 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. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: - + Choose the default subdivision unit to show in the interface, and when sending coins - + &Display addresses in transaction list - + Whether to show Bitcoin addresses in the transaction list @@ -758,7 +757,7 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) @@ -783,7 +782,7 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. @@ -791,11 +790,6 @@ Address: %4 Pay transaction &fee - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - MessagePage @@ -917,11 +911,6 @@ Address: %4 Balance: - - - 123.456 BTC - - Number of transactions: @@ -937,11 +926,6 @@ Address: %4 Unconfirmed: - - - 0 BTC - - Wallet @@ -1030,13 +1014,13 @@ Address: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins @@ -1051,13 +1035,13 @@ Address: %4 - - Clear all + + Remove all transaction fields - - Remove all transaction fields + + Clear all @@ -1081,58 +1065,58 @@ Address: %4 - + <b>%1</b> to %2 (%3) - + Confirm send coins - + Are you sure you want to send %1? - + and - - The recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. - + The amount to pay must be larger than 0. - - Amount exceeds your balance + + The amount exceeds your balance. - - 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 in one 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. @@ -1377,7 +1361,7 @@ Address: %4 - + Open for %n block(s) Open for %n block @@ -1385,27 +1369,27 @@ Address: %4 - + Open until %1 - + Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) - + Mined balance will be available in %n more blocks Mined balance will be available in %n more block @@ -1413,67 +1397,67 @@ Address: %4 - + 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. @@ -1577,67 +1561,67 @@ Address: %4 - + Export Transaction Data - + Comma separated file (*.csv) - + Confirmed - + Date - + Type - + Label - + Address - + Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to @@ -1709,287 +1693,342 @@ Address: %4 - Specify data directory + Show splash screen on startup (default: 1) - Specify connection timeout (in milliseconds) + Specify data directory - Connect through socks4 proxy + Set database cache size in megabytes (default: 25) - Allow DNS lookups for addnode and connect + Specify connection timeout (in milliseconds) - Listen for connections on <port> (default: 8333 or testnet: 18333) + Connect through socks4 proxy - Maintain at most <n> connections to peers (default: 125) + Allow DNS lookups for addnode and connect - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) - Don't accept connections from outside + Add a node to connect to and attempt to keep the connection open - Don't bootstrap list of peers using DNS + Connect only to the specified node - 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) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Threshold for disconnecting misbehaving peers (default: 100) + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - Don't attempt to use UPnP to map the listening port + + Use Universal Plug and Play to map the listening port (default: 1) - - Attempt to use UPnP to map the listening port + + Use Universal Plug and Play to map the listening port (default: 0) - - Fee per kB to add to transactions you send + + Fee per KB to add to transactions you send - + Accept command line and JSON-RPC commands - + Run in the background as a daemon and accept commands - + Use the test network - + Output extra debugging information - + Prepend debug output with timestamp - + Send trace/debug info to console instead of debug.log file - + Send trace/debug info to debugger - + Username for JSON-RPC connections - + Password for JSON-RPC connections - + Listen for JSON-RPC connections on <port> (default: 8332) - + Allow JSON-RPC connections from specified IP address - + Send commands to node running on <ip> (default: 127.0.0.1) - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + + 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 - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + + + + Loading addresses... - - This help message + + Error loading addr.dat - + Loading block index... - + + Error loading blkindex.dat + + + + Loading wallet... - - Rescanning... + + Error loading wallet.dat: Wallet corrupted - - Error loading addr.dat + + Error loading wallet.dat: Wallet requires newer version of Bitcoin - - Error loading blkindex.dat + + Wallet needed to be rewritten: restart Bitcoin to complete - - Error loading wallet.dat: Wallet corrupted + + Error loading wallet.dat - - Done loading + + Cannot downgrade wallet - - Error loading wallet.dat: Wallet requires newer version of Bitcoin + + Cannot initialize keypool - - Invalid -proxy address + + Cannot write default address - - Wallet needed to be rewritten: restart Bitcoin to complete + + Rescanning... - - Invalid amount for -paytxfee=<amount> + + Done loading - - Error loading wallet.dat + + Invalid -proxy address - + + Invalid amount for -paytxfee=<amount> + + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + Error: CreateThread(StartNode) failed - - Warning: Disk space is low + + Warning: Disk space is low - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + beta diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index 2ac8dbafe0..418936f36b 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -7,12 +7,12 @@ About Bitcoin - Sobre Bitcoin + Acerca de Bitcoin <b>Bitcoin</b> version - <b>Bitcoin</b> - versión + <b>Bitcoin</b> versión @@ -23,7 +23,16 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Copyright © 2009-2012 Bitcoin Developers + +Este es un software experimental. + +Distribuido bajo la licencia MIT/X11, vea el archivo adjunto +license.txt 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 UPnP software escrito por Thomas Bernard. @@ -31,7 +40,7 @@ This product includes software developed by the OpenSSL Project for use in the O Address Book - Guia de direcciones + Libreta de direcciones @@ -41,12 +50,12 @@ This product includes software developed by the OpenSSL Project for use in the O Double-click to edit address or label - Haz doble click para editar una dirección o etiqueta + Haga doble clic para editar una dirección o etiqueta Create a new address - Crea una nueva dirección + Crear una nueva dirección @@ -54,92 +63,92 @@ This product includes software developed by the OpenSSL Project for use in the O &Nueva Dirección - - Copy the currently selected address to the system clipboard - Copia la dirección seleccionada al portapapeles - - - - &Copy to Clipboard - &Copiar al portapapeles + + Sign a message to prove you own this address + Delete the currently selected address from the list. Only sending addresses can be deleted. - Borra la dirección seleccionada de la lista. Solo las direcciónes de envio se pueden borrar. - - - - Show &QR Code - + Borrar de la lista la dirección seleccionada . Sólo se pueden borrar las direcciones de envío. &Delete - Bo&rrar + &Borrar - - Sign a message to prove you own this address - + + Show &QR Code + Mostrar código &QR &Sign Message - + &Firmar mensaje - - Copy address - Copia dirección + + Copy the currently selected address to the system clipboard + Copiar la dirección seleccionada al portapapeles + + + + Export Address Book Data + Exportar datos de la libreta de direcciones + + + + &Copy to Clipboard + &Copiar al portapapeles Copy label Copia etiqueta + + + Copy address + Copiar dirección + Edit - + Editar Delete - - - - - Export Address Book Data - Exporta datos de la Guia de direcciones - - - - Comma separated file (*.csv) - Archivos separados por coma (*.csv) + Borrar - + Error exporting - Exportar errores + Error al exportar - + Could not write to file %1. - No se pudo escribir al archivo %1. + No se pudo escribir en el archivo %1. + + + + Comma separated file (*.csv) + Archivos separados por coma (*.csv) AddressTableModel - Label - Etiqueta + Address + Dirección - Address - Dirección + Label + Etiqueta @@ -150,88 +159,98 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - - Dialog - Cambiar contraseña - - - - - TextLabel - Cambiar contraseña: - - - - Enter passphrase - Introduce contraseña actual + + Repeat new passphrase + Repita la nueva contraseña - + New passphrase Nueva contraseña - - Repeat new passphrase - Repite nueva contraseña: + + Dialog + Cambiar contraseña Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Introduce la nueva contraseña de cartera.<br/>Por favor utiliza un contraseña <b>de 10 o mas caracteres aleatorios</b>, u <b>ocho o mas palabras</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>. + + + + TextLabel + Cambiar contraseña: Encrypt wallet - Encriptar cartera + Cifrar el monedero This operation needs your wallet passphrase to unlock the wallet. - Esta operación necesita la contraseña para desbloquear la cartera. + Para desbloquear el monedero esta operación necesita de su contraseña. Unlock wallet - Desbloquea cartera + Desbloquear monedero This operation needs your wallet passphrase to decrypt the wallet. - Esta operación necesita la contraseña para decriptar la cartera. + Para descifrar el monedero esta operación necesita de su contraseña. Decrypt wallet - Decriptar cartera + Descifrar monedero Change passphrase - Cambia contraseña + Cambiar contraseña Enter the old and new passphrase to the wallet. - Introduce la contraseña anterior y la nueva de cartera + Introduzca la contraseña anterior del monedero y la nueva. - - Confirm wallet encryption - Confirma la encriptación de cartera + + + Wallet encrypted + Monedero cifrado - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ATENCION: ¡Si encriptas tu cartera y pierdes la contraseña perderas <b>TODOS TUS BITCOINS</b>!" -¿Seguro que quieres seguir encriptando la cartera? + + + The supplied passphrases do not match. + Las contraseñas no coinciden. - - - Wallet encrypted - Cartera encriptada + + 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. + La contraseña de cartera ha sido cambiada con exit. @@ -239,6 +258,18 @@ Are you sure you wish to encrypt your wallet? Warning: The Caps Lock key is on. + + + Confirm wallet encryption + Confirmar cifrado del monedero + + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ATENCION: ¡Si encriptas tu cartera y pierdes la contraseña perderas <b>TODOS TUS BITCOINS</b>!" +¿Seguro que quieres seguir encriptando la cartera? + @@ -258,324 +289,242 @@ Are you sure you wish to encrypt your wallet? Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerda que encriptando tu cartera no garantiza mantener a salvo tus bitcoins en caso de tener viruses en el ordenador. - - - The supplied passphrases do not match. - Las contraseñas no coinciden. - - - - Wallet unlock failed - Desbloqueo de cartera fallido - - - - - - The passphrase entered for the wallet decryption was incorrect. - La contraseña introducida para decriptar la cartera es incorrecta. - - - - Wallet decryption failed - Decriptación de cartera fallida - - - - Wallet passphrase was succesfully changed. - La contraseña de cartera ha sido cambiada con exit. + + Enter passphrase + Contraseña actual BitcoinGUI - - Bitcoin Wallet - Cartera Bitcoin + + Show information about Bitcoin + Mostrar información acerca de Bitcoin - - + + Synchronizing with network... - Sincronizando con la red... + Sincronizando con la red… - - Block chain synchronization in progress - Sincronización cadena de bloques en progreso + + Open &Bitcoin + Abre &Bitcoin - - &Overview - &Vista general + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para el cifrado del monedero - + Show general overview of wallet - Muestra una vista general de cartera + Mostrar vista general del monedero + + + + Downloaded %1 blocks of transaction history. + Se han bajado %1 bloques de historial. - + &Transactions - &Transacciónes + &Transacciones - + Browse transaction history - Visiona el historial de transacciónes + Examinar el historial de transacciones + + + + Bitcoin Wallet + Cartera Bitcoin - + &Address Book - &Guia de direcciónes + &Libreta de direcciones - + Edit the list of stored addresses and labels - Edita la lista de las direcciónes y etiquetas almacenada + Editar la lista de las direcciones y etiquetas almacenadas + + + + Block chain synchronization in progress + Sincronización cadena de bloques en progreso - + &Receive coins - &Recibe monedas + &Recibir monedas - + Show the list of addresses for receiving payments - Muestra la lista de direcciónes utilizadas para recibir pagos + Mostrar la lista de direcciones utilizadas para recibir pagos - + &Send coins - &Envia monedas - - - - Send coins to a bitcoin address - Envia monedas a una dirección bitcoin - - - - Sign &message - - - - - Prove you control an address - + &Enviar monedas - + E&xit &Salir - - Quit application - Salir de la aplicación - - - - &About %1 - S&obre %1 - - - - Show information about Bitcoin - Muestra información sobre Bitcoin - - - - &Options... - &Opciones + + &Overview + &Vista general - - Modify configuration options for bitcoin - Modifica opciones de configuración + + &Export... + &Exportar… - - Open &Bitcoin - Abre &Bitcoin + + &Help + A&yuda - - Show the Bitcoin window - Muestra la ventana de Bitcoin + + Send coins to a bitcoin address + Envia monedas a una dirección bitcoin - - &Export... - &Exporta... + + Quit application + Salir de la aplicación - - &Encrypt Wallet - &Encriptar cartera + + Export the data in the current tab to a file + Exportar a un archivo los datos de esta pestaña - + Encrypt or decrypt wallet - Encriptar o decriptar cartera - - - - &Change Passphrase - &Cambiar la contraseña - - - - Change the passphrase used for wallet encryption - Cambiar la contraseña utilizada para la encriptación de cartera + Cifrar o descifrar el monedero - + About &Qt - Sobre &Qt + Acerca de &Qt - - Show information about Qt - Muestra información sobre Qt + + Backup wallet to another location + Copia de seguridad del monedero en otra ubicación - Export the data in the current tab to a file - - - - - &Backup Wallet - &Backup cartera + Show information about Qt + Mostrar información acerca de Qt - - Backup wallet to another location - + + &Options... + &Opciones... - + &File &Archivo - - &Settings - &Configuración - - - - &Help - &Ayuda - - - + Tabs toolbar Barra de pestañas - + Actions toolbar - Barra de acciónes + Barra de acciones - + [testnet] [testnet] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network %n conexión activa hacia la red Bitcoin %n conexiones activas hacia la red Bitcoin - - - Downloaded %1 of %2 blocks of transaction history. - Se han bajado %1 de %2 bloques de historial. - - - - Downloaded %1 blocks of transaction history. - Se han bajado %1 bloques de historial. - - + %n second(s) ago - Hace %n segundo - Hace %n segundos + hace %n segundo + hace %n segundos - - - %n minute(s) ago - - Hace %n minuto - Hace %n minutos - + + + Show the Bitcoin window + Muestra la ventana de Bitcoin - - - %n hour(s) ago - - Hace %n hora - Hace %n horas - + + + Sign &message + Firmar &mensaje... - - - %n day(s) ago - - Hace %n día - Hace %n días - + + + Prove you control an address + - - Up to date - Actualizado + + &About %1 + S&obre %1 - - Catching up... - Recuperando... + + Modify configuration options for bitcoin + Modifica opciones de configuración - - Last received block was generated %1. - El ultimo bloque recibido fue generado %1. + + &Encrypt Wallet + &Encriptar cartera - - 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 supera el límite. Puedes seguir enviandola incluyendo una comisión de %s que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Quieres seguir con la transacción? + + &Backup Wallet + Copia de &respaldo del monedero... - - Sending... - Enviando... + + Last received block was generated %1. + El último bloque recibido fue 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? + Esta transacción supera el límite. Puede seguir enviándola incluyendo una comisión de %1 que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Desea pagar esa tarifa? + + + Sent transaction Transacción enviada - + Incoming transaction Transacción entrante - + Date: %1 Amount: %2 Type: %3 @@ -587,66 +536,130 @@ Tipo: %3 Dirección: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - La cartera esta <b>encriptada</b> y actualmente <b>desbloqueda</b> + El monedero está <b>cifrado</b> y actualmente <b>desbloqueado</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> - La cartera esta <b>encriptada</b> y actualmente <b>bloqueda</b> + El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> - - Backup Wallet - + + Backup Failed + La copia de seguridad ha fallado + + + + %n minute(s) ago + + Hace %n minuto + Hace %n minutos + + + + + %n hour(s) ago + + Hace %n hora + Hace %n horas + - - Wallet Data (*.dat) - + + &Change Passphrase + &Cambiar la contraseña - - Backup Failed - + + &Settings + &Configuración + + + + %n day(s) ago + + hace %n día + hace %n días + + + + + Catching up... + Recuperando... + + + + Up to date + Actualizado - + There was an error trying to save the wallet data to the new location. - + Ha habido un error al intentar guardar los datos del monedero a la nueva ubicación. + + + + Sending... + Enviando... + + + + bitcoin-qt + bitcoin-qt + + + + Backup Wallet + Copia de seguridad del monedero + + + + Wallet Data (*.dat) + Datos del monedero (*.dat) + + + + Downloaded %1 of %2 blocks of transaction history. + Se han bajado %1 de %2 bloques de historial. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &Unidad en la que mostrar cantitades: - + Choose the default subdivision unit to show in the interface, and when sending coins Elige la subdivisión por defecto para mostrar cantidaded en la interfaz cuando se envien monedas - + &Display addresses in transaction list &Muestra direcciones en el listado de movimientos - + Whether to show Bitcoin addresses in the transaction list - + Mostrar o no las direcciones Bitcoin en la lista de transacciones EditAddressDialog + + + New key generation failed. + Ha fallado la generación de la nueva clave. + Edit Address @@ -660,7 +673,7 @@ Dirección: %4 The label associated with this address book entry - La etiqueta asociada con esta entrada de la guia + La etiqueta asociada con esta entrada en la libreta @@ -670,7 +683,7 @@ Dirección: %4 The address associated with this address book entry. This can only be modified for sending addresses. - La dirección asociada con esta entrada en la guia. Solo puede ser modificada para direcciónes de envío. + La dirección asociada con esta entrada en la guia. Solo puede ser modificada para direcciones de envío. @@ -695,26 +708,31 @@ Dirección: %4 The entered address "%1" is already in the address book. - La dirección introducia "%1" ya esta guardada en la guia. - - - - The entered address "%1" is not a valid bitcoin address. - La dirección introducida "%1" no es una dirección Bitcoin valida. + La dirección introducida "%1" ya está presente en la libreta de direcciones. Could not unlock wallet. - No se pudo desbloquear la cartera. + No se pudo desbloquear el monedero. - - New key generation failed. - La generación de nueva clave fallida. + + The entered address "%1" is not a valid bitcoin address. + La dirección introducida "%1" no es una dirección Bitcoin valida. MainOptionsPage + + + Proxy &IP: + &IP Proxy: + + + + &Port: + &Puerto: + &Start Bitcoin on window system startup @@ -762,23 +780,13 @@ Dirección: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Conecta a la red Bitcoin atraves de un proxy SOCKS4 (ej. para conectar con la red Tor) - - - Proxy &IP: - &IP Proxy: - IP address of the proxy (e.g. 127.0.0.1) - Dirección IP del proxy (ej. 127.0.0.1) - - - - &Port: - &Puerto: + Dirección IP del proxy (ej. 127.0.0.1) @@ -787,18 +795,13 @@ Dirección: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Tarifa de transacción por kB opcional que ayuda a asegurarse de que sus transacciones se procesan rápidamente. La mayoría de las transacciones son de 1 KB. Tarifa de 0,01 recomendado. Pay transaction &fee - Comision de &transacciónes - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + Comisión de &transacciones @@ -806,12 +809,12 @@ Dirección: %4 Message - + 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 los 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 firmando su identidad a través de ellos. Solo firme declaraciones totalmente detalladas con las que usted esté de acuerdo. @@ -841,7 +844,7 @@ Dirección: %4 Enter the message you want to sign here - + Introduzca el mensaje que desea firmar aquí @@ -856,12 +859,12 @@ Dirección: %4 &Sign Message - + &Firme mensaje Copy the current signature to the system clipboard - + Copiar la firma actual al portapapeles del sistema @@ -898,16 +901,16 @@ Dirección: %4 Main Principal - - - Display - Mostrado - Options Opciones + + + Display + Mostrado + OverviewPage @@ -919,61 +922,56 @@ Dirección: %4 Balance: - Balance: - - - - 123.456 BTC - 123.456 BTC + Saldo: Number of transactions: - Numero de movimientos: + Número de movimientos: + + + + <b>Recent transactions</b> + <b>Movimientos recientes</b> 0 0 + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + El total de las transacciones que faltan por confirmar y que no se cuentan para el total general. + Unconfirmed: No confirmado(s): - - - 0 BTC - 0 BTC - Wallet - Cartera - - - - <b>Recent transactions</b> - <b>Movimientos recientes</b> + Monedero Your current balance - Tu balance actual - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - El total de las transacciones que faltan por confirmar y que no se cuentan para el total general. + Saldo actual Total number of transactions in wallet - El numero total de movimiento en cartera + Número total de movimientos en el monedero QRCodeDialog + + + Message: + Mensaje: + Dialog @@ -987,37 +985,32 @@ Dirección: %4 Request Payment - - - - - Amount: - + Solicitud de pago BTC - + Label: - - - - - Message: - Mensaje: + Label: &Save As... - + &Guardar Como ... + + + + Amount: + Cuantía: Error encoding URI into QR Code. - + Error al codificar la URI en el código QR. @@ -1027,117 +1020,117 @@ Dirección: %4 PNG Images (*.png) - + Imágenes PNG (*.png) SendCoinsDialog - - - - - - - - - Send Coins - Envia monedas + + Remove all transaction fields + Eliminar todos los campos de las transacciones - - Send to multiple recipients at once - Envia a multiples destinatarios de una vez + + Are you sure you want to send %1? + Estas seguro que quieres enviar %1? - - &Add recipient... - &Agrega destinatario... + + <b>%1</b> to %2 (%3) + <b>%1</b> to %2 (%3) - - Clear all - &Borra todos + + Confirm send coins + Confirmar el envío de monedas - - Remove all transaction fields - + + and + y - - Balance: - Balance: + + The recipient address is not valid, please recheck. + La dirección de destinatarion no es valida, comprueba otra vez. - - 123.456 BTC - 123.456 BTC + + The amount to pay must be larger than 0. + La cantidad por pagar tiene que ser mayor 0. - - Confirm the send action - Confirma el envio + + The amount exceeds your balance. + La cantidad sobrepasa su saldo. - - &Send - &Envía + + 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. - - <b>%1</b> to %2 (%3) - <b>%1</b> to %2 (%3) + + 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. - - Confirm send coins - Confirmar el envio de monedas + + Clear all + &Borra todos - - Are you sure you want to send %1? - Estas seguro que quieres enviar %1? + + Error: Transaction creation failed. + Error: ha fallado la creación de transacción. - - and - y + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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: transacción rechazada. Puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado así aquí. + - The recepient address is not valid, please recheck. - La dirección de destinatarion no es valida, comprueba otra vez. + + + + + + + Send Coins + Envía monedas - - The amount to pay must be larger than 0. - La cantidad por pagar tiene que ser mayor 0. + + Send to multiple recipients at once + Envía a multiples destinatarios de una vez - - Amount exceeds your balance - La cantidad sobrepasa tu saldo + + &Add recipient... + &Agrega destinatario... - - Total exceeds your balance when the %1 transaction fee is included - El total sobrepasa tu saldo cuando se incluyen %1 como tasa de envio + + Balance: + Balance: - - Duplicate address found, can only send to each address once in one send operation - Tienes una dirección duplicada, solo puedes enviar a direcciónes individuales de una sola vez + + 123.456 BTC + 123.456 BTC - - Error: Transaction creation failed - Error: La transacción no se pudo crear + + Confirm the send action + Confirma el envío - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. + + &Send + &Envía @@ -1150,7 +1143,7 @@ Dirección: %4 A&mount: - Cantidad: + Ca&ntidad: @@ -1161,7 +1154,7 @@ Dirección: %4 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 + Etiquete esta dirección para añadirla a la libreta @@ -1176,7 +1169,7 @@ Dirección: %4 Choose address from address book - Elije dirección de la guia + Elija una dirección de la libreta de direcciones @@ -1207,15 +1200,21 @@ Dirección: %4 TransactionDesc - - Open for %1 blocks - Abierto hasta %1 bloques + + + <b>From:</b> + <b>De:</b> Open until %1 Abierto hasta %1 + + + Open for %1 blocks + Abierto hasta %1 bloques + %1/offline? @@ -1229,18 +1228,30 @@ Dirección: %4 %1 confirmations - %1 confirmaciónes + %1 confirmaciones - - <b>Status:</b> - <b>Estado:</b> + + unknown + desconocido + + + + + + <b>To:</b> + <b>Para:</b> , has not been successfully broadcast yet , no ha sido emitido satisfactoriamente todavía + + + <b>Status:</b> + <b>Estado:</b> + , broadcast through %1 node @@ -1261,24 +1272,6 @@ Dirección: %4 <b>Source:</b> Generated<br> <b>Fuente:</b> Generado<br> - - - - <b>From:</b> - <b>De:</b> - - - - unknown - desconocido - - - - - - <b>To:</b> - <b>Para:</b> - (yours, label: @@ -1370,18 +1363,8 @@ Dirección: %4 Type Tipo - - - Address - Dirección - - - - Amount - Cantidad - - + Open for %n block(s) Abierto por %n bloque @@ -1389,101 +1372,156 @@ Dirección: %4 - + Open until %1 Abierto hasta %1 - + Offline (%1 confirmations) - Fuera de linea (%1 confirmaciónes) + Fuera de linea (%1 confirmaciones) - + Unconfirmed (%1 of %2 confirmations) - No confirmado (%1 de %2 confirmaciónes) + No confirmado (%1 de %2 confirmaciones) - + Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) - - - Mined balance will be available in %n more blocks - - El balance minado estará disponible en %n bloque mas - El balance minado estará disponible en %n bloques mas - - - + This block was not received by any other nodes and will probably not be accepted! Este bloque no ha sido recibido por otros nodos y probablemente no sea aceptado ! - + Generated but not accepted - Generado pero no acceptado + Generado pero no aceptado - + Received with Recibido con - - Received from - - - - + Sent to Enviado a - + Payment to yourself - Pago proprio + Pago propio - + Mined Minado - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. - Estado de transacción. Pasa el raton sobre este campo para ver el numero de confirmaciónes. + 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 cuando se recibió la transaccion + Fecha y hora de cuando se recibió la transacción. - + Type of transaction. Tipo de transacción. - + Destination address of transaction. - Dirección de destino para la transacción + Dirección de destino de la transacción. - + Amount removed from or added to balance. - Cantidad restada o añadida al balance + Cantidad retirada o añadida al balance. + + + + Address + Dirección + + + + Amount + Cantidad + + + + Mined balance will be available in %n more blocks + + El balance minado estará disponible en %n bloque mas + El balance minado estará disponible en %n bloques mas + + + + + Received from + Recibidos de TransactionView + + + Date + Fecha + + + + Type + Tipo + + + + Label + Etiqueta + + + + Address + Dirección + + + + Amount + Cantidad + + + + ID + ID + + + + Error exporting + Error exportando + + + + Could not write to file %1. + No se pudo escribir en el archivo %1. + + + + Range: + Rango: + @@ -1503,7 +1541,7 @@ Dirección: %4 This month - Esta mes + Este mes @@ -1535,502 +1573,504 @@ Dirección: %4 To yourself A ti mismo - - - Mined - Minado - - - - Other - Otra - Enter address or label to search - Introduce una dirección o etiqueta para buscar + Introduzca una dirección o etiqueta que buscar Min amount - Cantidad minima + Cantidad mínima Copy address - Copia dirección + Copiar dirección Copy label - Copia etiqueta - - - - Copy amount - + Copiar etiqueta Edit label - Edita etiqueta - - - - Show details... - Muestra detalles... + Editar etiqueta - + Export Transaction Data - Exportar datos de transacción + Exportar datos de la transacción - + Comma separated file (*.csv) - Archivos separados por coma (*.csv) + Archivos de columnas separadas por coma (*.csv) - + Confirmed Confirmado - - Date - Fecha + + Copy amount + Copiar cuantía - - Type - Tipo + + to + para - - Label - Etiqueta + + Mined + Minado - - Address - Dirección + + Other + Otra - - Amount - Cantidad + + Show details... + Muestra detalles... + + + WalletModel - - ID - ID + + Sending... + Enviando... + + + bitcoin-core - - Error exporting - Error exportando + + Bitcoin version + Versión de Bitcoin - - Could not write to file %1. - No se pudo escribir en el archivo %1. + + Get help for a command + Recibir ayuda para un comando + - - Range: - Rango: + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Preste atención a las conexiones en <puerto> (por defecto: 8333 o testnet: 18333) - - to - para + + Loading block index... + Cargando el índice de bloques... - - - WalletModel - - Sending... - Enviando... + + Send command to -server or bitcoind + Envíar comando a -server o bitcoind - - - bitcoin-core - - Bitcoin version - Versión Bitcoin + + Set database cache size in megabytes (default: 25) + Establecer el tamaño del caché de la base de datos en megabytes (por defecto: 25) - - Usage: - Uso: + + Specify configuration file (default: bitcoin.conf) + Especifica archivo de configuración (predeterminado: bitcoin.conf) + - - Send command to -server or bitcoind - Envia comando a bitcoin lanzado con -server u bitcoind + + Specify connection timeout (in milliseconds) + Especifica tiempo de espera para conexion (en milisegundos) + + + Usage: + Uso: + List commands Muestra comandos - - - - - Get help for a command - Recibir ayuda para un comando Options: Opciones: - - - - - Specify configuration file (default: bitcoin.conf) - Especifica archivo de configuración (predeterminado: bitcoin.conf) Specify pid file (default: bitcoind.pid) Especifica archivo pid (predeterminado: bitcoin.pid) - - - - - Generate coins - Genera monedas Don't generate coins - No generar monedas - - - - - Start minimized - Arranca minimizado - + No generar monedas - Specify data directory - Especifica directorio para los datos - + Show splash screen on startup (default: 1) + Mostrar pantalla de bienvenida en el inicio (por defecto: 1) - Specify connection timeout (in milliseconds) - Especifica tiempo de espera para conexion (en milisegundos) - - - - - Connect through socks4 proxy - Conecta mediante proxy socks4 - - - - - Allow DNS lookups for addnode and connect - Permite búsqueda DNS para addnode y connect - - - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - - - - - Maintain at most <n> connections to peers (default: 125) - - - - - Add a node to connect to - Agrega un nodo para conectarse - + Specify data directory + Especificar directorio para los datos - Connect only to the specified node - Conecta solo al nodo especificado - - - - - Don't accept connections from outside - No aceptar conexiones desde el exterior - + Maintain at most <n> connections to peers (default: 125) + Mantener en la mayoría de las conexiones <n> a sus compañeros (por defecto: 125) - - Don't bootstrap list of peers using DNS - + + Accept connections from outside (default: 1) + Aceptar conexiones desde el exterior (predeterminado: 1) - - Threshold for disconnecting misbehaving peers (default: 100) - + + Set language, for example "de_DE" (default: system locale) + Establecer el idioma, por ejemplo, "es_ES" (por defecto: configuración regional del sistema) - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + Find peers using DNS lookup (default: 1) - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - Don't attempt to use UPnP to map the listening port - No intentar usar UPnP para mapear el puerto de entrada - - - - - Attempt to use UPnP to map the listening port - Intenta usar UPnP para mapear el puerto de escucha. - - - - - Fee per kB to add to transactions you send - + + Use Universal Plug and Play to map the listening port (default: 1) + Usar UPnP para asignar el puerto de escucha (predeterminado: 1) - - Accept command line and JSON-RPC commands - Aceptar comandos consola y JSON-RPC - + + Use Universal Plug and Play to map the listening port (default: 0) + Usar UPnP para asignar el puerto de escucha (predeterminado: 0) - + Run in the background as a daemon and accept commands Correr como demonio y acepta comandos - + Use the test network Usa la red de pruebas - + Output extra debugging information - - Prepend debug output with timestamp - - - - - Send trace/debug info to console instead of debug.log file - - - - - Send trace/debug info to debugger - - - - + Username for JSON-RPC connections 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: 8332) Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) - + Allow JSON-RPC connections from specified IP address Permite conexiones JSON-RPC desde la dirección IP especificada - + Send commands to node running on <ip> (default: 127.0.0.1) - Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) + Envía comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - + Set key pool size to <n> (default: 100) - Ajusta el numero de claves en reserva <n> (predeterminado: 100) + Ajusta el número de claves en reserva <n> (predeterminado: 100) - + Rescan the block chain for missing wallet transactions - Rescanea la cadena de bloques para transacciones perdidas de la cartera - + Volver a examinar la cadena de bloques en busca de transacciones del monedero perdidas - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) - + + Invalid amount for -paytxfee=<amount> + Cantidad inválida para -paytxfee=<amount> + + + + 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. - + Use OpenSSL (https) for JSON-RPC connections Usa OpenSSL (https) para las conexiones JSON-RPC - + Server certificate file (default: server.cert) Certificado del servidor (Predeterminado: server.cert) - + Server private key (default: server.pem) Clave privada del servidor (Predeterminado: server.pem) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. - - - - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Loading addresses... - Cargando direcciónes... - - - + This help message Este mensaje de ayuda - - Loading block index... - Cargando el index de bloques... + + Error loading blkindex.dat + Error al cargar blkindex.dat - - Loading wallet... - Cargando cartera... + + Error loading wallet.dat: Wallet corrupted + Error al cargar wallet.dat: el monedero está dañado - - Rescanning... - Rescaneando... + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Error al cargar wallet.dat: El monedero requiere una versión más reciente de Bitcoin - - Error loading addr.dat - Error cargando addr.dat + + Error loading wallet.dat + Error al cargar wallet.dat - - Error loading blkindex.dat - Error cargando blkindex.dat + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. - - Error loading wallet.dat: Wallet corrupted - Error cargando wallet.dat: Cartera dañada + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Precaución: Por favor revisa que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal Bitcoin no funcionará correctamente. - - Done loading - Carga completa + + beta + beta - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Error cargando el archivo wallet.dat: Se necesita una versión mas nueva de Bitcoin + + Connect through socks4 proxy + Conecta mediante proxy socks4 + - + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) + + + + Invalid -proxy address Dirección -proxy invalida + + + Loading addresses... + Cargando direcciones... + - Wallet needed to be rewritten: restart Bitcoin to complete - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. + - - Invalid amount for -paytxfee=<amount> - Cantidad inválida para -paytxfee=<amount> + + Loading wallet... + Cargando cartera... - - Error loading wallet.dat - Error cargando wallet.dat + + Rescanning... + Rescaneando... - - 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. + + Done loading + Carga completa - + Error: CreateThread(StartNode) failed Error: CreateThread(StartNode) fallido + + + Add a node to connect to and attempt to keep the connection open + Añadir un nodo para conectarse y tratar de mantener la conexión abierta + + + + Cannot downgrade wallet + No se puede rebajar el monedero + + + + 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) + + + + Cannot initialize keypool + No se puede inicializar grupo de teclas + + + + Cannot write default address + No se puede escribir la dirección por defecto + + + + Generate coins + Genera monedas + + + + + Start minimized + Arranca minimizado + + + + + Allow DNS lookups for addnode and connect + Permite búsqueda DNS para addnode y connect + + + + + Connect only to the specified node + Conecta solo al nodo especificado + + + + + Fee per KB to add to transactions you send + Tarifa por KB que añadir a las transacciones que envíe + + + + Find peers using internet relay chat (default: 0) + Encontrar los pares utilizando Internet Relay Chat (por defecto: 0) + + + + Accept command line and JSON-RPC commands + Aceptar comandos consola y JSON-RPC + + - Warning: Disk space is low + Wallet needed to be rewritten: restart Bitcoin to complete + El monedero ha necesitado ser reescrito. Reinicie Bitcoin para completar el proceso + + + + Error loading addr.dat + Error cargando addr.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) + Cuántos bloques para comprobar en el arranque (por defecto: 2500, 0 = todos) + + + + How thorough the block verification is (0-6, default: 1) + Cómo completa la verificación del bloque es (0-6, por defecto: 1) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Número de segundos que se mantienen los compañeros se portan mal en volver a conectarse (por defecto: 86400) + + + + Warning: Disk space is low Atención: Poco espacio en el disco duro - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. + + Prepend debug output with timestamp + Anteponer la salida de depuración, con indicación de la hora - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Precaución: Por favor revisa que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal Bitcoin no funcionará correctamente. + + Send trace/debug info to console instead of debug.log file + Enviar rastrear/debug info a la consola en lugar de debug.log archivo - - beta - beta + + Send trace/debug info to debugger + Enviar rastrear / debug info al depurador + + + + Upgrade wallet to latest format + Actualizar el monedero al último formato + + + + Threshold for disconnecting misbehaving peers (default: 100) + Umbral para la desconexión de los compañeros se portan mal (por defecto: 100) diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index 828376edd4..73c9c7e8bc 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -23,7 +23,16 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Copyright © 2009-2012 Bitcoin Developers + +Este es un software experimental. + +Distribuido bajo la licencia MIT/X11, vea el archivo adjunto +license.txt 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/), software criptográfico escrito por +Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. @@ -63,21 +72,11 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &Copiar al portapapeles - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Borra la dirección seleccionada de la lista. Solo las direcciónes de envio se pueden borrar. - Show &QR Code Mostrar Código &QR - - - &Delete - &Borrar - Sign a message to prove you own this address @@ -88,6 +87,16 @@ This product includes software developed by the OpenSSL Project for use in the O &Sign Message Firmar Mensaje + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Borra la dirección seleccionada de la lista. Solo las direcciónes de envio se pueden borrar. + + + + &Delete + &Borrar + Copy address @@ -109,22 +118,22 @@ This product includes software developed by the OpenSSL Project for use in the O Borrar - + Export Address Book Data Exporta datos de la guia de direcciones - + Comma separated file (*.csv) Archivos separados por coma (*.csv) - + Error exporting Exportar errores - + Could not write to file %1. No se pudo escribir al archivo %1. @@ -149,32 +158,49 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog + + + Decrypt wallet + Decodificar cartera + Dialog Cambiar contraseña - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus bitcoins de ser robados por malware que infecte su computador + + + TextLabel Cambiar contraseña: - + Enter passphrase Introduce contraseña actual - + New passphrase Nueva contraseña - + Repeat new passphrase Repite nueva contraseña: + + + + + + Wallet encryption failed + Falló la codificación de la billetera + 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>. @@ -200,11 +226,6 @@ This product includes software developed by the OpenSSL Project for use in the O This operation needs your wallet passphrase to decrypt the wallet. Esta operación necesita la contraseña para decodificar la billetara. - - - Decrypt wallet - Decodificar cartera - Change passphrase @@ -220,13 +241,6 @@ This product includes software developed by the OpenSSL Project for use in the O Confirm wallet encryption Confirma la codificación de cartera - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ATENCIÓN: ¡Si codificas tu billetera y pierdes la contraseña perderás <b>TODOS TUS BITCOINS</b>!" -¿Seguro que quieres seguir codificando la billetera? - @@ -234,29 +248,22 @@ Are you sure you wish to encrypt your wallet? Billetera codificada - - - Warning: The Caps Lock key is on. - Precaucion: Mayúsculas Activadas + + Wallet passphrase was successfully changed. + La contraseña de billetera ha sido cambiada con éxito. - - - - - Wallet encryption failed - Falló la codificación de la billetera + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ATENCIÓN: ¡Si codificas tu billetera y pierdes la contraseña perderás <b>TODOS TUS BITCOINS</b>!" +¿Seguro que quieres seguir codificando la billetera? Wallet encryption failed due to an internal error. Your wallet was not encrypted. La codificación de la billetera falló debido a un error interno. Tu billetera no ha sido codificada. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus bitcoins de ser robados por malware que infecte su computador - @@ -281,216 +288,197 @@ Are you sure you wish to encrypt your wallet? Ha fallado la decodificación de la billetera - - Wallet passphrase was succesfully changed. - La contraseña de billetera ha sido cambiada con éxito. + + + Warning: The Caps Lock key is on. + Precaucion: Mayúsculas Activadas BitcoinGUI - - Bitcoin Wallet - Billetera Bitcoin + + Send coins to a bitcoin address + Enviar monedas a una dirección bitcoin - - + + Synchronizing with network... Sincronizando con la red... - - Block chain synchronization in progress - Sincronización de la cadena de bloques en progreso + + Bitcoin Wallet + Billetera Bitcoin - + &Overview &Vista general - + Show general overview of wallet Muestra una vista general de la billetera - + + Block chain synchronization in progress + Sincronización de la cadena de bloques en progreso + + + &Transactions &Transacciónes - + Browse transaction history Explora el historial de transacciónes - + &Address Book &Guia de direcciónes - + Edit the list of stored addresses and labels Edita la lista de direcciones y etiquetas almacenadas - + &Receive coins &Recibir monedas - + Show the list of addresses for receiving payments Muestra la lista de direcciónes utilizadas para recibir pagos - - &Send coins - &Envíar monedas + + E&xit + &Salir - - Send coins to a bitcoin address - Enviar monedas a una dirección bitcoin + + Export the data in the current tab to a file + Exportar los datos de la pestaña actual a un archivo - - Sign &message - Firmar Mensaje + + Backup wallet to another location + Respaldar billetera en otra ubicación - - Prove you control an address - Suministre dirección de control + + Backup Wallet + Respaldar billetera - - E&xit - &Salir + + Wallet Data (*.dat) + Datos de billetera (*.dat) - + + Backup Failed + Ha fallado el respaldo + + + + &Send coins + &Envíar monedas + + + Quit application Salir del programa - - &About %1 - S&obre %1 + + Sign &message + Firmar Mensaje + + + + Prove you control an address + Suministre dirección de control - + Show information about Bitcoin Muestra información acerca de Bitcoin - + + About &Qt + Acerca de + + + + Show information about Qt + Mostrar Información sobre QT + + + &Options... &Opciones - + + &Export... + &Exportar... + + + Modify configuration options for bitcoin Modifica las opciones de configuración de bitcoin - + Open &Bitcoin Abre &Bitcoin - + Show the Bitcoin window Muestra la ventana de Bitcoin - - &Export... - &Exportar... - - - + &Encrypt Wallet &Codificar la billetera - + Encrypt or decrypt wallet Codificar o decodificar la billetera - - &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 - - About &Qt - Acerca de - - - - Show information about Qt - Mostrar Información sobre QT - - - - Export the data in the current tab to a file - - - - - &Backup Wallet - &Backup billetera - - - - Backup wallet to another location - - - - - &File - &Archivo - - - - &Settings - &Configuración - - - - &Help - &Ayuda - - - - Tabs toolbar - Barra de pestañas + + &Change Passphrase + &Cambiar la contraseña - + Actions toolbar Barra de acciónes - + [testnet] [red-de-pruebas] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network %n conexión activa hacia la red Bitcoin @@ -498,17 +486,17 @@ Are you sure you wish to encrypt your wallet? - - Downloaded %1 of %2 blocks of transaction history. - Descargados %1 de %2 bloques del historial de transacciones. - - - + Downloaded %1 blocks of transaction history. Descargado %1 bloques del historial de transacciones. + + + Tabs toolbar + Barra de pestañas + - + %n second(s) ago Hace %n segundo @@ -516,7 +504,7 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago Hace %n minuto @@ -524,15 +512,35 @@ Are you sure you wish to encrypt your wallet? - + %n hour(s) ago Hace %n hora Hace %n horas + + + Downloaded %1 of %2 blocks of transaction history. + Descargados %1 de %2 bloques del historial de transacciones. + + + + &About %1 + S&obre %1 + + + + &Backup Wallet + &Respaldar billetera + + + + bitcoin-qt + + - + %n day(s) ago Hace %n día @@ -540,42 +548,37 @@ Are you sure you wish to encrypt your wallet? - + Up to date Actualizado - + Catching up... Recuperando... - + Last received block was generated %1. El ultimo bloque recibido fue 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? Esta transacción supera el límite. Puedes seguir enviandola incluyendo una comisión de %s que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Quieres seguir con la transacción? - - Sending... - Enviando... - - - + Sent transaction Transacción enviada - + Incoming transaction Transacción entrante - + Date: %1 Amount: %2 Type: %3 @@ -587,60 +590,65 @@ Tipo: %3 Dirección: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> La billetera esta <b>codificada</b> y actualmente <b>desbloqueda</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> La billetera esta <b>codificada</b> y actualmente <b>bloqueda</b> - - Backup Wallet + + There was an error trying to save the wallet data to the new location. - - Wallet Data (*.dat) - + + Sending... + Enviando... - - Backup Failed - + + &File + &Archivo - - There was an error trying to save the wallet data to the new location. - + + &Settings + &Configuración + + + + &Help + &Ayuda - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &Unidad en la que mostrar cantitades: - + Choose the default subdivision unit to show in the interface, and when sending coins Elige la subdivisión por defecto para mostrar cantidaded en la interfaz cuando se envien monedas - + &Display addresses in transaction list &Muestra direcciones en el listado de transaccioines - + Whether to show Bitcoin addresses in the transaction list @@ -693,24 +701,24 @@ Dirección: %4 Editar dirección de envio - - The entered address "%1" is already in the address book. - La dirección introducida "%1" ya esta guardada en la libreta de direcciones. + + Could not unlock wallet. + No se pudo desbloquear la billetera. - - The entered address "%1" is not a valid bitcoin address. - La dirección introducida "%1" no es una dirección Bitcoin valida. + + New key generation failed. + La generación de nueva clave falló. - - Could not unlock wallet. - No se pudo desbloquear la billetera. + + The entered address "%1" is already in the address book. + La dirección introducida "%1" ya esta guardada en la libreta de direcciones. - - New key generation failed. - La generación de nueva clave falló. + + The entered address "%1" is not a valid bitcoin address. + La dirección introducida "%1" no es una dirección Bitcoin valida. @@ -743,7 +751,7 @@ Dirección: %4 Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Abre automáticamente el puerto del cliente Bitcoin en el router. Esto funciona solo cuando tu router es compatible con UPnP y está habilitado. + Abre automáticamente el puerto del cliente Bitcoin en el router. Esto funciona solo cuando tu router es compatible con UPnP y está habilitado. @@ -753,7 +761,7 @@ Dirección: %4 Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Minimiza la ventana en lugar de salir del programa cuando la ventana se cierra. Cuando esta opción esta activa el programa solo se puede cerrar seleccionando Salir desde el menu. + Minimiza la ventana en lugar de salir del programa cuando la ventana se cierra. Cuando esta opción esta activa el programa solo se puede cerrar seleccionando Salir desde el menu. @@ -762,7 +770,7 @@ Dirección: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Conecta a la red Bitcoin a través de un proxy SOCKS4 (ej. cuando te conectas por la red Tor) @@ -773,12 +781,12 @@ Dirección: %4 IP address of the proxy (e.g. 127.0.0.1) - Dirección IP del servidor proxy (ej. 127.0.0.1) + Dirección IP del servidor proxy (ej. 127.0.0.1) &Port: - &Puerto: + &Puerto: @@ -787,18 +795,13 @@ Dirección: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Comisión opcional por kB que ayuda a asegurar que sus transacciones son procesadas rápidamente. La mayoria de transacciones son de 1 KB. Se recomienda comisión de 0.01 + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Comisión opcional por kB que ayuda a asegurar que sus transacciones son procesadas rápidamente. La mayoria de transacciones son de 1 KB. Se recomienda comisión de 0.01 Pay transaction &fee - Comisión de &transacciónes - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Comisión opcional por kB que ayuda a asegurar que sus transacciones son procesadas rápidamente. La mayoria de transacciones son de 1 KB. Se recomienda comisión de 0.01 + Comisión de &transacciónes @@ -828,6 +831,16 @@ Dirección: %4 Alt+A Alt+A + + + Private key for %1 is not available. + Llave privada para %q no esta disponible. + + + + Sign failed + Falló Firma + Paste address from clipboard @@ -880,16 +893,6 @@ Dirección: %4 %1 is not a valid address. %1 no es una dirección válida. - - - Private key for %1 is not available. - Llave privada para %q no esta disponible. - - - - Sign failed - Falló Firma - OptionsDialog @@ -911,21 +914,36 @@ Dirección: %4 OverviewPage + + + <b>Recent transactions</b> + <b>Transacciones recientes</b> + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Total de transacciones que no han sido confirmadas aun, y que no cuentan para el saldo actual. + + + + Wallet + Cartera + Form Formulario + + + Total number of transactions in wallet + Número total de transacciones en la billetera + Balance: Saldo: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -934,76 +952,26 @@ Dirección: %4 0 - 0 + Unconfirmed: No confirmados: - - - 0 BTC - 0 BTC - - - - Wallet - Cartera - - - - <b>Recent transactions</b> - <b>Transacciones recientes</b> - Your current balance Tu saldo actual - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Total de transacciones que no han sido confirmadas aun, y que no cuentan para el saldo actual. - - - - Total number of transactions in wallet - Número total de transacciones en la billetera - QRCodeDialog - - - Dialog - Cambiar contraseña - - - - QR Code - Código QR - Request Payment Solicitar Pago - - - Amount: - Cantidad: - - - - BTC - BTC - - - - Label: - Etiqueta - Message: @@ -1021,49 +989,64 @@ Dirección: %4 - Save Image... - + PNG Images (*.png) + Imágenes PNG (*.png) - PNG Images (*.png) + Save Image... - - - SendCoinsDialog - - - - - - - - - Send Coins - Enviar monedas + + Amount: + Cantidad: - - Send to multiple recipients at once - Enviar a múltiples destinatarios + + BTC + BTC - - &Add recipient... - &Agrega destinatario... + + Label: + Etiqueta - - Clear all - &Borra todos + + Dialog + Cambiar contraseña + + + + QR Code + Código QR + + + SendCoinsDialog Remove all transaction fields Remover todos los campos de la transacción + + + + + + + + + + Send Coins + Enviar monedas + + + + Send to multiple recipients at once + Enviar a múltiples destinatarios + Balance: @@ -1085,73 +1068,83 @@ Dirección: %4 &Envía - + <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) - + Confirm send coins Confirmar el envio de monedas - - Are you sure you want to send %1? - Estas seguro que quieres enviar %1? + + The recipient address is not valid, please recheck. + La dirección de destinatarion no es valida, comprueba otra vez. - - and - y + + The amount exceeds your balance. + La cantidad sobrepasa tu saldo. - - The recepient address is not valid, please recheck. - La dirección de destinatarion no es valida, comprueba otra vez. + + 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. - - The amount to pay must be larger than 0. - La cantidad por pagar tiene que ser mayor 0. + + 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. - - Amount exceeds your balance - La cantidad sobrepasa tu saldo + + Error: Transaction creation failed. + Error: La transacción no se pudo crear. - - Total exceeds your balance when the %1 transaction fee is included - El total sobrepasa tu saldo cuando se incluyen %1 como tasa de envio + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. - - Duplicate address found, can only send to each address once in one send operation - Tienes una dirección duplicada, solo puedes enviar a direcciónes individuales de una sola vez + + Clear all + &Borra todos - - Error: Transaction creation failed - Error: La transacción no se pudo crear + + Are you sure you want to send %1? + Estas seguro que quieres enviar %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. - Error: La transacción fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. + + and + y + + + + &Add recipient... + &Agrega destinatario... + + + + The amount to pay must be larger than 0. + La cantidad por pagar tiene que ser mayor 0. SendCoinsEntry - - - Form - Envio - A&mount: Cantidad: + + + Form + Envio + Pay &To: @@ -1171,7 +1164,7 @@ Dirección: %4 The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - La dirección donde enviar el pago (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + La dirección donde enviar el pago (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1211,11 +1204,6 @@ Dirección: %4 Open for %1 blocks Abierto hasta %1 bloques - - - Open until %1 - Abierto hasta %1 - %1/offline? @@ -1226,11 +1214,6 @@ Dirección: %4 %1/unconfirmed %1/no confirmado - - - %1 confirmations - %1 confirmaciónes - <b>Status:</b> @@ -1267,17 +1250,12 @@ Dirección: %4 <b>From:</b> <b>De:</b> - - - unknown - desconocido - <b>To:</b> - <b>Para:</b> + @@ -1319,16 +1297,6 @@ Dirección: %4 <b>Transaction fee:</b> <b>Comisión transacción:</b> - - - <b>Net amount:</b> - <b>Cantidad total:</b> - - - - Message: - Mensaje: - Comment: @@ -1344,20 +1312,45 @@ Dirección: %4 Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Las monedas generadas deben esperar 120 bloques antes de ser gastadas. Cuando has generado este bloque se emitió a la red para ser agregado en la cadena de bloques. Si falla al incluirse en la cadena, cambiará a "no aceptado" y las monedas no se podrán gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque casi al mismo tiempo que el tuyo. - - - TransactionDescDialog - - Transaction details - Detalles de transacción + + Open until %1 + Abierto hasta %1 - - This pane shows a detailed description of the transaction - Esta ventana muestra información detallada sobre la transacción - - + + %1 confirmations + %1 confirmaciónes + + + + unknown + desconocido + + + + <b>Net amount:</b> + <b>Cantidad total:</b> + + + + Message: + Mensaje: + + + + 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 @@ -1381,7 +1374,7 @@ Dirección: %4 Cantidad - + Open for %n block(s) Abierto por %n bloque @@ -1389,27 +1382,27 @@ Dirección: %4 - + Open until %1 Abierto hasta %1 - + Offline (%1 confirmations) Fuera de linea (%1 confirmaciónes) - + Unconfirmed (%1 of %2 confirmations) No confirmado (%1 de %2 confirmaciónes) - + Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) - + Mined balance will be available in %n more blocks El balance minado estará disponible en %n bloque mas @@ -1417,119 +1410,73 @@ Dirección: %4 - + This block was not received by any other nodes and will probably not be accepted! Este bloque no ha sido recibido por otros nodos y probablemente no sea aceptado ! - + Generated but not accepted Generado pero no acceptado - + Received with Recibido con - + Received from Recibido de - + Sent to Enviado a - + Payment to yourself Pagar a usted mismo - + Mined Minado - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. Estado de transacción. Pasa el raton sobre este campo para ver el numero de confirmaciónes. - + Date and time that the transaction was received. Fecha y hora cuando se recibió la transaccion - + Type of transaction. Tipo de transacción. - + Destination address of transaction. Dirección de destino para la transacción - + Amount removed from or added to balance. Cantidad restada o añadida al balance TransactionView - - - - All - Todo - - - - Today - Hoy - - - - This week - Esta semana - - - - This month - Esta mes - - - - Last month - Mes pasado - - - - This year - Este año - - - - Range... - Rango... - - - - Received with - Recibido con - - - - Sent to - Enviado a - To yourself @@ -1565,86 +1512,132 @@ Dirección: %4 Copy label Copia etiqueta - - - Copy amount - Copiar Cantidad - Edit label Edita etiqueta - - Show details... - Muestra detalles... - - - + Export Transaction Data Exportar datos de transacción - + Comma separated file (*.csv) Archivos separados por coma (*.csv) - + Confirmed Confirmado - + Date Fecha - + + Amount + Cantidad + + + + Error exporting + Error exportando + + + + Show details... + Muestra detalles... + + + + Copy amount + Copiar Cantidad + + + Type Tipo - - Label - Etiqueta + + + All + Todo - - Address - Dirección + + Today + Hoy - - Amount - Cantidad + + This week + Esta semana - - ID - ID + + This month + Esta mes - - Error exporting - Error exportando + + Last month + Mes pasado - - Could not write to file %1. - No se pudo escribir en el archivo %1. + + This year + Este año - + + Range... + Rango... + + + + Received with + Recibido con + + + + Sent to + Enviado a + + + Range: Rango: - + to para + + + ID + ID + + + + Could not write to file %1. + No se pudo escribir en el archivo %1. + + + + Label + Etiqueta + + + + Address + Dirección + WalletModel @@ -1662,375 +1655,426 @@ Dirección: %4 Versión Bitcoin - - Usage: - Uso: + + Show splash screen on startup (default: 1) + - - Send command to -server or bitcoind - Envia comando a bitcoin lanzado con -server u bitcoind - + + Set database cache size in megabytes (default: 25) + - - List commands - Muestra comandos - + + Add a node to connect to and attempt to keep the connection open + - - Get help for a command - Recibir ayuda para un comando - + + Accept connections from outside (default: 1) + - - Options: - Opciones: - + + Set language, for example "de_DE" (default: system locale) + - - Specify configuration file (default: bitcoin.conf) - Especifica archivo de configuración (predeterminado: bitcoin.conf) - + + Find peers using DNS lookup (default: 1) + - - Specify pid file (default: bitcoind.pid) - Especifica archivo pid (predeterminado: bitcoin.pid) - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Generate coins - Genera monedas - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + - - Don't generate coins - No generar monedas - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + - - Start minimized - Arranca minimizado - + + Use Universal Plug and Play to map the listening port (default: 1) + Intenta usar UPnP para mapear el puerto de escucha (default: 1) - - Specify data directory - Especifica directorio para los datos - - - - - Specify connection timeout (in milliseconds) - Especifica tiempo de espera para conexion (en milisegundos) - + + Use Universal Plug and Play to map the listening port (default: 0) + Intenta usar UPnP para mapear el puerto de escucha (default: 0) - - Connect through socks4 proxy - Conecta mediante proxy socks4 - + + Fee per KB to add to transactions you send + Comisión por kB para adicionarla a las transacciones enviadas - - Allow DNS lookups for addnode and connect - Permite búsqueda DNS para addnode y connect - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Escuchar por conecciones en <puerto> (Por defecto: 8333 o red de prueba: 18333) + + How many blocks to check at startup (default: 2500, 0 = all) + - - Maintain at most <n> connections to peers (default: 125) - Mantener al menos <n> conecciones por cliente (por defecto: 125) + + How thorough the block verification is (0-6, default: 1) + - - Add a node to connect to - Agrega un nodo para conectarse + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. - - Connect only to the specified node - Conecta solo al nodo especificado - + + Loading addresses... + Cargando direcciónes... - - Don't accept connections from outside - No aceptar conexiones desde el exterior - + + Loading block index... + Cargando el index de bloques... - - Don't bootstrap list of peers using DNS + + Cannot downgrade wallet - - Threshold for disconnecting misbehaving peers (default: 100) - Umbral de desconección de clientes con mal comportamiento (por defecto: 100) + + Cannot initialize keypool + - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + Cannot write default address - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + + Rescanning... + Rescaneando... - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + + Invalid amount for -paytxfee=<amount> + Cantidad inválida para -paytxfee=<amount> + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. - - Don't attempt to use UPnP to map the listening port - No intentar usar UPnP para mapear el puerto de entrada + + beta + beta + + + + Get help for a command + Recibir ayuda para un comando - - Attempt to use UPnP to map the listening port - Intenta usar UPnP para mapear el puerto de escucha. + + Options: + Opciones: - - Fee per kB to add to transactions you send - Comisión por kB para adicionarla a las transacciones enviadas + + Specify configuration file (default: bitcoin.conf) + Especifica archivo de configuración (predeterminado: bitcoin.conf) + - - Accept command line and JSON-RPC commands - Aceptar comandos consola y JSON-RPC + + Specify pid file (default: bitcoind.pid) + Especifica archivo pid (predeterminado: bitcoin.pid) - - Run in the background as a daemon and accept commands - Correr como demonio y acepta comandos + + Generate coins + Genera monedas - - Use the test network - Usa la red de pruebas + + Don't generate coins + No generar monedas - - Output extra debugging information - Adjuntar informacion extra de depuracion + + Invalid -proxy address + Dirección -proxy invalida - - Prepend debug output with timestamp - Anteponer salida de depuracion con marca de tiempo + + Specify data directory + Especifica directorio para los datos + - - 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 connection timeout (in milliseconds) + Especifica tiempo de espera para conexion (en milisegundos) + - - Send trace/debug info to debugger - Enviar informacion de seguimiento al depurador + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Escuchar por conecciones en <puerto> (Por defecto: 8333 o red de prueba: 18333) - - Username for JSON-RPC connections - Usuario para las conexiones JSON-RPC + + Maintain at most <n> connections to peers (default: 125) + Mantener al menos <n> conecciones por cliente (por defecto: 125) + + + + Threshold for disconnecting misbehaving peers (default: 100) + Umbral de desconección de clientes con mal comportamiento (por defecto: 100) + + + + Accept command line and JSON-RPC commands + Aceptar comandos consola y JSON-RPC - + + Start minimized + Arranca minimizado + + + + Password for JSON-RPC connections Contraseña para las conexiones JSON-RPC - - Listen for JSON-RPC connections on <port> (default: 8332) - Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) + + Send commands to node running on <ip> (default: 127.0.0.1) + Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - - Allow JSON-RPC connections from specified IP address - Permite conexiones JSON-RPC desde la dirección IP especificada + + Use the test network + Usa la red de pruebas - - Send commands to node running on <ip> (default: 127.0.0.1) - Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) + + Error: CreateThread(StartNode) failed + Error: CreateThread(StartNode) fallido + + + + Connect through socks4 proxy + Conecta mediante proxy socks4 - - Set key pool size to <n> (default: 100) - Ajusta el numero de claves en reserva <n> (predeterminado: 100) + + Prepend debug output with timestamp + Anteponer salida de depuracion con marca de tiempo + + + + Allow DNS lookups for addnode and connect + Permite búsqueda DNS para addnode y connect + + + + + Send trace/debug info to console instead of debug.log file + Enviar informacion de seguimiento a la consola en vez del archivo debug.log + + + + Send trace/debug info to debugger + Enviar informacion de seguimiento al depurador + + + + Username for JSON-RPC connections + Usuario para las conexiones JSON-RPC - Rescan the block chain for missing wallet transactions - Rescanea la cadena de bloques para transacciones perdidas de la cartera + Listen for JSON-RPC connections on <port> (default: 8332) + Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) + + Connect only to the specified node + Conecta solo al nodo especificado - + Use OpenSSL (https) for JSON-RPC connections Usa OpenSSL (https) para las conexiones JSON-RPC - + Server certificate file (default: server.cert) Certificado del servidor (Predeterminado: server.cert) - + Server private key (default: server.pem) Clave privada del servidor (Predeterminado: server.pem) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. - - - - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Loading addresses... - Cargando direcciónes... - - - - This help message - Este mensaje de ayuda - + + Error loading wallet.dat: Wallet corrupted + Error cargando wallet.dat: Billetera corrupta - - Loading block index... - Cargando el index de bloques... + + Find peers using internet relay chat (default: 0) + Buscar pares usando 'internet relay chat (IRC)' (predeterminado: 0) - - Loading wallet... - Cargando cartera... + + Wallet needed to be rewritten: restart Bitcoin to complete + La billetera necesita ser reescrita: reinicie Bitcoin para completar - - Rescanning... - Rescaneando... + + Output extra debugging information + Adjuntar informacion extra de depuracion - + Error loading addr.dat Error cargando addr.dat - - Error loading blkindex.dat - Error cargando blkindex.dat + + Usage: + Uso: - - Error loading wallet.dat: Wallet corrupted - Error cargando wallet.dat: Billetera corrupta + + Loading wallet... + Cargando cartera... - + Done loading Carga completa - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Error cargando wallet.dat: Billetera necesita una vercion reciente de Bitcoin + + Send command to -server or bitcoind + Envia comando a bitcoin lanzado con -server u bitcoind + - - Invalid -proxy address - Dirección -proxy invalida + + List commands + Muestra comandos + - - Wallet needed to be rewritten: restart Bitcoin to complete - La billetera necesita ser reescrita: reinicie Bitcoin para completar + + 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. - - Invalid amount for -paytxfee=<amount> - Cantidad inválida para -paytxfee=<amount> + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Precaución: Por favor revise que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal configurado Bitcoin no funcionará correctamente. - - Error loading wallet.dat - Error cargando wallet.dat + + Run in the background as a daemon and accept commands + Correr como demonio y acepta comandos + - - 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. + + Allow JSON-RPC connections from specified IP address + Permite conexiones JSON-RPC desde la dirección IP especificada + - - Error: CreateThread(StartNode) failed - Error: CreateThread(StartNode) fallido + + Set key pool size to <n> (default: 100) + Ajusta el numero de claves en reserva <n> (predeterminado: 100) + - - Warning: Disk space is low - Atención: Poco espacio en el disco duro + + Rescan the block chain for missing wallet transactions + Rescanea la cadena de bloques para transacciones perdidas de la cartera + + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) + + + + + This help message + Este mensaje de ayuda + + + + + Error loading blkindex.dat + Error cargando blkindex.dat + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Error cargando wallet.dat: Billetera necesita una vercion reciente de Bitcoin - Unable to bind to port %d on this computer. Bitcoin is probably already running. - No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. + Error loading wallet.dat + Error cargando wallet.dat - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Precaución: Por favor revise que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal configurado Bitcoin no funcionará correctamente. + + Warning: Disk space is low + Atención: Poco espacio en el disco duro - - beta - beta + + Upgrade wallet to latest format + Actualizar billetera al formato actual diff --git a/src/qt/locale/bitcoin_et.ts b/src/qt/locale/bitcoin_et.ts index 72cdafd25f..2405fb051b 100644 --- a/src/qt/locale/bitcoin_et.ts +++ b/src/qt/locale/bitcoin_et.ts @@ -31,7 +31,7 @@ This product includes software developed by the OpenSSL Project for use in the O Address Book - + Aadressiraamat @@ -101,30 +101,30 @@ This product includes software developed by the OpenSSL Project for use in the O Edit - + Muuda Delete - + Kustuta - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting Viga eksportimisel - + Could not write to file %1. @@ -155,26 +155,25 @@ This product includes software developed by the OpenSSL Project for use in the O Dialoog - - - TextLabel - - - - + Enter passphrase - + New passphrase - + Repeat new passphrase + + + TextLabel + + 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>. @@ -237,12 +236,6 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Warning: The Caps Lock key is on. - - @@ -281,295 +274,301 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on. BitcoinGUI - + Bitcoin Wallet - - + + Synchronizing with network... - + Block chain synchronization in progress - + &Overview &Ülevaade - + Show general overview of wallet - + &Transactions &Tehingud - + Browse transaction history Sirvi tehingute ajalugu - + &Address Book &Aadressiraamat - + Edit the list of stored addresses and labels - + &Receive coins - + Show the list of addresses for receiving payments - + &Send coins - + Send coins to a bitcoin address - + Sign &message - + Prove you control an address - + E&xit - + Quit application - + &About %1 - + Show information about Bitcoin - + About &Qt - + Show information about Qt - + &Options... &Valikud... - + Modify configuration options for bitcoin - + Open &Bitcoin - + Show the Bitcoin window - + &Export... &Ekspordi... - + Export the data in the current tab to a file - + &Encrypt Wallet - + Encrypt or decrypt wallet - + &Backup Wallet - + Backup wallet to another location - + &Change Passphrase - + Change the passphrase used for wallet encryption - + &File &Fail - + &Settings &Seaded - + &Help &Abiinfo - + Tabs toolbar - + Actions toolbar - + [testnet] - + bitcoin-qt - + %n active connection(s) to Bitcoin network - + Downloaded %1 of %2 blocks of transaction history. - + 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? - + Sending... - + Sent transaction - + Incoming transaction - + Date: %1 Amount: %2 Type: %3 @@ -578,60 +577,60 @@ Address: %4 - + 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. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: - + Choose the default subdivision unit to show in the interface, and when sending coins - + &Display addresses in transaction list - + Whether to show Bitcoin addresses in the transaction list @@ -753,7 +752,7 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) @@ -778,7 +777,7 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. @@ -786,11 +785,6 @@ Address: %4 Pay transaction &fee - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - MessagePage @@ -912,11 +906,6 @@ Address: %4 Balance: - - - 123.456 BTC - - Number of transactions: @@ -932,11 +921,6 @@ Address: %4 Unconfirmed: - - - 0 BTC - - Wallet @@ -1025,13 +1009,13 @@ Address: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins @@ -1076,58 +1060,58 @@ Address: %4 - + <b>%1</b> to %2 (%3) - + Confirm send coins - + Are you sure you want to send %1? - + and - - The recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. - + The amount to pay must be larger than 0. - - Amount exceeds your balance + + The amount exceeds your balance. - - 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 in one 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. @@ -1372,101 +1356,101 @@ Address: %4 Kogus - + Open for %n block(s) - + Open until %1 - + Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) - + Mined balance will be available in %n more blocks - + 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. @@ -1570,67 +1554,67 @@ Address: %4 - + Export Transaction Data - + Comma separated file (*.csv) - + Confirmed - + Date Kuupäev - + Type Tüüp - + Label Silt - + Address Aadress - + Amount Kogus - + ID - + Error exporting Viga eksportimisel - + Could not write to file %1. - + Range: - + to @@ -1702,287 +1686,342 @@ Address: %4 - Specify data directory + Show splash screen on startup (default: 1) - Specify connection timeout (in milliseconds) + Specify data directory - Connect through socks4 proxy + Set database cache size in megabytes (default: 25) - Allow DNS lookups for addnode and connect + Specify connection timeout (in milliseconds) - Listen for connections on <port> (default: 8333 or testnet: 18333) + Connect through socks4 proxy - Maintain at most <n> connections to peers (default: 125) + Allow DNS lookups for addnode and connect - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) - Don't accept connections from outside + Add a node to connect to and attempt to keep the connection open - Don't bootstrap list of peers using DNS + Connect only to the specified node - 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) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Threshold for disconnecting misbehaving peers (default: 100) + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - Don't attempt to use UPnP to map the listening port + + Use Universal Plug and Play to map the listening port (default: 1) - - Attempt to use UPnP to map the listening port + + Use Universal Plug and Play to map the listening port (default: 0) - - Fee per kB to add to transactions you send + + Fee per KB to add to transactions you send - + Accept command line and JSON-RPC commands - + Run in the background as a daemon and accept commands - + Use the test network - + Output extra debugging information - + Prepend debug output with timestamp - + Send trace/debug info to console instead of debug.log file - + Send trace/debug info to debugger - + Username for JSON-RPC connections - + Password for JSON-RPC connections - + Listen for JSON-RPC connections on <port> (default: 8332) - + Allow JSON-RPC connections from specified IP address - + Send commands to node running on <ip> (default: 127.0.0.1) - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin 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) - + This help message - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + Loading addresses... - + Error loading addr.dat - + + Loading block index... + + + + Error loading blkindex.dat - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete - + Error loading wallet.dat - - Loading block index... + + Cannot downgrade wallet - - Loading wallet... + + Cannot initialize keypool - + + Cannot write default address + + + + Rescanning... - + Done loading - + Invalid -proxy address - + Invalid amount for -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + Error: CreateThread(StartNode) failed - - Warning: Disk space is low + + Warning: Disk space is low - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + beta diff --git a/src/qt/locale/bitcoin_eu_ES.ts b/src/qt/locale/bitcoin_eu_ES.ts index 61a5ce4c09..88848d5205 100644 --- a/src/qt/locale/bitcoin_eu_ES.ts +++ b/src/qt/locale/bitcoin_eu_ES.ts @@ -109,22 +109,22 @@ This product includes software developed by the OpenSSL Project for use in the O - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. @@ -133,13 +133,13 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - Label - + Address + Helbidea - Address - Helbidea + Label + @@ -155,26 +155,25 @@ This product includes software developed by the OpenSSL Project for use in the O - - - TextLabel - - - - + Enter passphrase - + New passphrase - + Repeat new passphrase + + + TextLabel + + 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>. @@ -237,12 +236,6 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Warning: The Caps Lock key is on. - - @@ -281,295 +274,306 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on. BitcoinGUI - + Bitcoin Wallet - - + + Synchronizing with network... - + Block chain synchronization in progress - + &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 - + Send coins to a bitcoin address - + Sign &message - + Prove you control an address - + E&xit - + Quit application - + &About %1 - + Show information about Bitcoin - + About &Qt - + Show information about Qt - + &Options... - + Modify configuration options for bitcoin - + Open &Bitcoin - + Show the Bitcoin window - + &Export... - + Export the data in the current tab to a file - + &Encrypt Wallet - + Encrypt or decrypt wallet - + &Backup Wallet - + Backup wallet to another location - + &Change Passphrase - + Change the passphrase used for wallet encryption - + &File - + &Settings - + &Help - + Tabs toolbar - + Actions toolbar - + [testnet] - + bitcoin-qt - + %n active connection(s) to Bitcoin network + - + Downloaded %1 of %2 blocks of transaction history. - + 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? - + Sending... - + Sent transaction - + Incoming transaction - + Date: %1 Amount: %2 Type: %3 @@ -578,60 +582,60 @@ Address: %4 - + 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. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: - + Choose the default subdivision unit to show in the interface, and when sending coins - + &Display addresses in transaction list - + Whether to show Bitcoin addresses in the transaction list @@ -753,7 +757,7 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) @@ -778,7 +782,7 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. @@ -786,11 +790,6 @@ Address: %4 Pay transaction &fee - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - MessagePage @@ -912,11 +911,6 @@ Address: %4 Balance: - - - 123.456 BTC - - Number of transactions: @@ -932,11 +926,6 @@ Address: %4 Unconfirmed: - - - 0 BTC - - Wallet @@ -1025,13 +1014,13 @@ Address: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins @@ -1076,58 +1065,58 @@ Address: %4 - + <b>%1</b> to %2 (%3) - + Confirm send coins - + Are you sure you want to send %1? - + and - - The recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. - + The amount to pay must be larger than 0. - - Amount exceeds your balance + + The amount exceeds your balance. - - 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 in one 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. @@ -1353,18 +1342,18 @@ Address: %4 TransactionTableModel - Date - + Address + Helbidea - Type + Date - Address - Helbidea + Type + @@ -1372,101 +1361,103 @@ Address: %4 - + Open for %n block(s) + - + Open until %1 - + Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) - + Mined balance will be available in %n more blocks + - + 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. @@ -1570,67 +1561,67 @@ Address: %4 - + Export Transaction Data - + Comma separated file (*.csv) - + Confirmed - + Date - + Type - + Label - + Address Helbidea - + Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to @@ -1702,287 +1693,342 @@ Address: %4 - Specify data directory + Show splash screen on startup (default: 1) - Specify connection timeout (in milliseconds) + Specify data directory - Connect through socks4 proxy + Set database cache size in megabytes (default: 25) - Allow DNS lookups for addnode and connect + Specify connection timeout (in milliseconds) - Listen for connections on <port> (default: 8333 or testnet: 18333) + Connect through socks4 proxy - Maintain at most <n> connections to peers (default: 125) + Allow DNS lookups for addnode and connect - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) - Don't accept connections from outside + Add a node to connect to and attempt to keep the connection open - Don't bootstrap list of peers using DNS + Connect only to the specified node - 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) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Threshold for disconnecting misbehaving peers (default: 100) + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - Don't attempt to use UPnP to map the listening port + + Use Universal Plug and Play to map the listening port (default: 1) - - Attempt to use UPnP to map the listening port + + Use Universal Plug and Play to map the listening port (default: 0) - - Fee per kB to add to transactions you send + + Fee per KB to add to transactions you send - + Accept command line and JSON-RPC commands - + Run in the background as a daemon and accept commands - + Use the test network - + Output extra debugging information - + Prepend debug output with timestamp - + Send trace/debug info to console instead of debug.log file - + Send trace/debug info to debugger - + Username for JSON-RPC connections - + Password for JSON-RPC connections - + Listen for JSON-RPC connections on <port> (default: 8332) - + Allow JSON-RPC connections from specified IP address - + Send commands to node running on <ip> (default: 127.0.0.1) - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin 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) - + This help message - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + Loading addresses... - + Error loading addr.dat - + + Loading block index... + + + + Error loading blkindex.dat - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete - + Error loading wallet.dat - - Loading block index... + + Cannot downgrade wallet - - Loading wallet... + + Cannot initialize keypool + + + + + Cannot write default address - + Rescanning... - + Done loading - + Invalid -proxy address - + Invalid amount for -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + Error: CreateThread(StartNode) failed - - Warning: Disk space is low + + Warning: Disk space is low - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + beta diff --git a/src/qt/locale/bitcoin_fa.ts b/src/qt/locale/bitcoin_fa.ts index 0f95796c1f..5246bb8c15 100644 --- a/src/qt/locale/bitcoin_fa.ts +++ b/src/qt/locale/bitcoin_fa.ts @@ -7,13 +7,12 @@ About Bitcoin - در مورد بیتکویین - + در مورد Bitcoin <b>Bitcoin</b> version - نسخه + نسخه Bitcoin @@ -38,13 +37,13 @@ This product includes software developed by the OpenSSL Project for use in the O Address Book - دفتر آدرس + فهرست آدرس These are your Bitcoin 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. - ااینجا آدرسهای بیتکویین هستند برای در یافت پر داختها. شما می توانید از مسیر های متفاوت پر داخت در بیابید بدین دلیل شما می توانید مسیر پر داخت کننده نگهداری کنید -درس روی پنجره اصلی نمایش می شود + ااینجا آدرسهای بیتکویین هستند برای در یافت پر داختها. شما می توانید از مسیر های متفاوت پر داخت در بیابید بدین دلیل شما می توانید مسیر پر داخت کننده نگهداری کنید +ts060x/bitcoin_fa.ts-درس روی پنجره اصلی نمایش می شود @@ -54,12 +53,12 @@ This product includes software developed by the OpenSSL Project for use in the O Create a new address - آدرس نو ایجاد کنید + آدرس جدید ایجاد کنید &New Address... - آدرس نو... + آدرس جدید @@ -69,18 +68,13 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - کپی در تخته رسم گیره دار + کپی در تخته رسم گیره دار Show &QR Code نمایش &کد QR - - - Sign a message to prove you own this address - یک پیام را امضا کنید تا ثابت کنید صاحب این نشانی هستید - &Sign Message @@ -89,50 +83,55 @@ This product includes software developed by the OpenSSL Project for use in the O Delete the currently selected address from the list. Only sending addresses can be deleted. - آدرس انتخاب شده از لیست حذف کنید. فقط آدرسهای ارسال شده می شود حفذ کرد + آدرس انتخاب شده از لیست حذف کنید. فقط آدرسهای ارسال شده می شود حذف کرد &Delete - آدرس نو + حذف + + + + Sign a message to prove you own this address + یک پیام را امضا کنید تا ثابت کنید صاحب این نشانی هستید Copy address - کپی آدرس + کپی آدرس Copy label - کپی بر چسب + کپی بر چسب Edit - ویرایش + ویرایش Delete - حذف + حذف - + Export Address Book Data آدرس انتخاب شده در سیستم تخته رسم گیره دار کپی کنید - + Comma separated file (*.csv) - Comma فایل جدا + Comma separated file (*.csv) - + Error exporting - خطای صادرت + خطای صدور - + Could not write to file %1. تا فایل %1 نمی شود نوشت @@ -142,17 +141,17 @@ This product includes software developed by the OpenSSL Project for use in the O Label - ر چسب + بر چسب Address - ایل جدا + آدرس (no label) - خطای صادرت + بدون برچسب @@ -160,29 +159,28 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - تگفتگو + تگفتگو - - - TextLabel - بر چسب - - - + Enter passphrase وارد عبارت عبور - + New passphrase عبارت عبور نو - + Repeat new passphrase تکرار عبارت عبور نو + + + TextLabel + + 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>. @@ -233,7 +231,7 @@ This product includes software developed by the OpenSSL Project for use in the O WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? - هشدار اگر شما روی پنجره رمز بگذارید و عبارت عبور فراموش کنید همه بیتکویینس شما گم می کنید. متماینید کن که می خواهید رمز بگذارید + هشدار: اگر wallet رمزگذاری شود و شما passphrase را گم کنید شما همه اطلاعات bitcoin را از دست خواهید داد. @@ -246,12 +244,6 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Biticon هم اکنون بسته می‌شود تا فرایند رمزگذاری را تمام کند. به خاطر داشته باشید که رمزگذاری کیف پولتان نمی‌تواند به طور کامل بیتیکون‌های شما را در برابر دزدیده شدن توسط بدافزارهایی که رایانه شما را آلوده می‌کنند، محافظت نماید. - - - - Warning: The Caps Lock key is on. - هشدار: کلید حروف بزرگ روشن است. - @@ -290,295 +282,276 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. - عبارت عبور با موفقیت تغییر شد + Wallet passphrase was successfully changed. + wallet passphrase با موفقیت تغییر یافت + + + + + Warning: The Caps Lock key is on. + هشدار: Caps lock key روشن است BitcoinGUI - - Bitcoin Wallet - پنجره بیتکویین - - - - + + Synchronizing with network... همگام سازی با شبکه ... - + Block chain synchronization in progress - همگام زنجیر بلوک در حال پیشرفت + همگام زنجیر بلوک در حال پیشرفت - + &Overview بررسی اجمالی - + Show general overview of wallet نمای کلی پنجره نشان بده - + &Transactions - &معاملات + &amp;معاملات - + 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 رسال سکه ها - - Send coins to a bitcoin address - ارسال سکه به آدرس بیتکویین - - - - Sign &message - امضای &پیام - - - - Prove you control an address - اثبات کنید که روی یک نشانی کنترل دارید + + Bitcoin Wallet + پنجره بیتکویین - + E&xit خروج - + Quit application خروج از برنامه - - &About %1 - &حدود%1 - - - + Show information about Bitcoin نمایش اطلاعات در مورد بیتکویین - + About &Qt درباره &Qt - + Show information about Qt نمایش اطلاعات درباره Qt - + &Options... تنظیمات... - - Modify configuration options for bitcoin - صلاح تنظیمات برای بیتکویین - - - - Open &Bitcoin - باز کردن &بیتکویین + + &Export... + &;صادرات - - Show the Bitcoin window - نمایش پنجره بیتکویین + + Send coins to a bitcoin address + ارسال سکه به آدرس بیتکویین - - &Export... - &;صادرات + + Encrypt or decrypt wallet + رمز بندی یا رمز گشایی پنجره - - Export the data in the current tab to a file - + + Prove you control an address + اثبات کنید که روی یک نشانی کنترل دارید - - &Encrypt Wallet - &رمز بندی پنجره + + Sign &message + امضای &پیام - - Encrypt or decrypt wallet - رمز بندی یا رمز گشایی پنجره + + &About %1 + &حدود%1 - - &Backup Wallet - + + Modify configuration options for bitcoin + انتخابهای پیکربندی را برای bitcoin اصلاح کن - Backup wallet to another location - + Open &Bitcoin + باز کردن &بیتکویین + Show the Bitcoin window + نمایش پنجره بیتکویین + + + + &Backup Wallet + پشتیبان گیری از wallet + + + &Change Passphrase - تغییر عبارت عبور + تغییر Passphrase - + Change the passphrase used for wallet encryption عبارت عبور رمز گشایی پنجره تغییر کنید - + &File - فایل + فایل - + &Settings تنظیمات - + &Help کمک - + Tabs toolbar نوار ابزار زبانه ها - + Actions toolbar نوار ابزار عملیت - + [testnet] آزمایش شبکه - - - bitcoin-qt - بیتکویین - - + %n active connection(s) to Bitcoin network در صد ارتباطات فعال بیتکویین با شبکه %n - - Downloaded %1 of %2 blocks of transaction history. - %1 %2 دانلود 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% بفرستید که شامل گره معامله شما می باشد و به شبکه های اینترنتی کمک خواهد کردو آیا شما می خواهید این پول پر داخت%1 - - Sending... - ارسال... + + &Encrypt Wallet + &رمز بندی پنجره - + Sent transaction معامله ارسال شده - + Incoming transaction معامله در یافت شده - + Date: %1 Amount: %2 Type: %3 @@ -590,62 +563,87 @@ Address: %4 آدرس %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> زمایش شبکهه - + Wallet is <b>encrypted</b> and currently <b>locked</b> زمایش شبکه - + + Export the data in the current tab to a file + داده ها نوارِ جاری را به فایل انتقال دهید + + + + Backup wallet to another location + نسخه پیشتیبان wallet را به محل دیگر انتقال دهید + + + + bitcoin-qt + بیتکویین + + + + Downloaded %1 of %2 blocks of transaction history. + %1 %2 دانلود 1% 2% بلوک معاملات + + + + Sending... + ارسال... + + + Backup Wallet - + نسخه پیشتیبان از wallet - + Wallet Data (*.dat) - + داده wallet (*.DAT) - + Backup Failed - + عملیات پیشتیبان گیری انجام نشد - + There was an error trying to save the wallet data to the new location. - + در زمان انتقال داده wallet به محل جدید خطا روی داد - - A fatal error occured. Bitcoin can no longer continue safely and will quit. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + خطا روی داده است. Bitcoin نمی تواند بدون مشکل ادامه دهد و باید بسته شود DisplayOptionsPage - + &Unit to show amounts in: &;واحد نمایش مبلغ - + Choose the default subdivision unit to show in the interface, and when sending coins زیر بخش پیش فرض در واسط انتخاب کنید و سکه ها ارسال کنید - + &Display addresses in transaction list &نمایش آدرس ها در لیست معامله - + Whether to show Bitcoin addresses in the transaction list - + تا آدرسهای bITCOIN در فهرست تراکنش نمایش داده شوند یا نشوند. @@ -765,8 +763,8 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - وسل به شبکه بیتکویین با توسط + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + وسل به شبکه بیتکویین با توسط @@ -788,18 +786,13 @@ Address: %4 Port of the proxy (e.g. 1234) ورت پروکسی - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - نرخ اختیاری تراکنش هر کیلوبایت که به شما کمک می‌کند اطمینان پیدا کنید که تراکنش‌ها به سرعت پردازش می‌شوند. بیشتر تراکنش‌ها ۱ کیلوبایت هستند. نرخ 0.01 پیشنهاد می‌شود. - Pay transaction &fee - دستمزد&پر داخت معامله + دستمزد&amp;پر داخت معامله - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. نرخ اختیاری تراکنش هر کیلوبایت که به شما کمک می‌کند اطمینان پیدا کنید که تراکنش‌ها به سرعت پردازش می‌شوند. بیشتر تراکنش‌ها ۱ کیلوبایت هستند. نرخ 0.01 پیشنهاد می‌شود. @@ -814,12 +807,12 @@ Address: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + شما می توانید پیامها را با آدرس خودتان امضا نمایید تا ثابت شود متعلق به شما هستند. مواظب باشید تا چیزی که بدان مطمئن نیستنید را امضا نکنید زیرا حملات فیشینگ در زمان ورود شما به سیستم فریبنده هستند. تنها مواردی را که حاوی اطلاعات دقیق و قابل قبول برای شما هستند را امضا کنید The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + آدرس برای امضا کردن پیام با (برای مثال 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -864,7 +857,7 @@ Address: %4 Copy the current signature to the system clipboard - + این امضا را در system clipboard کپی کن @@ -925,9 +918,9 @@ Address: %4 راز: - - 123.456 BTC - 123.456 بتس + + Wallet + wallet @@ -944,21 +937,6 @@ Address: %4 Unconfirmed: تایید نشده - - - 0 BTC - 0 - - - - Wallet - کیف پول - - - - <b>Recent transactions</b> - اخرین معاملات&lt - Your current balance @@ -974,6 +952,11 @@ Address: %4 Total number of transactions in wallet تعداد معاملات در صندوق + + + <b>Recent transactions</b> + اخرین معاملات&lt + QRCodeDialog @@ -997,16 +980,16 @@ Address: %4 Amount: مقدار: - - - BTC - BTC - Label: برچسب: + + + BTC + BTC + Message: @@ -1020,7 +1003,7 @@ Address: %4 Error encoding URI into QR Code. - + خطا در زمان رمزدار کردن URI در کد QR @@ -1030,20 +1013,20 @@ Address: %4 PNG Images (*.png) - + تصاویر با فرمت PNG (*.png) SendCoinsDialog - - - - - - - + + + + + + + Send Coins ارسال سکه ها @@ -1088,59 +1071,59 @@ Address: %4 &;ارسال - + <b>%1</b> to %2 (%3) (%3) تا <b>%1</b> درصد%2 - + Confirm send coins ارسال سکه ها تایید کنید - + Are you sure you want to send %1? %1شما متماینید که می خواهید 1% ارسال کنید ؟ - + and و - - The recepient address is not valid, please recheck. - آدرس در یافت دو باره چک کنید + + The recipient address is not valid, please recheck. + آدرس گیرنده نادرست است، لطفا دوباره بررسی کنید. - + The amount to pay must be larger than 0. مبلغ پر داخت باید از 0 بیشتر باشد - - Amount exceeds your balance - مبلغ از تزار بیشتر است + + The amount exceeds your balance. + میزان وجه از بالانس/تتمه حساب شما بیشتر است - - Total exceeds your balance when the %1 transaction fee is included - مجموعه از تزار شما بیشتر می باشد وقتیکه 1% معامله شامل می شود %1 + + The total exceeds your balance when the %1 transaction fee is included. + کل میزان وجه از بالانس/تتمه حساب شما بیشتر می شود وقتی %1 هزینه تراکنش نیز به ین میزان افزوده می شود - - Duplicate address found, can only send to each address once in one 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. + خطا: تراکنش تایید نشد. این پیام زمانی روی می دهد که مقداری از سکه های WALLET شما استفاده شده اند برای مثال اگر شما از WALLET.DAT استفاده کرده اید، ممکن است سکه ها استفاده شده باشند اما در اینجا نمایش داده نشوند @@ -1153,12 +1136,12 @@ Address: %4 A&mount: - A&مبلغ : + A&amp;مبلغ : Pay &To: - به&پر داخت : + به&amp;پر داخت : @@ -1384,101 +1367,101 @@ Address: %4 مبلغ - + Open for %n block(s) بلوک %n باز شده برای - + Open until %1 از شده تا 1%1 - + Offline (%1 confirmations) افلایین (%1) - + Unconfirmed (%1 of %2 confirmations) تایید نشده (%1/%2) - + Confirmed (%1 confirmations) تایید شده (%1) - + Mined balance will be available in %n more blocks و بیشتر باشند قابل قابول می شود %n تزار اصلی بعد از اینکه بلوکها - + 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. مبلغ از تزار شما خارج یا وارد شده @@ -1582,67 +1565,67 @@ Address: %4 جزییت نشان بده - + Export Transaction Data صادرات تاریخ معامله - + Comma separated file (*.csv) Comma فایل جدا - + Confirmed تایید شده - + Date تاریخ - + Type نوع - + Label ر چسب - + Address ایل جدا - + Amount مبلغ - + ID آی دی - + Error exporting خطای صادرت - + Could not write to file %1. تا فایل %1 نمی شود نوشت - + Range: >محدوده - + to به @@ -1714,288 +1697,343 @@ Address: %4 + Show splash screen on startup (default: 1) + نمایش صفحه splash در STARTUP (پیش فرض:1) + + + Specify data directory دایرکتور اطلاعاتی خاص - + Specify connection timeout (in milliseconds) (میلی ثانیه )فاصله ارتباط خاص - + Connect through socks4 proxy socks4 proxy ارتباط توسط - + Allow DNS lookups for addnode and connect اجازه متغیر دی ان اس برای اضافه گره یا ارتباط - + Listen for connections on <port> (default: 8333 or testnet: 18333) برای اتصالات به <port> (پیش‌فرض: 8333 یا تست‌نت: 18333) گوش کنید - - Maintain at most <n> connections to peers (default: 125) - حداکثر <n> اتصال با همکاران برقرار داشته باشید (پیش‌فرض: 125) + + Accept connections from outside (default: 1) + - - Add a node to connect to - ضافه گره برای ارتباط به + + Set language, for example "de_DE" (default: system locale) + زبان را تنظیم کنید برای مثال "de_DE" (پیش فرض: system locale) - - Connect only to the specified node - ارتباط فقط به گره خاص + + Find peers using DNS lookup (default: 1) + قرینه ها را برای جستجوی DNS بیاب (پیش فرض: 1 مگر در زمان اتصال) - - Don't accept connections from outside - قابل ارتباطات از بیرون + + Use Universal Plug and Play to map the listening port (default: 1) + از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:1 در زمان شنیدن) + + + + Use Universal Plug and Play to map the listening port (default: 0) + از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:0) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + رمز های قابل قبول( TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Warning: Disk space is low + هشدار: فضای دیسک محدود است! + + + + Maintain at most <n> connections to peers (default: 125) + حداکثر <n> اتصال با همکاران برقرار داشته باشید (پیش‌فرض: 125) - Don't bootstrap list of peers using DNS - فهرست همکاران را با استفاده از DNS خودراه‌اندازی نکنید + Connect only to the specified node + ارتباط فقط به گره خاص - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + رمز گشایی دایرکتور داده ها امکان پذیر نیست. شاید بیت کویین در حال فعال می باشد%s + + + 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: 10000) حداکثر بافر دریافتی در هر اتصال، 1000*<n> (پیش‌فرض: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) حداکثر بافر ارسالی در هر اتصال، 1000*<n> (پیش‌فرض: 10000) - - Don't attempt to use UPnP to map the listening port - برای ترسیم بندر شنیدنی UPnP استفاده - - - - Attempt to use UPnP to map the listening port - برای ترسیم بندر شنیدنی UPnP استفاده - - - - Fee per kB to add to transactions you send - نرخ هر کیلوبایت برای اضافه کردن به تراکنش‌هایی که می‌فرستید - - - + Accept command line and JSON-RPC commands JSON-RPC قابل فرمانها و - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + زمانی که بهترین بلاک تغییر کرد، دستور را اجرا کن (%s در cmd با block hash جایگزین شده است) + + + Run in the background as a daemon and accept commands اجرای در پس زمینه به عنوان شبح و قبول فرمان ها - + Use the test network استفاده شبکه آزمایش - + Output extra debugging information اطلاعات اشکال‌زدایی اضافی خروجی - + Prepend debug output with timestamp به خروجی اشکال‌زدایی برچسب زمان بزنید - + Send trace/debug info to console instead of debug.log file اطلاعات ردگیری/اشکال‌زدایی را به جای فایل لاگ اشکال‌زدایی به کنسول بفرستید - + 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: 8332) ( 8332پیش فرض :) &lt;poort&gt; JSON-RPC شنوایی برای ارتباطات - + Allow JSON-RPC connections from specified IP address از آدرس آی پی خاص JSON-RPC قبول ارتباطات - + Send commands to node running on <ip> (default: 127.0.0.1) (127.0.0.1پیش فرض: ) &lt;ip&gt; دادن فرمانها برای استفاده گره ها روی - + Set key pool size to <n> (default: 100) (100پیش فرض:)&lt;n&gt; گذاشتن اندازه کلید روی - + Rescan the block chain for missing wallet transactions اسکان مجدد زنجیر بلوکها برای گم والت معامله - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) ( نگاه کنید Bitcoin Wiki در SSLتنظیمات ):SSL گزینه های - + 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) - - - + This help message پیام کمکی - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - رمز گشایی دایرکتور داده ها امکان پذیر نیست. شاید بیت کویین در حال فعال می باشد%s - - - + Loading addresses... بار گیری آدرس ها - + + Add a node to connect to and attempt to keep the connection open + به اتصال یک گره اضافه کنید و اتصال را باز نگاه دارید + + + Error loading addr.dat خطا در بارگیری addr.dat - + Error loading blkindex.dat خطا در بارگیری blkindex.dat - + Error loading wallet.dat: Wallet corrupted خطا در بارگیری wallet.dat: کیف پول خراب شده است - + Error loading wallet.dat: Wallet requires newer version of Bitcoin خطا در بارگیری wallet.dat: کیف پول به ویرایش جدیدتری از Biticon نیاز دارد - + Wallet needed to be rewritten: restart Bitcoin to complete سلام - + Error loading wallet.dat خطا در بارگیری wallet.dat - + + Cannot downgrade wallet + امکان تنزل نسخه در wallet وجود ندارد + + + + Cannot initialize keypool + امکان مقداردهی اولیه برای key pool وجود ندارد + + + + Cannot write default address + آدرس پیش فرض قابل ذخیره نیست + + + + Done loading + بار گیری انجام شده است + + + + Fee per KB to add to transactions you send + پر داجت برای هر کیلو بیت برای اضافه به معامله ارسال + + + + Find peers using internet relay chat (default: 0) + یافتنت قرینه با استفاده از internet relay chat (پیش فرض:0) + + + + How many blocks to check at startup (default: 2500, 0 = all) + چند بلاک برای بررسی در زمان startup (پیش فرض:2500 , 0=همه) + + + + How thorough the block verification is (0-6, default: 1) + چقد کامل بلوک تصدیق است (0-6, پیش فرض:1) + + + Loading block index... بار گیری شاخص بلوک - + Loading wallet... بار گیری والت - + Rescanning... اسکان مجدد - - Done loading - بار گیری انجام شده است + + Set database cache size in megabytes (default: 25) + سایز کَش بانک داده را بر حسب مگابایت تنظیم کنید (پیش فرض:25) - + + Upgrade wallet to latest format + wallet را به جدیدترین فرمت روزآمد کنید + + + Invalid -proxy address آدرس پروکسی معتبر نیست - + Invalid amount for -paytxfee=<amount> paytxfee=&lt;بالغ &gt;مبلغ نا معتبر - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. خطا : پر داخت خیلی بالا است. این پر داخت معامله است که شما هنگام ارسال معامله باید پر داخت کنید - + Error: CreateThread(StartNode) failed خطا :ایجاد موضوع(گره) اشتباه بود - - Warning: Disk space is low - هشدار: جای دیسک پایین است - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. وسل بندر به کامپیوتر امکان پذیر نیست. شاید بیتکویید در حال فعال است%d - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. هشدار: تاریخ و ساعت کامپیوتر شما چک کنید. اگر ساعت درست نیست بیتکویین مناسب نخواهد کار کرد - + beta بتا diff --git a/src/qt/locale/bitcoin_fa_IR.ts b/src/qt/locale/bitcoin_fa_IR.ts index d8acb31ec0..9a678a4818 100644 --- a/src/qt/locale/bitcoin_fa_IR.ts +++ b/src/qt/locale/bitcoin_fa_IR.ts @@ -31,7 +31,7 @@ This product includes software developed by the OpenSSL Project for use in the O Address Book - + دفترچه آدرس @@ -41,32 +41,32 @@ This product includes software developed by the OpenSSL Project for use in the O Double-click to edit address or label - + برای ویرایش آدرس/برچسب دوبار کلیک نمایید Create a new address - + یک آدرس جدید بسازید &New Address... - - - Copy the currently selected address to the system clipboard - - &Copy to Clipboard + + + Copy the currently selected address to the system clipboard + آدرس انتخاب شده را در کلیپ بوردِ سیستم کپی کنید + Show &QR Code - + نشان و کد QR @@ -76,27 +76,27 @@ This product includes software developed by the OpenSSL Project for use in the O &Sign Message - + و امضای پیام Delete the currently selected address from the list. Only sending addresses can be deleted. - + آدرس انتخاب شده را از لیست حذف کنید. تنها آدرس ارسال شده می تواند حذف شود &Delete - + و حذف Copy address - + آدرس را کپی کنید Copy label - + برچسب را کپی کنید @@ -109,24 +109,24 @@ This product includes software developed by the OpenSSL Project for use in the O - + Export Address Book Data - + انتقال اطلاعات دفترچه آدرس - + Comma separated file (*.csv) - + سی.اس.وی. (فایل جداگانه دستوری) - + Error exporting - + صدور پیام خطا - + Could not write to file %1. - + قابل کپی در فایل نیست %1 @@ -134,17 +134,17 @@ This product includes software developed by the OpenSSL Project for use in the O Label - + برچسب Address - + آدرس (no label) - + (برچسب ندارد) @@ -155,70 +155,86 @@ This product includes software developed by the OpenSSL Project for use in the O - - - TextLabel - - - - + Enter passphrase - + رمز/پَس فرِیز را وارد کنید - + New passphrase - + رمز/پَس فرِیز جدید را وارد کنید - + Repeat new passphrase + رمز/پَس فرِیز را دوباره وارد کنید + + + + TextLabel + + + Wallet unlock failed + قفل wallet باز نشد + + + + + + The passphrase entered for the wallet decryption was incorrect. + رمزهای/پَس فرِیزهایِ وارد شده wallet برای کشف رمز اشتباه است. + + + + Wallet decryption failed + کشف رمز wallet انجام نشد + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + رمز/پَس فرِیز جدید را در wallet وارد کنید. برای انتخاب رمز/پَس فرِیز از 10 کاراکتر تصادفی یا بیشتر و یا هشت کلمه یا بیشتر استفاده کنید. Encrypt wallet - + wallet را رمزگذاری کنید This operation needs your wallet passphrase to unlock the wallet. - + برای انجام این عملکرد به رمز/پَس فرِیزِwallet نیاز است تا آن را از حالت قفل درآورد. Unlock wallet - + باز کردن قفل wallet This operation needs your wallet passphrase to decrypt the wallet. - + برای کشف رمز wallet، به رمز/پَس فرِیزِwallet نیاز است. Decrypt wallet - + کشف رمز wallet Change passphrase - + تغییر رمز/پَس فرِیز Enter the old and new passphrase to the wallet. - + رمز/پَس فرِیزِ قدیم و جدید را در wallet وارد کنید Confirm wallet encryption - + رمزگذاری wallet را تایید کنید @@ -230,18 +246,12 @@ Are you sure you wish to encrypt your wallet? Wallet encrypted - + تایید رمزگذاری Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - - Warning: The Caps Lock key is on. - + Bitcoin برای اتمام فرایند رمزگذاری بسته خواهد شد. به خاطر داشته باشید که رمزگذاری WALLET شما، کامپیوتر شما را از آلودگی به بدافزارها مصون نمی دارد. @@ -249,389 +259,386 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed - + رمزگذاری تایید نشد Wallet encryption failed due to an internal error. Your wallet was not encrypted. - + رمزگذاری به علت خطای داخلی تایید نشد. wallet شما رمزگذاری نشد The supplied passphrases do not match. - - - - - Wallet unlock failed - - - - - - - The passphrase entered for the wallet decryption was incorrect. - + رمزهای/پَس فرِیزهایِ وارد شده با هم تطابق ندارند - - Wallet decryption failed + + Wallet passphrase was successfully changed. - - Wallet passphrase was succesfully changed. + + + Warning: The Caps Lock key is on. BitcoinGUI + + + %n active connection(s) to Bitcoin network + + %n ارتباط فعال به شبکه Bitcoin +%n ارتباط فعال به شبکه Bitcoin + + + + + %n second(s) ago + + %n ثانیه قبل +%n ثانیه قبل + + + + + %n minute(s) ago + + %n دقیقه قبل +%n دقیقه قبل + + + + + %n hour(s) ago + + %n ساعت قبل +%n ساعت قبل + + + + + %n day(s) ago + + %n روز قبل +%n روز قبل + + + - - Bitcoin Wallet - + + Edit the list of stored addresses and labels + فهرست آدرسها و برچسبهای ذخیره شده را ویرایش کن - - - Synchronizing with network... + + Bitcoin Wallet - + Block chain synchronization in progress - + &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 - + و ارسال سکه ها - - Send coins to a bitcoin address - + + E&xit + خروج - - Sign &message - + + Quit application + از "درخواست نامه"/ application خارج شو - - Prove you control an address - + + Show information about Bitcoin + اطلاعات در مورد Bitcoin را نشان بده - - E&xit - + + About &Qt + درباره و QT - - Quit application - + + Show information about Qt + نمایش اطلاعات درباره QT - - &About %1 - + + &Options... + و انتخابها - - Show information about Bitcoin - + + &Export... + و صدور - - About &Qt - + + Export the data in the current tab to a file + صدور داده نوار جاری به یک فایل - - Show information about Qt - + + Encrypt or decrypt wallet + رمزگذاری با رمزگشایی از wallet - - &Options... - + + Backup wallet to another location + گرفتن نسخه پیشتیبان در آدرسی دیگر - - Modify configuration options for bitcoin - + + Change the passphrase used for wallet encryption + رمز مربوط به رمزگذاریِ wallet را تغییر دهید - - Open &Bitcoin - + + &File + و فایل - - Show the Bitcoin window - + + &Settings + و تنظیمات - - &Export... - + + &Help + و راهنما - - Export the data in the current tab to a file - + + Tabs toolbar + نوار ابزار - - &Encrypt Wallet - + + Actions toolbar + نوار عملیات - - Encrypt or decrypt wallet - + + [testnet] + [testnet] - - &Backup Wallet + + + Synchronizing with network... + به روز رسانی با شبکه... + + + + Send coins to a bitcoin address - - Backup wallet to another location + + Sign &message - - &Change Passphrase + + Prove you control an address - - Change the passphrase used for wallet encryption + + &About %1 - - &File + + Modify configuration options for bitcoin - - &Settings + + Open &Bitcoin - - &Help + + Show the Bitcoin window - - Tabs toolbar + + &Encrypt Wallet - - Actions toolbar + + &Backup Wallet - - [testnet] + + &Change Passphrase - + bitcoin-qt - - - %n active connection(s) to Bitcoin network - - - - - + Downloaded %1 of %2 blocks of transaction history. - + Downloaded %1 blocks of transaction history. - - - - - %n second(s) ago - - - - - - - %n minute(s) ago - - - - - - - %n hour(s) ago - - - - - - - %n day(s) ago - - - + دانلود %1 از بلاکها در تاریخچه تراکنش - + 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 آن را ارسال کنید که این هزینه به گره هایی که تراکنش را برایتان انجام می دهد تعلق می گیرد و به حمایت از شبکه کمک می کند. آیا شما می خواهید این هزینه را پرداخت کنید؟ - + Sending... - + در حال ارسال... - + 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 رمزگذاری شد و در حال حاضر از حالت قفل در آمده است - + Wallet is <b>encrypted</b> and currently <b>locked</b> - + wallet رمزگذاری شد و در حال حاضر قفل است - + Backup Wallet - + گرفتن نسخه پیشتیبان از Wallet - + Wallet Data (*.dat) - + داده های Wallet +(*.dat) - + Backup Failed - + عملیات گرفتن نسخه پیشتیبان انجام نشد - + There was an error trying to save the wallet data to the new location. - + در هنگام ذخیره داده های wallet به نسخه جدید خطایی ایجاد شده است - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: - + Choose the default subdivision unit to show in the interface, and when sending coins - + &Display addresses in transaction list &نمایش آدرس ها در لیست معامله - + Whether to show Bitcoin addresses in the transaction list @@ -641,52 +648,52 @@ Address: %4 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 قبلا به فهرست آدرسها اضافه شده بوده است. @@ -696,12 +703,12 @@ Address: %4 Could not unlock wallet. - + عدم توانیی برای قفل گشایی wallet New key generation failed. - + عدم توانیی در ایجاد کلید جدید @@ -753,7 +760,7 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) @@ -778,7 +785,7 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. @@ -786,11 +793,6 @@ Address: %4 Pay transaction &fee - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - MessagePage @@ -817,17 +819,17 @@ Address: %4 Alt+A - + Alt و A Paste address from clipboard - + آدرس را بر کلیپ بورد کپی کنید Alt+P - + Alt و P @@ -847,7 +849,7 @@ Address: %4 &Sign Message - + و امضای پیام @@ -897,7 +899,7 @@ Address: %4 Options - + انتخاب/آپشن @@ -905,105 +907,95 @@ Address: %4 Form - + فرم - - Balance: - + + Your current balance + مانده حساب جاری - - 123.456 BTC - + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + تعداد تراکنشهایی که نیاز به تایید دارند و هنوز در مانده حساب جاری شما به حساب نیامده اند - - Number of transactions: - + + Wallet + کیف پول - - 0 - + + Balance: + مانده حساب: + + + + Total number of transactions in wallet + تعداد کل تراکنشهای wallet شما Unconfirmed: - + تایید نشده - - 0 BTC - + + Number of transactions: + تعداد تراکنشها - - Wallet - کیف پول + + 0 + <b>Recent transactions</b> - - - - - Your current balance - - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - - - - - Total number of transactions in wallet - + تراکنشهای اخیر QRCodeDialog - - Dialog - + + Request Payment + درخواست وجه - - QR Code - + + Label: + برچسب: - - Request Payment - + + Message: + پیام: Amount: - + میزان وجه: - - BTC + + Dialog - - Label: + + QR Code - - Message: + + BTC &Save As... - + و ذخیره با عنوانِ... @@ -1012,12 +1004,13 @@ Address: %4 - Save Image... - + PNG Images (*.png) + تصاویر با فرمت PNG +(*.png) - PNG Images (*.png) + Save Image... @@ -1025,20 +1018,20 @@ Address: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins - + سکه های ارسالی Send to multiple recipients at once - + ارسال همزمان به گیرنده های متعدد @@ -1048,7 +1041,7 @@ Address: %4 Remove all transaction fields - + تمامی فیلدهای تراکنش حذف شوند @@ -1058,76 +1051,76 @@ Address: %4 Balance: - + مانده حساب: 123.456 BTC - + 123.456 BTC Confirm the send action - + تایید عملیات ارسال &Send - + و ارسال - + <b>%1</b> to %2 (%3) - + %1 به %2 (%3) - + Confirm send coins - + تایید ارسال سکه ها - + Are you sure you want to send %1? - + شما مطمئن هستید که می خواهید %1 را ارسال کنید؟ - + and - + و - - The recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. - + The amount to pay must be larger than 0. - + میزان پرداخت باید بیشتر از 0 باشد - - Amount exceeds your balance + + The amount exceeds your balance. - - 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 in one 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. @@ -1136,63 +1129,63 @@ Address: %4 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + آدرس برای ارسال وجه به (برای مثال 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Choose address from address book - + آدرس از فهرست آدرس انتخاب کنید Alt+A - + Alt و A Paste address from clipboard - + آدرس را بر کلیپ بورد کپی کنید Alt+P - + Alt و P Remove this recipient - + این گیرنده را حذف کن Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + یک آدرس bitcoin وارد کنید (مثال 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1205,7 +1198,7 @@ Address: %4 Open until %1 - + باز کن تا %1 @@ -1215,12 +1208,12 @@ Address: %4 %1/unconfirmed - + %1 غیرقابل تایید %1 confirmations - + %1 تاییدها @@ -1230,7 +1223,7 @@ Address: %4 , has not been successfully broadcast yet - + تا به حال با موفقیت انتشار نیافته است @@ -1261,7 +1254,7 @@ Address: %4 unknown - + ناشناس @@ -1318,7 +1311,7 @@ Address: %4 Message: - + پیام: @@ -1341,134 +1334,136 @@ Address: %4 Transaction details - + جزئیات تراکنش This pane shows a detailed description of the transaction - + این بخش جزئیات تراکنش را نشان می دهد TransactionTableModel + + + Open for %n block(s) + + تراکنشهای چندتایی +یک:برای %n را باز کن +دیگر: برای %n را باز کن + + Date - + تاریخ Type - + نوع Address - + آدرس Amount - - - - - Open for %n block(s) - - - + میزان وجه - + Open until %1 - + باز کن تا %1 - + Offline (%1 confirmations) - + برون خطی (%1 تاییدها) - + Unconfirmed (%1 of %2 confirmations) - - - - - Confirmed (%1 confirmations) - + تایید نشده (%1 از %2 تاییدها) - + Mined balance will be available in %n more blocks - + + Confirmed (%1 confirmations) + تایید شده (%1 تاییدها) + + + This block was not received by any other nodes and will probably not be accepted! - + این block توسط گره های دیگری دریافت نشده است و ممکن است قبول نشود - + 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. - + میزان وجه کم شده یا اضافه شده به حساب @@ -1477,92 +1472,92 @@ Address: %4 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 - + میزان وجه کپی شود Edit label - + برچسب را ویرایش کنید @@ -1570,69 +1565,69 @@ Address: %4 - + 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. - + قابل کپی به فایل نیست %1. - + Range: - + دامنه: - + to - + به @@ -1640,7 +1635,7 @@ Address: %4 Sending... - + در حال ارسال... @@ -1648,341 +1643,396 @@ Address: %4 Bitcoin version - + نسخه bitcoin - - Usage: - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + ciphers قابل قبول (پیش فرض: default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Send command to -server or bitcoind - + + Don't generate coins + سکه ها را تولید نکن - - List commands - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + تعداد ثانیه ها برای اتصال دوباره قرینه های اشتباه (پیش فرض:86400) + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + قفل دایرکتوری داده ها %s قابل دریافت نیست. احتمال این وجود دارد که Bitcoin در حال اجرا باشد + + + + Generate coins + سکه ها را تولید کن Get help for a command - + درخواست کمک برای یک دستور - - Options: - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + دستور را وقتی بهترین بلاک تغییر کرد اجرا کن (%s در دستور توسط block hash جایگزین شده است) - - Specify configuration file (default: bitcoin.conf) - + + List commands + فهرست دستورها - - Specify pid file (default: bitcoind.pid) - + + Listen for connections on <port> (default: 8333 or testnet: 18333) + ارتباطات را در <PORT> بشنوید (پیش فرض: 8333 or testnet: 18333) - - Generate coins - + + Maintain at most <n> connections to peers (default: 125) + نگهداری <N> ارتباطات برای قرینه سازی (پیش فرض:125) - - Don't generate coins - + + Options: + انتخابها: - - Start minimized - + + Accept command line and JSON-RPC commands + command line و JSON-RPC commands را قبول کنید - - Specify data directory - + + Add a node to connect to and attempt to keep the connection open + یک گره برای اتصال اضافه کنید و تلاش کنید تا اتصال را باز نگاه دارید - - Specify connection timeout (in milliseconds) - + + Send command to -server or bitcoind + ارسال دستور به سرور یا bitcoined + + + + Allow JSON-RPC connections from specified IP address + ارتباطاتِ JSON-RPC را از آدرس آی.پی. مشخصی برقرار کنید. - Connect through socks4 proxy - + Set database cache size in megabytes (default: 25) + حافظه بانک داده را به مگابایت تنظیم کنید (پیش فرض: 25) - - Allow DNS lookups for addnode and connect - + + Specify configuration file (default: bitcoin.conf) + فایل پیکربندیِ را مشخص کنید (پیش فرض: bitcoin.conf) - - Listen for connections on <port> (default: 8333 or testnet: 18333) - + + Specify connection timeout (in milliseconds) + تعیین مدت زمان وقفه (time out) به هزارم ثانیه - - Maintain at most <n> connections to peers (default: 125) - + + Specify data directory + دایرکتوری داده را مشخص کن - - Add a node to connect to - + + Specify pid file (default: bitcoind.pid) + فایل pid را مشخص کنید (پیش فرض: bitcoind.pid) - - Connect only to the specified node - + + Error loading blkindex.dat + خطا در هنگام لود شدن فایل blkindex.dat - - Don't accept connections from outside - + + Error loading wallet.dat + خطا در هنگام لود شدن wallet.dat - - Don't bootstrap list of peers using DNS - + + Cannot downgrade wallet + قابلیت برگشت به نسخه قبلی برای wallet امکان پذیر نیست - - Threshold for disconnecting misbehaving peers (default: 100) - + + Error loading wallet.dat: Wallet corrupted + خطا در هنگام لود شدن wallet.dat: Wallet corrupted - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + + Cannot initialize keypool + initialize keypool امکان پذیر نیست - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + خطا در هنگام لود شدن wallet.dat. به نسخه جدید Bitocin برای wallet نیاز است. - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + + Usage: + میزان استفاده: - - Don't attempt to use UPnP to map the listening port - + + Cannot write default address + آدرس پیش فرض قابل ذخیره نیست - - Attempt to use UPnP to map the listening port - + + How many blocks to check at startup (default: 2500, 0 = all) + چند بلاک در startup بررسی شوند (پیش فرض: 2500 و 0= همه) - - Fee per kB to add to transactions you send - + + How thorough the block verification is (0-6, default: 1) + چگونگی تایید تمامی بلاکها (پیش فرض: 1 و 0-6) - - Accept command line and JSON-RPC commands - + + Done loading + اتمام لود شدن - - Run in the background as a daemon and accept commands - + + Listen for JSON-RPC connections on <port> (default: 8332) + ارتباطاتِ JSON-RPC را در <port> گوش کنید (پیش فرض:8332) - - Use the test network - + + Loading block index... + لود شدن نمایه بلاکها.. - Output extra debugging information - + Fee per KB to add to transactions you send + هزینه بر اساس کیلو بایت برای اضافه شدن به تراکنشی که ارسال کرده اید - - Prepend debug output with timestamp - + + Find peers using internet relay chat (default: 0) + یافتن همتا/دوست با استفاده از internet relay chat (پیش فرض:0) + + + + Loading addresses... + لود شدن آدرسها.. - Send trace/debug info to console instead of debug.log file - + Run in the background as a daemon and accept commands + به عنوان daemon بک گراند را اجرا کنید و دستورات را قبول نمایید - - Send trace/debug info to debugger - + + Password for JSON-RPC connections + رمز برای ارتباطاتِ JSON-RPC - - Username for JSON-RPC connections - + + Rescan the block chain for missing wallet transactions + زنجیره بلاک را برای تراکنش جا افتاده در WALLET دوباره اسکن کنید - - Password for JSON-RPC connections - + + Send commands to node running on <ip> (default: 127.0.0.1) + دستورات را به گره اجرا شده در<ip> ارسال کنید (پیش فرض:127.0.0.1) - - Listen for JSON-RPC connections on <port> (default: 8332) - + + Loading wallet... + wallet در حال لود شدن است... - - Allow JSON-RPC connections from specified IP address - + + Threshold for disconnecting misbehaving peers (default: 100) + آستانه قطع برای قرینه سازی اشتباه (پیش فرض:100) - - Send commands to node running on <ip> (default: 127.0.0.1) - + + Server certificate file (default: server.cert) + فایل certificate سرور (پیش فرض server.cert) - + + Server private key (default: server.pem) + رمز اختصاصی سرور (پیش فرض: server.pem) + + + Set key pool size to <n> (default: 100) - + حجم key pool را به اندازه <n> تنظیم کنید (پیش فرض:100) - - Rescan the block chain for missing wallet transactions - + + Rescanning... + اسکنِ دوباره... - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + This help message + این پیام راهنما + + + + Upgrade wallet to latest format + wallet را به جدیدترین نسخه روزآمد کنید - + Use OpenSSL (https) for JSON-RPC connections - + برای ارتباطاتِ JSON-RPC از OpenSSL (https) استفاده کنید - - Server certificate file (default: server.cert) - + + Use the test network + از تستِ شبکه استفاده نمایید - - Server private key (default: server.pem) + + Start minimized - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Show splash screen on startup (default: 1) - - This help message + + Connect through socks4 proxy - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + + Allow DNS lookups for addnode and connect - - Loading addresses... + + Connect only to the specified node - - Error loading addr.dat + + Accept connections from outside (default: 1) - - Error loading blkindex.dat + + Set language, for example "de_DE" (default: system locale) - - Error loading wallet.dat: Wallet corrupted + + Find peers using DNS lookup (default: 1) - - Error loading wallet.dat: Wallet requires newer version of Bitcoin + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - - Wallet needed to be rewritten: restart Bitcoin to complete + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - Error loading wallet.dat + + Use Universal Plug and Play to map the listening port (default: 1) - - Loading block index... + + Use Universal Plug and Play to map the listening port (default: 0) - - Loading wallet... + + Output extra debugging information - - Rescanning... - + + Prepend debug output with timestamp + برونداد اشکال زدایی با timestamp - - Done loading + + 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 + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Error loading addr.dat + + + + + Wallet needed to be rewritten: restart Bitcoin to complete + wallet نیاز به بازنویسی دارد. Bitcoin را برای تکمیل عملیات دوباره اجرا کنید. + + + Invalid -proxy address - + Invalid amount for -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + Error: CreateThread(StartNode) failed - - Warning: Disk space is low + + Warning: Disk space is low - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + beta diff --git a/src/qt/locale/bitcoin_fi.ts b/src/qt/locale/bitcoin_fi.ts index a74b0a1501..7e9c47ca74 100644 --- a/src/qt/locale/bitcoin_fi.ts +++ b/src/qt/locale/bitcoin_fi.ts @@ -77,7 +77,7 @@ This product includes software developed by the OpenSSL Project for use in the O Sign a message to prove you own this address - Allekirjoita viesti millä todistat omistavasi tämän osoitteen + Allekirjoita viesti millä todistat omistavasi tämän osoitteen @@ -102,12 +102,12 @@ This product includes software developed by the OpenSSL Project for use in the O Copy label - Kopioi nimi + Kopioi nimi Edit - Muokkaa + Muokkaa @@ -115,22 +115,22 @@ This product includes software developed by the OpenSSL Project for use in the O Poista - + Export Address Book Data Vie osoitekirja - + Comma separated file (*.csv) Comma separated file (*.csv) - + Error exporting Virhe viedessä osoitekirjaa - + Could not write to file %1. Ei voida kirjoittaa tiedostoon %1. @@ -158,29 +158,28 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - Dialogi + Dialogi - - - TextLabel - TekstiMerkki - - - + Enter passphrase Anna tunnuslause - + New passphrase Uusi tunnuslause - + Repeat new passphrase Toista uusi tunnuslause + + + TextLabel + + 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>. @@ -226,13 +225,6 @@ This product includes software developed by the OpenSSL Project for use in the O Confirm wallet encryption Hyväksy lompakon salaus - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - VAROITUS: Mikäli salaat lompakkosi ja unohdat tunnuslauseen, <b>MENETÄT LOMPAKON KOKO SISÄLLÖN</b>! -Tahdotko varmasti salata lompakon? - @@ -242,7 +234,12 @@ Tahdotko varmasti salata lompakon? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin sulkeutuu lopettaessaan salausprosessin. Muista että salattu lompakko ei täysin suojaa sitä haittaohjelmien aiheuttamilta varkauksilta. + Bitcoin sulkeutuu lopettaakseen salausprosessin. Muista, että salattu lompakko ei täysin suojaa sitä haittaohjelmien aiheuttamilta varkauksilta. + + + + Wallet passphrase was successfully changed. + Lompakon tunnuslause on vaihdettu. @@ -250,6 +247,13 @@ Tahdotko varmasti salata lompakon? Warning: The Caps Lock key is on. Varoitus: Caps Lock on päällä. + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + VAROITUS: Mikäli salaat lompakkosi ja unohdat tunnuslauseen, <b>MENETÄT LOMPAKON KOKO SISÄLLÖN</b>! +Tahdotko varmasti salata lompakon? + @@ -286,217 +290,142 @@ Tahdotko varmasti salata lompakon? Wallet decryption failed Lompakon salauksen purku epäonnistui. - - - Wallet passphrase was succesfully changed. - Lompakon tunnuslause on vaihdettu. - BitcoinGUI - - Bitcoin Wallet - Bitcoin-lompakko - - - - + + Synchronizing with network... Synkronoidaan verkon kanssa... - - Block chain synchronization in progress - Block chainin synkronointi kesken - - - + &Overview &Yleisnäkymä - + Show general overview of wallet Näyttää kokonaiskatsauksen lompakon tilanteesta - + &Transactions &Rahansiirrot - + Browse transaction history Selaa rahansiirtohistoriaa - + &Address Book &Osoitekirja - + Edit the list of stored addresses and labels Muokkaa tallennettujen nimien ja osoitteiden listaa - + &Receive coins - &Bitcoinien vastaanottaminen + &Vastaanota Bitcoineja - + Show the list of addresses for receiving payments Näytä Bitcoinien vastaanottamiseen käytetyt osoitteet - + &Send coins &Lähetä Bitcoineja - - Send coins to a bitcoin address - Lähetä Bitcoin-osoitteeseen - - - - Sign &message - Allekirjoita &viesti - - - - Prove you control an address - Todista että hallitset osoitetta - - - + E&xit L&opeta - + Quit application Lopeta ohjelma - - &About %1 - &Tietoja %1 + + Prove you control an address + Todista että hallitset osoitetta - + Show information about Bitcoin Näytä tietoa Bitcoin-projektista - + About &Qt Tietoja &Qt - + Show information about Qt Näytä tietoja QT:ta - + &Options... &Asetukset... - - Modify configuration options for bitcoin - Muokkaa asetuksia - - - - Open &Bitcoin - Avaa &Bitcoin - - - - Show the Bitcoin window - Näytä Bitcoin-ikkuna - - - - &Export... - &Vie... - - - + Export the data in the current tab to a file - Vie aukiolevan välilehden tiedot tiedostoon - - - - &Encrypt Wallet - &Salaa lompakko + Vie auki olevan välilehden tiedot tiedostoon - + Encrypt or decrypt wallet - Kryptaa tai dekryptaa lompakko - - - - &Backup Wallet - &Varmuuskopioi lompakko + Salaa tai poista salaus lompakosta - + 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 - - - + &File &Tiedosto - + &Settings &Asetukset - + &Help &Apua - + Tabs toolbar Välilehtipalkki - + Actions toolbar Toimintopalkki - + [testnet] [testnet] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network %n aktiivinen yhteys Bitcoin-verkkoon @@ -504,17 +433,82 @@ Tahdotko varmasti salata lompakon? - + + &Backup Wallet + &Varmuuskopioi lompakko + + + + Bitcoin Wallet + Bitcoin-lompakko + + + + Block chain synchronization in progress + Block chainin synkronointi kesken + + + + Send coins to a bitcoin address + Lähetä kolikoita Bitcoin-osoitteeseen + + + + Sign &message + Allekirjoita &viesti + + + + &About %1 + &Tietoja %1 + + + + Modify configuration options for bitcoin + Muuta Bitcoinin konfiguraatioasetuksia + + + + Open &Bitcoin + Avaa &Bitcoin + + + + Show the Bitcoin window + Näytä Bitcoin-ikkuna + + + + &Export... + &Vie... + + + + &Encrypt Wallet + &Salaa lompakko + + + + &Change Passphrase + &Vaihda tunnuslause + + + + Change the passphrase used for wallet encryption + Vaihda lompakon salaukseen käytettävä tunnuslause + + + Downloaded %1 of %2 blocks of transaction history. Ladattu %1 of %2 rahansiirtohistorian lohkoa. - + Downloaded %1 blocks of transaction history. Ladattu %1 lohkoa rahansiirron historiasta. - + %n second(s) ago %n sekunti sitten @@ -522,7 +516,7 @@ Tahdotko varmasti salata lompakon? - + %n minute(s) ago %n minuutti sitten @@ -530,7 +524,7 @@ Tahdotko varmasti salata lompakon? - + %n hour(s) ago %n tunti sitten @@ -538,7 +532,7 @@ Tahdotko varmasti salata lompakon? - + %n day(s) ago %n päivä sitten @@ -546,42 +540,42 @@ Tahdotko varmasti salata lompakon? - + Up to date - Ohjelmisto on ajan tasalla + Rahansiirtohistoria on ajan tasalla - + Catching up... Kurotaan kiinni... - + Last received block was generated %1. Viimeisin vastaanotettu lohko tuotettu %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ää kokorajoituksen. Voit siitä huolimatta lähettää sen %1 siirtopalkkion mikä menee solmuille jotka käsittelevät rahansiirtosi tämä auttaa myös verkostoa. Haluatko maksaa siirtopalkkion? - - Sending... - Lähetetään... + + bitcoin-qt + bitcoin-qt - + Sent transaction Lähetetyt rahansiirrot - + Incoming transaction Saapuva rahansiirto - + Date: %1 Amount: %2 Type: %3 @@ -593,60 +587,65 @@ Tyyppi: %3 Osoite: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Lompakko on <b>salattu</b> ja tällä hetkellä <b>avoinna</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Lompakko on <b>salattu</b> ja tällä hetkellä <b>lukittuna</b> - + Backup Wallet Varmuuskopioi lompakko - + Wallet Data (*.dat) Lompakkodata (*.dat) - + Backup Failed Varmuuskopio epäonnistui - + There was an error trying to save the wallet data to the new location. Virhe tallennettaessa lompakkodataa uuteen sijaintiin. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + Sending... + Lähetetään... + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &Yksikkö, jossa määrät näytetään: - + Choose the default subdivision unit to show in the interface, and when sending coins Valitse oletus lisämääre mikä näkyy käyttöliittymässä ja kun lähetät kolikoita - + &Display addresses in transaction list &Näytä osoitteet rahansiirtoluettelossa - + Whether to show Bitcoin addresses in the transaction list @@ -768,7 +767,7 @@ Osoite: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Yhdistä Bitcoin-verkkoon SOCKS4-välityspalvelimen kautta (esimerkiksi käyttäessä Tor:ia) @@ -791,18 +790,13 @@ Osoite: %4 Port of the proxy (e.g. 1234) Portti, johon Bitcoin-asiakasohjelma yhdistää (esim. 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Vapaaehtoinen rahansiirtopalkkio per kB auttaa nopeuttamaan siirtoja. Useimmat rahansiirrot ovat 1 kB. 0.01 palkkio on suositeltava. - Pay transaction &fee Maksa rahansiirtopalkkio - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Vapaaehtoinen rahansiirtopalkkio per kB auttaa nopeuttamaan siirtoja. Useimmat rahansiirrot ovat 1 kB. 0.01 palkkio on suositeltava. @@ -867,7 +861,7 @@ Osoite: %4 Copy the current signature to the system clipboard - + Kopioi tämänhetkinen allekirjoitus leikepöydälle @@ -927,11 +921,6 @@ Osoite: %4 Balance: Saldo: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -947,16 +936,6 @@ Osoite: %4 Unconfirmed: Vahvistamatta: - - - 0 BTC - 0 BTC - - - - Wallet - Lompakko - <b>Recent transactions</b> @@ -977,6 +956,11 @@ Osoite: %4 Total number of transactions in wallet Lompakolla tehtyjen rahansiirtojen yhteismäärä + + + Wallet + Lompakko + QRCodeDialog @@ -1023,7 +1007,7 @@ Osoite: %4 Error encoding URI into QR Code. - + Virhe käännettäessä URI:a QR-koodiksi. @@ -1040,13 +1024,13 @@ Osoite: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins Lähetä Bitcoineja @@ -1091,58 +1075,58 @@ Osoite: %4 &Lähetä - + <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) - + Confirm send coins Hyväksy Bitcoinien lähettäminen - + Are you sure you want to send %1? Haluatko varmasti lähettää %1? - + and ja - - The recepient address is not valid, please recheck. - Vastaanottajan osoite ei kelpaa, ole hyvä ja tarkista + + The recipient address is not valid, please recheck. + Vastaanottajan osoite ei kelpaa, ole hyvä ja tarkista. - + The amount to pay must be larger than 0. Maksettavan summan tulee olla suurempi kuin 0 Bitcoinia. - - Amount exceeds your balance + + The amount exceeds your balance. Määrä on suurempi kuin tilisi tämänhetkinen saldo. - - Total exceeds your balance when the %1 transaction fee is included + + The total exceeds your balance when the %1 transaction fee is included. Kokonaissumma ylittäää tilisi saldon, kun siihen lisätään %1 BTC rahansiirtomaksu. - - Duplicate address found, can only send to each address once in one send operation + + Duplicate address found, can only send to each address once per send operation. Tuplaosite löytynyt, voit ainoastaan lähettää kunkin osoitteen kerran yhdessä lähetysoperaatiossa. - - Error: Transaction creation failed - Virhe: Rahansiirron luonti epäonnistui + + 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. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Virhe: Rahansiirto hylättiin. Tämä voi tapahtua jos jotkin bitcoineistasi on jo käytetty, esimerkiksi jos olet käyttänyt kopiota wallet.dat-lompakkotiedostosta ja bitcoinit on merkitty käytetyksi vain kopiossa. @@ -1222,11 +1206,6 @@ Osoite: %4 Open until %1 Avoinna %1 asti - - - %1/offline? - %1/ei linjalla? - %1/unconfirmed @@ -1237,6 +1216,11 @@ Osoite: %4 %1 confirmations %1 vahvistusta + + + %1/offline? + %1/ei linjalla? + <b>Status:</b> @@ -1387,7 +1371,7 @@ Osoite: %4 Määrä - + Open for %n block(s) Auki %n lohkolle @@ -1395,27 +1379,27 @@ Osoite: %4 - + Open until %1 Avoinna %1 asti - + Offline (%1 confirmations) Ei yhteyttä verkkoon (%1 vahvistusta) - + Unconfirmed (%1 of %2 confirmations) Vahvistamatta (%1/%2 vahvistusta) - + Confirmed (%1 confirmations) Vahvistettu (%1 vahvistusta) - + Mined balance will be available in %n more blocks Louhittu saldo tulee saataville %n lohkossa @@ -1423,67 +1407,67 @@ Osoite: %4 - + 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äksytty! + 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ä. @@ -1587,67 +1571,67 @@ Osoite: %4 Näytä tarkemmat tiedot... - + Export Transaction Data Vie transaktion tiedot - + 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 tietojen viennissä - + Could not write to file %1. Ei voida kirjoittaa tiedostoon %1. - + Range: Alue: - + to kenelle @@ -1719,288 +1703,343 @@ Osoite: %4 + Show splash screen on startup (default: 1) + Näytä aloitusruutu käynnistettäessä (oletus: 1) + + + Specify data directory Määritä data-hakemisto - + Specify connection timeout (in milliseconds) Määritä yhteyden aikakatkaisu (millisekunneissa) - + Connect through socks4 proxy Yhteys socks4-proxyn kautta - + Allow DNS lookups for addnode and connect Salli DNS haut lisäsolmulle ja yhdistä - + Listen for connections on <port> (default: 8333 or testnet: 18333) Kuuntele yhteyksiä portista <port> (oletus: 8333 tai testnet: 18333) - + Maintain at most <n> connections to peers (default: 125) Pidä enintään <n> yhteyttä verkkoihin (oletus: 125) - - Add a node to connect to - Lisää solmu mihin yhdistetään - - - + Connect only to the specified node Ota yhteys vain tiettyyn solmuun - - Don't accept connections from outside - Älä hyväksy ulkopuolisia yhteyksiä - - - - Don't bootstrap list of peers using DNS - Älä alkulataa listaa verkoista DNS:ää käyttäen - - - + 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: 10000) Maksimi verkkoyhteyden vastaanottopuskuri, <n>*1000 tavua (oletus: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maksimi verkkoyhteyden lähetyspuskuri, <n>*1000 tavua (oletus: 10000) - - Don't attempt to use UPnP to map the listening port - Älä käytä UPnP toimintoa kartoittamaan avointa porttia - - - - Attempt to use UPnP to map the listening port - Yritä käyttää UPnP toimintoa kartoittamaan avointa porttia - - - - Fee per kB to add to transactions you send - palkkio per kB lisätty lähettämiisi rahansiirtoihin - - - + 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 Tulosta ylimääräistä debuggaustietoa - + Prepend debug output with timestamp Lisää debuggaustiedon tulostukseen aikaleima - + 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ä jäljitys/debug-tieto debuggeriin - + 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: 8332) Kuuntele JSON-RPC -yhteyksiä portista <port> (oletus: 8332) - + 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) - + 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 - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-asetukset: (lisätietoja Bitcoin-Wikistä) - + 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äksyttävä salaus (oletus: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Tämä ohjeviesti - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. En pääse käsiksi data-hakemiston lukitukseen %s. Bitcoin on todennäköisesti jo käynnistetty. - + Loading addresses... Ladataan osoitteita... - + Error loading addr.dat Virhe ladattaessa addr.dat-tiedostoa - + 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 Bitcoin Virhe ladattaessa wallet.dat-tiedostoa: Tarvitset uudemman version Bitcoinista - + Wallet needed to be rewritten: restart Bitcoin to complete Lompakko tarvitsee uudelleenkirjoittaa: käynnistä Bitcoin uudelleen - + Error loading wallet.dat Virhe ladattaessa wallet.dat-tiedostoa - + + Warning: Disk space is low + Varoitus: Kiintolevytila on loppumassa + + + + 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) + + + + Add a node to connect to and attempt to keep the connection open + Linää solmu mihin liittyä pitääksesi yhteyden auki + + + + Set database cache size in megabytes (default: 25) + Aseta tietokannan välimuistin koko megatavuina (oletus: 25) + + + + Cannot downgrade wallet + Et voi päivittää lompakkoasi vanhempaan versioon + + + + Cannot initialize keypool + Avainvarastoa ei voi alustaa + + + + Cannot write default address + Oletusosoitetta ei voi kirjoittaa + + + + How many blocks to check at startup (default: 2500, 0 = all) + Kuinka monta lohkoa tarkistetaan käynnistettäessä (oletus: 2500, 0 = kaikki) + + + + How thorough the block verification is (0-6, default: 1) + Kuinka tiukka lohkovarmistus on (0-6, oletus: 1) + + + + Done loading + Lataus on valmis + + + Loading block index... Ladataan lohkoindeksiä... - + + Fee per KB to add to transactions you send + Rahansiirtopalkkio per KB lisätään lähettämääsi rahansiirtoon + + + + Find peers using internet relay chat (default: 0) + Etsi solmuja käyttäen internet relay chatia (oletus: 0) + + + + Accept connections from outside (default: 1) + Älä hyväksy ulkopuolisia yhteyksiä + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) + + + + + Use Universal Plug and Play to map the listening port (default: 1) + Yritä käyttää UPnP toimintoa kartoittamaan avointa porttia (default: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Yritä käyttää UPnP toimintoa kartoittamaan avointa porttia (default: 0) + + + Loading wallet... Ladataan lompakkoa... - + Rescanning... Skannataan uudelleen... - - Done loading - Lataus on valmis + + Upgrade wallet to latest format + Päivitä lompakko uusimpaan formaattiin - + Invalid -proxy address Virheellinen proxy-osoite - + Invalid amount for -paytxfee=<amount> Virheellinen määrä -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. Varoitus:-paytxfee on erittäin korkea. Tämä on palkkio siirrosta minkä suoritat rahansiirrosta. - + Error: CreateThread(StartNode) failed Virhe: CreateThread(StartNode) epäonnistui - - Warning: Disk space is low - Varoitus: Kiintolevytila on loppumassa - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. En pysty varaamaan porttia %d tähän koneeseen. Ehkä Bitcoin on jo käynnissä. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Varoitus: Tarkista, ovatko tietokoneesi päivämäärä ja aika oikein. Mikäli aika on väärin, Bitcoin-ohjelma ei toimi oikein. - + beta beta diff --git a/src/qt/locale/bitcoin_fr_CA.ts b/src/qt/locale/bitcoin_fr_CA.ts index 8b99b7ea86..63a062d8c1 100644 --- a/src/qt/locale/bitcoin_fr_CA.ts +++ b/src/qt/locale/bitcoin_fr_CA.ts @@ -109,22 +109,22 @@ This product includes software developed by the OpenSSL Project for use in the O - + Export Address Book Data Exporter les données du carnet d'adresses - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. @@ -155,26 +155,25 @@ This product includes software developed by the OpenSSL Project for use in the O - - - TextLabel - - - - + Enter passphrase - + New passphrase - + Repeat new passphrase + + + TextLabel + + 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>. @@ -237,12 +236,6 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Warning: The Caps Lock key is on. - - @@ -281,295 +274,306 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on. BitcoinGUI - + Bitcoin Wallet - - + + Synchronizing with network... - + Block chain synchronization in progress - + &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 - + Send coins to a bitcoin address - + Sign &message - + Prove you control an address - + E&xit - + Quit application - + &About %1 - + Show information about Bitcoin - + About &Qt - + Show information about Qt - + &Options... - + Modify configuration options for bitcoin - + Open &Bitcoin - + Show the Bitcoin window - + &Export... - + Export the data in the current tab to a file - + &Encrypt Wallet - + Encrypt or decrypt wallet - + &Backup Wallet - + Backup wallet to another location - + &Change Passphrase - + Change the passphrase used for wallet encryption - + &File - + &Settings - + &Help - + Tabs toolbar - + Actions toolbar - + [testnet] - + bitcoin-qt - + %n active connection(s) to Bitcoin network + - + Downloaded %1 of %2 blocks of transaction history. - + 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? - + Sending... - + Sent transaction - + Incoming transaction - + Date: %1 Amount: %2 Type: %3 @@ -578,60 +582,60 @@ Address: %4 - + 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. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: - + Choose the default subdivision unit to show in the interface, and when sending coins - + &Display addresses in transaction list - + Whether to show Bitcoin addresses in the transaction list @@ -753,7 +757,7 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) @@ -778,7 +782,7 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. @@ -786,11 +790,6 @@ Address: %4 Pay transaction &fee - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - MessagePage @@ -912,11 +911,6 @@ Address: %4 Balance: - - - 123.456 BTC - - Number of transactions: @@ -932,11 +926,6 @@ Address: %4 Unconfirmed: - - - 0 BTC - - Wallet @@ -1025,13 +1014,13 @@ Address: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins @@ -1076,58 +1065,58 @@ Address: %4 - + <b>%1</b> to %2 (%3) - + Confirm send coins - + Are you sure you want to send %1? - + and - - The recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. - + The amount to pay must be larger than 0. - - Amount exceeds your balance + + The amount exceeds your balance. - - 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 in one 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. @@ -1372,101 +1361,103 @@ Address: %4 - + Open for %n block(s) + - + Open until %1 - + Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) - + Mined balance will be available in %n more blocks + - + 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. @@ -1570,67 +1561,67 @@ Address: %4 - + Export Transaction Data - + Comma separated file (*.csv) - + Confirmed - + Date - + Type - + Label - + Address - + Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to @@ -1702,287 +1693,342 @@ Address: %4 - Specify data directory + Show splash screen on startup (default: 1) - Specify connection timeout (in milliseconds) + Specify data directory - Connect through socks4 proxy + Set database cache size in megabytes (default: 25) - Allow DNS lookups for addnode and connect + Specify connection timeout (in milliseconds) - Listen for connections on <port> (default: 8333 or testnet: 18333) + Connect through socks4 proxy - Maintain at most <n> connections to peers (default: 125) + Allow DNS lookups for addnode and connect - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) - Don't accept connections from outside + Add a node to connect to and attempt to keep the connection open - Don't bootstrap list of peers using DNS + Connect only to the specified node - 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) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Threshold for disconnecting misbehaving peers (default: 100) + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - Don't attempt to use UPnP to map the listening port + + Use Universal Plug and Play to map the listening port (default: 1) - - Attempt to use UPnP to map the listening port + + Use Universal Plug and Play to map the listening port (default: 0) - - Fee per kB to add to transactions you send + + Fee per KB to add to transactions you send - + Accept command line and JSON-RPC commands - + Run in the background as a daemon and accept commands - + Use the test network - + Output extra debugging information - + Prepend debug output with timestamp - + Send trace/debug info to console instead of debug.log file - + Send trace/debug info to debugger - + Username for JSON-RPC connections - + Password for JSON-RPC connections - + Listen for JSON-RPC connections on <port> (default: 8332) - + Allow JSON-RPC connections from specified IP address - + Send commands to node running on <ip> (default: 127.0.0.1) - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin 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) - + This help message - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + Loading addresses... - + Error loading addr.dat - + + Loading block index... + + + + Error loading blkindex.dat - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete - + Error loading wallet.dat - - Loading block index... + + Cannot downgrade wallet - - Loading wallet... + + Cannot initialize keypool - + + Cannot write default address + + + + Rescanning... - + Done loading - + Invalid -proxy address - + Invalid amount for -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + Error: CreateThread(StartNode) failed - - Warning: Disk space is low + + Warning: Disk space is low - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + beta diff --git a/src/qt/locale/bitcoin_fr_FR.ts b/src/qt/locale/bitcoin_fr_FR.ts index 5473a2020a..4356b5c5b6 100644 --- a/src/qt/locale/bitcoin_fr_FR.ts +++ b/src/qt/locale/bitcoin_fr_FR.ts @@ -115,22 +115,22 @@ Ce produit inclut des logiciels développés par OpenSSL Project pour utilisatio Effacer - + Export Address Book Data Exporter les données du carnet d'adresses - + Comma separated file (*.csv) Valeurs séparées par des virgules (*.csv) - + Error exporting Erreur lors de l'exportation - + Could not write to file %1. Impossible d'écrire sur le fichier %1. @@ -161,23 +161,22 @@ Ce produit inclut des logiciels développés par OpenSSL Project pour utilisatio Dialogue - - + TextLabel TextLabel - + Enter passphrase Entrez la phrase de passe - + New passphrase Nouvelle phrase de passe - + Repeat new passphrase Répétez la phrase de passe @@ -244,6 +243,11 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin va à présent se fermer pour terminer la procédure de cryptage. N'oubliez pas que le chiffrement de votre porte-monnaie ne peut pas fournir une protection totale contre le vol par des logiciels malveillants qui infecteraient votre ordinateur. + + + Wallet passphrase was successfully changed. + La phrase de passe du porte-monnaie a été modifiée avec succès. + @@ -286,217 +290,212 @@ Are you sure you wish to encrypt your wallet? Wallet decryption failed Le décryptage du porte-monnaie a échoué - - - Wallet passphrase was succesfully changed. - La phrase de passe du porte-monnaie a été modifiée avec succès. - BitcoinGUI - + Bitcoin Wallet Porte-monnaie Bitcoin - - + + Synchronizing with network... Synchronisation avec le réseau... - + Block chain synchronization in progress Synchronisation de la chaîne de blocs en cours - + &Overview &Vue d'ensemble - + Show general overview of wallet Affiche une vue d'ensemble du porte-monnaie - + &Transactions &Transactions - + Browse transaction history Permet de parcourir l'historique des transactions - + &Address Book Carnet d'&adresses - + Edit the list of stored addresses and labels Éditer la liste des adresses et des étiquettes stockées - + &Receive coins &Recevoir des pièces - + Show the list of addresses for receiving payments Affiche la liste des adresses pour recevoir des paiements - + &Send coins &Envoyer des pièces - + Send coins to a bitcoin address Envoyer des pièces à une adresse bitcoin - + Sign &message Signer un &message - + Prove you control an address Prouver que vous contrôlez une adresse - + E&xit Q&uitter - + Quit application Quitter l'application - + &About %1 &À propos de %1 - + Show information about Bitcoin Afficher des informations à propos de Bitcoin - + About &Qt À propos de &Qt - + Show information about Qt Afficher des informations sur Qt - + &Options... &Options... - + Modify configuration options for bitcoin Modifier les options de configuration pour bitcoin - + Open &Bitcoin Ouvrir &Bitcoin - + Show the Bitcoin window Afficher la fenêtre de Bitcoin - + &Export... &Exporter... - + Export the data in the current tab to a file Exporter les données de l'onglet courant vers un fichier - + &Encrypt Wallet &Chiffrer le porte-monnaie - + Encrypt or decrypt wallet Chiffrer ou décrypter le porte-monnaie - + &Backup Wallet &Sauvegarder le porte-monnaie - + Backup wallet to another location Sauvegarder le porte-monnaie à un autre emplacement - + &Change Passphrase &Modifier la phrase de passe - + Change the passphrase used for wallet encryption Modifier la phrase de passe utilisée pour le cryptage du porte-monnaie - + &File &Fichier - + &Settings &Réglages - + &Help &Aide - + Tabs toolbar Barre d'outils des onglets - + Actions toolbar Barre d'outils des actions - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network %n connexion active avec le réseau Bitcoin @@ -504,17 +503,17 @@ Are you sure you wish to encrypt your wallet? - + Downloaded %1 of %2 blocks of transaction history. %1 blocs de l'historique des transactions téléchargés sur un total de %2. - + Downloaded %1 blocks of transaction history. %1 blocs de l'historique de transaction téléchargé. - + %n second(s) ago il y a %n seconde @@ -522,7 +521,7 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago il y a %n minute @@ -530,7 +529,7 @@ Are you sure you wish to encrypt your wallet? - + %n hour(s) ago il y a %n heure @@ -538,7 +537,7 @@ Are you sure you wish to encrypt your wallet? - + %n day(s) ago il y a %n jour @@ -546,42 +545,42 @@ Are you sure you wish to encrypt your wallet? - + Up to date À jour - + Catching up... Rattrapage... - + Last received block was generated %1. Le dernier bloc reçu a é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 de taille. Vous pouvez quand-même l'envoyer en vous acquittant de frais d'un montant de %1, qui iront aux nœuds qui traitent la transaction et aideront à soutenir le réseau. Voulez-vous payer les frais ? - + Sending... Envoi en cours... - + Sent transaction Transaction envoyée - + Incoming transaction Transaction entrante - + Date: %1 Amount: %2 Type: %3 @@ -594,60 +593,60 @@ Adresse : %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Le porte-monnaie est <b>chiffré</b> et est actuellement <b>déverrouillé</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Le porte-monnaie est <b>chiffré</b> et est actuellement <b>verrouillé</b> - + Backup Wallet Sauvegarder le porte-monnaie - + Wallet Data (*.dat) Données de porte-monnaie (*.dat) - + Backup Failed La sauvegarde a échoué - + There was an error trying to save the wallet data to the new location. Une erreur est survenue lors de l'enregistrement des données de porte-monnaie à un autre emplacement. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &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 - + &Display addresses in transaction list &Afficher les adresses dans la liste des transactions - + Whether to show Bitcoin addresses in the transaction list @@ -769,7 +768,7 @@ Adresse : %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Connexion au réseau Bitcoin à travers un proxy SOCKS4 (par ex. lors d'une connexion via Tor) @@ -792,18 +791,13 @@ Adresse : %4 Port of the proxy (e.g. 1234) Port du proxy (par ex. 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Frais de transaction optionnels par ko qui aident à garantir un traitement rapide des transactions. La plupart des transactions occupent 1 ko. Des frais de 0.01 sont recommandés. - Pay transaction &fee Payer des &frais de transaction - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Frais de transaction optionnels par ko qui aident à garantir un traitement rapide des transactions. La plupart des transactions occupent 1 ko. Des frais de 0.01 sont recommandés. @@ -928,11 +922,6 @@ Adresse : %4 Balance: Solde : - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -948,11 +937,6 @@ Adresse : %4 Unconfirmed: Non confirmé : - - - 0 BTC - 0 BTC - Wallet @@ -1041,13 +1025,13 @@ Adresse : %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins Envoyer des pièces @@ -1092,59 +1076,59 @@ Adresse : %4 &Envoyer - + <b>%1</b> to %2 (%3) <b>%1</b> à %2 (%3) - + Confirm send coins Confirmez l'envoi des pièces - + Are you sure you want to send %1? Êtes-vous sûr de vouloir envoyer %1 ? - + and et - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance - Le montant dépasse votre solde + + The total exceeds your balance when the %1 transaction fee is included. + Le total dépasse votre solde lorsque les frais de transaction de %1 sont inclus. - - Total exceeds your balance when the %1 transaction fee is included - Le total 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 dupliquée trouvée, un seul envoi par adresse est possible à chaque opération d'envoi. - - Duplicate address found, can only send to each address once in one send operation - Adresse dupliquée trouvée, un seul envoi par adresse est possible à chaque opération d'envoi + + Error: Transaction creation failed. + Erreur : échec de la création de la transaction. - - Error: Transaction creation failed - Erreur : échec 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 arriver si certaines pièces de votre porte-monnaie ont déjà été dépensées, par exemple si vous avez utilisé une copie de wallet.dat et si des pièces ont été dépensées avec cette copie sans être marquées comme telles ici. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 arriver si certaines pièces de votre porte-monnaie ont déjà été dépensées, par exemple si vous avez utilisé une copie de wallet.dat et si des pièces ont été dépensées avec cette copie sans être marquées comme telles ici. + + The amount to pay must be larger than 0. + Le montant à payer doit être supérieur à 0. @@ -1388,7 +1372,7 @@ Adresse : %4 Montant - + Open for %n block(s) Ouvert pour %n bloc @@ -1396,27 +1380,27 @@ Adresse : %4 - + Open until %1 Ouvert jusqu'à %1 - + Offline (%1 confirmations) Hors ligne (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) Non confirmée (%1 confirmations sur un total de %2) - + Confirmed (%1 confirmations) Confirmée (%1 confirmations) - + Mined balance will be available in %n more blocks Le solde d'extraction (mined) sera disponible dans %n bloc @@ -1424,67 +1408,67 @@ Adresse : %4 - + 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 Extraction - + (n/a) (indisponible) - + 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é au ou enlevé du solde. @@ -1588,67 +1572,67 @@ Adresse : %4 Afficher les détails... - + Export Transaction Data Exporter les données de 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'exportation - + Could not write to file %1. Impossible d'écrire sur le fichier %1. - + Range: Intervalle : - + to à @@ -1720,288 +1704,343 @@ Adresse : %4 + Show splash screen on startup (default: 1) + + + + Specify data directory Spécifier le répertoire de données - + + Set database cache size in megabytes (default: 25) + + + + Specify connection timeout (in milliseconds) Spécifier le délai d'expiration de la connexion (en millisecondes) - + Connect through socks4 proxy Connexion via un proxy socks4 - + Allow DNS lookups for addnode and connect Autoriser les recherches DNS pour l'ajout de nœuds et la connexion - + Listen for connections on <port> (default: 8333 or testnet: 18333) Écouter les connexions sur le <port> (par défaut : 8333 ou testnet : 18333) - + 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 - Ajouter un nœud auquel se connecter - - - + Connect only to the specified node Ne se connecter qu'au nœud spécifié - - Don't accept connections from outside - Ne pas accepter les connexion depuis l'extérieur - - - - Don't bootstrap list of peers using DNS - Ne pas amorcer la liste des pairs en utilisant le DNS - - - + 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: 10000) Tampon maximal de réception par connexion, <n>*1000 octets (par défaut : 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Tampon maximal d'envoi par connexion, <n>*1000 octets (par défaut : 10000) - - Don't attempt to use UPnP to map the listening port - Ne pas tenter d'utiliser l'UPnP pour ouvrir le port d'écoute - - - - Attempt to use UPnP to map the listening port - Essayer d'utiliser l'UPnP pour ouvrir le port d'écoute - - - - Fee per kB to add to transactions you send - Frais par ko à ajouter aux transactions que vous enverrez - - - + 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 Informations de débogage supplémentaires - + Prepend debug output with timestamp Faire précéder les données de débogage par un horodatage - + 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 au débogueur - + 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: 8332) Écouter les connexions JSON-RPC sur le <port> (par défaut : 8332) - + 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 à <ip> (par défaut : 127.0.0.1) - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) Régler la taille de la plage 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 porte-monnaie manquantes - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Options SSL : (cf. le wiki Bitcoin pour les réglages SSL) - + 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) Clefs de chiffrement acceptables (par défaut : TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Ce message d'aide - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Impossible d'obtenir un verrou sur le répertoire de données %s. Bitcoin fonctionne probablement déjà. - + Loading addresses... Chargement des adresses... - + Error loading addr.dat Erreur lors du chargement de addr.dat - + Error loading blkindex.dat Erreur lors du chargement de blkindex.dat - + Error loading wallet.dat: Wallet corrupted Erreur lors du chargement de wallet.dat : porte-monnaie corrompu - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Erreur lors du chargement de wallet.dat : le porte-monnaie nécessite une version plus récente de Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete Le porte-monnaie nécessitait une réécriture. Veuillez redémarrer Bitcoin pour terminer l'opération - + Error loading wallet.dat Erreur lors du chargement de wallet.dat - + + Warning: Disk space is low + Attention : l'espace disque est faible + + + 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 and attempt to keep the connection open + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) + + + + + Use Universal Plug and Play to map the listening port (default: 1) + Essayer d'utiliser l'UPnP pour ouvrir le port d'écoute (default: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Essayer d'utiliser l'UPnP pour ouvrir le port d'écoute (default: 0) + + + + Fee per KB to add to transactions you send + Frais par ko à ajouter aux transactions que vous enverrez + + + Loading wallet... Chargement du porte-monnaie... - + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + Rescanning... Nouvelle analyse... - + Done loading Chargement terminé - + Invalid -proxy address Adresse -proxy invalide - + Invalid amount for -paytxfee=<amount> Montant invalide pour -paytxfee=<montant> - + 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. - + Error: CreateThread(StartNode) failed Erreur : CreateThread(StartNode) a échoué - - Warning: Disk space is low - Attention : l'espace disque est faible - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Impossible de s'attacher au port %d sur cet ordinateur. Bitcoin fonctionne probablement déjà. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Attention : veuillez vérifier que l'heure et la date de votre ordinateur sont corrects. Si votre horloge n'est pas à l'heure, Bitcoin ne fonctionnera pas correctement. - + beta bêta diff --git a/src/qt/locale/bitcoin_he.ts b/src/qt/locale/bitcoin_he.ts index 487dd6ab27..0d5ae91b6c 100644 --- a/src/qt/locale/bitcoin_he.ts +++ b/src/qt/locale/bitcoin_he.ts @@ -57,7 +57,7 @@ This product includes software developed by the OpenSSL Project for use in the O &New Address... - כתובת &חדשה + כתובת &חדשה @@ -77,12 +77,12 @@ This product includes software developed by the OpenSSL Project for use in the O Sign a message to prove you own this address - חתום על הודעה כדי להוכיח שכתובת זו בבעלותך + חתום על הודעה כדי להוכיח שכתובת זו בבעלותך &Sign Message - חתום על הו&דעה + חתום על הו&דעה @@ -102,35 +102,35 @@ This product includes software developed by the OpenSSL Project for use in the O Copy label - העתק תוית + העתק תוית Edit - ערוך + עריכה Delete - מחק + מחיקה - + Export Address Book Data יצוא נתוני פנקס כתובות - + Comma separated file (*.csv) קובץ מופרד בפסיקים (*.csv) - + Error exporting שגיאה ביצוא - + Could not write to file %1. לא מסוגל לכתוב לקובץ %1. @@ -158,29 +158,28 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - שיח - - - - - TextLabel - טקסטתוית + שיח - + Enter passphrase הכנס סיסמא - + New passphrase סיסמה חדשה - + Repeat new passphrase חזור על הסיסמה החדשה + + + TextLabel + + 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>. @@ -230,7 +229,7 @@ This product includes software developed by the OpenSSL Project for use in the O WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? - אזהרה: אם תצפין את הארנק שלך ותאבד את הסיסמה אתה <b>תאבד את כל הביטקוין שלך</b>! + אזהרה: אם תצפין את הארנק שלך ותאבד את הסיסמה אתה <b>תאבד את כל הביטקוין שלך</b>! אתה בטוח שברצונך להצפין את הארנק? @@ -244,12 +243,6 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. ביטקוין ייסגר עכשיו כדי להשלים את תהליך ההצפנה. זכור שהצפנת הארנק שלך אינו יכול להגן באופן מלא על הביטקוינים שלך מתוכנות זדוניות המושתלות על המחשב. - - - - Warning: The Caps Lock key is on. - אזהרה: מקש Caps Lock מופעל. - @@ -288,215 +281,166 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. - סיסמת הארנק שונתה בהצלחה. + Wallet passphrase was successfully changed. + סיסמת הארנק שונתה בהצלחה. + + + + + Warning: The Caps Lock key is on. + אזהרה: מקש Caps Lock מופעל. BitcoinGUI - - Bitcoin Wallet - ארנק ביטקוין - - - - + + Synchronizing with network... מסתנכרן עם הרשת... - - Block chain synchronization in progress - סנכרון עם שרשרת הבלוקים בעיצומו - - - + &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 &שלח מטבעות - - Send coins to a bitcoin address - שלח מטבעות לכתובת ביטקוין - - - - Sign &message - חתום על הו&דעה - - - - Prove you control an address - הוכח שאתה שולט בכתובת - - - + E&xit י&ציאה - + Quit application סגור תוכנה - - &About %1 - &אודות %1 - - - + Show information about Bitcoin הצג מידע על ביטקוין - + About &Qt אודות Qt - + Show information about Qt הצג מידע על Qt - + &Options... &אפשרויות - - Modify configuration options for bitcoin - שנה הגדרות עבור ביטקוין - - - - Open &Bitcoin - פתח את &ביטקוין - - - - Show the Bitcoin window - הצג את חלון ביטקוין + + &About %1 + &אודות %1 - + &Export... - י&צא + י&צא לקובץ - + Export the data in the current tab to a file יצוא הנתונים בטאב הנוכחי לקובץ - - &Encrypt Wallet - הצ&פן ארנק - - - + Encrypt or decrypt wallet הצפן או פענח ארנק - - &Backup Wallet - &גיבוי ארנק - - - + Backup wallet to another location גיבוי הארנק למקום אחר - - &Change Passphrase - שנה &סיסמה + + Open &Bitcoin + פתח את &ביטקוין - + Change the passphrase used for wallet encryption שנה את הסיסמה להצפנת הארנק - + &File &קובץ - + &Settings ה&גדרות - + &Help &עזרה - + Tabs toolbar סרגל כלים טאבים - + Actions toolbar סרגל כלים פעולות - + [testnet] [רשת-בדיקה] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network חיבור פעיל אחד לרשת הביטקוין @@ -504,17 +448,67 @@ Are you sure you wish to encrypt your wallet? - - Downloaded %1 of %2 blocks of transaction history. - הורדו %1 מתוך %2 בלוקים של היסטוריית פעולות. + + &Backup Wallet + &גיבוי ארנק + + + + Bitcoin Wallet + ארנק ביטקוין + + + + Block chain synchronization in progress + סנכרון עם שרשרת הבלוקים בעיצומו + + + + Send coins to a bitcoin address + שלח מטבעות לכתובת ביטקוין + + + + Sign &message + חתום על הודעה + + + + Prove you control an address + הוכח שאתה שולט בכתובת + + + + Modify configuration options for bitcoin + שנה אפשרויות תצורה עבור ביטקוין - + + Show the Bitcoin window + הצג את חלון ביטקוין + + + + &Encrypt Wallet + הצפן ארנק + + + + &Change Passphrase + שנה סיסמא + + + + bitcoin-qt + + + + Downloaded %1 blocks of transaction history. הורדו %1 בלוקים של היסטוריית פעולות. - + %n second(s) ago לפני שניה @@ -522,7 +516,7 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago לפני דקה @@ -530,7 +524,7 @@ Are you sure you wish to encrypt your wallet? - + %n hour(s) ago לפני שעה @@ -538,7 +532,7 @@ Are you sure you wish to encrypt your wallet? - + %n day(s) ago לפני יום @@ -546,42 +540,37 @@ Are you sure you wish to encrypt your wallet? - + 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, שמגיעה לצמתים שמעבדים את הפעולה ועוזרת לתמוך ברשת. האם אתה מעוניין לשלם את העמלה? - - Sending... - שולח... - - - + Sent transaction פעולה שנשלחה - + Incoming transaction פעולה שהתקבלה - + Date: %1 Amount: %2 Type: %3 @@ -593,62 +582,72 @@ Address: %4 כתובת: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> הארנק <b>מוצפן</b> וכרגע <b>פתוח</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> הארנק <b>מוצפן</b> וכרגע <b>נעול</b> - + 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 occured. Bitcoin can no longer continue safely and will quit. + + Downloaded %1 of %2 blocks of transaction history. + הורדו %1 מתוך %2 בלוקים של היסטוריית פעולות. + + + + Sending... + שולח... + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &יחידת מדידה להציג בה כמויות: - + Choose the default subdivision unit to show in the interface, and when sending coins בחר את יחידת החלוקה להצגה בממשק, ובעת שליחת מטבעות - + &Display addresses in transaction list &הצג כתובות ברשימת הפעולות - + Whether to show Bitcoin addresses in the transaction list - + האם להציג כתובות ביטקוין ברשימת הפעולות או לא. @@ -768,8 +767,8 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - התחבר לרשת הביטקוין דרך פרוקסי SOCKS4 (למשל, בעת חיבור דרך Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + התחבר לרשת הביטקוין דרך פרוקסי SOCKS4 (למשל, בעת חיבור דרך Tor) @@ -791,18 +790,13 @@ Address: %4 Port of the proxy (e.g. 1234) הפורט של הפרוקסי (למשל 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - עמלת פעולה אופציונלית לכל kB תבטיח שהפעולה שלך תעובד בזריזות. רוב הפעולות הן 1 kB. מומלצת עמלה בסך 0.01. - Pay transaction &fee שלם &עמלת פעולה - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. עמלת פעולה אופציונלית לכל kB תבטיח שהפעולה שלך תעובד בזריזות. רוב הפעולות הן 1 kB. מומלצת עמלה בסך 0.01. @@ -867,7 +861,7 @@ Address: %4 Copy the current signature to the system clipboard - + העתק את החתימה הנוכחית ללוח המערכת @@ -928,9 +922,9 @@ Address: %4 יתרה: - - 123.456 BTC - 123.456 ביטקוין + + Wallet + ארנק @@ -948,25 +942,15 @@ Address: %4 ממתין לאישור: - - 0 BTC - 0 ביטקוין - - - - Wallet - + + Your current balance + היתרה הנוכחית שלך <b>Recent transactions</b> <b>פעולות אחרונות</b> - - - Your current balance - היתרה הנוכחית שלך - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance @@ -1000,16 +984,16 @@ Address: %4 Amount: כמות: - - - BTC - ביטקוין - Label: תוית: + + + BTC + ביטקוין + Message: @@ -1023,7 +1007,7 @@ Address: %4 Error encoding URI into QR Code. - + שגיאה בקידוד URI לקוד QR @@ -1040,13 +1024,13 @@ Address: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins שלח מטבעות @@ -1091,59 +1075,59 @@ Address: %4 &שלח - + <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 recepient address is not valid, please recheck. - כתובת המקבל אינה תקינה, אנא בדוק שנית. + + The recipient address is not valid, please recheck. + כתובת המקבל אינה תקינה, אנא בדוק שנית. - + The amount to pay must be larger than 0. הכמות לשלם חייבת להיות גדולה מ-0. - - Amount exceeds your balance - הכמות חורגת מהיתרה שלך. + + The amount exceeds your balance. + הכמות עולה על המאזן שלך. - - Total exceeds your balance when the %1 transaction fee is included - הסכום חורג מהיתרה לאחר הכללת עמלת פעולה בסך %1. + + The total exceeds your balance when the %1 transaction fee is included. + הכמות הכוללת, ובכללה עמלת פעולה בסך %1, עולה על המאזן שלך. - - Duplicate address found, can only send to each address once in one 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. - שגיאה: הפעולה נדחתה. זה עשוי לקרות אם חלק מהמטבעות בארנק שלך כבר נוצלו, למשל אם השתמשת בעותק של הקובץ 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. + שגיאה: הפעולה נדחתה. זה עשוי לקרות עם חלק מהמטבעות בארנק שלך כבר נוצלו, למשל אם השתמשת בעותק של wallet.dat ומטבעות נוצלו בעותק אך לא סומנו כמנוצלות כאן. @@ -1222,11 +1206,6 @@ Address: %4 Open until %1 פתוח עד %1 - - - %1/offline? - %1/לא מחובר? - %1/unconfirmed @@ -1237,6 +1216,11 @@ Address: %4 %1 confirmations %1 אישורים + + + %1/offline? + %1/לא מחובר? + <b>Status:</b> @@ -1387,7 +1371,7 @@ Address: %4 כמות - + Open for %n block(s) פתוח למשך בלוק אחד @@ -1395,27 +1379,27 @@ Address: %4 - + Open until %1 פתוח עד %1 - + Offline (%1 confirmations) לא מחובר (%1 אישורים) - + Unconfirmed (%1 of %2 confirmations) ממתין לאישור (%1 מתוך %2 אישורים) - + Confirmed (%1 confirmations) מאושר (%1 אישורים) - + Mined balance will be available in %n more blocks יתרה שנכרתה תהיה זמינה עוד בלוק אחד @@ -1423,67 +1407,67 @@ Address: %4 - + 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. הכמות שהתווספה או הוסרה מהיתרה. @@ -1587,67 +1571,67 @@ Address: %4 הצג פרטים... - + 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 אל @@ -1697,6 +1681,16 @@ Address: %4 Specify configuration file (default: bitcoin.conf) ציין קובץ הגדרות (ברירת מחדל: bitcoin.conf) + + + Show splash screen on startup (default: 1) + הצג מסך פתיחה בעת הפעלה (ברירת מחדל: 1) + + + + Add a node to connect to and attempt to keep the connection open + הוסף צומת להתחברות ונסה לשמור את החיבור פתוח + Specify pid file (default: bitcoind.pid) @@ -1707,6 +1701,11 @@ Address: %4 Generate coins צור מטבעות + + + Allow JSON-RPC connections from specified IP address + אפשר חיבורי JSON-RPC מכתובת האינטרנט המצוינת + Don't generate coins @@ -1718,290 +1717,330 @@ Address: %4 התחל ממוזער - + Specify data directory ציין תיקיית נתונים - + Specify connection timeout (in milliseconds) ציין הגבלת זמן לחיבור (במילישניות) - + Connect through socks4 proxy התחבר דרך פרוקסי socks4 - + Allow DNS lookups for addnode and connect אפשר עיון ב-DNS להוספת צומת וחיבור - + + Cannot downgrade wallet + לא יכול להוריד דרגת הארנק + + + Listen for connections on <port> (default: 8333 or testnet: 18333) האזן לחיבורים ב<פורט> (ברירת מחדל: 8333 או ברשת הבדיקה: 18333) - - Maintain at most <n> connections to peers (default: 125) - החזק לכל היותר <n> חיבורים לעמיתים (ברירת מחדל: 125) + + Cannot initialize keypool + לא יכול לאתחל את מאגר המפתחות - - Add a node to connect to - הוסף צומת להתחבר אליו + + Maintain at most <n> connections to peers (default: 125) + החזק לכל היותר <n> חיבורים לעמיתים (ברירת מחדל: 125) - + Connect only to the specified node התחבר רק לצומת המצוין - - Don't accept connections from outside - אל תקבל חיבורים מבחוץ - - - - Don't bootstrap list of peers using DNS - אל תשתמש ב-DNS לאתחול רשימת עמיתים + + Cannot write default address + לא יכול לכתוב את כתובת ברירת המחדל - + Threshold for disconnecting misbehaving peers (default: 100) סף להתנתקות מעמיתים הנוהגים שלא כהלכה (ברירת מחדל: 100) - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) מספר שניות למנוע מעמיתים הנוהגים שלא כהלכה מלהתחבר מחדש (ברירת מחדל: 86400) - + + Done loading + טעינה הושלמה + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) חוצץ מירבי לקבלה לכל חיבור, <n>*1000 בתים (ברירת מחדל: 10000) - + + Error loading blkindex.dat + שגיאה בטעינת הקובץ blkindex.dat + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) חוצץ מירבי לשליחה לכל חיבור, <n>*1000 בתים (ברירת מחדל: 10000) - - Don't attempt to use UPnP to map the listening port - אל תנסה להשתמש ב-UPnP כדי למפות את הפורט להאזנה + + Error loading wallet.dat + שגיאה בטעינת הקובץ wallet.dat - - Attempt to use UPnP to map the listening port - נסה להשתמש ב-UPnP כדי למפות את הפורט להאזנה + + Error loading wallet.dat: Wallet corrupted + שגיאה בטעינת הקובץ wallet.dat: הארנק מושחת - - Fee per kB to add to transactions you send - עמלה לכל kB להוסיף לפעולות שאתה שולח + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + שגיאה בטעינת הקובץ wallet.dat: הארנק דורש גרסה חדשה יותר של ביטקוין - + 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 פלוט מידע דיבאג נוסף - + Prepend debug output with timestamp הוסף חותמת זמן לפני פלט דיבאג - + + Fee per KB to add to transactions you send + עמלה להוסיף לפעולות שאתה שולח עבור כל KB + + + Send trace/debug info to console instead of debug.log file שלח מידע דיבאג ועקבה לקונסולה במקום לקובץ debug.log - + Send trace/debug info to debugger שלח מידע דיבאג ועקבה לכלי דיבאג - + + Find peers using internet relay chat (default: 0) + מצא עמיתים תוך שימוש ב-IRC (ברירת מחדל: 0) + + + + Accept connections from outside (default: 1) + קבל חיבורים מבחוץ (ברירת מחדל: 1 ללא -proxy או -connect) + + + + Set language, for example "de_DE" (default: system locale) + קבע שפה, למשל "he_il" (ברירת מחדל: שפת המערכת) + + + + Find peers using DNS lookup (default: 1) + + + + + Use Universal Plug and Play to map the listening port (default: 1) + השתמש ב-UPnP כדי למפות את הפורט להאזנה (ברירת מחדל: 1 בעת האזנה) + + + + Use Universal Plug and Play to map the listening port (default: 0) + השתמש ב-UPnP כדי למפות את הפורט להאזנה (ברירת מחדל: 0) + + + Username for JSON-RPC connections שם משתמש לחיבורי JSON-RPC - + Password for JSON-RPC connections סיסמה לחיבורי JSON-RPC - + Listen for JSON-RPC connections on <port> (default: 8332) האזן לחיבורי JSON-RPC ב<פורט> (ברירת מחדל: 8332) - - Allow JSON-RPC connections from specified IP address - אפשר חיבורי JSON-RPC מכתובת האינטרנט המצוינת + + 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) + + + + Warning: Disk space is low + אזהרה: מעט מקום בדיסק + + + Send commands to node running on <ip> (default: 127.0.0.1) שלח פקודות לצומת ב-<ip> (ברירת מחדל: 127.0.0.1) - + Set key pool size to <n> (default: 100) קבע את גודל המאגר ל -<n> (ברירת מחדל: 100) - + Rescan the block chain for missing wallet transactions סרוק מחדש את שרשרת הבלוקים למציאת פעולות חסרות בארנק - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) אפשרויות SSL: (ראה את הויקי של ביטקוין עבור הוראות להתקנת SSL) - + 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 - הודעת העזרה הזו - - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - אינו מסוגל לנעול את תיקיית הנתונים %s. כנראה שביטקוין כבר רץ. - - - + Loading addresses... טוען כתובות... - - Error loading addr.dat - שגיאה בטעינת הקובץ addr.dat - - - - Error loading blkindex.dat - שגיאה בטעינת הקובץ blkindex.dat + + Loading block index... + טוען את אינדקס הבלוקים... - - Error loading wallet.dat: Wallet corrupted - שגיאה בטעינת הקובץ wallet.dat: הארנק מושחת + + Loading wallet... + טוען ארנק... - Error loading wallet.dat: Wallet requires newer version of Bitcoin - שגיאה בטעינת הקובץ wallet.dat: הארנק דורש גרסה חדשה יותר של ביטקוין + This help message + הודעת העזרה הזו - Wallet needed to be rewritten: restart Bitcoin to complete - יש לכתוב מחדש את הארנק: אתחל את ביטקוין לסיום + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + אינו מסוגל לנעול את תיקיית הנתונים %s. כנראה שביטקוין כבר רץ. - - Error loading wallet.dat - שגיאה בטעינת הקובץ wallet.dat + + Error loading addr.dat + שגיאה בטעינת הקובץ addr.dat - - Loading block index... - טוען את אינדקס הבלוקים... + + Rescanning... + סורק מחדש... - - Loading wallet... - טוען ארנק... + + Wallet needed to be rewritten: restart Bitcoin to complete + יש לכתוב מחדש את הארנק: אתחל את ביטקוין לסיום - - Rescanning... - סורק מחדש... + + Upgrade wallet to latest format + שדרג את הארנק לפורמט העדכני - - Done loading - טעינה הושלמה + + Set database cache size in megabytes (default: 25) + קבע את גודל המטמון של מסד הנתונים במגהבייט (ברירת מחדל: 25) - + Invalid -proxy address כתובת פרוקסי לא תקינה - + Invalid amount for -paytxfee=<amount> כמות לא תקינה בפרמטר -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. אזהרה: ערך גבוה מדי הושם בפרמטר -paytxfee. זו העמלה שתשלם אם אתה שולח פעולה. - + Error: CreateThread(StartNode) failed שגיאה: כישלון ב- CreateThread(StartNode) - - Warning: Disk space is low - אזהרה: מעט מקום בדיסק - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. לא מסוגל להיקשר לפורט %d במחשב הזה. כנראה שביטקוין כבר רץ. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. אזהרה: אנא בדוק שהתאריך והשעה של המחשב הזה נכונים. אם השעון שלך שגוי ביטקוין לא יפעל כהלכה. - + beta בטא + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + בצע פקודה זו כשהבלוק הטוב ביותר משתנה (%s בפקודה יוחלף בגיבוב הבלוק) + diff --git a/src/qt/locale/bitcoin_hr.ts b/src/qt/locale/bitcoin_hr.ts index 5b412bb3dd..5a354b7ea4 100644 --- a/src/qt/locale/bitcoin_hr.ts +++ b/src/qt/locale/bitcoin_hr.ts @@ -76,7 +76,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Sign Message - + &Potpišite poruku @@ -91,12 +91,12 @@ This product includes software developed by the OpenSSL Project for use in the O Copy address - Kopirati adresu + Kopirati adresu Copy label - Kopirati oznaku + Kopirati oznaku @@ -106,25 +106,25 @@ This product includes software developed by the OpenSSL Project for use in the O Delete - + Brisanje - + Export Address Book Data Izvoz podataka adresara - + Comma separated file (*.csv) Datoteka vrijednosti odvojenih zarezom (*. csv) - + Error exporting Pogreška kod izvoza - + Could not write to file %1. Ne mogu pisati u datoteku %1. @@ -152,29 +152,28 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - Dijalog - - - - - TextLabel - TekstualnaOznaka + Dijalog - + Enter passphrase Unesite lozinku - + New passphrase Nova lozinka - + Repeat new passphrase Ponovite novu lozinku + + + TextLabel + + 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>. @@ -224,7 +223,7 @@ This product includes software developed by the OpenSSL Project for use in the O WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? - UPOZORENJE: Ako šifrirate vaš novčanik i izgubite lozinku, <b>IZGUBIT ĆETE SVE SVOJE BITCOINSE!</b> + UPOZORENJE: Ako šifrirate vaš novčanik i izgubite lozinku, <b>IZGUBIT ĆETE SVE SVOJE BITCOINSE!</b>; Jeste li sigurni da želite šifrirati svoj novčanik? @@ -233,17 +232,6 @@ Jeste li sigurni da želite šifrirati svoj novčanik? Wallet encrypted Novčanik šifriran - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - - Warning: The Caps Lock key is on. - - @@ -282,215 +270,236 @@ Jeste li sigurni da želite šifrirati svoj novčanik? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Lozinka novčanika je uspješno promijenjena. + + + + Warning: The Caps Lock key is on. + + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin će se sada zatvoriti kako bi dovršio postupak šifriranja. Zapamtite da šifriranje vašeg novčanika ne može u potpunosti zaštititi vaše bitcoine od krađe preko zloćudnog softvera koji bi bio na vašem računalu. + BitcoinGUI - - Bitcoin Wallet - Bitcoin novčanik - - - - + + Synchronizing with network... Usklađivanje s mrežom ... - - Block chain synchronization in progress - Sinkronizacija lanca blokova u tijeku + + Bitcoin Wallet + Bitcoin novčanik - + &Overview &Pregled - + Show general overview of wallet Prikaži opći pregled novčanika - + &Transactions &Transakcije - + Browse transaction history Pretraži povijest transakcija - + &Address Book &Adresar - + Edit the list of stored addresses and labels Uređivanje popisa pohranjenih adresa i oznaka - + &Receive coins &Primanje novca - + Show the list of addresses for receiving payments Prikaži popis adresa za primanje isplate - + &Send coins - &Pošalji novac + &Slanje novca - - Send coins to a bitcoin address - Slanje novca na bitcoin adresu + + E&xit + &Izlaz - - Sign &message - + + Quit application + Izlazak iz programa - - Prove you control an address - + + About &Qt + Više o &Qt - - E&xit - &Izlaz + + Show information about Qt + Prikaži informacije o Qt - - Quit application - Izlazak iz programa + + &Options... + &Postavke - - &About %1 - &Više o %1 + + Backup Wallet + Backup novčanika - - Show information about Bitcoin - Prikaži informacije o Bitcoinu + + Wallet Data (*.dat) + Podaci novčanika (*.dat) - - About &Qt - + + Backup Failed + Backup nije uspio - - Show information about Qt - + + There was an error trying to save the wallet data to the new location. + Došlo je do pogreške kod spremanja podataka novčanika na novu lokaciju. - - &Options... - &Postavke + + Show information about Bitcoin + Prikaži informacije o Bitcoinu + + + + &About %1 + &Više o %1 - + + &Export... + &Izvoz... + + + Modify configuration options for bitcoin Promijeni postavke konfiguracije za bitcoin - - Open &Bitcoin - Otvori &Bitcoin + + Encrypt or decrypt wallet + Šifriranje ili dešifriranje novčanika - + Show the Bitcoin window Prikaži Bitcoin prozor - - &Export... - &Izvoz... + + Block chain synchronization in progress + Sinkronizacija lanca blokova u tijeku - - Export the data in the current tab to a file + + Send coins to a bitcoin address + Slanje novca na bitcoin adresu + + + + Sign &message - - &Encrypt Wallet - &Šifriraj novčanik + + Prove you control an address + - - Encrypt or decrypt wallet - Šifriranje ili dešifriranje novčanika + + Open &Bitcoin + Otvori &Bitcoin - - &Backup Wallet - &Backup novčanika + + &Encrypt Wallet + &Šifriraj novčanik - - Backup wallet to another location - + + &Backup Wallet + &Backup novčanika - + &Change Passphrase &Promijena lozinke - + Change the passphrase used for wallet encryption Promijenite lozinku za šifriranje novčanika - + &File &Datoteka - + &Settings &Konfiguracija - + &Help &Pomoć - + Tabs toolbar Traka kartica - + Actions toolbar Traka akcija - + [testnet] [testnet] - + bitcoin-qt - bitcoin-qt + - + %n active connection(s) to Bitcoin network %n aktivna veza na Bitcoin mrežu @@ -499,17 +508,17 @@ Jeste li sigurni da želite šifrirati svoj novčanik? - + Downloaded %1 of %2 blocks of transaction history. Preuzeto %1 od %2 blokova povijesti transakcije. - + Downloaded %1 blocks of transaction history. Preuzeto %1 blokova povijesti transakcije. - + %n second(s) ago prije %n sekunde @@ -518,7 +527,7 @@ Jeste li sigurni da želite šifrirati svoj novčanik? - + %n minute(s) ago prije %n minute @@ -527,7 +536,7 @@ Jeste li sigurni da želite šifrirati svoj novčanik? - + %n hour(s) ago prije %n sata @@ -536,7 +545,7 @@ Jeste li sigurni da želite šifrirati svoj novčanik? - + %n day(s) ago prije %n dana @@ -545,42 +554,42 @@ Jeste li sigurni da želite šifrirati svoj novčanik? - + Up to date Ažurno - + Catching up... Ažuriranje... - + Last received block was generated %1. Zadnji primljeni blok je generiran %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? Ova transakcija je preko ograničenja veličine. Možete ju ipak poslati za naknadu od %1, koja se daje čvorovima koji procesiraju vaše transakcije i tako podržavate mrežu. Želite li platiti naknadu? - + Sending... - Slanje... + Slanje... - + Sent transaction Poslana transakcija - + Incoming transaction Dolazna transakcija - + Date: %1 Amount: %2 Type: %3 @@ -593,60 +602,50 @@ Adresa:%4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Novčanik je <b>šifriran</b> i trenutno <b>otključan</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b> - - Backup Wallet - - - - - Wallet Data (*.dat) - - - - - Backup Failed - + + Export the data in the current tab to a file + Izvoz podataka iz trenutnog taba u datoteku - - There was an error trying to save the wallet data to the new location. - + + Backup wallet to another location + Napravite sigurnosnu kopiju novčanika na drugoj lokaciji - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &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. - + &Display addresses in transaction list &Prikaži adrese u popisu transakcija - + Whether to show Bitcoin addresses in the transaction list @@ -768,7 +767,7 @@ Adresa:%4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Spojite se na Bitcon mrežu putem SOCKS4 proxy-a (npr. kod povezivanja kroz Tor) @@ -793,31 +792,26 @@ Adresa:%4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Neobavezna naknada za transakciju po kB koja omogućuje da se vaša transakcija obavi brže. Većina transakcija ima 1 kB. Preporučena naknada je 0.01. 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 0.01 recommended. - - MessagePage Message - + Poruka 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. @@ -847,7 +841,7 @@ Adresa:%4 Enter the message you want to sign here - + Upišite poruku koju želite potpisati ovdje @@ -862,7 +856,7 @@ Adresa:%4 &Sign Message - + &Potpišite poruku @@ -927,11 +921,6 @@ Adresa:%4 Balance: Stanje: - - - 123.456 BTC - 123,456 BTC - Number of transactions: @@ -947,15 +936,10 @@ Adresa:%4 Unconfirmed: Nepotvrđene: - - - 0 BTC - 0 BTC - Wallet - Lisnica + Novčanik @@ -986,39 +970,39 @@ Adresa:%4 Dijalog - - QR Code - + + Message: + Poruka: Request Payment - + Zatraži plaćanje + + + + QR Code + QR Kôd Amount: - + Iznos: BTC - + Label: - - - - - Message: - Poruka: + Oznaka &Save As... - + &Spremi kao... @@ -1027,12 +1011,12 @@ Adresa:%4 - Save Image... - + PNG Images (*.png) + PNG slike (*.png) - PNG Images (*.png) + Save Image... @@ -1040,13 +1024,13 @@ Adresa:%4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins Pošalji novac @@ -1063,7 +1047,7 @@ Adresa:%4 Remove all transaction fields - + Obriši sva polja transakcija @@ -1091,58 +1075,58 @@ Adresa:%4 &Pošalji - + <b>%1</b> to %2 (%3) <b>%1</b> do %2 (%3) - + Confirm send coins Potvrdi slanje novca - + Are you sure you want to send %1? Jeste li sigurni da želite poslati %1? - + and i - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance - Iznos je veći od stanja računa + + The amount exceeds your balance. + Iznos je veći od stanja računa. - - 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 + + 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 in one send operation - Pronašli smo adresu koja se ponavlja. U svakom plaćanju program može svaku adresu koristiti samo jedanput + + 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 - Greška: priprema transakcije nije uspjela + + Error: Transaction creation failed. + Greška: priprema transakcije nije uspjela. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. Generirani novčići moraju pričekati nastanak 120 blokova prije nego što ih je moguće potrošiti. Kad ste generirali taj blok, on je bio emitiran u mrežu kako bi bio dodan postojećim lancima blokova. Ako ne uspije biti dodan, njegov status bit će promijenjen u "nije prihvatljiv" i on neće biti potrošiv. S vremena na vrijeme tako nešto se može desiti ako neki drugi nod približno istovremeno generira blok. @@ -1222,11 +1206,6 @@ Adresa:%4 Open until %1 Otvoren do %1 - - - %1/offline? - %1 nije dostupan? - %1/unconfirmed @@ -1237,6 +1216,11 @@ Adresa:%4 %1 confirmations %1 potvrda + + + %1/offline? + %1 nije dostupan? + <b>Status:</b> @@ -1387,7 +1371,7 @@ Adresa:%4 Iznos - + Open for %n block(s) Otvoren za %n bloka @@ -1396,27 +1380,27 @@ Adresa:%4 - + Open until %1 Otvoren do %1 - + Offline (%1 confirmations) Nije na mreži (%1 potvrda) - + Unconfirmed (%1 of %2 confirmations) Nepotvrđen (%1 od %2 potvrda) - + Confirmed (%1 confirmations) Potvrđen (%1 potvrda) - + Mined balance will be available in %n more blocks Saldo iskovanih novčićća bit de dostupan nakon %n dodatnog bloka @@ -1425,67 +1409,67 @@ Adresa:%4 - + 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 - + (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. @@ -1573,11 +1557,6 @@ Adresa:%4 Copy label Kopirati oznaku - - - Copy amount - - Edit label @@ -1589,67 +1568,72 @@ Adresa:%4 Prikazati detalje... - + + Copy amount + Kopiraj iznos + + + Export Transaction Data Izvoz podataka transakcija - + 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 Izvoz pogreške - + Could not write to file %1. Ne mogu pisati u datoteku %1. - + Range: Raspon: - + to za @@ -1721,289 +1705,344 @@ Adresa:%4 - Specify data directory - Odredi direktorij za datoteke + Show splash screen on startup (default: 1) + - Specify connection timeout (in milliseconds) - Odredi vremenski prozor za spajanje na mrežu (u milisekundama) + Specify data directory + Odredi direktorij za datoteke - Connect through socks4 proxy - Poveži se kroz socks4 proxy + Set database cache size in megabytes (default: 25) + - Allow DNS lookups for addnode and connect - Dozvoli DNS upite za dodavanje nodova i povezivanje + Specify connection timeout (in milliseconds) + Odredi vremenski prozor za spajanje na mrežu (u milisekundama) - Listen for connections on <port> (default: 8333 or testnet: 18333) - + Connect through socks4 proxy + Poveži se kroz socks4 proxy - Maintain at most <n> connections to peers (default: 125) - - - - - Add a node to connect to - Unesite nod s kojim se želite spojiti + Allow DNS lookups for addnode and connect + Dozvoli DNS upite za dodavanje nodova i povezivanje - + Connect only to the specified node Poveži se samo sa određenim nodom - - Don't accept connections from outside - Ne prihvaćaj povezivanje izvana - - - - Don't bootstrap list of peers using DNS - - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - - - - Don't attempt to use UPnP to map the listening port - Ne pokušaj koristiti UPnP da otvoriš port za uslugu - - - - Attempt to use UPnP to map the listening port - Pokušaj koristiti UPnP da otvoriš port za uslugu - - - - Fee per kB to add to transactions you send - - - - + Accept command line and JSON-RPC commands Prihvati komande iz tekst moda i JSON-RPC - + Run in the background as a daemon and accept commands Izvršavaj u pozadini kao uslužnik i prihvaćaj komande - + Use the test network Koristi test mrežu - + Output extra debugging information - - Prepend debug output with timestamp - - - - - Send trace/debug info to console instead of debug.log file - - - - - Send trace/debug info to debugger - - - - + Username for JSON-RPC connections Korisničko ime za JSON-RPC veze - + Password for JSON-RPC connections Lozinka za JSON-RPC veze - + Listen for JSON-RPC connections on <port> (default: 8332) Prihvaćaj JSON-RPC povezivanje na portu broj <port> (ugrađeni izbor: 8332) - + 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) + + + + + Upgrade wallet to latest 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 - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL postavke: (za detalje o podešavanju SSL opcija vidi Bitcoin Wiki) - + 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) Prihvaljivi načini šifriranja (ugrađeni izbor: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Ova poruka za pomoć - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Program ne može pristupiti direktoriju s datotekama %s. Bitcoin program je vjerojatno već pokrenut. - + Loading addresses... Učitavanje adresa... - + Error loading addr.dat - - Error loading blkindex.dat - + + Loading block index... + Učitavanje indeksa blokova... - - Error loading wallet.dat: Wallet corrupted - + + Loading wallet... + Učitavanje novčanika... - - Error loading wallet.dat: Wallet requires newer version of Bitcoin + + Cannot downgrade wallet - - Wallet needed to be rewritten: restart Bitcoin to complete + + Cannot initialize keypool - - Error loading wallet.dat + + Cannot write default address - - Loading block index... - Učitavanje indeksa blokova... - - - - Loading wallet... - Učitavanje novčanika... - - - + Rescanning... Rescaniranje - + Done loading Učitavanje gotovo - + Invalid -proxy address Nevaljala -proxy adresa - + Invalid amount for -paytxfee=<amount> Nevaljali iznos za opciju -paytxfee=<amount> - + 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. - + Error: CreateThread(StartNode) failed Greška: CreateThread(StartNode) nije uspjela - - Warning: Disk space is low + + Warning: Disk space is low Upozorenje: Malo diskovnog prostora - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Program ne može koristiti port %d na ovom računalu. Bitcoin program je vjerojatno već pokrenut. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Upozorenje: Molimo provjerite jesu li datum i vrijeme na vašem računalu točni. Ako vaš sat ide krivo, Bitcoin neće raditi ispravno. - + beta beta + + + 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) + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Slušaj na <port>u (default: 8333 ili testnet: 18333) + + + + Maintain at most <n> connections to peers (default: 125) + Održavaj najviše <n> veza sa članovima (default: 125) + + + + Error loading blkindex.dat + Greška kod učitavanja blkindex.dat + + + + Fee per KB to add to transactions you send + Naknada posredniku po KB-u koja će biti dodana svakoj transakciji koju pošalješ + + + + 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 + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + + + + Use Universal Plug and Play to map the listening port (default: 1) + Pokušaj koristiti UPnP da otvoriš port za uslugu (default: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Pokušaj koristiti UPnP da otvoriš port za uslugu (default: 0) + + + + Error loading wallet.dat + Greška kod učitavanja wallet.dat + + + + Error loading wallet.dat: Wallet corrupted + Greška kod učitavanja wallet.dat: Novčanik pokvaren + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Greška kod učitavanja wallet.dat: Novčanik zahtjeva noviju verziju Bitcoina + + + + Threshold for disconnecting misbehaving peers (default: 100) + Prag za odspajanje članova koji se čudno ponašaju (default: 100) + + + + Prepend debug output with timestamp + Dodaj izlaz debuga na početak sa vremenskom oznakom + + + + Send trace/debug info to console instead of debug.log file + Šalji trace/debug informacije na konzolu umjesto u debug.log datoteku + + + + Send trace/debug info to debugger + Pošalji trace/debug informacije u debugger + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Novčanik je trebao prepravak: ponovo pokrenite Bitcoin + diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index 8c867b082c..4e9989b3aa 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -23,7 +23,12 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Szerzői jog © 2009-2012 Bitcoin Developers + +Ez egy kísérleti program. +MIT/X11 szoftverlicenc alatt kiadva, lásd a mellékelt fájlt license.txt vagy http://www.opensource.org/licenses/mit-license.php. + +Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (http://www.openssl.org/) és kriptográfiai szoftvertben való felhasználásra, írta Eric Young (eay@cryptsoft.com) és UPnP szoftver, írta Thomas Bernard. @@ -63,21 +68,11 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &Másolás a vágólapra - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - A kiválasztott cím törlése a listáról. Csak a küldő címek törölhetőek. - Show &QR Code - - - &Delete - &Törlés - Sign a message to prove you own this address @@ -88,6 +83,16 @@ This product includes software developed by the OpenSSL Project for use in the O &Sign Message + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + A kiválasztott cím törlése a listáról. Csak a küldő címek törölhetőek. + + + + &Delete + &Törlés + Copy address @@ -106,25 +111,25 @@ This product includes software developed by the OpenSSL Project for use in the O Delete - + Törlés - + Export Address Book Data Címjegyzék adatainak exportálása - + Comma separated file (*.csv) Vesszővel elválasztott fájl (*. csv) - + Error exporting Hiba exportálás közben - + Could not write to file %1. %1 nevű fájl nem írható. @@ -155,23 +160,29 @@ This product includes software developed by the OpenSSL Project for use in the O Párbeszéd - - + TextLabel SzövegCímke - + Enter passphrase Add meg a jelszót - + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + FIGYELEM: Ha kódolod a tárcát, és elveszíted a jelszavad, akkor <b>AZ ÖSSZES BITCOINODAT IS EL FOGOD VESZÍTENI!</b> +Biztosan kódolni akarod a tárcát? + + + New passphrase Új jelszó - + Repeat new passphrase Új jelszó újra @@ -180,11 +191,21 @@ 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>. Írd be az új jelszót a tárcához.<br/>Használj legalább 10<br/>véletlenszerű karaktert</b> vagy <b>legalább nyolc szót</b>. + + + Wallet unlock failed + Tárca megnyitása sikertelen + Encrypt wallet Tárca kódolása + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Tárca kódolása belső hiba miatt sikertelen. A tárcád nem lett kódolva. + This operation needs your wallet passphrase to unlock the wallet. @@ -220,13 +241,6 @@ This product includes software developed by the OpenSSL Project for use in the O Confirm wallet encryption Biztosan kódolni akarod a tárcát? - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - FIGYELEM: Ha kódolod a tárcát, és elveszíted a jelszavad, akkor <b>AZ ÖSSZES BITCOINODAT IS EL FOGOD VESZÍTENI!</b> -Biztosan kódolni akarod a tárcát? - @@ -234,10 +248,9 @@ Biztosan kódolni akarod a tárcát? Tárca kódolva - - - Warning: The Caps Lock key is on. - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. @@ -247,27 +260,12 @@ Biztosan kódolni akarod a tárcát? Wallet encryption failed Tárca kódolása sikertelen. - - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Tárca kódolása belső hiba miatt sikertelen. A tárcád nem lett kódolva. - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. - The supplied passphrases do not match. A megadott jelszavak nem egyeznek. - - - Wallet unlock failed - Tárca megnyitása sikertelen - @@ -282,295 +280,307 @@ Biztosan kódolni akarod a tárcát? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Jelszó megváltoztatva. + + + + Warning: The Caps Lock key is on. + + BitcoinGUI - + + &Change Passphrase + Jelszó &megváltoztatása + + + Bitcoin Wallet Bitcoin-tárca - - + + Synchronizing with network... Szinkronizálás a hálózattal... - + Block chain synchronization in progress Blokklánc-szinkronizálás folyamatban - + &Overview &Áttekintés - + Show general overview of wallet Tárca általános áttekintése - + &Transactions &Tranzakciók - + Browse transaction history Tranzakciótörténet megtekintése - + &Address Book Cím&jegyzék - + Edit the list of stored addresses and labels Tárolt címek és címkék listájának szerkesztése - + &Receive coins Érmék &fogadása - + Show the list of addresses for receiving payments Kiizetést fogadó címek listája - + &Send coins Érmék &küldése - + Send coins to a bitcoin address Érmék küldése megadott címre - + Sign &message - + Prove you control an address - + E&xit &Kilépés - + Quit application Kilépés - + &About %1 &A %1-ról - + Show information about Bitcoin Információk a Bitcoinról - + + About &Qt + A &Qt-ról + + + + Show information about Qt + Információk a Qt ról + + + &Options... &Opciók... - + Modify configuration options for bitcoin Bitcoin konfigurációs opciók - + Open &Bitcoin A &Bitcoin megnyitása - + Show the Bitcoin window A Bitcoin-ablak mutatása - + &Export... &Exportálás... - + + Export the data in the current tab to a file + + + + &Encrypt Wallet Tárca &kódolása - + Encrypt or decrypt wallet Tárca kódolása vagy dekódolása - - &Change Passphrase - Jelszó &megváltoztatása - - - - Change the passphrase used for wallet encryption - Tárcakódoló jelszó megváltoztatása - - - - About &Qt - A &Qt-ról - - - - Show information about Qt - Információk a Qt ról - - - - Export the data in the current tab to a file - - - - + &Backup Wallet - + Backup wallet to another location - + + Change the passphrase used for wallet encryption + Tárcakódoló jelszó megváltoztatása + + + &File &Fájl - + &Settings &Beállítások - + &Help &Súgó - + Tabs toolbar Fül eszköztár - + Actions toolbar Parancsok eszköztár - + [testnet] [teszthálózat] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network %n aktív kapcsolat a Bitcoin-hálózattal - + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to the new location. + + + + + bitcoin-qt + bitcoin-qt + + + Downloaded %1 of %2 blocks of transaction history. %1 blokk letöltve a tranzakciótörténet %2 blokkjából. - + Downloaded %1 blocks of transaction history. %1 blokk letöltve a tranzakciótörténetből. - - %n second(s) ago - - %n másodperccel ezelőtt - - - - - %n minute(s) ago + + %n day(s) ago - %n perccel ezelőtt + %n nappal ezelőtt - + %n hour(s) ago %n órával ezelőtt - - - %n day(s) ago - - %n nappal ezelőtt - - - + Up to date Naprakész - + Catching up... Frissítés... - + Last received block was generated %1. Az utolsóként kapott blokk generálva: %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? Ez a tranzakció túllépi a mérethatárt, de %1 tranzakciós díj ellenében így is elküldheted. Ezt a plusz összeget a tranzakcióidat feldolgozó csomópontok kapják, így magát a hálózatot támogatod vele. Hajlandó vagy megfizetni a díjat? - + Sending... Küldés... - + Sent transaction Tranzakció elküldve. - + Incoming transaction Beérkező tranzakció - + Date: %1 Amount: %2 Type: %3 @@ -583,60 +593,54 @@ Cím: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Tárca <b>kódolva</b> és jelenleg <b>nyitva</b>. - + Wallet is <b>encrypted</b> and currently <b>locked</b> Tárca <b>kódolva</b> és jelenleg <b>zárva</b>. - - - Backup Wallet - - - - - Wallet Data (*.dat) - - - - - Backup Failed - + + + %n second(s) ago + + %n másodperccel ezelőtt + - - - There was an error trying to save the wallet data to the new location. - + + + %n minute(s) ago + + %n perccel ezelőtt + - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &Mértékegység: - + Choose the default subdivision unit to show in the interface, and when sending coins Válaszd ki az interfészen és érmék küldésekor megjelenítendő alapértelmezett alegységet. - + &Display addresses in transaction list &Címek megjelenítése a tranzakciólistában - + Whether to show Bitcoin addresses in the transaction list @@ -683,26 +687,26 @@ Cím: %4 Edit receiving address Fogadó cím szerkesztése - - - Edit sending address - Küldő cím szerkesztése - The entered address "%1" is already in the address book. A megadott "%1" cím már szerepel a címjegyzékben. - - The entered address "%1" is not a valid bitcoin address. - A megadott "%1" cím nem egy érvényes Bitcoin-cím. + + Edit sending address + Küldő cím szerkesztése Could not unlock wallet. Tárca feloldása sikertelen + + + The entered address "%1" is not a valid bitcoin address. + A megadott "%1" cím nem egy érvényes Bitcoin-cím. + New key generation failed. @@ -711,6 +715,16 @@ Cím: %4 MainOptionsPage + + + Map port using &UPnP + &UPnP port-feltérképezés + + + + &Connect through SOCKS4 proxy: + &Csatlakozás SOCKS4 proxyn keresztül: + &Start Bitcoin on window system startup @@ -731,11 +745,6 @@ Cím: %4 Show only a tray icon after minimizing the window Kicsinyítés után csak eszköztár-ikont mutass - - - Map port using &UPnP - &UPnP port-feltérképezés - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. @@ -751,16 +760,21 @@ Cím: %4 Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Az alkalmazásból való kilépés helyett az eszköztárba kicsinyíti az alkalmazást az ablak bezárásakor. Ez esetben az alkalmazás csak a Kilépés menüponttal zárható be. - - - &Connect through SOCKS4 proxy: - &Csatlakozás SOCKS4 proxyn keresztül: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) SOCKS4 proxyn keresztüli csatlakozás a Bitcoin hálózatához (pl. Tor-on keresztüli csatlakozás esetén) + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Opcionális, kB-onkénti tranzakciós díj a tranzakcióid minél gyorsabb feldolgozásának elősegítésére. A legtöbb tranzakció 1 kB-os. 0,01 BTC ajánlott. + + + + Pay transaction &fee + Tranzakciós &díj fizetése + Proxy &IP: @@ -781,32 +795,17 @@ Cím: %4 Port of the proxy (e.g. 1234) Proxy portja (pl.: 1234) + + + MessagePage + + + Message + Üzenet + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - - - - Pay transaction &fee - Tranzakciós &díj fizetése - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - - - - MessagePage - - - 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. @@ -814,21 +813,11 @@ Cím: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - Choose adress from address book - Válassz egy címet a címjegyzékből - Alt+A Alt+A - - - Paste address from clipboard - Cím beillesztése a vágólapról - Alt+P @@ -859,6 +848,16 @@ Cím: %4 Copy the current signature to the system clipboard + + + Choose adress from address book + Válassz egy címet a címjegyzékből + + + + Paste address from clipboard + Cím beillesztése a vágólapról + &Copy to Clipboard @@ -917,11 +916,6 @@ Cím: %4 Balance: Egyenleg: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -937,15 +931,10 @@ Cím: %4 Unconfirmed: Megerősítetlen: - - - 0 BTC - 0 BTC - Wallet - + Tárca @@ -988,17 +977,17 @@ Cím: %4 Amount: - + Összeg: BTC - + Label: - + Címke: @@ -1029,32 +1018,25 @@ Cím: %4 SendCoinsDialog - - - - - - - - - Send Coins - Érmék küldése + + 123.456 BTC + 123.456 BTC - - Send to multiple recipients at once - Küldés több címzettnek egyszerre + + &Send + &Küldés + + + + Confirm send coins + Küldés megerősítése &Add recipient... &Címzett hozzáadása ... - - - Clear all - Mindent töröl - Remove all transaction fields @@ -1066,9 +1048,9 @@ Cím: %4 Egyenleg: - - 123.456 BTC - 123.456 BTC + + Send to multiple recipients at once + Küldés több címzettnek egyszerre @@ -1076,65 +1058,72 @@ Cím: %4 Küldés megerősítése - - &Send - &Küldés - - - - <b>%1</b> to %2 (%3) - <b>%1</b> %2-re (%3) + + + + + + + + + Send Coins + Érmék küldése - - Confirm send coins - Küldés megerősítése + + Clear all + Mindent töröl - + Are you sure you want to send %1? Valóban el akarsz küldeni %1-t? - + and és - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance + + The amount exceeds your balance. Nincs ennyi bitcoin az egyenlegeden. - - Total exceeds your balance when the %1 transaction fee is included + + 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 in one send operation + + 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. - - Error: Transaction creation failed - Hiba: nem sikerült létrehozni a tranzakciót + + Error: Transaction creation failed. + Hiba: nem sikerült létrehozni a tranzakciót. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból - például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. + + + <b>%1</b> to %2 (%3) + <b>%1</b> %2-re (%3) + SendCoinsEntry @@ -1163,7 +1152,7 @@ Cím: %4 &Label: - Címke: + &Címke: @@ -1180,11 +1169,6 @@ Cím: %4 Alt+A Alt+A - - - Paste address from clipboard - Cím beillesztése a vágólapról - Alt+P @@ -1195,24 +1179,39 @@ Cím: %4 Remove this recipient Címzett eltávolítása + + + Paste address from clipboard + Cím beillesztése a vágólapról + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adj meg egy Bitcoin-címet (pl.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L ) + Adj meg egy Bitcoin-címet (pl.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L ) TransactionDesc - - Open for %1 blocks - Megnyitva %1 blokkra + + , has not been successfully broadcast yet + , még nem sikerült elküldeni. Open until %1 Megnyitva %1-ig + + + %1 confirmations + %1 megerősítés + + + + Open for %1 blocks + Megnyitva %1 blokkra + %1/offline? @@ -1223,21 +1222,11 @@ Cím: %4 %1/unconfirmed %1/megerősítetlen - - - %1 confirmations - %1 megerősítés - <b>Status:</b> <b>Állapot:</b> - - - , has not been successfully broadcast yet - , még nem sikerült elküldeni. - , broadcast through %1 node @@ -1256,7 +1245,7 @@ Cím: %4 <b>Source:</b> Generated<br> - <b>Forrás:</b> Generálva <br> + <b>Forrás:</b> Generálva<br> @@ -1292,7 +1281,7 @@ Cím: %4 <b>Credit:</b> - <b>Jóváírás</b> + <b>Jóváírás:</b> @@ -1378,107 +1367,127 @@ Cím: %4 Összeg - + Open for %n block(s) %n blokkra megnyitva - + Open until %1 %1-ig megnyitva - + Offline (%1 confirmations) Offline (%1 megerősítés) - - Unconfirmed (%1 of %2 confirmations) - Megerősítetlen (%1 %2 megerősítésből) - - - - Confirmed (%1 confirmations) - Megerősítve (%1 megerősítés) - - - - Mined balance will be available in %n more blocks - - %n blokk múlva lesz elérhető a bányászott egyenleg. - - - - - This block was not received by any other nodes and will probably not be accepted! - Ezt a blokkot egyetlen másik csomópont sem kapta meg, így valószínűleg nem lesz elfogadva! - - - - Generated but not accepted - Legenerálva, de még el nem fogadva. - - - + Received with Erre a címre - + Received from - + Erről az - + Sent to Erre a címre - + Payment to yourself Magadnak kifizetve - + Mined Kibányászva - + (n/a) (nincs) - + + Amount removed from or added to balance. + Az egyenleghez jóváírt vagy ráterhelt összeg. + + + + This block was not received by any other nodes and will probably not be accepted! + Ezt a blokkot egyetlen másik csomópont sem kapta meg, így valószínűleg nem lesz elfogadva! + + + + Generated but not accepted + Legenerálva, de még el nem fogadva. + + + Transaction status. Hover over this field to show number of confirmations. Tranzakció állapota. Húzd ide a kurzort, hogy lásd a megerősítések számát. - + Date and time that the transaction was received. Tranzakció fogadásának dátuma és időpontja. - + Type of transaction. Tranzakció típusa. - + Destination address of transaction. A tranzakció címzettjének címe. - - Amount removed from or added to balance. - Az egyenleghez jóváírt vagy ráterhelt összeg. + + Unconfirmed (%1 of %2 confirmations) + Megerősítetlen (%1 %2 megerősítésből) + + + + Confirmed (%1 confirmations) + Megerősítve (%1 megerősítés) + + + + Mined balance will be available in %n more blocks + + %n blokk múlva lesz elérhető a bányászott egyenleg. + TransactionView + + + Could not write to file %1. + %1 fájlba való kiírás sikertelen. + + + + Range: + Tartomány: + + + + to + meddig + + + + Show details... + Részletek... + @@ -1571,78 +1580,58 @@ Cím: %4 Címke szerkesztése - - Show details... - Részletek... - - - + Export Transaction Data Tranzakció adatainak exportálása - + 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 lépett fel exportálás közben - - - Could not write to file %1. - %1 fájlba való kiírás sikertelen. - - - - Range: - Tartomány: - - - - to - meddig - - - - WalletModel + + + WalletModel Sending... @@ -1662,370 +1651,421 @@ Cím: %4 Használat: - - Send command to -server or bitcoind - Parancs küldése a -serverhez vagy a bitcoindhez - + + Show splash screen on startup (default: 1) + - - List commands - Parancsok kilistázása - + + Set database cache size in megabytes (default: 25) + - - Get help for a command - Segítség egy parancsról - + + Listen for connections on <port> (default: 8333 or testnet: 18333) + - - Options: - Opciók - + + Maintain at most <n> connections to peers (default: 125) + - - Specify configuration file (default: bitcoin.conf) - Konfigurációs fájl (alapértelmezett: bitcoin.conf) - + + 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 - - Specify pid file (default: bitcoind.pid) - pid-fájl (alapértelmezett: bitcoind.pid) - + + Find peers using internet relay chat (default: 0) + - - Generate coins - Érmék generálása - + + Accept connections from outside (default: 1) + - - Don't generate coins - Bitcoin-generálás leállítása - + + Set language, for example "de_DE" (default: system locale) + - - Start minimized - Indítás lekicsinyítve - + + Find peers using DNS lookup (default: 1) + - - Specify data directory - Adatkönyvtár - + + Threshold for disconnecting misbehaving peers (default: 100) + - - Specify connection timeout (in milliseconds) - Csatlakozás időkerete (milliszekundumban) - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Connect through socks4 proxy - Csatlakozás SOCKS4 proxyn keresztül - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + - - Allow DNS lookups for addnode and connect - DNS-kikeresés engedélyezése az addnode-nál és a connect-nél - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + - - Listen for connections on <port> (default: 8333 or testnet: 18333) + + Use Universal Plug and Play to map the listening port (default: 1) + UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 0) + + + + Fee per KB to add to transactions you send + kB-onként felajánlandó díj az általad küldött tranzakciókhoz + + + + Output extra debugging information - - Maintain at most <n> connections to peers (default: 125) + + Prepend debug output with timestamp - - Add a node to connect to - Elérendő csomópont megadása - + + Send trace/debug info to console instead of debug.log file + - - Connect only to the specified node - Csatlakozás csak a megadott csomóponthoz - + + Send trace/debug info to debugger + - - Don't accept connections from outside - Külső csatlakozások elutasítása - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Don't bootstrap list of peers using DNS + + Upgrade wallet to latest format - - Threshold for disconnecting misbehaving peers (default: 100) + + How many blocks to check at startup (default: 2500, 0 = all) - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + How thorough the block verification is (0-6, default: 1) - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + Loading addresses... + Címek betöltése... + + + + Loading block index... + Blokkindex betöltése... + + + + Loading wallet... + Tárca betöltése... + + + + Wallet needed to be rewritten: restart Bitcoin to complete - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address - - Don't attempt to use UPnP to map the listening port - UPnP-használat letiltása a figyelő port feltérképezésénél + + Rescanning... + Újraszkennelés... + + + + Error: CreateThread(StartNode) failed + Hiba: CreateThread(StartNode) sikertelen + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Figyelem: Ellenőrizd, hogy helyesen van-e beállítva a gépeden a dátum és az idő. A Bitcoin nem fog megfelelően működni, ha rosszul van beállítvaaz órád. + + + + Send command to -server or bitcoind + Parancs küldése a -serverhez vagy a bitcoindhez - - Attempt to use UPnP to map the listening port - UPnP-használat engedélyezése a figyelő port feltérképezésénél + + List commands + Parancsok kilistázása - - Fee per kB to add to transactions you send - + + Get help for a command + Segítség egy parancsról + - - Accept command line and JSON-RPC commands - Parancssoros és JSON-RPC parancsok elfogadása + + Options: + Opciók - - Run in the background as a daemon and accept commands - Háttérben futtatás daemonként és parancsok elfogadása + + Specify configuration file (default: bitcoin.conf) + Konfigurációs fájl (alapértelmezett: bitcoin.conf) - - Use the test network - Teszthálózat használata + + Specify pid file (default: bitcoind.pid) + pid-fájl (alapértelmezett: bitcoind.pid) - - Output extra debugging information - + + Generate coins + Érmék generálása + - - Prepend debug output with timestamp - + + Done loading + Betöltés befejezve. - - Send trace/debug info to console instead of debug.log file - + + Specify connection timeout (in milliseconds) + Csatlakozás időkerete (milliszekundumban) + + + + + Invalid -proxy address + Érvénytelen -proxy cím + + + + Invalid amount for -paytxfee=<amount> + Étvénytelen -paytxfee=<összeg> összeg + + + + Accept command line and JSON-RPC commands + Parancssoros és JSON-RPC parancsok elfogadása + - Send trace/debug info to debugger - + Use the test network + Teszthálózat használata + - + Username for JSON-RPC connections Felhasználói név JSON-RPC csatlakozásokhoz - + Password for JSON-RPC connections Jelszó JSON-RPC csatlakozásokhoz - + Listen for JSON-RPC connections on <port> (default: 8332) JSON-RPC csatlakozásokhoz figyelendő <port> (alapértelmezett: 8332) - + + Connect through socks4 proxy + Csatlakozás SOCKS4 proxyn keresztül + + + + Allow JSON-RPC connections from specified IP address JSON-RPC csatlakozások engedélyezése meghatározott IP-címről - + + Allow DNS lookups for addnode and connect + DNS-kikeresés engedélyezése az addnode-nál és a connect-né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) - + Set key pool size to <n> (default: 100) Kulcskarika mérete <n> (alapértelmezett: 100) - + Rescan the block chain for missing wallet transactions Blokklánc újraszkennelése hiányzó tárca-tranzakciók után - - -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) - - - - + Use OpenSSL (https) for JSON-RPC connections OpenSSL (https) használata JSON-RPC csatalkozásokhoz - + Server certificate file (default: server.cert) Szervertanúsítvány-fájl (alapértelmezett: server.cert) - + Server private key (default: server.pem) Szerver titkos kulcsa (alapértelmezett: server.pem) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Az %s adatkönyvtár nem zárható. A Bitcoin valószínűleg fut már. - - - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Elfogadható rejtjelkulcsok (alapértelmezett: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH ) - - Loading addresses... - Címek betöltése... - - - + This help message Ez a súgó-üzenet - - Loading block index... - Blokkindex betöltése... - - - - Loading wallet... - Tárca betöltése... + + +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) + - - Rescanning... - Újraszkennelés... + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Az %s adatkönyvtár nem zárható. A Bitcoin valószínűleg fut már. - - Error loading addr.dat - Hiba az addr.dat betöltése közben + + 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. - - Error loading blkindex.dat - Hiba az blkindex.dat betöltése közben + + Don't generate coins + Bitcoin-generálás leállítása + - - Error loading wallet.dat: Wallet corrupted - Hiba a wallet.dat betöltése közben: meghibásodott tárca + + Specify data directory + Adatkönyvtár + - - Done loading - Betöltés befejezve. + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + A %d port nem elérhető ezen a gépen. A Bitcoin valószínűleg fut már. - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Hiba a wallet.dat betöltése közben: ehhez a tárcához újabb verziójú Bitcoin-kliens szükséges + + beta + béta - - Invalid -proxy address - Érvénytelen -proxy cím + + Start minimized + Indítás lekicsinyítve + - - Wallet needed to be rewritten: restart Bitcoin to complete - + + Connect only to the specified node + Csatlakozás csak a megadott csomóponthoz + - - Invalid amount for -paytxfee=<amount> - Étvénytelen -paytxfee=<összeg> összeg + + 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 + + Error loading addr.dat + Hiba az addr.dat betöltése közben - 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. + Error loading blkindex.dat + Hiba az blkindex.dat betöltése közben - - Error: CreateThread(StartNode) failed - Hiba: CreateThread(StartNode) sikertelen + + Error loading wallet.dat: Wallet corrupted + Hiba a wallet.dat betöltése közben: meghibásodott tárca - - Warning: Disk space is low - Figyelem: kevés a hely a lemezen. + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Hiba a wallet.dat betöltése közben: ehhez a tárcához újabb verziójú Bitcoin-kliens szükséges - Unable to bind to port %d on this computer. Bitcoin is probably already running. - A %d port nem elérhető ezen a gépen. A Bitcoin valószínűleg fut már. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Figyelem: Ellenőrizd, hogy helyesen van-e beállítva a gépeden a dátum és az idő. A Bitcoin nem fog megfelelően működni, ha rosszul van beállítvaaz órád. + Error loading wallet.dat + Hiba az wallet.dat betöltése közben - - beta - béta + + Warning: Disk space is low + Figyelem: kevés a hely a lemezen diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts index 82d695391b..836806e20f 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -69,21 +69,11 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso &Copy to Clipboard &Copia nella clipboard - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Cancella l'indirizzo attualmente selezionato dalla lista. Solo indirizzi d'invio possono essere cancellati. - Show &QR Code Mostra il codice &QR - - - &Delete - &Cancella - Sign a message to prove you own this address @@ -94,6 +84,16 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso &Sign Message &Firma il messaggio + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Cancella l'indirizzo attualmente selezionato dalla lista. Solo indirizzi d'invio possono essere cancellati. + + + + &Delete + &Cancella + Copy address @@ -115,22 +115,22 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Cancella - + Export Address Book Data Esporta gli indirizzi della rubrica - + Comma separated file (*.csv) Testo CSV (*.csv) - + Error exporting Errore nell'esportazione - + Could not write to file %1. Impossibile scrivere sul file %1. @@ -155,32 +155,49 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso AskPassphraseDialog + + + Decrypt wallet + Decifra il portamonete + Dialog Dialogo - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin verrà ora chiuso per finire il processo di crittazione. Ricorda che criptare il tuo portamonete non può fornire una protezione totale contro furti causati da malware che dovessero infettare il tuo computer. + + + TextLabel Etichetta - + Enter passphrase Inserisci la passphrase - + New passphrase Nuova passphrase - + Repeat new passphrase Ripeti la passphrase + + + + + + Wallet encryption failed + Cifratura del portamonete fallita + 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>. @@ -206,11 +223,6 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso This operation needs your wallet passphrase to decrypt the wallet. Quest'operazione necessita della passphrase per decifrare il portamonete, - - - Decrypt wallet - Decifra il portamonete - Change passphrase @@ -226,13 +238,6 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Confirm wallet encryption Conferma la cifratura del portamonete - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ATTENZIONE: se si cifra il portamonete e si perde la frase d'ordine, <b>SI PERDERANNO TUTTI I PROPRI BITCOIN</b>! -Si è sicuri di voler cifrare il portamonete? - @@ -240,29 +245,22 @@ Si è sicuri di voler cifrare il portamonete? Portamonete cifrato - - - Warning: The Caps Lock key is on. - Attenzione: tasto Blocco maiuscole attivo. + + Wallet passphrase was successfully changed. + Jelszó megváltoztatva. - - - - - Wallet encryption failed - Cifratura del portamonete fallita + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ATTENZIONE: se si cifra il portamonete e si perde la frase d'ordine, <b>SI PERDERANNO TUTTI I PROPRI BITCOIN</b>! +Si è sicuri di voler cifrare il portamonete? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Cifratura del portamonete fallita a causa di un errore interno. Il portamonete non è stato cifrato. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin verrà ora chiuso per finire il processo di crittazione. Ricorda che criptare il tuo portamonete non può fornire una protezione totale contro furti causati da malware che dovessero infettare il tuo computer. - @@ -287,216 +285,202 @@ Si è sicuri di voler cifrare il portamonete? Decifrazione del portamonete fallita - - Wallet passphrase was succesfully changed. - Passphrase del portamonete modificata con successo. + + + Warning: The Caps Lock key is on. + Attenzione: tasto Blocco maiuscole attivo. BitcoinGUI - - Bitcoin Wallet - Portamonete di bitcoin + + Send coins to a bitcoin address + Invia monete ad un indirizzo bitcoin - - + + Synchronizing with network... Sto sincronizzando con la rete... - - Block chain synchronization in progress - sincronizzazione della catena di blocchi in corso + + Bitcoin Wallet + Portamonete di bitcoin - + &Overview &Sintesi - + Show general overview of wallet Mostra lo stato generale del portamonete - + + Block chain synchronization in progress + sincronizzazione della catena di blocchi in corso + + + &Transactions &Transazioni - + Browse transaction history Cerca nelle transazioni - + &Address Book &Rubrica - + Edit the list of stored addresses and labels Modifica la lista degli indirizzi salvati e delle etichette - + &Receive coins &Ricevi monete - + Show the list of addresses for receiving payments Mostra la lista di indirizzi su cui ricevere pagamenti - - &Send coins - &Invia monete + + E&xit + &Esci - - Send coins to a bitcoin address - Invia monete ad un indirizzo bitcoin + + Export the data in the current tab to a file + Esporta i dati nella tabella corrente su un file - - Sign &message - Firma il &messaggio + + Backup wallet to another location + Backup portamonete in un'altra locazione - - Prove you control an address - Dimostra di controllare un indirizzo + + Backup Wallet + Backup Portamonete - - E&xit - &Esci + + Wallet Data (*.dat) + Dati Portamonete (*.dat) + + + + Backup Failed + Backup fallito + + + + There was an error trying to save the wallet data to the new location. + C'è stato un errore tentanto di salvare i dati del portamonete in un'altra locazione - + + &Send coins + &Invia monete + + + Quit application Chiudi applicazione - - &About %1 - &Informazioni su %1 + + Sign &message + Firma il &messaggio + + + + Prove you control an address + Dimostra di controllare un indirizzo - + Show information about Bitcoin Mostra informazioni su Bitcoin - + + About &Qt + Informazioni su &Qt + + + + Show information about Qt + Mostra informazioni su Qt + + + &Options... &Opzioni... - + + &Export... + &Esporta... + + + Modify configuration options for bitcoin Modifica configurazione opzioni per bitcoin - + Open &Bitcoin Apri &Bitcoin - + Show the Bitcoin window Mostra la finestra Bitcoin - - &Export... - &Esporta... - - - + &Encrypt Wallet &Cifra il portamonete - + Encrypt or decrypt wallet Cifra o decifra il portamonete - - &Change Passphrase - &Cambia la passphrase - - - + Change the passphrase used for wallet encryption Cambia la passphrase per la cifratura del portamonete - - About &Qt - Informazioni su &Qt - - - - Show information about Qt - Mostra informazioni su Qt - - - - Export the data in the current tab to a file - - - - - &Backup Wallet - &Backup il portamonete - - - - Backup wallet to another location - - - - - &File - &File - - - - &Settings - &Impostazioni - - - - &Help - &Aiuto - - - - Tabs toolbar - Barra degli strumenti "Tabs" + + &Change Passphrase + &Cambia la passphrase - + Actions toolbar Barra degli strumenti "Azioni" - + [testnet] [testnet] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network %n connessione attiva alla rete Bitcoin @@ -504,17 +488,17 @@ Si è sicuri di voler cifrare il portamonete? - - Downloaded %1 of %2 blocks of transaction history. - Scaricati %1 dei %2 blocchi dello storico transazioni. - - - + Downloaded %1 blocks of transaction history. Scaricati %1 blocchi dello storico transazioni. + + + Tabs toolbar + Barra degli strumenti "Tabs" + - + %n second(s) ago %n secondo fa @@ -522,7 +506,7 @@ Si è sicuri di voler cifrare il portamonete? - + %n minute(s) ago %n minuto fa @@ -530,15 +514,35 @@ Si è sicuri di voler cifrare il portamonete? - + %n hour(s) ago %n ora fa %n ore fa + + + Downloaded %1 of %2 blocks of transaction history. + Scaricati %1 dei %2 blocchi dello storico transazioni. + + + + &About %1 + &A %1-ról + + + + &Backup Wallet + + + + + bitcoin-qt + + - + %n day(s) ago %n giorno fa @@ -546,42 +550,42 @@ Si è sicuri di voler cifrare il portamonete? - + Up to date Aggiornato - + Catching up... In aggiornamento... - + Last received block was generated %1. L'ultimo blocco ricevuto è stato generato %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? Questa transazione è superiore al limite di dimensione. È comunque possibile inviarla con una commissione di %1, che va ai nodi che processano la tua transazione e contribuisce a sostenere la rete. Vuoi pagare la commissione? - + Sending... - Invio... + Invio... - + Sent transaction Transazione inviata - + Incoming transaction Transazione ricevuta - + Date: %1 Amount: %2 Type: %3 @@ -595,60 +599,55 @@ 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> - - Backup Wallet - - - - - Wallet Data (*.dat) - + + &File + &File - - Backup Failed - + + &Settings + &Impostazioni - - There was an error trying to save the wallet data to the new location. - + + &Help + &Aiuto - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &Unità di misura degli importi in: - + Choose the default subdivision unit to show in the interface, and when sending coins Scegli l'unità di suddivisione di default per l'interfaccia e per l'invio di monete - + &Display addresses in transaction list &Mostra gli indirizzi nella lista delle transazioni - + Whether to show Bitcoin addresses in the transaction list @@ -700,16 +699,6 @@ Indirizzo: %4 Edit sending address Modifica indirizzo d'invio - - - The entered address "%1" is already in the address book. - L'indirizzo inserito "%1" è già in rubrica. - - - - The entered address "%1" is not a valid bitcoin address. - L'indirizzo inserito "%1" non è un indirizzo bitcoin valido. - Could not unlock wallet. @@ -720,12 +709,22 @@ Indirizzo: %4 New key generation failed. Generazione della nuova chiave non riuscita. - - - MainOptionsPage - - &Start Bitcoin on window system startup + + The entered address "%1" is already in the address book. + L'indirizzo inserito "%1" è già in rubrica. + + + + The entered address "%1" is not a valid bitcoin address. + L'indirizzo inserito "%1" non è un indirizzo bitcoin valido. + + + + MainOptionsPage + + + &Start Bitcoin on window system startup &Fai partire Bitcoin all'avvio del sistema @@ -761,52 +760,47 @@ Indirizzo: %4 Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Riduci ad icona, invece di uscire dall'applicazione quando la finestra viene chiusa. Quando questa opzione è attivata, l'applicazione verrà chiusa solo dopo aver selezionato Esci nel menu. + Riduci ad icona, invece di uscire dall'applicazione quando la finestra viene chiusa. Quando questa opzione è attivata, l'applicazione verrà chiusa solo dopo aver selezionato Esci nel menu. &Connect through SOCKS4 proxy: - &Collegati tramite SOCKS4 proxy: + &Csatlakozás SOCKS4 proxyn keresztül: - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Connettiti alla rete Bitcon attraverso un proxy SOCKS4 (ad esempio quando ci si collega via Tor) - - - - Proxy &IP: - &IP del proxy: + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + SOCKS4 proxyn keresztüli csatlakozás a Bitcoin hálózatához (pl. Tor-on keresztüli csatlakozás esetén) IP address of the proxy (e.g. 127.0.0.1) - Indirizzo IP del proxy (ad esempio 127.0.0.1) + Indirizzo IP del proxy (ad esempio 127.0.0.1) &Port: - &Porta: + + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. Port of the proxy (e.g. 1234) Porta del proxy (es. 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. - Pay transaction &fee Paga la &commissione - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. + + Proxy &IP: + &IP del proxy: @@ -819,7 +813,7 @@ Indirizzo: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + Puoi firmare messeggi con i tuoi indirizzi per dimostrare che sono tuoi. Fai attenzione a non firmare niente di vago, visto che gli attacchi di phishing potrebbero cercare di spingerti a mettere la tua firma su di loro. Firma solo dichiarazioni completamente dettagliate con cui sei d'accordo. @@ -841,6 +835,21 @@ Indirizzo: %4 Paste address from clipboard Incollare l'indirizzo dagli appunti + + + Copy the current signature to the system clipboard + + + + + Private key for %1 is not available. + La chiave privata per %1 non è disponibile. + + + + Sign failed + Firma non riuscita + Alt+P @@ -866,11 +875,6 @@ Indirizzo: %4 &Sign Message &Firma il messaggio - - - Copy the current signature to the system clipboard - - &Copy to Clipboard @@ -888,28 +892,18 @@ Indirizzo: %4 %1 is not a valid address. %1 non è un indirizzo valido. - - - Private key for %1 is not available. - La chiave privata per %1 non è disponibile. - - - - Sign failed - Firma non riuscita - OptionsDialog Main - Principale + Display - Mostra + Megjelenítés @@ -919,21 +913,36 @@ Indirizzo: %4 OverviewPage + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Totale delle transazioni in corso di conferma, che non sono ancora incluse nel saldo attuale + Form Modulo + + + Wallet + Tárca + + + + <b>Recent transactions</b> + <b>Transazioni recenti</b> + + + + Your current balance + Saldo attuale + Balance: Saldo - - - 123.456 BTC - 123,456 BTC - Number of transactions: @@ -942,7 +951,7 @@ Indirizzo: %4 0 - 0 + @@ -950,38 +959,43 @@ Indirizzo: %4 Non confermato: - - 0 BTC - 0 BTC + + Total number of transactions in wallet + Numero delle transazioni effettuate + + + QRCodeDialog - - Wallet - + + Label: + Etichetta: - - <b>Recent transactions</b> - <b>Transazioni recenti</b> + + Message: + Messaggio: - - Your current balance - Saldo attuale + + &Save As... + &Salva come... - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Totale delle transazioni in corso di conferma, che non sono ancora incluse nel saldo attuale + + Error encoding URI into QR Code. + - - Total number of transactions in wallet - Numero delle transazioni effettuate + + PNG Images (*.png) + Immagini PNG (*.png) + + + + Save Image... + - - - QRCodeDialog Dialog @@ -1007,48 +1021,23 @@ Indirizzo: %4 BTC BTC - - - Label: - Etichetta: - - - - Message: - Messaggio: - - - - &Save As... - &Salva come... - - - - Error encoding URI into QR Code. - - - - - Save Image... - - - - - PNG Images (*.png) - - SendCoinsDialog + + + Remove all transaction fields + Rimuovi tutti i campi della transazione + - - - - - - - + + + + + + + Send Coins Spedisci Bitcoin @@ -1057,21 +1046,6 @@ Indirizzo: %4 Send to multiple recipients at once Spedisci a diversi beneficiari in una volta sola - - - &Add recipient... - &Aggiungi beneficiario... - - - - Clear all - Cancella tutto - - - - Remove all transaction fields - Rimuovi tutti i campi della transazione - Balance: @@ -1080,12 +1054,12 @@ Indirizzo: %4 123.456 BTC - 123,456 BTC + Confirm the send action - Conferma la spedizione + Küldés megerősítése @@ -1093,59 +1067,69 @@ Indirizzo: %4 &Spedisci - + <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) - + Confirm send coins Conferma la spedizione di bitcoin - - Are you sure you want to send %1? - Si è sicuri di voler spedire %1? + + The recipient address is not valid, please recheck. + A címzett címe érvénytelen, kérlek, ellenőrizd. - - and - e + + The amount exceeds your balance. + Nincs ennyi bitcoin az egyenlegeden. - - The recepient address is not valid, please recheck. - L'indirizzo del beneficiario non è valido, per cortesia controlla. + + 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. - - The amount to pay must be larger than 0. - L'importo da pagare dev'essere maggiore di 0. + + 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. - - Amount exceeds your balance - L'importo è superiore al saldo attuale + + Error: Transaction creation failed. + Hiba: nem sikerült létrehozni a tranzakciót. - - Total exceeds your balance when the %1 transaction fee is included - Il totale è superiore al saldo attuale includendo la commissione %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. + Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. - - Duplicate address found, can only send to each address once in one send operation - Trovato un indirizzo doppio, si può spedire solo una volta a ciascun indirizzo in una singola operazione. + + &Add recipient... + &Aggiungi beneficiario... - - Error: Transaction creation failed - Errore: creazione della transazione fallita + + Are you sure you want to send %1? + Si è sicuri di voler spedire %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. - Errore: la transazione è stata rifiutata. Ciò accade se alcuni bitcoin nel portamonete sono stati già spesi, ad esempio se è stata usata una copia del file wallet.dat e i bitcoin sono stati spesi dalla copia ma non segnati come spesi qui. + + and + e + + + + Clear all + Cancella tutto + + + + The amount to pay must be larger than 0. + L'importo da pagare dev'essere maggiore di 0. @@ -1171,21 +1155,11 @@ Indirizzo: %4 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 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) L'indirizzo del beneficiario cui inviare il pagamento (ad esempio 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - Choose address from address book - Scegli l'indirizzo dalla rubrica - Alt+A @@ -1206,6 +1180,16 @@ Indirizzo: %4 Remove this recipient Rimuovere questo beneficiario + + + &Label: + &Etichetta + + + + Choose address from address book + Scegli l'indirizzo dalla rubrica + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1215,39 +1199,34 @@ Indirizzo: %4 TransactionDesc - - Open for %1 blocks - Aperto per %1 blocchi + + , has not been successfully broadcast yet + , non è stato ancora trasmesso con successo Open until %1 Aperto fino a %1 + + + Open for %1 blocks + Megnyitva %1 blokkra + %1/offline? - %1/offline? - - - - %1/unconfirmed - %1/non confermato + %1 confirmations - %1 conferme + %1 megerősítés <b>Status:</b> - <b>Stato:</b> - - - - , has not been successfully broadcast yet - , non è stato ancora trasmesso con successo + <b>Állapot:</b> @@ -1267,13 +1246,13 @@ Indirizzo: %4 <b>Source:</b> Generated<br> - <b>Fonte:</b> Generato<br> + <b>Forrás:</b> Generálva<br> <b>From:</b> - <b>Da:</b> + <b>Űrlap:</b> @@ -1290,12 +1269,12 @@ Indirizzo: %4 (yours, label: - (vostro, etichetta: + (tiéd, címke: (yours) - (vostro) + (tiéd) @@ -1303,54 +1282,59 @@ Indirizzo: %4 <b>Credit:</b> - <b>Credito:</b> + <b>Jóváírás:</b> (%1 matures in %2 more blocks) - (%1 matura in altri %2 blocchi) + (%1, %2 múlva készül el) (not accepted) - (non accettate) + (elutasítva) <b>Debit:</b> - <b>Debito:</b> + <b>Terhelés:</b> <b>Transaction fee:</b> - <b>Commissione:</b> + <b>Tranzakciós díj:</b> <b>Net amount:</b> - <b>Importo netto:</b> + <b>Nettó összeg:</b> Message: - Messaggio: + Messaggio: Comment: - Commento: + Megjegyzés: Transaction ID: - ID della transazione: + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Bisogna attendere 120 blocchi prima di spendere I bitcoin generati. Quando è stato generato questo blocco, è stato trasmesso alla rete per aggiungerlo alla catena di blocchi. Se non riesce a entrare nella catena, verrà modificato in "non accettato" e non sarà spendibile. Questo può accadere a volte, se un altro nodo genera un blocco entro pochi secondi del tuo. + A frissen generált érméket csak 120 blokkal később tudod elkölteni. Ez a blokk nyomban szétküldésre került a hálózatba, amint legeneráltad, hogy hozzáadhassák a blokklánchoz. Ha nem kerül be a láncba, úgy az állapota "elutasítva"-ra módosul, és nem költheted el az érméket. Ez akkor következhet be időnként, ha egy másik csomópont mindössze néhány másodperc különbséggel generált le egy blokkot a tiédhez képest. + + + + %1/unconfirmed + %1/non confermato @@ -1389,7 +1373,7 @@ Indirizzo: %4 Importo - + Open for %n block(s) Aperto per %n blocco @@ -1397,126 +1381,170 @@ Indirizzo: %4 - + Open until %1 Aperto fino a %1 - + Offline (%1 confirmations) Offline (%1 conferme) - + Unconfirmed (%1 of %2 confirmations) Non confermati (%1 su %2 conferme) - + Confirmed (%1 confirmations) Confermato (%1 conferme) - - - Mined balance will be available in %n more blocks - - Il saldo generato sarà disponibile tra %n altro blocco - Il saldo generato sarà disponibile tra %n altri blocchi - - - + This block was not received by any other nodes and will probably not be accepted! Questo blocco non è stato ricevuto da altri nodi e probabilmente non sarà accettato! - + 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 - + 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. + + + Mined balance will be available in %n more blocks + + Il saldo generato sarà disponibile tra %n altro blocco + Il saldo generato sarà disponibile tra %n altri blocchi + + TransactionView - - - All - Tutti + + Edit label + Modifica l'etichetta - - Today - Oggi + + Export Transaction Data + Esporta i dati della transazione - - This week - Questa settimana + + Comma separated file (*.csv) + Testo CSV (*.csv) - - This month - Questo mese + + Confirmed + Confermato - - Last month - Il mese scorso + + Date + Data + + + + Address + Indirizzo + + + + ID + ID + + + + Show details... + Mostra i dettagli... + + + + Copy amount + Copia l'importo + + + + Type + Tipo + + + + Amount + Importo + + + + Error exporting + Errore nell'esportazione + + + + Could not write to file %1. + Impossibile scrivere sul file %1. + + + + Range: + Intervallo: @@ -1574,85 +1602,41 @@ Indirizzo: %4 Copia l'etichetta - - Copy amount - Copia l'importo - - - - Edit label - Modifica l'etichetta - - - - Show details... - Mostra i dettagli... + + This month + Questo mese - - Export Transaction Data - Esporta i dati della transazione + + + All + Tutti - - Comma separated file (*.csv) - Testo CSV (*.csv) + + Today + Oggi - - Confirmed - Confermato + + This week + Questa settimana - - Date - Data + + Last month + Il mese scorso - - Type - Tipo + + to + a - + Label Etichetta - - - Address - Indirizzo - - - - Amount - Importo - - - - ID - ID - - - - Error exporting - Errore nell'esportazione - - - - Could not write to file %1. - Impossibile scrivere sul file %1. - - - - Range: - Intervallo: - - - - to - a - WalletModel @@ -1664,21 +1648,35 @@ Indirizzo: %4 bitcoin-core - - - Bitcoin version - Versione di Bitcoin - Usage: Utilizzo: - - Send command to -server or bitcoind - Manda il comando a -server o bitcoind - + + Loading addresses... + Caricamento indirizzi... + + + + Rescanning... + Ripetere la scansione... + + + + Loading block index... + Caricamento dell'indice del blocco... + + + + Invalid -proxy address + Indirizzo -proxy non valido + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Attenzione: si prega di controllare che la data del computer e l'ora siano corrette. Se il vostro orologio è sbagliato Bitcoin non funziona correttamente. @@ -1723,187 +1721,190 @@ Indirizzo: %4 - - Start minimized - Parti in icona - + + Show splash screen on startup (default: 1) + Mostra finestra di presentazione all'avvio (default: 1) - + Specify data directory Specifica la cartella dati - + Specify connection timeout (in milliseconds) Specifica il timeout di connessione (in millisecondi) - - Connect through socks4 proxy - Connessione tramite socks4 proxy - + + 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 - - Allow DNS lookups for addnode and connect - Consenti ricerche DNS per aggiungere nodi e collegare - + + Find peers using internet relay chat (default: 0) + - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Ascolta le connessioni JSON-RPC su <porta> (default: 8333 o testnet: 18333) + + Accept connections from outside (default: 1) + - - Maintain at most <n> connections to peers (default: 125) - Mantieni al massimo <n> connessioni ai peer (default: 125) + + Set language, for example "de_DE" (default: system locale) + - - Add a node to connect to - Aggiungi un nodo e connetti a - + + Find peers using DNS lookup (default: 1) + - - Connect only to the specified node - Connetti solo al nodo specificato - + + Use Universal Plug and Play to map the listening port (default: 1) + UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 1) - - Don't accept connections from outside - Non accettare connessioni dall'esterno - + + Use Universal Plug and Play to map the listening port (default: 0) + UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 0) - - Don't bootstrap list of peers using DNS - Non avviare la lista dei peer usando il DNS + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Threshold for disconnecting misbehaving peers (default: 100) - Soglia di disconnessione dei peer di cattiva qualità (default: 100) + + How thorough the block verification is (0-6, default: 1) + - - 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 (default: 86400) + + Cannot downgrade wallet + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Buffer di ricezione massimo per connessione, <n>*1000 byte (default: 10000) + + Cannot initialize keypool + - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Buffer di invio massimo per connessione, <n>*1000 byte (default: 10000) + + Cannot write default address + - - Don't attempt to use UPnP to map the listening port - Non usare l'UPnP per mappare la porta - + + beta + beta - - Attempt to use UPnP to map the listening port - Prova ad usare l'UPnp per mappare la porta - + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Ascolta le connessioni JSON-RPC su <porta> (default: 8333 o testnet: 18333) - - Fee per kB to add to transactions you send - Commissione per kB da aggiungere alle transazioni in uscita + + Maintain at most <n> connections to peers (default: 125) + Mantieni al massimo <n> connessioni ai peer (default: 125) - - Accept command line and JSON-RPC commands - Accetta da linea di comando e da comandi JSON-RPC - + + Threshold for disconnecting misbehaving peers (default: 100) + Soglia di disconnessione dei peer di cattiva qualità (default: 100) - - Run in the background as a daemon and accept commands - Esegui in background come demone e accetta i comandi - + + 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 (default: 86400) - - Use the test network - Utilizza la rete di prova + + Start minimized + Parti in icona - - Output extra debugging information - Produci informazioni extra utili al debug + + Accept command line and JSON-RPC commands + Accetta da linea di comando e da comandi JSON-RPC + - - Prepend debug output with timestamp - Anteponi all'output di debug una marca temporale + + Connect through socks4 proxy + Connessione tramite socks4 proxy + - - 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 + + Allow DNS lookups for addnode and connect + Consenti ricerche DNS per aggiungere nodi e collegare + - + Send trace/debug info to debugger Invia le informazioni di trace/debug al 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: 8332) - Attendi le connessioni JSON-RPC su <porta> (default: 8332) + + Allow JSON-RPC connections from specified IP address + Consenti connessioni JSON-RPC dall'indirizzo IP specificato - - Allow JSON-RPC connections from specified IP address - Consenti connessioni JSON-RPC dall'indirizzo IP specificato + + Set key pool size to <n> (default: 100) + Impostare la quantità di chiavi di riserva a <n> (default: 100) - - Send commands to node running on <ip> (default: 127.0.0.1) - Inviare comandi al nodo in esecuzione su <ip> (default: 127.0.0.1) + + Server certificate file (default: server.cert) + File certificato del server (default: server.cert) - - Set key pool size to <n> (default: 100) - Impostare la quantità di chiavi di riserva a <n> (default: 100) + + Server private key (default: server.pem) + Chiave privata del server (default: server.pem) - - Rescan the block chain for missing wallet transactions - Ripeti analisi della catena dei blocchi per cercare le transazioni mancanti dal portamonete + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Cifrari accettabili (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + + Error loading wallet.dat: Wallet corrupted + Errore caricamento wallet.dat: Wallet corrotto + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Il portamonete deve essere riscritto: riavviare Bitcoin per completare + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1911,134 +1912,168 @@ Opzioni SSL: (vedi il wiki di Bitcoin per le istruzioni di configurazione SSL) - - Use OpenSSL (https) for JSON-RPC connections - Utilizzare OpenSSL (https) per le connessioni JSON-RPC - - - - - Server certificate file (default: server.cert) - File certificato del server (default: server.cert) - + + Error loading addr.dat + Errore caricamento addr.dat - - Server private key (default: server.pem) - Chiave privata del server (default: server.pem) - + + Bitcoin version + Versione di Bitcoin - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Non è possibile ottenere i dati sulla directory %s. Probabilmente Bitcoin è già in esecuzione. - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Cifrari accettabili (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Send command to -server or bitcoind + Manda il comando a -server o bitcoind - - Loading addresses... - Caricamento indirizzi... + + Loading wallet... + Caricamento portamonete... - - This help message - Questo messaggio di aiuto + + Done loading + Caricamento completato + + + + Invalid amount for -paytxfee=<amount> + Importo non valido per -paytxfee=<amount> + + + + 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. + + + + Error: CreateThread(StartNode) failed + Errore: CreateThread(StartNode) non riuscito + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Impossibile collegarsi alla porta %d su questo computer. Probabilmente Bitcoin è già in esecuzione. + + + + Connect only to the specified node + Connetti solo al nodo specificato - - Loading block index... - Caricamento dell'indice del blocco... + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Buffer di ricezione massimo per connessione, <n>*1000 byte (default: 10000) - - Loading wallet... - Caricamento portamonete... + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Buffer di invio massimo per connessione, <n>*1000 byte (default: 10000) - - Rescanning... - Ripetere la scansione... + + Run in the background as a daemon and accept commands + Esegui in background come demone e accetta i comandi + - - Error loading addr.dat - Errore caricamento addr.dat + + Use the test network + Utilizza la rete di prova + - - Error loading blkindex.dat - Errore caricamento blkindex.dat + + Output extra debugging information + Produci informazioni extra utili al debug - - Error loading wallet.dat: Wallet corrupted - Errore caricamento wallet.dat: Wallet corrotto + + Prepend debug output with timestamp + Anteponi all'output di debug una marca temporale - - Done loading - Caricamento completato + + 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 - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Errore caricamento wallet.dat: il wallet richiede una versione nuova di Bitcoin + + Listen for JSON-RPC connections on <port> (default: 8332) + Attendi le connessioni JSON-RPC su <porta> (default: 8332) + - - Invalid -proxy address - Indirizzo -proxy non valido + + Send commands to node running on <ip> (default: 127.0.0.1) + Inviare comandi al nodo in esecuzione su <ip> (default: 127.0.0.1) + - - Wallet needed to be rewritten: restart Bitcoin to complete - Il portamonete deve essere riscritto: riavviare Bitcoin per completare + + Rescan the block chain for missing wallet transactions + Ripeti analisi della catena dei blocchi per cercare le transazioni mancanti dal portamonete + - - Invalid amount for -paytxfee=<amount> - Importo non valido per -paytxfee=<amount> + + Use OpenSSL (https) for JSON-RPC connections + Utilizzare OpenSSL (https) per le connessioni JSON-RPC + - - Error loading wallet.dat - Errore caricamento wallet.dat + + This help message + Questo messaggio di aiuto + - 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. + Error loading blkindex.dat + Errore caricamento blkindex.dat - Error: CreateThread(StartNode) failed - Errore: CreateThread(StartNode) non riuscito + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Errore caricamento wallet.dat: il wallet richiede una versione nuova di Bitcoin - - Warning: Disk space is low - Attenzione: lo spazio su disco è scarso + + Error loading wallet.dat + Errore caricamento wallet.dat - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Impossibile collegarsi alla porta %d su questo computer. Probabilmente Bitcoin è già in esecuzione. + + Warning: Disk space is low + Attenzione: lo spazio su disco è scarso - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Attenzione: si prega di controllare che la data del computer e l'ora siano corrette. Se il vostro orologio è sbagliato Bitcoin non funziona correttamente. + + Set database cache size in megabytes (default: 25) + Imposta la dimensione cache del database in megabyte (default: 25) - - beta - beta + + Fee per KB to add to transactions you send + Commissione per KB da aggiungere alle transazioni in uscita + + + + How many blocks to check at startup (default: 2500, 0 = all) + Quanti blocchi da controllare all'avvio (default: 2500, 0 = tutti) + + + + Upgrade wallet to latest format + Aggiorna il wallet all'ultimo formato diff --git a/src/qt/locale/bitcoin_lt.ts b/src/qt/locale/bitcoin_lt.ts index 46f3ef3e2f..43f169fddd 100644 --- a/src/qt/locale/bitcoin_lt.ts +++ b/src/qt/locale/bitcoin_lt.ts @@ -116,22 +116,22 @@ Platinama pagal licenziją MIT/X11, papildomą informaciją rasite faile license Pašalinti - + Export Address Book Data Eksportuoti adresų knygelės duomenis - + Comma separated file (*.csv) Kableliais išskirtas failas (*.csv) - + Error exporting Eksportavimo klaida - + Could not write to file %1. Nepavyko įrašyti į failą %1. @@ -162,23 +162,22 @@ Platinama pagal licenziją MIT/X11, papildomą informaciją rasite faile license Dialogas - - + TextLabel Teksto žymė - + Enter passphrase Įvesti slaptažodį - + New passphrase Naujas slaptažodis - + Repeat new passphrase Pakartoti naują slaptažodį @@ -245,6 +244,11 @@ Ar jūs tikrai norite užšifruoti savo piniginę? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin dabar užsidarys šifravimo proceso pabaigai. Atminkite, kad piniginės šifravimas negali pilnai apsaugoti bitcoinų vagysčių kai tinkle esančios kenkėjiškos programos patenka į jūsų kompiuterį. + + + Wallet passphrase was successfully changed. + Sėkmingai pakeistas piniginės slaptažodis. + @@ -287,217 +291,212 @@ Ar jūs tikrai norite užšifruoti savo piniginę? Wallet decryption failed Nepavyko iššifruoti piniginę - - - Wallet passphrase was succesfully changed. - Sėkmingai pakeistas piniginės slaptažodis - BitcoinGUI - + Bitcoin Wallet Bitkoinų piniginė - - + + Synchronizing with network... Sinchronizavimas su tinklu ... - + Block chain synchronization in progress Vyksta blokų grandinės sinchronizavimas - + &Overview &O Apžvalga - + Show general overview of wallet Rodyti piniginės bendrą apžvalgą - + &Transactions &T Sandoriai - + Browse transaction history Apžvelgti sandorių istoriją - + &Address Book &Adresų knygelė - + Edit the list of stored addresses and labels Redaguoti išsaugotus adresus bei žymes - + &Receive coins &R Gautos monetos - + Show the list of addresses for receiving payments Parodyti adresų sąraša mokėjimams gauti - + &Send coins &Siųsti monetas - + Send coins to a bitcoin address Siųsti monetas bitkoinų adresu - + Sign &message Registruoti praneši&mą - + Prove you control an address Įrodyti, kad jūs valdyti adresą - + E&xit &x išėjimas - + Quit application Išjungti programą - + &About %1 &Apie %1 - + Show information about Bitcoin Rodyti informaciją apie Bitkoiną - + About &Qt Apie &Qt - + Show information about Qt Rodyti informaciją apie Qt - + &Options... &Opcijos... - + Modify configuration options for bitcoin Keisti bitcoin konfigūracijos galimybes - + Open &Bitcoin Atidaryti &Bitcoin - + Show the Bitcoin window Rodyti Bitcoin langą - + &Export... &Eksportas... - + Export the data in the current tab to a file - + &Encrypt Wallet &E Užšifruoti piniginę - + Encrypt or decrypt wallet Užšifruoti ar iššifruoti piniginę - + &Backup Wallet &Backup piniginę - + Backup wallet to another location - + &Change Passphrase &C Pakeisti slaptažodį - + Change the passphrase used for wallet encryption Pakeisti slaptažodį naudojamą piniginės užšifravimui - + &File &Failas - + &Settings Nu&Statymai - + &Help &H Pagelba - + Tabs toolbar Tabs įrankių juosta - + Actions toolbar Veiksmų įrankių juosta - + [testnet] [testavimotinklas] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network %n Bitcoin tinklo aktyvus ryšys @@ -506,17 +505,17 @@ Ar jūs tikrai norite užšifruoti savo piniginę? - + Downloaded %1 of %2 blocks of transaction history. Atsisiuntė %1 iš %2 sandorių istorijos blokų - + Downloaded %1 blocks of transaction history. Atsisiuntė %1 iš %2 sandorių istorijos blokų - + %n second(s) ago Prieš %n sekundę @@ -525,7 +524,7 @@ Ar jūs tikrai norite užšifruoti savo piniginę? - + %n minute(s) ago Prieš %n minutę @@ -534,7 +533,7 @@ Ar jūs tikrai norite užšifruoti savo piniginę? - + %n hour(s) ago Prieš %n valandą @@ -543,7 +542,7 @@ Ar jūs tikrai norite užšifruoti savo piniginę? - + %n day(s) ago Prieš %n dieną @@ -552,42 +551,42 @@ Ar jūs tikrai norite užšifruoti savo piniginę? - + Up to date Iki šiol - + Catching up... Gaudo... - + Last received block was generated %1. Paskutinis gautas blokas buvo sukurtas %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? Šis sandoris viršija leistiną dydį. Jūs galite įvykdyti jį papildomai sumokėję %1 mokesčių, kurie bus išsiųsti tais pačiais mazgais kuriais vyko sandoris ir padės palaikyti tinklą. Ar jūs norite apmokėti papildomą mokestį? - + Sending... Siunčiama... - + Sent transaction Sandoris nusiųstas - + Incoming transaction Ateinantis sandoris - + Date: %1 Amount: %2 Type: %3 @@ -599,60 +598,60 @@ Tipas: %3 Adresas: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Piniginė <b>užšifruota</b> ir šiuo metu <b>atrakinta</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Piniginė <b>užšifruota</b> ir šiuo metu <b>užrakinta</b> - + Backup Wallet - + Backup piniginę - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &U vienetų rodyti sumas: - + Choose the default subdivision unit to show in the interface, and when sending coins Rodomų ir siunčiamų monetų kiekio matavimo vienetai - + &Display addresses in transaction list &Rodyti adresus sandorių sąraše - + Whether to show Bitcoin addresses in the transaction list @@ -774,7 +773,7 @@ Adresas: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Jungtis į Bitkoin tinklą per socks4 proxy (pvz. jungiantis per Tor) @@ -797,18 +796,13 @@ Adresas: %4 Port of the proxy (e.g. 1234) Proxy prievadas (pvz. 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Neprivaloma sandorio mokestis už KB, kuris padeda įsitikinti, kad jūsų sandoriai tvarkomi greitai. Daugelis sandorių yra tik 1KB dydžio. Rekomenduojamas 0,01 mokestis. - Pay transaction &fee &f Mokėti sandorio mokestį - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Neprivaloma sandorio mokestis už KB, kuris padeda įsitikinti, kad jūsų sandoriai tvarkomi greitai. Daugelis sandorių yra tik 1KB dydžio. Rekomenduojamas 0,01 mokestis. @@ -933,11 +927,6 @@ Adresas: %4 Balance: Balansas - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -953,15 +942,10 @@ Adresas: %4 Unconfirmed: Nepatvirtinti: - - - 0 BTC - 0 BTC - Wallet - + Piniginė @@ -1046,13 +1030,13 @@ Adresas: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins Siųsti monetas @@ -1097,58 +1081,58 @@ Adresas: %4 &Siųsti - + <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) - + Confirm send coins Patvirtinti siuntimui monetas - + Are you sure you want to send %1? Ar esate įsitikinę, kad norite siųsti %1? - + and ir - - The recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. Negaliojantis gavėjo adresas. Patikrinkite. - + The amount to pay must be larger than 0. Apmokėjimo suma turi būti didesnė negu 0. - - Amount exceeds your balance - Suma viršija jūsų balansą + + The amount exceeds your balance. + Suma viršija jūsų balansą. - - Total exceeds your balance when the %1 transaction fee is included - Jei pridedame sandorio mokestį %1 bendra suma viršija jūsų balansą + + The total exceeds your balance when the %1 transaction fee is included. + Jei pridedame sandorio mokestį %1 bendra suma viršija jūsų balansą. - - Duplicate address found, can only send to each address once in one send operation - Rastas adreso dublikatas + + Duplicate address found, can only send to each address once per send operation. + Rastas adreso dublikatas. - - Error: Transaction creation failed - KLAIDA:nepavyko sudaryti sandorio + + Error: Transaction creation failed. + KLAIDA:nepavyko sudaryti sandorio. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. Klaida: sandoris buvo atmestas.Tai gali įvykti, jei kai kurios monetos iš jūsų piniginėje jau buvo panaudotos, pvz. jei naudojote wallet.dat kopiją ir monetos buvo išleistos kopijoje, bet nepažymėtos kaip skirtos išleisti čia. @@ -1228,11 +1212,6 @@ Adresas: %4 Open until %1 Atidaryta iki %1 - - - %1/offline? - %1/atjungtas? - %1/unconfirmed @@ -1243,6 +1222,11 @@ Adresas: %4 %1 confirmations %1 patvirtinimai + + + %1/offline? + %1/atjungtas? + <b>Status:</b> @@ -1393,7 +1377,7 @@ Adresas: %4 Suma - + Open for %n block(s) Atidaryta %n blokui @@ -1402,27 +1386,27 @@ Adresas: %4 - + Open until %1 Atidaryta kol %n - + Offline (%1 confirmations) Atjungta (%1 patvirtinimai) - + Unconfirmed (%1 of %2 confirmations) Nepatvirtintos (%1 iš %2 patvirtinimų) - + Confirmed (%1 confirmations) Patvirtinta (%1 patvirtinimai) - + Mined balance will be available in %n more blocks Išgautas balansas bus pasiekiamas po %n bloko @@ -1431,67 +1415,67 @@ Adresas: %4 - + This block was not received by any other nodes and will probably not be accepted! Šis blokas negautas nė vienu iš mazgų ir matomai nepriimtas - + Generated but not accepted Išgauta bet nepriimta - + Received with Gauta su - + Received from Gauta iš - + Sent to Siųsta - + Payment to yourself Mokėjimas sau - + Mined Išgauta - + (n/a) nepasiekiama - + Transaction status. Hover over this field to show number of confirmations. Sandorio būklė. Užvedus pelės žymeklį ant šios srities matysite patvirtinimų skaičių. - + Date and time that the transaction was received. Sandorio gavimo data ir laikas - + Type of transaction. Sandorio tipas - + Destination address of transaction. Sandorio paskirties adresas - + Amount removed from or added to balance. Suma pridėta ar išskaičiuota iš balanso @@ -1595,67 +1579,67 @@ Adresas: %4 Parodyti išsamiai - + Export Transaction Data Sandorio duomenų eksportavimas - + 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 Eksportavimo klaida - + Could not write to file %1. Neįmanoma įrašyti į failą %1. - + Range: Grupė: - + to skirta @@ -1727,287 +1711,342 @@ Adresas: %4 + Show splash screen on startup (default: 1) + + + + Specify data directory Nustatyti duomenų direktoriją - + + Set database cache size in megabytes (default: 25) + + + + Specify connection timeout (in milliseconds) Nustatyti sujungimo trukmę (milisekundėmis) - + Connect through socks4 proxy Prisijungti per socks4 proxy - + Allow DNS lookups for addnode and connect Leisti DNS paiešką sujungimui ir mazgo pridėjimui - + Listen for connections on <port> (default: 8333 or testnet: 18333) Sujungimo klausymas prijungčiai <port> (pagal nutylėjimą: 8333 arba testnet: 18333) - + Maintain at most <n> connections to peers (default: 125) Palaikyti ne daugiau <n> jungčių kolegoms (pagal nutylėjimą: 125) - - Add a node to connect to - Pridėti mazgą prie sujungti su - - - + Connect only to the specified node Prisijungti tik prie nurodyto mazgo - - Don't accept connections from outside - Nepriimti išorinio sujungimo - - - - Don't bootstrap list of peers using DNS - Neleisti kolegų sąrašo naudojant DNS - - - + Threshold for disconnecting misbehaving peers (default: 100) Atjungimo dėl netinkamo kolegų elgesio riba (pagal nutylėjimą: 100) - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) Sekundžių kiekis eikiamas palaikyti ryšį dėl lygiarangių nestabilumo (pagal nutylėjimą: 86.400) - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) Maksimalus buferis priėmimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maksimalus buferis siuntimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 10000) - - Don't attempt to use UPnP to map the listening port - Nenaudoti UPnP klausymo prievado struktūros + + 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 + + + + Find peers using internet relay chat (default: 0) + - - Attempt to use UPnP to map the listening port - Bandymas naudoti UPnP struktūra klausymosi prievadui + + Accept connections from outside (default: 1) + - - Fee per kB to add to transactions you send - Įtraukti mokestį už kB siunčiamiems sandoriams + + Set language, for example "de_DE" (default: system locale) + - + + Find peers using DNS lookup (default: 1) + + + + + Use Universal Plug and Play to map the listening port (default: 1) + Bandymas naudoti UPnP struktūra klausymosi prievadui (default: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Bandymas naudoti UPnP struktūra klausymosi prievadui (default: 0) + + + + Fee per KB to add to transactions you send + Įtraukti mokestį už kB siunčiamiems sandoriams + + + Accept command line and JSON-RPC commands Priimti komandinę eilutę ir JSON-RPC komandas - + Run in the background as a daemon and accept commands Dirbti fone kaip šešėlyje ir priimti komandas - + Use the test network Naudoti testavimo tinklą - + Output extra debugging information Išėjimo papildomas derinimo informacija - + Prepend debug output with timestamp Prideėti laiko žymę derinimo rezultatams - + Send trace/debug info to console instead of debug.log file Siųsti atsekimo/derinimo info į konsolę vietoj debug.log failo - + Send trace/debug info to debugger Siųsti sekimo/derinimo info derintojui - + Username for JSON-RPC connections Vartotojo vardas JSON-RPC jungimuisi - + Password for JSON-RPC connections Slaptažodis JSON-RPC sujungimams - + Listen for JSON-RPC connections on <port> (default: 8332) Klausymas JSON-RPC sujungimui prijungčiai <port> (pagal nutylėjimą: 8332) - + Allow JSON-RPC connections from specified IP address Leisti JSON-RPC tik iš nurodytų IP adresų - + Send commands to node running on <ip> (default: 127.0.0.1) Siųsti komandą mazgui dirbančiam <ip> (pagal nutylėjimą: 127.0.0.1) - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) Nustatyti rakto apimties dydį <n> (pagal nutylėjimą: 100) - + Rescan the block chain for missing wallet transactions Ieškoti prarastų piniginės sandorių blokų grandinėje - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL opcijos (žr.e Bitcoin Wiki for SSL setup instructions) - + Use OpenSSL (https) for JSON-RPC connections Naudoti OpenSSL (https) jungimuisi JSON-RPC - + Server certificate file (default: server.cert) Serverio sertifikato failas (pagal nutylėjimą: server.cert) - + Server private key (default: server.pem) Serverio privatus raktas (pagal nutylėjimą: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Priimtini šifrai (pagal nutylėjimą: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Pagelbos žinutė - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Negali gauti duomenų katalogo %s rakto. Bitcoin tikriausiai jau veikia. - + Loading addresses... Užkraunami adresai... - + Error loading addr.dat addr.dat pakrovimo klaida - + Error loading blkindex.dat blkindex.dat pakrovimo klaida - + Error loading wallet.dat: Wallet corrupted wallet.dat pakrovimo klaida, wallet.dat sugadintas - + Error loading wallet.dat: Wallet requires newer version of Bitcoin wallet.dat pakrovimo klaida, wallet.dat reikalauja naujasnės Bitcoin versijos - + Wallet needed to be rewritten: restart Bitcoin to complete Piniginė turi būti prrašyta: įvykdymui perkraukite Bitcoin - + Error loading wallet.dat wallet.dat pakrovimo klaida - + + Warning: Disk space is low + Įspėjimas: nepakanka vietos diske + + + Loading block index... Užkraunami blokų indeksai... - + Loading wallet... Užkraunama piniginė... - - Rescanning... - Peržiūra + + Cannot downgrade wallet + - + + Cannot initialize keypool + + + + + Cannot write default address + + + + Done loading Pakrovimas baigtas - + + Rescanning... + Peržiūra + + + Invalid -proxy address Neteisingas proxy adresas - + Invalid amount for -paytxfee=<amount> Neteisinga suma -paytxfee=<amount> - + 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į. - + Error: CreateThread(StartNode) failed Klaida: nepasileidžia CreateThread(StartNode) - - Warning: Disk space is low - Įspėjimas: nepakanka vietos diske - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Nepavyko susieti šiame kompiuteryje prievado %d. Bitcoin tikriausiai jau veikia. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Įspėjimas: Patikrinkite, kad kompiuterio data ir laikas yra teisingi.Jei Jūsų laikrodis neteisingai nustatytas Bitcoin, veiks netinkamai. - + beta beta diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index 3914bc07fd..5565860706 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -57,7 +57,7 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &New Address... - &Ny adresse... + &Ny adresse... @@ -67,18 +67,23 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &Copy to Clipboard - &Kopier til utklippstavle - - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Slett den valgte adressen fra listen. Bare adresser for sending kan slettes. + &Kopier til utklippstavle Show &QR Code Vis &QR Kode + + + &Sign Message + &Signér Melding + + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Slett den valgte adressen fra listen. Bare adresser for sending kan slettes. + &Delete @@ -90,20 +95,25 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Signér en melding for å bevise at du eier denne adressen - - &Sign Message - &Signér Melding + + Export Address Book Data + Eksporter adressebok - - Copy address - Kopier adresse + + Comma separated file (*.csv) + Kommaseparert fil (*.csv) Copy label Kopier merkelapp + + + Copy address + Kopier adresse + Edit @@ -115,28 +125,23 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Slett - - Export Address Book Data - Eksporter adressebok - - - - Comma separated file (*.csv) - Kommaseparert fil (*.csv) - - - + Error exporting Feil ved eksportering - + Could not write to file %1. Kunne ikke skrive til filen %1. AddressTableModel + + + (no label) + (ingen merkelapp) + Label @@ -147,79 +152,46 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Address Adresse - - - (no label) - (ingen merkelapp) - AskPassphraseDialog - - Dialog - Dialog + + + + + Wallet encryption failed + Kryptering av lommebok feilet - - - TextLabel - Merkelapp + + Dialog + Dialog - + Enter passphrase Angi adgangsfrase - + New passphrase Ny adgangsfrase - - - Repeat new passphrase - Gjenta ny adgangsfrase - - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Skriv inn den nye adgangsfrasen for lommeboken.<br/>Vennligst bruk en adgangsfrase med <b>10 eller flere tilfeldige tegn</b>, eller <b>åtte eller flere ord</b>. - - - - Encrypt wallet - Krypter lommebok - - - - This operation needs your wallet passphrase to unlock the wallet. - Denne operasjonen krever adgangsfrasen til lommeboken for å låse den opp. - - - - Unlock wallet - Lås opp lommebok - - - - This operation needs your wallet passphrase to decrypt the wallet. - Denne operasjonen krever adgangsfrasen til lommeboken for å dekryptere den. - Decrypt wallet Dekrypter lommebok - - Change passphrase - Endre adgangsfrase + + Repeat new passphrase + Gjenta ny adgangsfrase - - Enter the old and new passphrase to the wallet. - Skriv inn gammel og ny adgangsfrase for lommeboken. + + Encrypt wallet + Krypter lommebok @@ -227,42 +199,15 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Bekreft kryptering av lommebok - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ADVARSEL: Hvis du krypterer lommeboken og mister adgangsfrasen vil du <b>MISTE ALLE DINE BITCOINS</b>! -Er du sikker på at du vil kryptere lommeboken? - - - - - Wallet encrypted - Lommebok kryptert - - - - - Warning: The Caps Lock key is on. - Advarsel: Caps lock tasten er på. - - - - - - - Wallet encryption failed - Kryptering av lommebok feilet + + TextLabel + Merkelapp Wallet encryption failed due to an internal error. Your wallet was not encrypted. Kryptering av lommebok feilet på grunn av en intern feil. Din lommebok ble ikke kryptert. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. - @@ -287,216 +232,218 @@ Er du sikker på at du vil kryptere lommeboken? Dekryptering av lommebok feilet - - Wallet passphrase was succesfully changed. - Lommebokens adgangsfrase ble endret. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. - - - BitcoinGUI - - Bitcoin Wallet - Bitcoin Lommebok + + Unlock wallet + Lås opp lommebok - - - Synchronizing with network... - Synkroniserer med nettverk... + + Change passphrase + Endre adgangsfrase - - Block chain synchronization in progress - Synkronisering av blokk-kjede igang + + Enter the old and new passphrase to the wallet. + Skriv inn gammel og ny adgangsfrase for lommeboken. - - &Overview - &Oversikt + + + Warning: The Caps Lock key is on. + Advarsel: Caps lock tasten er på. - - Show general overview of wallet - Vis generell oversikt over lommeboken + + This operation needs your wallet passphrase to unlock the wallet. + Denne operasjonen krever adgangsfrasen til lommeboken for å låse den opp. - - &Transactions - &Transaksjoner + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Skriv inn den nye adgangsfrasen for lommeboken.<br/>Vennligst bruk en adgangsfrase med <b>10 eller flere tilfeldige tegn</b>, eller <b>åtte eller flere ord</b>. - - Browse transaction history - Vis transaksjonshistorikk + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ADVARSEL: Hvis du krypterer lommeboken og mister adgangsfrasen vil du <b>MISTE ALLE DINE BITCOINS</b>! +Er du sikker på at du vil kryptere lommeboken? - - &Address Book - &Adressebok + + This operation needs your wallet passphrase to decrypt the wallet. + Denne operasjonen krever adgangsfrasen til lommeboken for å dekryptere den. - - Edit the list of stored addresses and labels - Rediger listen over adresser og deres merkelapper + + + Wallet encrypted + Lommebok kryptert - - &Receive coins - &Motta bitcoins + + Wallet passphrase was successfully changed. + Adgangsfrase for lommebok endret. + + + + BitcoinGUI + + + Browse transaction history + Vis transaksjonshistorikk + + + + Edit the list of stored addresses and labels + Rediger listen over adresser og deres merkelapper - + Show the list of addresses for receiving payments Vis listen over adresser for mottak av betalinger - - &Send coins - &Send bitcoins + + E&xit + &Avslutt - - Send coins to a bitcoin address - Send bitcoins til en adresse + + Tabs toolbar + Verktøylinje for faner + + + + + Synchronizing with network... + Synkroniserer med nettverk... - + Sign &message Signér &melding + + + %n day(s) ago + + for %n dag siden + for %n dager siden + + - - Prove you control an address - Bevis at du kontrollerer en adresse + + Encrypt or decrypt wallet + Krypter eller dekrypter lommebok - - E&xit - &Avslutt + + &Receive coins + &Motta bitcoins - - Quit application - Avslutt applikasjonen + + &Send coins + &Send bitcoins - - &About %1 - &Om %1 + + Quit application + Avslutt applikasjonen - + Show information about Bitcoin Vis informasjon om Bitcoin - - &Options... - &Innstillinger... + + Bitcoin Wallet + Bitcoin Lommebok - - Modify configuration options for bitcoin - Endre innstillinger for bitcoin + + Block chain synchronization in progress + Synkronisering av blokk-kjede igang - - Open &Bitcoin - Åpne &Bitcoin + + &Overview + &Oversikt - - Show the Bitcoin window - Vis Bitcoin-vinduet + + Show general overview of wallet + Vis generell oversikt over lommeboken - - &Export... - &Eksporter... + + &Transactions + &Transaksjoner - - &Encrypt Wallet - &Krypter Lommebok + + &Address Book + &Adressebok - - Encrypt or decrypt wallet - Krypter eller dekrypter lommebok + + Send coins to a bitcoin address + Send bitcoins til en adresse - - &Change Passphrase - &Endre Adgangsfrase + + Prove you control an address + Bevis at du kontrollerer en adresse - - Change the passphrase used for wallet encryption - Endre adgangsfrasen brukt for kryptering av lommebok + + &About %1 + &Om %1 - + About &Qt Om &Qt - - Show information about Qt - Vis informasjon om Qt - - - - Export the data in the current tab to a file - + + Modify configuration options for bitcoin + Endre oppsett for Bitcoin - + &Backup Wallet - &Backup Lommebok - - - - Backup wallet to another location - - - - - &File - &Fil + Lag &Sikkerhetskopi av Lommebok - + &Settings &Innstillinger - + &Help &Hjelp - - Tabs toolbar - Verktøylinje for faner - - - + Actions toolbar Verktøylinje for handlinger - + [testnet] [testnett] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network %n aktiv forbindelse til Bitcoin-nettverket @@ -504,17 +451,12 @@ Er du sikker på at du vil kryptere lommeboken? - - Downloaded %1 of %2 blocks of transaction history. - Lastet ned %1 av %2 blokker med transaksjonshistorikk. - - - + Downloaded %1 blocks of transaction history. Lastet ned %1 blokker med transaksjonshistorikk. - + %n second(s) ago for %n sekund siden @@ -522,7 +464,7 @@ Er du sikker på at du vil kryptere lommeboken? - + %n minute(s) ago for %n minutt siden @@ -530,58 +472,45 @@ Er du sikker på at du vil kryptere lommeboken? - + %n hour(s) ago for %n time siden for %n timer siden - - - %n day(s) ago - - for %n dag siden - for %n dager siden - - - + Up to date Ajour - + Catching up... Kommer ajour... - + Last received block was generated %1. Siste mottatte blokk ble generert %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 transaksjonen overstiger størrelsesbegrensningen. Du kan likevel sende den med et gebyr på %1, som går til nodene som prosesserer transaksjonen din og støtter nettverket. Vil du betale gebyret? - + Sending... - Sender... + Sender... - + Sent transaction Sendt transaksjon - - Incoming transaction - Innkommende transaksjon - - - + Date: %1 Amount: %2 Type: %3 @@ -594,60 +523,130 @@ Adresse: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Lommeboken er <b>kryptert</b> og for tiden <b>ulåst</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Lommeboken er <b>kryptert</b> og for tiden <b>låst</b> - + + Open &Bitcoin + Åpne &Bitcoin + + + + Show the Bitcoin window + Vis Bitcoin-vinduet + + + + &Export... + &Eksporter... + + + + &Encrypt Wallet + &Krypter Lommebok + + + + &Change Passphrase + &Endre Adgangsfrase + + + + Change the passphrase used for wallet encryption + Endre adgangsfrasen brukt for kryptering av lommebok + + + + Show information about Qt + Vis informasjon om Qt + + + + &Options... + &Innstillinger... + + + + Export the data in the current tab to a file + Eksporter data fra nåværende fane til fil + + + + &File + &Fil + + + + Backup wallet to another location + Sikkerhetskopiér lommebok til annet sted + + + + bitcoin-qt + bitcoin-qt + + + Backup Wallet - + Sikkerhetskopiér Lommebok - + Wallet Data (*.dat) - + Lommeboksdata (*.dat) - + Backup Failed - + Sikkerhetskopiering feilet - + There was an error trying to save the wallet data to the new location. - + En feil oppstod ved lagring av lommebok til nytt sted - - A fatal error occured. Bitcoin can no longer continue safely and will quit. - + + Incoming transaction + Innkommende transaksjon + + + + Downloaded %1 of %2 blocks of transaction history. + Lastet ned %1 av %2 blokker med transaksjonshistorikk. + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + En fatal feil har inntruffet. Det er ikke trygt å fortsette og Bitcoin må derfor avslutte. DisplayOptionsPage - + &Unit to show amounts in: &Enhet for å vise beløp i: - + Choose the default subdivision unit to show in the interface, and when sending coins Velg standard underenhet som skal vises i grensesnittet og ved sending av mynter - + &Display addresses in transaction list - &Vis adresser i transaksjonslisten + &Vis adresser i transaksjonslisten - + Whether to show Bitcoin addresses in the transaction list @@ -704,11 +703,6 @@ Adresse: %4 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 bitcoin address. - en oppgitte adressen "%1" er ikke en gyldig bitcoin-adresse. - Could not unlock wallet. @@ -719,6 +713,11 @@ Adresse: %4 New key generation failed. Generering av ny nøkkel feilet. + + + The entered address "%1" is not a valid bitcoin address. + en oppgitte adressen "%1" er ikke en gyldig bitcoin-adresse. + MainOptionsPage @@ -769,9 +768,24 @@ Adresse: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Koble til Bitcoin nettverket gjennom en SOCKS4 mellomtjener (f.eks. for tilkobling gjennom Tor) + + + Port of the proxy (e.g. 1234) + Port for mellomtjener (f.eks. 1234) + + + + Pay transaction &fee + Betal transaksjons&gebyr + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. + Proxy &IP: @@ -787,26 +801,6 @@ Adresse: %4 &Port: &Port: - - - Port of the proxy (e.g. 1234) - Port for mellomtjener (f.eks. 1234) - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. - - - - Pay transaction &fee - Betal transaksjons&gebyr - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. - MessagePage @@ -818,12 +812,12 @@ Adresse: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + Du kan signere meldinger med dine adresser for å bevise at du eier dem. Ikke signér vage meldinger da phishing-angrep kan prøve å lure deg til å signere din identitet over til andre. Signér kun fullt detaljerte utsagn som du er enig i. The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Adressen for signering av meldingen (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -855,6 +849,11 @@ Adresse: %4 Click "Sign Message" to get signature Klikk "Signér Melding" for signatur + + + Copy the current signature to the system clipboard + Kopier valgt signatur til utklippstavle + Sign a message to prove you own this address @@ -865,11 +864,6 @@ Adresse: %4 &Sign Message &Signér Melding - - - Copy the current signature to the system clipboard - - &Copy to Clipboard @@ -905,63 +899,43 @@ Adresse: %4 Main Hoved - - - Display - Visning - Options Innstillinger + + + Display + Visning + OverviewPage - - - Form - Skjema - Balance: Saldo: - - - 123.456 BTC - 123.456 BTC - Number of transactions: Antall transaksjoner: - - - 0 - 0 - Unconfirmed: Ubekreftet - - - 0 BTC - 0 BTC - Wallet - Lommebok + Lommebok - - <b>Recent transactions</b> - <b>Siste transaksjoner</b> + + Form + Skjema @@ -978,19 +952,19 @@ Adresse: %4 Total number of transactions in wallet Totalt antall transaksjoner i lommeboken - - - QRCodeDialog - - Dialog - Dialog + + <b>Recent transactions</b> + <b>Siste transaksjoner</b> - - QR Code - QR Kode + + 0 + 0 + + + QRCodeDialog Request Payment @@ -1001,11 +975,6 @@ Adresse: %4 Amount: Beløp: - - - BTC - BTC - Label: @@ -1022,40 +991,38 @@ Adresse: %4 &Lagre Som... - - Error encoding URI into QR Code. - - - - - Save Image... - + + Dialog + Dialog + + + + QR Code + QR Kode + + + + BTC + BTC + + + + Error encoding URI into QR Code. + Feil ved koding av URI i QR kode. - PNG Images (*.png) + Save Image... + + + PNG Images (*.png) + PNG bilder (*.png) + SendCoinsDialog - - - - - - - - - - Send Coins - Send Bitcoins - - - - Send to multiple recipients at once - Send til flere enn én mottaker - &Add recipient... @@ -1066,16 +1033,6 @@ Adresse: %4 Clear all Fjern alle - - - Remove all transaction fields - Fjern alle transaksjonsfelter - - - - Balance: - Saldo: - 123.456 BTC @@ -1092,60 +1049,87 @@ Adresse: %4 &Send - + <b>%1</b> to %2 (%3) <b>%1</b> til %2 (%3) - + Confirm send coins Bekreft sending av bitcoins - - Are you sure you want to send %1? - Er du sikker på at du vil sende %1? - - - + and og - - The recepient address is not valid, please recheck. - Mottaksadressen er ugyldig, prøv igjen. - - - + The amount to pay must be larger than 0. Beløpen som skal betales må være over 0. - - Amount exceeds your balance - Beløpet overstiger saldoen din + + The amount exceeds your balance. + Beløpet overstiger saldo. - - Total exceeds your balance when the %1 transaction fee is included - Totalen overgår din saldo når transaksjonsgebyret på %1 tas med + + 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 in one send operation - Duplikate adresser funnet, kan kun sende til hver adresse en gang i hver sendeoperasjon + + 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. - - Error: Transaction creation failed - Feil: Opprettelse av transaksjon feilet + + Error: Transaction creation failed. + Feil: Opprettelse av transaksjon feilet. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. Feil: Transaksjonen ble avvist. Dette kan skje hvis noen av myntene i lommeboken allerede var brukt, f.eks. hvis du kopierte wallet.dat og mynter ble brukt i kopien uten å bli markert brukt her. + + + + + + + + + + Send Coins + Send Bitcoins + + + + Send to multiple recipients at once + Send til flere enn én mottaker + + + + Remove all transaction fields + Fjern alle transaksjonsfelter + + + + Balance: + Saldo: + + + + Are you sure you want to send %1? + Er du sikker på at du vil sende %1? + + + + The recipient address is not valid, please recheck. + Adresse for mottaker er ugyldig. + SendCoinsEntry @@ -1175,21 +1159,11 @@ Adresse: %4 &Label: &Merkelapp: - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adressen betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose address from address book Velg adresse fra adresseboken - - - Alt+A - Alt+A - Paste address from clipboard @@ -1200,6 +1174,16 @@ Adresse: %4 Alt+P Alt+P + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adressen betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Alt+A + Alt+A + Remove this recipient @@ -1223,11 +1207,6 @@ Adresse: %4 Open until %1 Åpen til %1 - - - %1/offline? - %1/frakoblet? - %1/unconfirmed @@ -1238,16 +1217,26 @@ Adresse: %4 %1 confirmations %1 bekreftelser - - - <b>Status:</b> - <b>Status:</b> - , has not been successfully broadcast yet , har ikke blitt kringkastet uten problemer enda. + + + unknown + ukjent + + + + %1/offline? + %1/frakoblet? + + + + <b>Status:</b> + + , broadcast through %1 node @@ -1274,11 +1263,6 @@ Adresse: %4 <b>From:</b> <b>Fra:</b> - - - unknown - ukjent - @@ -1334,7 +1318,7 @@ Adresse: %4 Message: - Melding: + Melding: @@ -1368,155 +1352,129 @@ Adresse: %4 TransactionTableModel - - Date - Dato - - - - Type - Type - - - - Address - Adresse - - - - Amount - Beløp - - - - Open for %n block(s) - - Åpen for %n blokk - Åpen for %n blokker - - - - + Open until %1 Åpen til %1 - + Offline (%1 confirmations) Frakoblet (%1 bekreftelser) - + Unconfirmed (%1 of %2 confirmations) Ubekreftet (%1 av %2 bekreftelser) - + Confirmed (%1 confirmations) Bekreftet (%1 bekreftelser) - - - Mined balance will be available in %n more blocks - - Utvunnet saldo vil bli tilgjengelig om %n blokk - Utvunnet saldo vil bli tilgjengelig om %n blokker - - - + 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 - + 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 + + Amount + Beløp - - Today - I dag + + Date + Dato - - This week - Denne uken + + Type + Type - - This month - Denne måneden + + Address + Adresse - - - Last month - Forrige måned + + + Open for %n block(s) + + Åpen for %n blokk + Åpen for %n blokker + + + + + Mined balance will be available in %n more blocks + + Utvunnet saldo vil bli tilgjengelig om %n blokk + Utvunnet saldo vil bli tilgjengelig om %n blokker + + + + TransactionView This year @@ -1533,24 +1491,69 @@ Adresse: %4 Mottatt med - - Sent to - Sendt til + + Copy amount + Kopiér beløp - - To yourself - Til deg selv + + Amount + Beløp - - Mined - Utvunnet + + ID + ID - - Other - Andre + + Error exporting + Feil ved eksport + + + + Could not write to file %1. + Kunne ikke skrive til filen %1. + + + + Range: + Intervall: + + + + This week + Denne uken + + + + This month + Denne måneden + + + + Last month + Forrige måned + + + + Sent to + Sendt til + + + + To yourself + Til deg selv + + + + Mined + Utvunnet + + + + Other + Andre @@ -1572,85 +1575,66 @@ Adresse: %4 Copy label Kopier merkelapp - - - Copy amount - Kopiér beløp - Edit label Rediger merkelapp - - Show details... - Vis detaljer... - - - + Export Transaction Data Eksporter transaksjonsdata - + 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 ved eksport + + to + til - - Could not write to file %1. - Kunne ikke skrive til filen %1. + + + All + Alle - - Range: - Intervall: + + Today + I dag - - to - til + + Show details... + Vis detaljer... @@ -1669,35 +1653,60 @@ Adresse: %4 Bitcoin versjon - - Usage: - Bruk: + + Get help for a command + Vis hjelpetekst for en kommando - - Send command to -server or bitcoind - Send kommando til -server eller bitcoind + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kunne ikke låse datamappen %s. Bitcoin kjører sannsynligvis allerede. - - List commands - List opp kommandoer + + Loading addresses... + Laster adresser... - - Get help for a command - Vis hjelpetekst for en kommando + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Lytt etter tilkoblinger på <port> (standardverdi: 8333 eller testnet: 18333) + + + + Rescanning... + Leser gjennom... Options: Innstillinger: + + + Send command to -server or bitcoind + Send kommando til -server eller bitcoind + + + + Set database cache size in megabytes (default: 25) + Sett størrelse på mellomlager for database i megabytes (standardverdi: 25) + Specify configuration file (default: bitcoin.conf) Angi konfigurasjonsfil (standardverdi: bitcoin.conf) + + + Threshold for disconnecting misbehaving peers (default: 100) + Grenseverdi for å koble fra noder med dårlig oppførsel (standardverdi: 100) + + + + Usage: + Bruk: + Specify pid file (default: bitcoind.pid) @@ -1713,298 +1722,328 @@ Adresse: %4 Don't generate coins Ikke generér bitcoins - - - Start minimized - Start minimert - - - Specify data directory - Angi mappe for datafiler + Show splash screen on startup (default: 1) + Vis splashskjerm ved oppstart (standardverdi: 1) - + Specify connection timeout (in milliseconds) Angi tidsavbrudd for forbindelse (i millisekunder) - - Connect through socks4 proxy - Koble til gjennom socks4 proxy + + Maintain at most <n> connections to peers (default: 125) + Hold maks <n> koblinger åpne til andre noder (standardverdi: 125) - - Allow DNS lookups for addnode and connect - Tillat DNS-oppslag for addnode og connect + + Accept connections from outside (default: 1) + Ta imot tilkoblinger fra utsiden (standardverdi: 1) - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Lytt etter tilkoblinger på <port> (standardverdi: 8333 eller testnet: 18333) + + Set language, for example "de_DE" (default: system locale) + Sett språk, for eksempel "nb_NO" (standardverdi: fra operativsystem) - - Maintain at most <n> connections to peers (default: 125) - Hold maks <n> koblinger åpne til andre noder (standardverdi: 125) + + Find peers using DNS lookup (default: 1) + Finn andre noder gjennom DNS-oppslag (standardverdi: 1) - - Add a node to connect to - Legg til node for tilkobling + + Use Universal Plug and Play to map the listening port (default: 1) + Bruk UPnP for lytteport (standardverdi: 1) - - Connect only to the specified node - Koble kun til angitt node + + Use Universal Plug and Play to map the listening port (default: 0) + Bruk UPnP for lytteport (standardverdi: 0) - - Don't accept connections from outside - Ikke ta imot tilkoblinger fra omverden + + Username for JSON-RPC connections + Brukernavn for JSON-RPC forbindelser - - Don't bootstrap list of peers using DNS - Ikke lag initiell nodeliste ved hjelp av DNS + + Password for JSON-RPC connections + Passord for JSON-RPC forbindelser - - Threshold for disconnecting misbehaving peers (default: 100) - Grenseverdi for å koble fra noder med dårlig oppførsel (standardverdi: 100) + + Listen for JSON-RPC connections on <port> (default: 8332) + Lytt etter JSON-RPC tilkoblinger på <port> (standardverdi: 8332) - - 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) + + Allow JSON-RPC connections from specified IP address + Tillat JSON-RPC tilkoblinger fra angitt IP-adresse - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maksimum mottaksbuffer per tilkobling, <n>*1000 bytes (standardverdi: 10000) + + Send commands to node running on <ip> (default: 127.0.0.1) + Send kommandoer til node på <ip> (standardverdi: 127.0.0.1) - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maksimum sendebuffer per tilkobling, <n>*1000 bytes (standardverdi: 10000) + + Set key pool size to <n> (default: 100) + Angi størrelse på nøkkel-lager til <n> (standardverdi: 100) - - Don't attempt to use UPnP to map the listening port - Ikke sett opp port vha. UPnP + + Rescan the block chain for missing wallet transactions + Se gjennom blokk-kjeden etter manglende lommeboktransaksjoner - - Attempt to use UPnP to map the listening port - Sett opp port vha. UPnP + + Use OpenSSL (https) for JSON-RPC connections + Bruk OpenSSL (https) for JSON-RPC forbindelser - - Fee per kB to add to transactions you send - Gebyr per kB for transaksjoner du sender + + Server certificate file (default: server.cert) + Servers sertifikat (standardverdi: server.cert) - - Accept command line and JSON-RPC commands - Ta imot kommandolinje- og JSON-RPC-kommandoer + + Server private key (default: server.pem) + Servers private nøkkel (standardverdi: server.pem) - - Run in the background as a daemon and accept commands - Kjør i bakgrunnen som daemon og ta imot kommandoer + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Akseptable krypteringsmetoder (standardverdi: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Use the test network - Bruk testnettverket + + This help message + Denne hjelpemeldingen - - Output extra debugging information - Gi ut ekstra debuginformasjon + + Error loading blkindex.dat + Feil ved lasting av blkindex.dat - - Prepend debug output with timestamp - Sett tidsstempel på debugmeldinger + + Error loading wallet.dat: Wallet corrupted + Feil ved lasting av wallet.dat: Lommeboken er skadet - - Send trace/debug info to console instead of debug.log file - Send spor/debug informasjon til konsollet istedenfor debug.log filen + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Feil ved lasting av wallet.dat: Lommeboken krever en nyere versjon av Bitcoin - - Send trace/debug info to debugger - Send spor/debug informasjon til debugger + + Wallet needed to be rewritten: restart Bitcoin to complete + Lommeboken måtte skrives om: start Bitcoin på nytt for å fullføre - - Username for JSON-RPC connections - Brukernavn for JSON-RPC forbindelser + + Error loading wallet.dat + Feil ved lasting av wallet.dat - - Password for JSON-RPC connections - Passord for JSON-RPC forbindelser + + 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 en transaksjon. - - Listen for JSON-RPC connections on <port> (default: 8332) - Lytt etter JSON-RPC tilkoblinger på <port> (standardverdi: 8332) + + Error: CreateThread(StartNode) failed + Feil: CreateThread(StartNode) feilet - - Allow JSON-RPC connections from specified IP address - Tillat JSON-RPC tilkoblinger fra angitt IP-adresse + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Klarer ikke binde til port %d på denne datamaskinen. Bitcoin kjører sannsynligvis allerede. - - Send commands to node running on <ip> (default: 127.0.0.1) - Send kommandoer til node på <ip> (standardverdi: 127.0.0.1) + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Advarsel: Vennligst sjekk at dato og klokke er riktig innstilt på datamaskinen. Hvis klokken er feil vil ikke Bitcoin fungere ordentlig. - - Set key pool size to <n> (default: 100) - Angi størrelse på nøkkel-lager til <n> (standardverdi: 100) + + beta + beta - - Rescan the block chain for missing wallet transactions - Se gjennom blokk-kjeden etter manglende lommeboktransaksjoner + + Start minimized + Start minimert + - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL innstillinger: (se Bitcoin Wiki for instruksjoner om SSL oppsett) + + Specify data directory + Angi mappe for datafiler - - Use OpenSSL (https) for JSON-RPC connections - Bruk OpenSSL (https) for JSON-RPC forbindelser + + Connect through socks4 proxy + Koble til gjennom socks4 proxy - - Server certificate file (default: server.cert) - Servers sertifikat (standardverdi: server.cert) + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maksimum mottaksbuffer per tilkobling, <n>*1000 bytes (standardverdi: 10000) - - Server private key (default: server.pem) - Servers private nøkkel (standardverdi: server.pem) + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maksimum sendebuffer per tilkobling, <n>*1000 bytes (standardverdi: 10000) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kunne ikke låse datamappen %s. Bitcoin kjører sannsynligvis allerede. + + Run in the background as a daemon and accept commands + Kjør i bakgrunnen som daemon og ta imot kommandoer - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Akseptable krypteringsmetoder (standardverdi: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Use the test network + Bruk testnettverket - - Loading addresses... - Laster adresser... + + Output extra debugging information + Gi ut ekstra debuginformasjon - - This help message - Denne hjelpemeldingen + + Prepend debug output with timestamp + Sett tidsstempel på debugmeldinger - - Loading block index... - Laster blokkindeks... + + Send trace/debug info to console instead of debug.log file + Send spor/debug informasjon til konsollet istedenfor debug.log filen - - Loading wallet... - Laster lommebok... + + Send trace/debug info to debugger + Send spor/debug informasjon til debugger - - Rescanning... - Leser gjennom... + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL innstillinger: (se Bitcoin Wiki for instruksjoner om SSL oppsett) - + Error loading addr.dat Feil ved lasting av addr.dat - - Error loading blkindex.dat - Feil ved lasting av blkindex.dat + + Loading block index... + Laster blokkindeks... - - Error loading wallet.dat: Wallet corrupted - Feil ved lasting av wallet.dat: Lommeboken er skadet + + Loading wallet... + Laster lommebok... - + Done loading Ferdig med lasting - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Feil ved lasting av wallet.dat: Lommeboken krever en nyere versjon av Bitcoin - - - + Invalid -proxy address Ugyldig -proxy adresse for mellomtjener - - Wallet needed to be rewritten: restart Bitcoin to complete - Lommeboken måtte skrives om: start Bitcoin på nytt for å fullføre - - - + Invalid amount for -paytxfee=<amount> Ugyldig gebyrbeløp for -paytxfee=<beløp> - - Error loading wallet.dat - Feil ved lasting av wallet.dat + + List commands + List opp kommandoer - - 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 en transaksjon. + + Allow DNS lookups for addnode and connect + Tillat DNS-oppslag for addnode og connect - - Error: CreateThread(StartNode) failed - Feil: CreateThread(StartNode) feilet + + Connect only to the specified node + Koble kun til angitt node - - Warning: Disk space is low - Advarsel: Lite ledig diskplass + + 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) - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Klarer ikke binde til port %d på denne datamaskinen. Bitcoin kjører sannsynligvis allerede. + + 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) + + + + Accept command line and JSON-RPC commands + Ta imot kommandolinje- og JSON-RPC-kommandoer + + + + Add a node to connect to and attempt to keep the connection open + Legg til node for tilkobling og hold forbindelsen åpen + + + + Cannot downgrade wallet + Kan ikke nedgradere lommebok + + + + Cannot initialize keypool + Kan ikke initialisere nøkkellager - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Advarsel: Vennligst sjekk at dato og klokke er riktig innstilt på datamaskinen. Hvis klokken er feil vil ikke Bitcoin fungere ordentlig. + Cannot write default address + Kan ikke skrive standardadresse - - beta - beta + + Warning: Disk space is low + Advarsel: Lite ledig diskplass + + + + Fee per KB to add to transactions you send + Gebyr per KB for transaksjoner du sender + + + + Find peers using internet relay chat (default: 0) + Finn andre noder via internet relay chat (standardverdi: 0) + + + + How many blocks to check at startup (default: 2500, 0 = all) + Hvor mange blokker som skal sjekkes ved oppstart (standardverdi: 2500, 0 = alle) + + + + How thorough the block verification is (0-6, default: 1) + Hvor grundig verifisering av blokker gjøres (0-6, standardverdi: 1) + + + + Upgrade wallet to latest format + Oppgradér lommebok til nyeste format diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index 5af89a88fd..34b302aa31 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -43,7 +43,7 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d These are your Bitcoin 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 uw Bitcoin-adressen om betalingen te ontvangen. U kunt er voor kiezen om een adres aan te maken voor elke afzender. Op deze manier kunt u bijhouden wie al aan u betaald heeft. + Dit zijn uw Bitcoinadressen om betalingen mee te ontvangen. U kunt er voor kiezen om een uniek adres aan te maken voor elke afzender. Op deze manier kunt u bijhouden wie al aan u betaald heeft. @@ -68,18 +68,23 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d &Copy to Clipboard - &Kopieer naar Klembord - - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Verwijder het huidige geselecteerde adres van de lijst. Alleen zend-adressen kunnen verwijderd worden, niet uw ontvangstadressen. + &Kopieer naar Klembord Show &QR Code Toon &QR-Code + + + &Sign Message + &Onderteken Bericht + + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Verwijder het huidige geselecteerde adres van de lijst. Alleen zend-adressen kunnen verwijderd worden, niet uw ontvangstadressen. + &Delete @@ -91,20 +96,25 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Onderteken een bericht om te bewijzen dat u dit adres bezit - - &Sign Message - &Onderteken Bericht + + Export Address Book Data + Exporteer Gegevens van het Adresboek - - Copy address - Kopieer adres + + Comma separated file (*.csv) + Kommagescheiden bestand (*.csv) Copy label Kopieer label + + + Copy address + Kopieer adres + Edit @@ -116,28 +126,23 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Verwijder - - Export Address Book Data - Exporteer Gegevens van het Adresboek - - - - Comma separated file (*.csv) - Kommagescheiden bestand (*.csv) - - - + Error exporting Fout bij exporteren - + Could not write to file %1. Kon niet schrijven naar bestand %1. AddressTableModel + + + (no label) + (geen label) + Label @@ -148,44 +153,41 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Address Adres - - - (no label) - (geen label) - AskPassphraseDialog - - Dialog - Dialoog + + + + + Wallet encryption failed + Portemonneeversleuteling mislukt - - - TextLabel - TekstLabel + + Dialog + Dialoog - + Enter passphrase Huidig wachtwoord - + New passphrase Nieuwe wachtwoord - - Repeat new passphrase - Herhaal wachtwoord + + Decrypt wallet + Ontsleutel portemonnee - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Vul een nieuw wachtwoord in voor uw portemonnee. <br/> Gebruik een wachtwoord van <b>10 of meer lukrake karakters</b>, of <b> acht of meer woorden</b> . + + Repeat new passphrase + Herhaal wachtwoord @@ -193,46 +195,37 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d 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 + + TextLabel + TekstLabel - - Decrypt wallet - Ontsleutel portemonnee + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Portemonneeversleuteling mislukt door een interne fout, Uw portemonnee is niet versleuteld. - - Change passphrase - Wijzig wachtwoord + + + The supplied passphrases do not match. + De opgegeven wachtwoorden komen niet overeen - - Enter the old and new passphrase to the wallet. - Vul uw oude en nieuwe portemonneewachtwoord in. + + Wallet unlock failed + Portemonnee openen mislukt - - Confirm wallet encryption - Bevestig versleuteling van de portemonnee + + + + The passphrase entered for the wallet decryption was incorrect. + Het opgegeven wachtwoord voor de portemonnee-ontsleuteling is niet correct. - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - WAARSCHUWING: Wanneer uw portemonnee wordt versleuteld en u verliest uw wachtwoord, dan verliest u<b>AL UW BITCOINS</b>! -Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? + + Wallet decryption failed + Portemonnee-ontsleuteling mislukt @@ -240,6 +233,21 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Wallet encrypted Portemonnee versleuteld + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. + + + + Enter the old and new passphrase to the wallet. + Vul uw oude en nieuwe portemonneewachtwoord in. + + + + Wallet passphrase was successfully changed. + Portemonneewachtwoord is met succes gewijzigd. + @@ -247,257 +255,193 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Waarschuwing: De Caps-Lock-toets staat aan. - - - - - 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. + + This operation needs your wallet passphrase to decrypt the wallet. + Deze operatie vereist uw portemonneewachtwoord om de portemonnee te ontsleutelen - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Vul een nieuw wachtwoord in voor uw portemonnee. <br/> Gebruik een wachtwoord van <b>10 of meer lukrake karakters</b>, of <b> acht of meer woorden</b> . - - - The supplied passphrases do not match. - Het opgegeven wachtwoord is niet correct + + This operation needs your wallet passphrase to unlock the wallet. + Deze operatie vereist uw portemonneewachtwoord om de portemonnee te openen. - - Wallet unlock failed - Portemonnee openen mislukt + + Unlock wallet + Open portemonnee - - - - The passphrase entered for the wallet decryption was incorrect. - Het opgegeven wachtwoord voor de portemonnee-ontsleuteling is niet correct. + + Change passphrase + Wijzig wachtwoord - - Wallet decryption failed - Portemonnee-ontsleuteling mislukt + + Confirm wallet encryption + Bevestig versleuteling van de portemonnee - - Wallet passphrase was succesfully changed. - Portemonneewachtwoord is succesvol gewijzigd + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + WAARSCHUWING: Wanneer uw portemonnee wordt versleuteld en u verliest uw wachtwoord, dan verliest u<b>AL UW BITCOINS</b>! +Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? BitcoinGUI - + + Edit the list of stored addresses and labels + Bewerk de lijst van opgeslagen adressen en labels + + + + Show the list of addresses for receiving payments + Toon lijst van adressen om betalingen mee te ontvangen + + + + &Send coins + &Verstuur munten + + + + Send coins to a bitcoin address + Verstuur munten naar een bitcoin-adres + + + + Show information about Qt + Toon informatie over Qt + + + + Change the passphrase used for wallet encryption + wijzig het wachtwoord voor uw portemonneversleuteling + + + Bitcoin Wallet Bitcoin-portemonnee - - + + Synchronizing with network... Synchroniseren met netwerk... - + Block chain synchronization in progress Bezig met blokkenketen-synchronisatie - - &Overview - &Overzicht + + Export the data in the current tab to a file + Exporteer de data in de huidige tab naar een bestand - + 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 - Bewerk de lijst van opgeslagen adressen en labels - - - + &Receive coins &Ontvang munten - - Show the list of addresses for receiving payments - Toon lijst van adressen om betalingen mee te ontvangen - - - - &Send coins - &Verstuur munten - - - - Send coins to a bitcoin address - Verstuur munten naar een bitcoin-adres - - - - Sign &message - &Onderteken Bericht + + &Overview + &Overzicht - + Prove you control an address - Bewijs dat u een adres bezit - - - - E&xit - &Afsluiten + - + Quit application Programma afsluiten - - &About %1 - &Over %1 - - - + Show information about Bitcoin Laat informatie zien over Bitcoin - + + About &Qt + Over &Qt + + + &Options... &Opties... - - Modify configuration options for bitcoin - Wijzig instellingen van Bitcoin + + Show the Bitcoin window + Toon Bitcoin-venster - - Open &Bitcoin - Open &Bitcoin - - - - Show the Bitcoin window - Toon Bitcoin-venster - - - - &Export... - &Exporteer... - - - + &Encrypt Wallet &Versleutel Portemonnee - - Encrypt or decrypt wallet - Versleutel of ontsleutel portemonnee - - - + &Change Passphrase &Wijzig Wachtwoord - - Change the passphrase used for wallet encryption - wijzig het wachtwoord voor uw portemonneversleuteling - - - - About &Qt - Over &Qt - - - - Show information about Qt - Toon informatie over Qt - - - - Export the data in the current tab to a file - Exporteer de data in de huidige tab naar een bestand - - - - &Backup Wallet - Backup &Portemonnee - - - - Backup wallet to another location - &Backup portemonnee naar een andere locatie - - - - &File - &Bestand - - - + &Settings &Instellingen - + &Help &Hulp - + Tabs toolbar Tab-werkbalk - + Actions toolbar Actie-werkbalk - - [testnet] - [testnetwerk] - - - - bitcoin-qt - bitcoin-qt + + Backup wallet to another location + &Backup portemonnee naar een andere locatie - + %n active connection(s) to Bitcoin network %n actieve connectie naar Bitcoinnetwerk @@ -505,25 +449,30 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? - - Downloaded %1 of %2 blocks of transaction history. - %1 van %2 blokken van transactiehistorie opgehaald. + + [testnet] + [testnetwerk] - + Downloaded %1 blocks of transaction history. %1 blokken van transactiehistorie opgehaald. - + %n second(s) ago %n seconde geleden %n seconden geleden + + + Sign &message + &Onderteken Bericht + - + %n minute(s) ago %n minuut geleden @@ -531,58 +480,65 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? - + %n hour(s) ago %n uur geleden %n uur geleden - - - %n day(s) ago - - %n dag geleden - %n dagen geleden - - - + Up to date Bijgewerkt - + Catching up... Aan het bijwerken... - + + &About %1 + &Over %1 + + + Last received block was generated %1. Laatst ontvangen blok is %1 gegenereerd. - + 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? Deze transactie overschrijdt de groottelimiet. Om de transactie alsnog te versturen kunt u transactiekosten betalen van %1. Deze transactiekosten gaan naar de nodes die uw transactie verwerken en het helpt op deze manier bij het ondersteunen van het netwerk. Wilt u de transactiekosten betalen? - - Sending... - Versturen... + + Modify configuration options for bitcoin + Wijzig instellingen van Bitcoin + + + + Open &Bitcoin + Open &Bitcoin + + + + bitcoin-qt + - + Sent transaction Verzonden transactie - + Incoming transaction Binnenkomende transactie - + Date: %1 Amount: %2 Type: %3 @@ -595,62 +551,105 @@ Adres: %4 - + + &Backup Wallet + Backup &Portemonnee + + + 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> - + + E&xit + &Afsluiten + + + Backup Wallet Backup Portemonnee - + Wallet Data (*.dat) Portemonnee-data (*.dat) - + Backup Failed Backup Mislukt - + There was an error trying to save the wallet data to the new location. Er is een fout opgetreden bij het wegschrijven van de portemonnee-data naar de nieuwe locatie. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. - + + &Export... + &Exporteer... + + + + Encrypt or decrypt wallet + Versleutel of ontsleutel portemonnee + + + + &File + &Bestand + + + + %n day(s) ago + + %n dag geleden + %n dagen geleden + + + + + Sending... + Versturen... + + + + Downloaded %1 of %2 blocks of transaction history. + %1 van %2 blokken van transactiehistorie opgehaald. + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Er is een fatale fout opgetreden. Bitcoin kan niet meer veilig doorgaan en zal nu afgesloten worden. DisplayOptionsPage - + &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 - + &Display addresses in transaction list &Toon adressen in uw transactielijst - + Whether to show Bitcoin addresses in the transaction list - + Of Bitcoinadressen getoond worden in de transactielijst @@ -678,7 +677,7 @@ Adres: %4 The address associated with this address book entry. This can only be modified for sending addresses. - Het adres dat geassocieerd is met deze adresboek-opgave. Dit kan alleen worden veranderd voor zend-adressen. + Het adres dat geassocieerd is met deze inschrijving in het adresboek. Dit kan alleen worden veranderd voor zend-adressen. @@ -705,11 +704,6 @@ Adres: %4 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 bitcoin address. - Het opgegeven adres "%1" is een ongeldig bitcoinadres - Could not unlock wallet. @@ -720,6 +714,11 @@ Adres: %4 New key generation failed. Genereren nieuwe sleutel mislukt. + + + The entered address "%1" is not a valid bitcoin address. + Het opgegeven adres "%1" is een ongeldig bitcoinadres + MainOptionsPage @@ -770,7 +769,7 @@ Adres: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Verbind met het Bitcoin-netwerk door een SOCKS4 proxy (bijv. wanneer Tor gebruikt wordt) @@ -781,7 +780,7 @@ Adres: %4 IP address of the proxy (e.g. 127.0.0.1) - IP-adres van de proxy (bijv. 127.0.0.1) + IP-adres van de proxy (bijv. 127.0.0.1) @@ -793,18 +792,13 @@ Adres: %4 Port of the proxy (e.g. 1234) Poort waarop de proxy luistert (bijv. 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Optionele transactiekosten per kB die helpen om uw transacties snel te verwerken. De meeste transacties zijn 1 kB. Transactiekosten van 0,01 wordt aangeraden - Pay transaction &fee Betaal &transactiekosten - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Optionele transactiekosten per kB die helpen om uw transacties snel te verwerken. De meeste transacties zijn 1 kB. Transactiekosten van 0,01 wordt aangeraden @@ -824,7 +818,7 @@ Adres: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Het adres om het bericht mee te ondertekenen (Vb.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -851,6 +845,11 @@ Adres: %4 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 + Click "Sign Message" to get signature @@ -866,11 +865,6 @@ Adres: %4 &Sign Message &Onderteken Bericht - - - Copy the current signature to the system clipboard - - &Copy to Clipboard @@ -901,6 +895,11 @@ Adres: %4 OptionsDialog + + + Options + Opties + Main @@ -911,11 +910,6 @@ Adres: %4 Display Beeldscherm - - - Options - Opties - OverviewPage @@ -929,11 +923,6 @@ Adres: %4 Balance: Saldo: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -942,7 +931,12 @@ Adres: %4 0 - 0 + + + + + Wallet + Portemonnee @@ -950,14 +944,14 @@ Adres: %4 Onbevestigd: - - 0 BTC - 0 BTC + + 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 zijn meegeteld in uw huidige saldo - - Wallet - Portemonnee + + Total number of transactions in wallet + Totaal aantal transacties in uw portemonnee @@ -969,19 +963,24 @@ Adres: %4 Your current balance Uw huidige saldo + + + QRCodeDialog - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Totaal aantal transacties dat nog moet worden bevestigd, en nog niet is meegeteld in uw huidige saldo + + Request Payment + Vraag betaling aan - - Total number of transactions in wallet - Totaal aantal transacties in uw portemonnee + + &Save As... + &Opslaan Als... + + + + PNG Images (*.png) + PNG-Afbeeldingen (*.png) - - - QRCodeDialog Dialog @@ -992,11 +991,6 @@ Adres: %4 QR Code QR-code - - - Request Payment - Vraag betaling aan - Amount: @@ -1017,61 +1011,24 @@ Adres: %4 Message: Bericht: - - - &Save As... - &Opslaan Als... - Error encoding URI into QR Code. - + Fout tijdens encoderen URI in QR-code Save Image... Afbeelding Opslaan... - - - PNG Images (*.png) - PNG-Afbeeldingen (*.png) - SendCoinsDialog - - - - - - - - - - Send Coins - Verstuur munten - - - - Send to multiple recipients at once - Verstuur aan verschillende ontvangers ineens - - - - &Add recipient... - Voeg &ontvanger toe... - Clear all Verwijder alles - - - Remove all transaction fields - Verwijder alle transactievelden - Balance: @@ -1093,59 +1050,86 @@ Adres: %4 &Verstuur - + <b>%1</b> to %2 (%3) <b>%1</b> aan %2 (%3) - - Confirm send coins - Bevestig versturen munten - - - + Are you sure you want to send %1? Weet u zeker dat u %1 wil versturen? - - and - en - - + - The recepient address is not valid, please recheck. - Het ontvangstadres is niet geldig, controleer uw opgave. - - + + + + + + Send Coins + Verstuur munten + + + + Send to multiple recipients at once + Verstuur aan verschillende ontvangers ineens + + + + &Add recipient... + Voeg &ontvanger toe... + + + + Remove all transaction fields + Verwijder alle transactievelden + + + + Confirm send coins + Bevestig versturen munten + + + + 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 gedrag moet groter zijn dan 0. + Het ingevoerde bedrag moet groter zijn dan 0. - - Amount exceeds your balance - Bedrag overschrijdt uw huidige saldo + + The amount exceeds your balance. + Bedrag is hoger dan uw huidige saldo - - Total exceeds your balance when the %1 transaction fee is included + + 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 in one send operation - Dubbel adres gevonden, u kunt slechts eenmaal naar een bepaald adres verzenden per verstuurtransactie + + 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 + + Error: Transaction creation failed. Fout: Aanmaak 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 afgewezen. Dit kan gebeuren als u eerder uitgegeven munten opnieuw wilt versturen, zoals wanneer u een kopie van uw wallet.dat heeft gebruikt en in de kopie deze munten zijn gemarkeerd als uitgegeven, maar in de huidige nog niet. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Fout: De transactie was afgewezen. Dit kan gebeuren als u eerder uitgegeven munten opnieuw wilt versturen, zoals wanneer u een kopie van uw portemonneebestand (wallet.dat) heeft gebruikt en in de kopie deze munten zijn uitgegeven, maar in de huidige portemonnee deze nog niet als zodanig zijn gemarkeerd. @@ -1215,14 +1199,19 @@ Adres: %4 TransactionDesc - - Open for %1 blocks - Openen voor %1 blokken + + %1 confirmations + %1 bevestigingen - - Open until %1 - Openen totdat %1 + + , has not been successfully broadcast yet + , is nog niet met succes uitgezonden + + + + <b>Status:</b> + <b>Status:</b> @@ -1230,24 +1219,19 @@ Adres: %4 %1/niet verbonden? - - %1/unconfirmed - %1/onbevestigd - - - - %1 confirmations - %1 bevestigingen + + Open for %1 blocks + Openen voor %1 blokken - - <b>Status:</b> - <b>Status:</b> + + Open until %1 + Open tot %1 - - , has not been successfully broadcast yet - , is nog niet succesvol uitgezonden + + %1/unconfirmed + %1/onbevestigd @@ -1262,18 +1246,18 @@ Adres: %4 <b>Date:</b> - <b>Datum:</b> + <b>Datum:</b> <b>Source:</b> Generated<br> - <b>Bron:</b>Gegenereerd<br> + <b>Bron:</b> Gegenereerd<br> <b>From:</b> - <b>Van:</b> + <b>Van:</b> @@ -1285,17 +1269,17 @@ Adres: %4 <b>To:</b> - <b> Aan:</b> + <b>Aan:</b> (yours, label: - (Uw adres, label: + (Uw adres, label: (yours) - (uw) + (uw) @@ -1320,22 +1304,22 @@ Adres: %4 <b>Debit:</b> - <b>Af:</b> + <b>Af:</b> <b>Transaction fee:</b> - <b>Transactiekosten:</b> + <b>Transactiekosten:</b> <b>Net amount:</b> - <b>Netto bedrag:</b> + <b>Netto bedrag:</b> Message: - Bericht: + Bericht: @@ -1368,10 +1352,55 @@ Adres: %4 TransactionTableModel + + + Sent to + Verzonden aan + + + + Payment to yourself + Betaling aan uzelf + + + + Mined + Ontgonnen + + + + (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 + - Date - Datum + Amount + Bedrag @@ -1383,13 +1412,8 @@ Adres: %4 Address Adres - - - Amount - Bedrag - - + Open for %n block(s) Open gedurende %n blok @@ -1397,27 +1421,27 @@ Adres: %4 - + Open until %1 Open tot %1 - + Offline (%1 confirmations) Niet verbonden (%1 bevestigingen) - + Unconfirmed (%1 of %2 confirmations) Onbevestigd (%1 van %2 bevestigd) - + Confirmed (%1 confirmations) Bevestigd (%1 bevestigingen) - + Mined balance will be available in %n more blocks Ontgonnen saldo komt beschikbaar na %n blok @@ -1425,73 +1449,103 @@ Adres: %4 - + 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 + + Date + Datum - - Payment to yourself - Betaling aan uzelf + + Generated but not accepted + Gegenereerd maar niet geaccepteerd + + + TransactionView - - Mined - Ontgonnen + + Could not write to file %1. + Kon niet schrijven naar bestand %1. - - (n/a) - (nvt) + + Range: + Bereik: - - 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. + + to + naar - - Date and time that the transaction was received. - Datum en tijd waarop deze transactie is ontvangen. + + Copy amount + Kopieer bedrag - - Type of transaction. - Type transactie. + + Edit label + Bewerk label - - Destination address of transaction. - Ontvangend adres van transactie + + Comma separated file (*.csv) + Kommagescheiden bestand (*.csv) - - Amount removed from or added to balance. - Bedrag verwijderd van of toegevoegd aan saldo + + Confirmed + Bevestigd + + + + Date + Datum + + + + Type + Type + + + + Label + Label + + + + Address + Adres + + + + Amount + Bedrag + + + + ID + ID + + + + Error exporting + Fout bij exporteren - - - TransactionView @@ -1573,106 +1627,51 @@ Adres: %4 Copy label Kopieer label - - - Copy amount - Kopieer bedrag - - - - Edit label - Bewerk label - Show details... Toon details... - + Export Transaction Data Exporteer transactiegegevens + + + WalletModel - - Comma separated file (*.csv) - Kommagescheiden bestand (*.csv) + + Sending... + Versturen... + + + bitcoin-core - - Confirmed - Bevestigd + + Bitcoin version + Bitcoinversie - - Date - Datum + + Usage: + Gebruik: - - Type - Type + + Loading addresses... + Adressen aan het laden... - - Label - Label - - - - Address - Adres - - - - Amount - Bedrag - - - - ID - ID - - - - Error exporting - Fout bij exporteren - - - - Could not write to file %1. - Kon niet schrijven naar bestand %1. - - - - Range: - Bereik: - - - - to - naar - - - - WalletModel - - - Sending... - Versturen... - - - - bitcoin-core - - - Bitcoin version - Bitcoinversie + + Loading block index... + Blokindex aan het laden... - - Usage: - Gebruik: + + Loading wallet... + Portemonnee aan het laden... @@ -1698,6 +1697,16 @@ Adres: %4 Opties: + + + Prepend debug output with timestamp + Voorzie de debuggingsuitvoer van een tijdsaanduiding + + + + Set database cache size in megabytes (default: 25) + Stel databankcachegrootte in in megabytes (standaard: 25) + Specify configuration file (default: bitcoin.conf) @@ -1723,320 +1732,346 @@ Adres: %4 - - Start minimized - Geminimaliseerd starten - - - - - Specify data directory - Stel datamap in - - - - + Specify connection timeout (in milliseconds) Specificeer de time-out tijd (in milliseconden) - - Connect through socks4 proxy - Verbind via socks4 proxy - - - - - Allow DNS lookups for addnode and connect - Sta DNS-naslag toe voor addnode en connect + + Specify data directory + Stel datamap in - + Listen for connections on <port> (default: 8333 or testnet: 18333) Luister voor verbindingen op <poort> (standaard: 8333 of testnet: 18333) - + Maintain at most <n> connections to peers (default: 125) Onderhoud maximaal <n> verbindingen naar peers (standaard: 125) - - Add a node to connect to - Voeg een node toe om mee te verbinden - - - - - Connect only to the specified node - Verbind alleen met deze node - - - - - Don't accept connections from outside - Sta geen verbindingen van buitenaf toe - - - - - Don't bootstrap list of peers using DNS - Gebruik geen DNS om de lijst met peers op te starten - - - + 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: 10000) - Maximale ontvangstbuffer per connectie, <n>*1000 bytes (standaard: 10000) - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maximale zendbuffer per connectie, <n>*1000 bytes (standaard: 10000) + + Accept command line and JSON-RPC commands + Aanvaard commandoregel en JSON-RPC commando's + - - Don't attempt to use UPnP to map the listening port - Probeer geen UPnP te gebruiken om de poort waarop geluisterd wordt te mappen - + + 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 - - Attempt to use UPnP to map the listening port - Probeer UPnP te gebruiken om de poort waarop geluisterd wordt te mappen + + Username for JSON-RPC connections + Gebruikersnaam voor JSON-RPC verbindingen - - Fee per kB to add to transactions you send - Transactiekosten per kB om toe te voegen aan transacties die u verzendt + + Send trace/debug info to debugger + Stuur trace/debug-info naar debugger - - Accept command line and JSON-RPC commands - Aanvaard commandoregel en JSON-RPC commando's + + Password for JSON-RPC connections + Wachtwoord voor JSON-RPC verbindingen - - Run in the background as a daemon and accept commands - Draai in de achtergrond als daemon en aanvaard commando's + + Listen for JSON-RPC connections on <port> (default: 8332) + Luister voor JSON-RPC verbindingen op <poort> (standaard: 8332) - + Use the test network Gebruik het testnetwerk - - Output extra debugging information - Toon extra debuggingsinformatie - - - - Prepend debug output with timestamp - Voorzie de debuggingsuitvoer van een tijdsaanduiding + + Show splash screen on startup (default: 1) + Laat laadscherm zien bij het opstarten. (standaard: 1) - - 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 + + Accept connections from outside (default: 1) + Accepteer verbindingen van buitenaf (standaard: 1) - - Send trace/debug info to debugger - Stuur trace/debug-info naar debugger + + Set language, for example "de_DE" (default: system locale) + Stel taal in, bijvoorbeeld ''de_DE" (standaard: systeeminstellingen) - - Username for JSON-RPC connections - Gebruikersnaam voor JSON-RPC verbindingen - + + Find peers using DNS lookup (default: 1) + Vind andere nodes d.m.v. DNS-naslag (standaard: 1) - - Password for JSON-RPC connections - Wachtwoord voor JSON-RPC verbindingen - + + Use Universal Plug and Play to map the listening port (default: 1) + Gebruik UPnP om de luisterende poort te mappen (standaard: 1) - - Listen for JSON-RPC connections on <port> (default: 8332) - Luister voor JSON-RPC verbindingen op <poort> (standaard: 8332) - + + Use Universal Plug and Play to map the listening port (default: 0) + Gebruik UPnP om de luisterende poort te mappen (standaard: 0) - + 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) - + 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 blokkenketen op ontbrekende portemonnee-transacties - - - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL opties: (zie de Bitcoin wiki voor SSL instructies) - - - - + 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) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kan geen lock op de gegevensdirectory %s verkrijgen. Bitcoin draait vermoedelijk reeds. - - - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Aanvaardbare ciphers (standaard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Loading addresses... - Adressen aan het laden... - - - + This help message Dit helpbericht - - Loading block index... - Blokindex aan het laden... + + Error loading blkindex.dat + Fout bij laden blkindex.dat - - Loading wallet... - Portemonnee aan het laden... + + Error loading wallet.dat: Wallet corrupted + Fout bij laden wallet.dat: Portemonnee corrupt - - Rescanning... - Opnieuw aan het scannen ... + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Fout bij laden wallet.dat: Portemonnee vereist een nieuwere versie van Bitcoin - - Error loading addr.dat - Fout bij laden addr.dat + + Wallet needed to be rewritten: restart Bitcoin to complete + Portemonnee moest herschreven worden: Herstart Bitcoin om te voltooien - - Error loading blkindex.dat - Fout bij laden blkindex.dat + + Error loading wallet.dat + Fout bij laden wallet.dat - - Error loading wallet.dat: Wallet corrupted - Fout bij laden wallet.dat: Portemonnee corrupt + + Start minimized + Geminimaliseerd starten + - - Done loading - Klaar met laden + + Connect through socks4 proxy + Verbind via socks4 proxy + - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Fout bij laden wallet.dat: Portemonnee vereist een nieuwere versie van Bitcoin + + Allow DNS lookups for addnode and connect + Sta DNS-naslag toe voor addnode en connect + + + + + Connect only to the specified node + Verbind alleen met deze node + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maximale ontvangstbuffer per connectie, <n>*1000 bytes (standaard: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maximale zendbuffer per connectie, <n>*1000 bytes (standaard: 10000) + + + + Run in the background as a daemon and accept commands + Draai in de achtergrond als daemon en aanvaard commando's + + + + + Output extra debugging information + Toon extra debuggingsinformatie - Invalid -proxy address - Foutief -proxy adres + Error loading addr.dat + Fout bij laden addr.dat - Wallet needed to be rewritten: restart Bitcoin to complete - Portemonnee moest herschreven worden: Herstart Bitcoin om te voltooien + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kan geen lock op de gegevensdirectory %s verkrijgen. Bitcoin draait vermoedelijk reeds. - - Invalid amount for -paytxfee=<amount> - Ongeldig bedrag voor -paytxfee=<bedrag> + + Rescanning... + Opnieuw aan het scannen ... - - Error loading wallet.dat - Fout bij laden wallet.dat + + Done loading + Klaar met laden - + + Invalid -proxy address + Foutief -proxy adres + + + + Invalid amount for -paytxfee=<amount> + Ongeldig bedrag voor -paytxfee=<bedrag> + + + 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. - + Error: CreateThread(StartNode) failed Fout: CreateThread(StartNode) is mislukt - - Warning: Disk space is low - Waarschuwing: Weinig schijfruimte over - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Kan niet binden aan poort %d op deze computer. Bitcoin draait vermoedelijk reeds. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Waarschuwing: Controleer dat de datum en tijd op uw computer correct zijn ingesteld. Als uw klok fout staat zal Bitcoin niet correct werken. - + beta beta + + + Warning: Disk space is low + Waarschuwing: Weinig schijfruimte over + + + + 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) + + + + Rescan the block chain for missing wallet transactions + Doorzoek de blokkenketen op ontbrekende portemonnee-transacties + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL opties: (zie de Bitcoin wiki voor SSL instructies) + + + + + Add a node to connect to and attempt to keep the connection open + Voeg een knooppunt om te verbinden toe en probeer de verbinding open te houden + + + + Cannot downgrade wallet + Kan portemonnee niet downgraden + + + + Cannot initialize keypool + Kan sleutel-pool niet initialiseren + + + + Cannot write default address + Kan standaard adres niet schrijven + + + + Fee per KB to add to transactions you send + Kosten per KB om aan transacties toe te voegen die u verstuurt + + + + Find peers using internet relay chat (default: 0) + Vind anderen door middel van Internet Relay Chat (standaard: 0) + + + + How many blocks to check at startup (default: 2500, 0 = all) + Het aantal blokken na te kijken bij opstarten (standaard: 2500, 0=alle) + + + + How thorough the block verification is (0-6, default: 1) + De grondigheid van de blokverificatie (0-6, standaard: 1) + + + + Upgrade wallet to latest format + Vernieuw portemonnee naar nieuwste versie + diff --git a/src/qt/locale/bitcoin_pl.ts b/src/qt/locale/bitcoin_pl.ts index 693bc642b6..a9c4a70274 100644 --- a/src/qt/locale/bitcoin_pl.ts +++ b/src/qt/locale/bitcoin_pl.ts @@ -42,7 +42,7 @@ www.transifex.net/projects/p/bitcoin/ Address Book - Adresy + Książka Adresowa @@ -82,7 +82,7 @@ www.transifex.net/projects/p/bitcoin/ Sign a message to prove you own this address - Podpisz wiadomość aby dowieść, że ten adres jest twój + Podpisz wiadomość aby dowieść, że ten adres jest twój @@ -120,22 +120,22 @@ www.transifex.net/projects/p/bitcoin/ Usuń - + Export Address Book Data Eksportuj książkę adresową - + Comma separated file (*.csv) - CSV (rozdzielany przecinkami) + Plik *.CSV (rozdzielany przecinkami) - + Error exporting Błąd podczas eksportowania - + Could not write to file %1. Błąd zapisu do pliku %1. @@ -163,29 +163,28 @@ www.transifex.net/projects/p/bitcoin/ Dialog - Dialog - - - - - TextLabel - TekstEtykiety + Dialog - + Enter passphrase Wpisz hasło - + New passphrase Nowe hasło - + Repeat new passphrase Powtórz nowe hasło + + + TextLabel + + 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>. @@ -244,17 +243,6 @@ Czy na pewno chcesz zaszyfrować swój portfel? Wallet encrypted Portfel zaszyfrowany - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - - Warning: The Caps Lock key is on. - Ostrzeżenie: Caps Lock jest włączony. - @@ -293,215 +281,181 @@ Czy na pewno chcesz zaszyfrować swój portfel? - Wallet passphrase was succesfully changed. - Hasło do portfela zostało pomyślnie zmienione. + Wallet passphrase was successfully changed. + Hasło portfela zostało pomyślnie zmienione. + + + + + Warning: The Caps Lock key is on. + Uwaga: Klawisz Caps Lock jest włączony. + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Program Bitcoin zamknie się aby dokończyć proces szyfrowania. Pamiętaj, że szyfrowanie portfela nie zabezpiecza w pełni Twoich bitcoinów przed kradzieżą przez wirusy lub trojany mogące zainfekować Twój komputer. BitcoinGUI - - Bitcoin Wallet - Portfel Bitcoin - - - - + + Synchronizing with network... Synchronizacja z siecią... - - Block chain synchronization in progress - Synchronizacja bloku łańcucha w toku. - - - + &Overview P&odsumowanie - + Show general overview of wallet Pokazuje ogólny zarys portfela - + &Transactions &Transakcje - + Browse transaction history Przeglądaj historię transakcji - + &Address Book Książka &adresowa - + Edit the list of stored addresses and labels Edytuj listę zapisanych adresów i i etykiet - + &Receive coins Odbie&rz monety - + Show the list of addresses for receiving payments Pokaż listę adresów do otrzymywania płatności - + &Send coins Wy&syłka monet - - Send coins to a bitcoin address - Wyślij monety na adres bitcoin - - - - Sign &message - Podpisz wiado&mość - - - - Prove you control an address - Udowodnij, że kontrolujesz adres + + Block chain synchronization in progress + Synchronizacja bloku łańcucha w toku. - + E&xit &Zakończ - + Quit application Zamknij program - - &About %1 - &O %1 - - - + Show information about Bitcoin Pokaż informację o Bitcoin - + About &Qt O &Qt - + Show information about Qt Pokazuje informacje o Qt - + &Options... &Opcje... - - Modify configuration options for bitcoin - Zmienia opcje konfiguracji bitcoina + + Send coins to a bitcoin address + Wyślij monety na adres bitcoin - - Open &Bitcoin - Otwórz &Bitcoin + + Sign &message + Podpisz wiado&mość - - Show the Bitcoin window - Pokaż okno Bitcoin + + Prove you control an address + Udowodnij, że kontrolujesz adres - + &Export... &Eksportuj... - - Export the data in the current tab to a file - - - - - &Encrypt Wallet - Zaszyfruj portf&el - - - + Encrypt or decrypt wallet Zaszyfruj lub odszyfruj portfel - - &Backup Wallet - &Backup portfel - - - - Backup wallet to another location - - - - - &Change Passphrase - Zmień h&asło + + &About %1 + &O %1 - + Change the passphrase used for wallet encryption Zmień hasło użyte do szyfrowania portfela - + &File &Plik - + &Settings P&referencje - + &Help Pomo&c - + Tabs toolbar Pasek zakładek - + Actions toolbar Pasek akcji - + [testnet] [testnet] - - bitcoin-qt - bitcoin-qt + + &Encrypt Wallet + Zaszyfruj portf&el - + %n active connection(s) to Bitcoin network %n aktywne połączenie do sieci Bitcoin @@ -510,17 +464,47 @@ Czy na pewno chcesz zaszyfrować swój portfel? - - Downloaded %1 of %2 blocks of transaction history. - Pobrano %1 z %2 bloków z historią transakcji. + + &Backup Wallet + &Backup portfel - + + Bitcoin Wallet + Portfel Bitcoin + + + + Modify configuration options for bitcoin + Zmienia opcje konfiguracji bitcoina + + + + Open &Bitcoin + Otwórz &Bitcoin + + + + Show the Bitcoin window + Pokaż okno Bitcoin + + + + Backup wallet to another location + Zapasowy portfel w innej lokalizacji + + + + &Change Passphrase + Zmień h&asło + + + Downloaded %1 blocks of transaction history. Pobrano %1 bloków z historią transakcji. - + %n second(s) ago %n sekundę temu @@ -529,7 +513,7 @@ Czy na pewno chcesz zaszyfrować swój portfel? - + %n minute(s) ago %n minutę temu @@ -538,7 +522,7 @@ Czy na pewno chcesz zaszyfrować swój portfel? - + %n hour(s) ago %n godzinę temu @@ -547,7 +531,7 @@ Czy na pewno chcesz zaszyfrować swój portfel? - + %n day(s) ago %n dzień temu @@ -556,42 +540,37 @@ Czy na pewno chcesz zaszyfrować swój portfel? - + Up to date Aktualny - + Catching up... Łapanie bloków... - + Last received block was generated %1. Ostatnio otrzymany blok została wygenerowany %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? - - - - - Sending... - Wysyłanie... + + Export the data in the current tab to a file + Eksportuj dane z aktywnej karty do pliku - + Sent transaction Transakcja wysłana - + Incoming transaction Transakcja przychodząca - + Date: %1 Amount: %2 Type: %3 @@ -604,60 +583,80 @@ 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> - + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + Pobrano %1 z %2 bloków z historią transakcji. + + + + 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? + Transakcja przekracza limit. Możesz wysłać ją płacąc prowizję %1, która zostaje przekazana do węzłów, które ją prześlą i pomoże wspierać sieć Bitcoin. Czy chcesz zapłacić prowizję? + + + + Sending... + Wysyłanie... + + + Backup Wallet - + Kopia Zapasowa Portfela - + Wallet Data (*.dat) - + Dane Portfela (*.dat) - + Backup Failed - + Kopia Zapasowa Nie Została Wykonana - + There was an error trying to save the wallet data to the new location. - + Wystąpił błąd podczas próby zapisu portfela do nowej lokalizacji. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Błąd krytyczny. Bitcoin nie może kontynuować bezpiecznie więc zostanie zamknięty. DisplayOptionsPage - + &Unit to show amounts in: &Jednostka pokazywana przy kwocie: - + Choose the default subdivision unit to show in the interface, and when sending coins Wybierz podział jednostki pokazywany w interfejsie oraz podczas wysyłania monet - + &Display addresses in transaction list &Wyświetlaj adresy w liście transakcji - + Whether to show Bitcoin addresses in the transaction list @@ -779,7 +778,7 @@ Adres: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Łączy się z siecią Bitcoin przez proxy SOCKS4 (np. kiedy łączysz się przez Tor) @@ -802,18 +801,13 @@ Adres: %4 Port of the proxy (e.g. 1234) Port proxy (np. 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Opcjonalna prowizja za transakcje za kB, wspomaga ona szybkość przebiegu transakcji. Większość transakcji jest 1 kB. Zalecana prowizja 0.01 . - Pay transaction &fee Płać prowizję za t&ransakcje - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Opcjonalna prowizja za transakcje za kB, wspomaga ona szybkość przebiegu transakcji. Większość transakcji jest 1 kB. Zalecana prowizja 0.01 . @@ -828,7 +822,7 @@ Adres: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + Możesz podpisywać wiadomości swoimi adresami aby udowodnić, że jesteś ich właścicielem. Uważaj, aby nie podpisywać niczego co wzbudza Twoje podejrzenia, ponieważ ktoś może stosować phishing próbując nakłonić Cię do ich podpisania. Akceptuj i podpisuj tylko w pełni zrozumiałe komunikaty i wiadomości. @@ -878,7 +872,7 @@ Adres: %4 Copy the current signature to the system clipboard - + Kopiuje aktualny podpis do schowka systemowego @@ -938,11 +932,6 @@ Adres: %4 Balance: Saldo: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -958,16 +947,6 @@ Adres: %4 Unconfirmed: Niepotwierdzony: - - - 0 BTC - 0 BTC - - - - Wallet - Portfel - <b>Recent transactions</b> @@ -988,6 +967,11 @@ Adres: %4 Total number of transactions in wallet Całkowita liczba transakcji w portfelu + + + Wallet + Portfel + QRCodeDialog @@ -1011,16 +995,16 @@ Adres: %4 Amount: Kwota: - - - BTC - BTC - Label: Etykieta: + + + BTC + BTC + Message: @@ -1034,7 +1018,7 @@ Adres: %4 Error encoding URI into QR Code. - + Błąd kodowania URI w Kodzie QR. @@ -1044,20 +1028,20 @@ Adres: %4 PNG Images (*.png) - + Obraz PNG (*.png) SendCoinsDialog - - - - - - - + + + + + + + Send Coins Wyślij płatność @@ -1102,59 +1086,59 @@ Adres: %4 Wy&syłka - + <b>%1</b> to %2 (%3) <b>%1</b> do %2 (%3) - + Confirm send coins Potwierdź wysyłanie monet - + Are you sure you want to send %1? Czy na pewno chcesz wysłać %1? - + and i - - The recepient address is not valid, please recheck. - Adres odbiorcy jest niepoprawny, proszę go sprawdzić. + + The total exceeds your balance when the %1 transaction fee is included. + Suma przekracza twoje saldo, gdy doliczymy %1 prowizji transakcyjnej. - - The amount to pay must be larger than 0. - Kwota do zapłacenie musi być większa od 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. + Błąd: transakcja została odrzucona. Może się to zdarzyć, gdy monety z Twojego portfela zostały już wydane, na przykład gdy używałeś kopii wallet.dat i bitcoiny które tam wydałeś nie zostały jeszcze odjęte z portfela z którego teraz korzystasz. - - Amount exceeds your balance - Kwota przekracza twoje saldo + + The recipient address is not valid, please recheck. + Adres odbiorcy jest nieprawidłowy, proszę poprawić - - Total exceeds your balance when the %1 transaction fee is included - Suma przekracza twoje saldo, gdy doliczymy %1 prowizji transakcyjnej + + The amount to pay must be larger than 0. + Kwota do zapłacenie musi być większa od 0. - - Duplicate address found, can only send to each address once in one send operation - Znaleziono powtórzony adres, można wysłać tylko raz na adres, w jednej operacji wysyłania + + The amount exceeds your balance. + Kwota przekracza twoje saldo. - - Error: Transaction creation failed - Błąd: Tworzenie transakcji nie powiodło się + + 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. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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: Transaction creation failed. + Błąd: Tworzenie transakcji nie powiodło się. @@ -1223,6 +1207,11 @@ Adres: %4 TransactionDesc + + + unknown + nieznany + Open for %1 blocks @@ -1233,11 +1222,6 @@ Adres: %4 Open until %1 Otwórz do %1 - - - %1/offline? - %1/offline? - %1/unconfirmed @@ -1248,6 +1232,11 @@ Adres: %4 %1 confirmations %1 potwierdzeń + + + %1/offline? + %1/offline? + <b>Status:</b> @@ -1284,11 +1273,6 @@ Adres: %4 <b>From:</b> <b>Od:</b> - - - unknown - nieznany - @@ -1398,7 +1382,7 @@ Adres: %4 Kwota - + Open for %n block(s) Otwórz dla %n bloku @@ -1407,27 +1391,27 @@ Adres: %4 - + Open until %1 Otwórz do %1 - + Offline (%1 confirmations) Offline (%1 potwierdzeń) - + Unconfirmed (%1 of %2 confirmations) Niezatwierdzony (%1 z %2 potwierdzeń) - + Confirmed (%1 confirmations) Zatwierdzony (%1 potwierdzeń) - + Mined balance will be available in %n more blocks Wydobyta kwota będzie dostępna za %n blok @@ -1436,67 +1420,67 @@ Adres: %4 - + This block was not received by any other nodes and will probably not be accepted! Ten blok nie został odebrany przez jakikolwiek inny węzeł i prawdopodobnie nie zostanie zaakceptowany! - + Generated but not accepted Wygenerowano ale nie zaakceptowano - + Received with Otrzymane przez - + Received from Odebrano od - + Sent to Wysłano do - + Payment to yourself Płatność do siebie - + Mined Wydobyto - + (n/a) (brak) - + Transaction status. Hover over this field to show number of confirmations. Status transakcji. Najedź na pole, aby zobaczyć liczbę potwierdzeń. - + Date and time that the transaction was received. Data i czas odebrania transakcji. - + Type of transaction. Rodzaj transakcji. - + Destination address of transaction. Adres docelowy transakcji. - + Amount removed from or added to balance. Kwota usunięta z lub dodana do konta. @@ -1600,67 +1584,67 @@ Adres: %4 Pokaż szczegóły... - + Export Transaction Data Eksportuj Dane Transakcyjne - + 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 podczas eksportowania - + Could not write to file %1. Błąd zapisu do pliku %1. - + Range: Zakres: - + to do @@ -1685,6 +1669,11 @@ Adres: %4 Usage: Użycie: + + + Allow JSON-RPC connections from specified IP address + Przyjmuj połączenia JSON-RPC ze wskazanego adresu IP + Send command to -server or bitcoind @@ -1732,288 +1721,339 @@ Adres: %4 + Show splash screen on startup (default: 1) + Pokazuj okno powitalne przy starcie (domyślnie: 1) + + + Specify data directory Wskaż folder danych - + Specify connection timeout (in milliseconds) Wskaż czas oczekiwania bezczynności połączenia (w milisekundach) - + Connect through socks4 proxy Łączy przez proxy socks4 - + Allow DNS lookups for addnode and connect - + Listen for connections on <port> (default: 8333 or testnet: 18333) Nasłuchuj połączeń na <port> (domyślnie: 8333 lub testnet: 18333) - + 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 - Dodaj węzeł do łączenia się - - - + Connect only to the specified node Łącz tylko do wskazanego węzła - - Don't accept connections from outside - Nie akceptuj połączeń zewnętrznych - - - - Don't bootstrap list of peers using DNS - - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) Maksymalny bufor odbioru na połączenie, <n>*1000 bajtów (domyślnie: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maksymalny bufor wysyłu na połączenie, <n>*1000 bajtów (domyślnie: 10000) - - Don't attempt to use UPnP to map the listening port - Nie próbuj używać UPnP do mapowania portu nasłuchu - - - - Attempt to use UPnP to map the listening port - Próbuj używać UPnP do mapowania portu nasłuchu - - - - Fee per kB to add to transactions you send - Prowizja za kB dodawana do wysyłanej transakcji - - - - Accept command line and JSON-RPC commands - - - - + 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 - - - Prepend debug output with timestamp - - - - - Send trace/debug info to console instead of debug.log file - - - - - Send trace/debug info to debugger - + Accept command line and JSON-RPC commands + Akceptuj linię poleceń oraz polecenia JSON-RPC - + 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: 8332) Nasłuchuj połączeń JSON-RPC na <port> (domyślnie: 8332) - - 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) - + Set key pool size to <n> (default: 100) Ustaw rozmiar puli kluczy na <n> (domyślnie: 100) - + Rescan the block chain for missing wallet transactions Przeskanuj blok łańcuchów żeby znaleźć zaginione transakcje portfela - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) opcje SSL: (sprawdź Bitcoin Wiki dla instrukcje konfiguracji SSL) - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Aceptowalne szyfry (domyślnie: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + Use OpenSSL (https) for JSON-RPC connections Użyj OpenSSL (https) do połączeń JSON-RPC - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Nie można zablokować folderu danych %s. Bitcoin prawdopodobnie już działa. + + + Server certificate file (default: server.cert) Plik certyfikatu serwera (domyślnie: server.cert) - + Server private key (default: server.pem) Klucz prywatny serwera (domyślnie: server.pem) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Aceptowalne szyfry (domyślnie: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - + This help message Ta wiadomość pomocy - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Nie można zablokować folderu danych %s. Bitcoin prawdopodobnie już działa. - - - + Loading addresses... Wczytywanie adresów... - + Error loading addr.dat Błąd ładowania addr.dat - + Error loading blkindex.dat Błąd ładownia blkindex.dat - + Error loading wallet.dat: Wallet corrupted Błąd ładowania wallet.dat: Uszkodzony portfel - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Błąd ładowania wallet.dat: Portfel wymaga nowszej wersji Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete Portfel wymaga przepisania: zrestartuj Bitcoina żeby ukończyć - + + Send trace/debug info to console instead of debug.log file + Wyślij informację/raport do konsoli zamiast do pliku debug.log. + + + Error loading wallet.dat Błąd ładowania wallet.dat - + + Send trace/debug info to debugger + Wyślij informację/raport do debuggera. + + + + How many blocks to check at startup (default: 2500, 0 = all) + Ile bloków sprawdzać przy uruchomieniu (domyślnie: 2500, 0 = wszystkie) + + + + Set database cache size in megabytes (default: 25) + Ustaw rozmiar w megabajtach cache-u bazy danych (domyślnie: 25) + + + + Upgrade wallet to latest format + Zaktualizuj portfel do najnowszego formatu. + + + Loading block index... Ładowanie indeksu bloku... - + + Cannot downgrade wallet + Nie można dezaktualizować portfela + + + + Done loading + Wczytywanie zakończone + + + + Fee per KB to add to transactions you send + + + + + + 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 + + + + Find peers using internet relay chat (default: 0) + Znajdź peery używające IRC (domyślnie: 0) + + + + Accept connections from outside (default: 1) + Akceptuj połączenia z zewnątrz (domyślnie: 1) + + + + Set language, for example "de_DE" (default: system locale) + Ustaw Język, na przykład "pl_PL" (domyślnie: systemowy) + + + + Find peers using DNS lookup (default: 1) + + + + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Use Universal Plug and Play to map the listening port (default: 1) + Używaj UPnP do mapowania portu nasłuchu (domyślnie: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Używaj UPnP do mapowania portu nasłuchu (domyślnie: 0) + + + + Output extra debugging information + + + + + Prepend debug output with timestamp + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + How thorough the block verification is (0-6, default: 1) + + + + Loading wallet... Wczytywanie portfela... - + + Cannot initialize keypool + + + + + Cannot write default address + + + + Rescanning... Ponowne skanowanie... - - Done loading - Wczytywanie zakończone + + Warning: Disk space is low + Uwaga: Mało miejsca na dysku - + Invalid -proxy address Nieprawidłowy adres -proxy - + Invalid amount for -paytxfee=<amount> Nieprawidłowa kwota dla -paytxfee=<amount> - + 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. - + Error: CreateThread(StartNode) failed Błąd: CreateThread(StartNode) nie powiodło się - - Warning: Disk space is low - Ostrzeżenie: kończy się miejsce na dysku - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Nie można przywiązać portu %d na tym komputerze. Bitcoin prawdopodobnie już działa. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Ostrzeżenie: Proszę sprawdzić poprawność czasu i daty na tym komputerze. Jeśli czas jest zły Bitcoin może nie działać prawidłowo. - + beta beta diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index 63b5ce47b9..e545be975b 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -51,7 +51,7 @@ This product includes software developed by the OpenSSL Project for use in the O &New Address... - & Novo endereço ... + &amp; Novo endereço ... @@ -61,22 +61,12 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - & Copie para a área de transferência do sistema - - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Excluir o endereço selecionado da lista. Apenas endereços de envio podem ser excluídos. + &amp; Copie para a área de transferência do sistema Show &QR Code - - - - - &Delete - & Excluir + Mostrar &QR Code @@ -86,7 +76,17 @@ This product includes software developed by the OpenSSL Project for use in the O &Sign Message - + &Assinar Mensagem + + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Excluir o endereço selecionado da lista. Apenas endereços de envio podem ser excluídos. + + + + &Delete + &Excluir @@ -96,35 +96,35 @@ This product includes software developed by the OpenSSL Project for use in the O Copy label - Copy label + Copiar rótulo Edit - + Editar Delete - + Excluir - + Export Address Book Data Exportação de dados do Catálogo de Endereços - + Comma separated file (*.csv) Arquivo separado por vírgulas (*. csv) - + Error exporting Erro ao exportar - + Could not write to file %1. Could not write to file %1. @@ -155,30 +155,37 @@ This product includes software developed by the OpenSSL Project for use in the O Diálogo - - + + Repeat new passphrase + Repita a nova frase de segurança + + + TextLabel TextoDoRótulo - + 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 + + + + + Wallet encryption failed + A criptografia da carteira falhou - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Digite a nova frase de seguraça da sua carteira. <br/> Por favor, use uma frase de <b>10 ou mais caracteres aleatórios,</b> ou <b>oito ou mais palavras.</b> + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + A criptografia da carteira falhou devido a um erro interno. Sua carteira não estava criptografada. @@ -186,15 +193,20 @@ This product includes software developed by the OpenSSL Project for use in the O Criptografar carteira - - This operation needs your wallet passphrase to unlock the wallet. - Esta operação precisa de sua frase de segurança para desbloquear a carteira. + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Digite a nova frase de seguraça da sua carteira. <br/> Por favor, use uma frase de <b>10 ou mais caracteres aleatórios,</b> ou <b>oito ou mais palavras.</b> Unlock wallet Desbloquear carteira + + + This operation needs your wallet passphrase to unlock the wallet. + Esta operação precisa de sua frase de segurança para desbloquear a carteira. + This operation needs your wallet passphrase to decrypt the wallet. @@ -220,53 +232,12 @@ This product includes software developed by the OpenSSL Project for use in the O Confirm wallet encryption Confirmar criptografia da carteira - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - AVISO: Se você criptografar sua carteira e perder sua senha, você vai <b>perder todos os seus BITCOINS!</b> Tem certeza de que deseja criptografar sua carteira? - - - - - Wallet encrypted - Carteira criptografada - - - - - Warning: The Caps Lock key is on. - - - - - - - - Wallet encryption failed - A criptografia da carteira falhou - - - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - A criptografia da carteira falhou devido a um erro interno. Sua carteira não estava criptografada. - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin will close now to finish the encryption process. Lembre-se que sua carteira criptografada não poderá proteger totalmente os seus bitcoins de serem roubados por softwares maldosos que infectem seu computador. - The supplied passphrases do not match. A frase de segurança fornecida não confere. - - - Wallet unlock failed - A abertura da carteira falhou - @@ -281,215 +252,228 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. A frase de segurança da carteira foi alterada com êxito. + + + + Warning: The Caps Lock key is on. + + + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + AVISO: Se você criptografar sua carteira e perder sua senha, você vai <b>perder todos os seus BITCOINS!</b> Tem certeza de que deseja criptografar sua carteira? + + + + + Wallet encrypted + Carteira criptografada + + + + Wallet unlock failed + A abertura da carteira falhou + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + O Bitcoin irá fechar agora para finalizar o processo de encriptação. Lembre-se de que encriptar sua carteira não protege totalmente suas bitcoins de serem roubadas por malwares que tenham infectado o seu computador. + BitcoinGUI - - Bitcoin Wallet - Carteira Bitcoin + + Show information about Bitcoin + Mostrar informação sobre Bitcoin - - - Synchronizing with network... - Sincronizando com a rede... + + Open &Bitcoin + Abrir &Bitcoin - - Block chain synchronization in progress - Sincronização da corrente de blocos em andamento + + + Synchronizing with network... + Sincronizando com a rede... - + &Overview &Visão geral - + Show general overview of wallet Mostrar visão geral da carteira - + + Bitcoin Wallet + Carteira Bitcoin + + + &Transactions &Transações - + Browse transaction history Navegar pelo histórico de transações - + + Block chain synchronization in progress + Sincronização da corrente de blocos em andamento + + + &Address Book &Catálogo de endereços - + Edit the list of stored addresses and labels Editar a lista de endereços e rótulos - + &Receive coins &Receber moedas - + Show the list of addresses for receiving payments Mostrar a lista de endereços para receber pagamentos - - &Send coins - &Enviar moedas + + &Export... + &Exportar... - - Send coins to a bitcoin address - Enviar moedas para um endereço bitcoin + + Export the data in the current tab to a file + Exportar os dados na aba atual para um arquivo - - Sign &message - + + Encrypt or decrypt wallet + Criptografar ou decriptogravar carteira - - Prove you control an address - + + About &Qt + Sobre &Qt - - E&xit - E&xit + + Backup wallet to another location + Fazer cópia de segurança da carteira para uma outra localização - - Quit application - Sair da aplicação + + Show information about Qt + Mostrar informações sobre o Qt - - &About %1 - &About %1 + + Backup Wallet + Fazer cópia de segurança da Carteira - - Show information about Bitcoin - Mostrar informação sobre Bitcoin + + Wallet Data (*.dat) + Dados da Carteira (*.dat) - - &Options... - &Opções... + + Backup Failed + Cópia de segurança Falhou - - Modify configuration options for bitcoin - Modificar opções de configuração para bitcoin + + There was an error trying to save the wallet data to the new location. + Houve um erro ao tentar salvar os dados da carteira para uma nova localização. - - Open &Bitcoin - Abrir &Bitcoin + + &Send coins + &Enviar moedas - - Show the Bitcoin window - Mostrar a janela Bitcoin + + E&xit + E&xit - - &Export... - &Exportar... + + Quit application + Sair da aplicação - - &Encrypt Wallet - &Criptografar Carteira + + &Options... + &Opções... - - Encrypt or decrypt wallet - Criptografar ou decriptogravar carteira + + Send coins to a bitcoin address + Enviar moedas para um endereço bitcoin - - &Change Passphrase - &Mudar frase de segurança + + &About %1 + &About %1 - + Change the passphrase used for wallet encryption Mudar a frase de segurança utilizada na criptografia da carteira - - About &Qt - - - - - Show information about Qt - Mostrar informação sobre Qt - - - - Export the data in the current tab to a file - - - - - &Backup Wallet - &Backup Carteira - - - - Backup wallet to another location - + + &File + &Arquivo - - &File - & Arquivo + + Show the Bitcoin window + Mostrar a janela Bitcoin - + &Settings E configurações - - &Help - & Ajuda + + &Encrypt Wallet + &Criptografar Carteira - + Tabs toolbar Barra de ferramentas - + Actions toolbar Barra de ações - + [testnet] [testnet] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network %n conexão ativa na rede Bitcoin @@ -497,17 +481,17 @@ Are you sure you wish to encrypt your wallet? - - Downloaded %1 of %2 blocks of transaction history. - Carregados %1 de %2 blocos do histórico de transações. + + &Change Passphrase + &Mudar frase de segurança - + Downloaded %1 blocks of transaction history. Carregados %1 blocos do histórico de transações. - + %n second(s) ago %n segundo atrás @@ -515,15 +499,20 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago %n minutos atrás %n minutos atrás + + + &Help + &amp; Ajuda + - + %n hour(s) ago %n hora atrás @@ -531,7 +520,7 @@ Are you sure you wish to encrypt your wallet? - + %n day(s) ago %n dia atrás @@ -539,42 +528,67 @@ Are you sure you wish to encrypt your wallet? - + Up to date Atualizado - - Catching up... - Recuperando o atraso ... + + bitcoin-qt + bitcoin-qt - - Last received block was generated %1. - Last received block was generated %1. + + Sign &message + + + + + Prove you control an address + + + + + Modify configuration options for bitcoin + Modificar opções de configuração para bitcoin + + + + &Backup Wallet + &Backup Carteira + + + + Catching up... + Recuperando o atraso ... + + + + 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? 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? - + Sending... - Sending... + Enviando... - + Sent transaction Sent transaction - + Incoming transaction Incoming transaction - + Date: %1 Amount: %2 Type: %3 @@ -586,60 +600,45 @@ Tipo: %3 Endereço: %4 - + + Downloaded %1 of %2 blocks of transaction history. + Carregados %1 de %2 blocos do histórico de transações. + + + 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 - - - - - Wallet Data (*.dat) - - - - - Backup Failed - - - - - There was an error trying to save the wallet data to the new location. - - - - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &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 + - + &Display addresses in transaction list - + Whether to show Bitcoin addresses in the transaction list @@ -696,11 +695,6 @@ Endereço: %4 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 bitcoin address. - The entered address "%1" is not a valid bitcoin address. - Could not unlock wallet. @@ -711,23 +705,28 @@ Endereço: %4 New key generation failed. New key generation failed. + + + The entered address "%1" is not a valid bitcoin address. + The entered address "%1" is not a valid bitcoin address. + MainOptionsPage - - - &Start Bitcoin on window system startup - &Start Bitcoin on window system startup - Automatically start Bitcoin after the computer is turned on Automatically start Bitcoin after the computer is turned on + + + &Start Bitcoin on window system startup + &Start Bitcoin on window system startup + &Minimize to the tray instead of the taskbar - &Minimize to the tray instead of the taskbar + @@ -737,22 +736,22 @@ Endereço: %4 Map port using &UPnP - Map port using &UPnP + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + M&inimize on close - M&inimize on close + 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. + @@ -761,13 +760,13 @@ Endereço: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Proxy &IP: - Proxy &IP: + @@ -786,17 +785,12 @@ Endereço: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Taxa opcional de transações por kB que ajuda a garantir que suas transações serão processadas rapidamente. A maior parte das transações é de 1 kB. Taxa de 0.01 recomendada. 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 0.01 recommended. @@ -810,7 +804,7 @@ Endereço: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + Você pode assinar mensagens com seus endereços para provar que você é o dono deles. Seja cuidadoso para não assinar algo vago, pois ataques de pishing podem tentar te enganar para dar sua assinatura de identidade para eles. Apenas assine afirmações completamente detalhadas com as quais você concorda. @@ -840,7 +834,7 @@ Endereço: %4 Enter the message you want to sign here - + Entre a mensagem que você quer assinar aqui @@ -855,7 +849,7 @@ Endereço: %4 &Sign Message - + &Assinar Mensagem @@ -865,7 +859,7 @@ Endereço: %4 &Copy to Clipboard - & Copie para a área de transferência do sistema + &amp; Copie para a área de transferência do sistema @@ -895,12 +889,12 @@ Endereço: %4 Main - Main + Display - Display + @@ -915,16 +909,26 @@ Endereço: %4 Form Form + + + Unconfirmed: + Unconfirmed: + + + + Total number of transactions in wallet + Total number of transactions in wallet + + + + 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 + Balance: Balance: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -933,22 +937,12 @@ Endereço: %4 0 - 0 - - - - Unconfirmed: - Unconfirmed: - - - - 0 BTC - 0 BTC + Wallet - + Carteira @@ -960,19 +954,14 @@ Endereço: %4 Your current balance Your current balance - - - 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 number of transactions in wallet - Total number of transactions in wallet - QRCodeDialog + + + Message: + Message: + Dialog @@ -986,32 +975,27 @@ Endereço: %4 Request Payment - + Requisitar Pagamento Amount: - + Quantia: BTC - + Label: - - - - - Message: - Message: + Etiqueta: &Save As... - + &Salvar como... @@ -1020,12 +1004,12 @@ Endereço: %4 - Save Image... - + PNG Images (*.png) + Imagens PNG (*.png) - PNG Images (*.png) + Save Image... @@ -1033,13 +1017,13 @@ Endereço: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins Send Coins @@ -1048,114 +1032,99 @@ Endereço: %4 Send to multiple recipients at once Send to multiple recipients at once - - - &Add recipient... - &Add recipient... - - - - Clear all - Clear all - Remove all transaction fields - + Remover todos os campos da transação Balance: Balance: - - - 123.456 BTC - 123.456 BTC - Confirm the send action Confirm the send action - - &Send - &Send - - - + <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 amount exceeds your balance. + - - The recepient address is not valid, please recheck. - The recepient address is not valid, please recheck. + + The total exceeds your balance when the %1 transaction fee is included. + - - The amount to pay must be larger than 0. - The amount to pay must be larger than 0. + + Duplicate address found, can only send to each address once per send operation. + - - Amount exceeds your balance - Amount exceeds your balance + + Error: Transaction creation failed. + - - Total exceeds your balance when the %1 transaction fee is included - Total exceeds your balance when the %1 transaction fee is included + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + - - Duplicate address found, can only send to each address once in one send operation - Duplicate address found, can only send to each address once in one send operation + + 123.456 BTC + 123.456 BTC - - Error: Transaction creation failed - Error: Transaction creation failed + + &Add recipient... + &Add recipient... - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. + + Clear all + Clear all - - - SendCoinsEntry - - Form - Form + + &Send + &Send - - A&mount: - A&mount: + + and + and - - Pay &To: - Pay &To: + + 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. + + + + SendCoinsEntry @@ -1197,6 +1166,21 @@ Endereço: %4 Remove this recipient Remove this recipient + + + A&mount: + A&mount: + + + + Form + + + + + Pay &To: + Pay &To: + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1206,44 +1190,19 @@ Endereço: %4 TransactionDesc - - Open for %1 blocks - Open for %1 blocks + + (yours, label: + (yours, label: - - Open until %1 - Open until %1 + + , has not been successfully broadcast yet + , has not been successfully broadcast yet - - %1/offline? - %1/offline? - - - - %1/unconfirmed - %1/unconfirmed - - - - %1 confirmations - %1 confirmations - - - - <b>Status:</b> - <b>Status:</b> - - - - , has not been successfully broadcast yet - , has not been successfully broadcast yet - - - - , broadcast through %1 node - , broadcast through %1 node + + , broadcast through %1 node + , broadcast through %1 node @@ -1255,11 +1214,6 @@ Endereço: %4 <b>Date:</b> <b>Date:</b> - - - <b>Source:</b> Generated<br> - <b>Source:</b> Generated<br> - @@ -1278,23 +1232,53 @@ Endereço: %4 <b>To:</b> <b>To:</b> - - - (yours, label: - (yours, label: - (yours) (yours) + + + Open until %1 + Open until %1 + + + + Open for %1 blocks + + + + + %1/offline? + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + <b>Status:</b> + + + + + <b>Source:</b> Generated<br> + + <b>Credit:</b> - <b>Credit:</b> + @@ -1380,7 +1364,7 @@ Endereço: %4 Amount - + Open for %n block(s) Open for %n block @@ -1388,101 +1372,166 @@ Endereço: %4 - + Open until %1 Open until %1 - + Offline (%1 confirmations) Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) Confirmed (%1 confirmations) - - - Mined balance will be available in %n more blocks - - Mined balance will be available in %n more block - Mined balance will be available in %n more blocks - - - + 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 - - Sent to - Sent to - - - + Payment to yourself Payment to yourself - + 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. - + + Amount removed from or added to balance. + Amount removed from or added to balance. + + + Destination address of transaction. Destination address of transaction. + + + Mined balance will be available in %n more blocks + + Mined balance will be available in %n more block + Mined balance will be available in %n more blocks + + - - Amount removed from or added to balance. - Amount removed from or added to balance. + + Sent to + Sent to TransactionView + + + Other + Other + + + + Comma separated file (*.csv) + Comma separated file (*.csv) + + + + Confirmed + Confirmed + + + + Date + Date + + + + Type + Type + + + + 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 + + + + Show details... + Show details... + @@ -1539,11 +1588,6 @@ Endereço: %4 Mined Mined - - - Other - Other - Enter address or label to search @@ -1564,86 +1608,26 @@ Endereço: %4 Copy label Copy label - - - Copy amount - - Edit label Edit label - - Show details... - Show details... - - - + Export Transaction Data Export Transaction Data - - Comma separated file (*.csv) - Comma separated file (*.csv) - - - - Confirmed - Confirmed - - - - Date - Date - - - - Type - Type + + Copy amount + Copiar quantia - + 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 @@ -1656,14 +1640,29 @@ Endereço: %4 bitcoin-core - - Bitcoin version - Bitcoin version + + Loading wallet... + Loading wallet... - - Usage: - Usage: + + Loading addresses... + Loading addresses... + + + + Loading block index... + Loading block index... + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + + + beta + beta @@ -1678,10 +1677,9 @@ Endereço: %4 - - Get help for a command - Get help for a command - + + Rescanning... + Rescanning... @@ -1708,193 +1706,161 @@ Endereço: %4 - - Don't generate coins - Don't generate coins - - - - - Start minimized - Start minimized - - - - + Specify data directory Specify data directory - + Specify connection timeout (in milliseconds) Specify connection timeout (in milliseconds) - - Connect through socks4 proxy - Connect through socks4 proxy - + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - - Allow DNS lookups for addnode and connect - Allow DNS lookups for addnode and connect + + Accept command line and JSON-RPC commands + Accept command line and JSON-RPC commands - - Listen for connections on <port> (default: 8333 or testnet: 18333) - - - - - Maintain at most <n> connections to peers (default: 125) + + Show splash screen on startup (default: 1) - - - Add a node to connect to - Add a node to connect to - - - - - Connect only to the specified node - Connect only to the specified node - - - Don't accept connections from outside - Don't accept connections from outside - - - - - Don't bootstrap list of peers using DNS + Add a node to connect to and attempt to keep the connection open - 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) - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + Set language, for example "de_DE" (default: system locale) - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + Find peers using DNS lookup (default: 1) - - Don't attempt to use UPnP to map the listening port - Don't attempt to use UPnP to map the listening port - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + - - Attempt to use UPnP to map the listening port - Attempt to use UPnP to map the listening port - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + - - Fee per kB to add to transactions you send + + Use Universal Plug and Play to map the listening port (default: 1) - - Accept command line and JSON-RPC commands - Accept command line and JSON-RPC commands - + + Use Universal Plug and Play to map the listening port (default: 0) + - + 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 - - Prepend debug output with timestamp - - - - - Send trace/debug info to console instead of debug.log file - - - - - 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: 8332) Listen for JSON-RPC connections on <port> (default: 8332) - + 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) + + + + 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 + + Start minimized + Start minimized - + + Connect through socks4 proxy + Connect through socks4 proxy + + + + + Done loading + Done loading + + + + Connect only to the specified node + Connect only to the specified node + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1902,134 +1868,203 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Get help for a command + Get help for a command + + + + + Bitcoin version + Bitcoin version + + + + Usage: + Usage: + + + + How thorough the block verification is (0-6, default: 1) + + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + + + + Error loading addr.dat + + + + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Invalid -proxy address + Invalid -proxy address + + + + Invalid amount for -paytxfee=<amount> + Invalid amount for -paytxfee=<amount> + + + + Error: CreateThread(StartNode) failed + Error: CreateThread(StartNode) failed + + + + Warning: Disk space is low + + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Unable to bind to port %d on this computer. Bitcoin is probably already running. + + + + Don't generate coins + Don't generate coins + + + + + Allow DNS lookups for addnode and connect + Allow DNS lookups for addnode and connect + + + + + Rescan the block chain for missing wallet transactions + Rescan the block chain for missing wallet transactions + + + + Use OpenSSL (https) for JSON-RPC connections Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) Server certificate file (default: server.cert) - + Server private key (default: server.pem) Server private key (default: server.pem) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - - - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Loading addresses... - Loading addresses... - - - + This help message This help message - - Loading block index... - Loading block index... - - - - Loading wallet... - Loading wallet... + + 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) - - Rescanning... - Rescanning... + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Procurar por conexões em <port> (padrão: 8333 ou testnet:18333) - - Error loading addr.dat - + + Maintain at most <n> connections to peers (default: 125) + Manter no máximo <n> conexões aos peers (padrão: 125) - - Error loading blkindex.dat - + + Set database cache size in megabytes (default: 25) + Definir o tamanho do cache do banco de dados em megabytes (padrão: 25) - - Error loading wallet.dat: Wallet corrupted - + + Threshold for disconnecting misbehaving peers (default: 100) + Limite para desconectar peers mal comportados (padrão: 100) - - Done loading - Done loading + + Prepend debug output with timestamp + Pré anexar a saída de debug com estampa de tempo - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - + + 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 - - Invalid -proxy address - Invalid -proxy address + + Send trace/debug info to debugger + Mandar informação de trace/debug para o debugger - - Wallet needed to be rewritten: restart Bitcoin to complete - + + Fee per KB to add to transactions you send + Fee per KB to add to transactions you send - - Invalid amount for -paytxfee=<amount> - Invalid amount for -paytxfee=<amount> + + Error loading blkindex.dat + Erro ao carregar blkindex.dat - + Error loading wallet.dat - + Erro ao carregar wallet.dat - - 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. + + Error loading wallet.dat: Wallet corrupted + Erro ao carregar wallet.dat: Carteira corrompida - Error: CreateThread(StartNode) failed - Error: CreateThread(StartNode) failed - - - - Warning: Disk space is low - Warning: Disk space is low + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Erro ao carregar wallet.dat: Carteira requer uma versão mais nova do Bitcoin - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Unable to bind to port %d on this computer. Bitcoin is probably already running. + + How many blocks to check at startup (default: 2500, 0 = all) + Quantos blocos verificar ao iniciar (padrão: 2500, 0 = todos) - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + Upgrade wallet to latest format + Atualizar carteira para o formato mais recente - - beta - beta + + Wallet needed to be rewritten: restart Bitcoin to complete + A Carteira precisou ser reescrita: reinicie o Bitcoin para completar diff --git a/src/qt/locale/bitcoin_ro_RO.ts b/src/qt/locale/bitcoin_ro_RO.ts index 061db1878f..538b9ae16c 100644 --- a/src/qt/locale/bitcoin_ro_RO.ts +++ b/src/qt/locale/bitcoin_ro_RO.ts @@ -101,30 +101,30 @@ This product includes software developed by the OpenSSL Project for use in the O Edit - + Editează Delete - + Șterge - + Export Address Book Data Exportă Lista de adrese - + Comma separated file (*.csv) Fisier csv: valori separate prin virgulă (*.csv) - + Error exporting Eroare la exportare. - + Could not write to file %1. Eroare la scrierea în fişerul %1. @@ -155,23 +155,22 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - - + TextLabel Textul etichetei - + Enter passphrase Introduceți fraza de acces. - + New passphrase Frază de acces nouă - + Repeat new passphrase Repetaţi noua frază de acces @@ -238,12 +237,6 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Warning: The Caps Lock key is on. - - @@ -282,215 +275,221 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Parola portofelului electronic a fost schimbată. + + + + Warning: The Caps Lock key is on. + + BitcoinGUI - + Bitcoin Wallet Portofel electronic Bitcoin - - + + Synchronizing with network... Se sincronizează cu reţeaua... - + Block chain synchronization in progress Se sincronizează blocurile. - + &Overview &Detalii - + Show general overview of wallet Afişează detalii despre portofelul electronic - + &Transactions &Tranzacţii - + Browse transaction history Istoricul tranzacţiilor - + &Address Book &Lista de adrese - + Edit the list of stored addresses and labels Editaţi lista de adrese şi etichete. - + &Receive coins &Primiţi Bitcoin - + Show the list of addresses for receiving payments Lista de adrese pentru recepţionarea plăţilor - + &Send coins &Trimiteţi Bitcoin - + Send coins to a bitcoin address &Trimiteţi Bitcoin către o anumită adresă - + Sign &message - + Prove you control an address - + E&xit - + Quit application Părăsiţi aplicaţia - + &About %1 - + &Despre %1 - + Show information about Bitcoin Informaţii despre Bitcoin - + About &Qt - + Despre &Qt - + Show information about Qt - + &Options... &Setări... - + Modify configuration options for bitcoin Modifică setările pentru Bitcoin - + Open &Bitcoin Deschide &Bitcoin - + Show the Bitcoin window Afişează fereastra Bitcoin - + &Export... &Exportă... - + Export the data in the current tab to a file - + &Encrypt Wallet Criptează portofelul electronic - + Encrypt or decrypt wallet Criptează şi decriptează portofelul electronic - + &Backup Wallet &Backup portofelul electronic - + Backup wallet to another location - + &Change Passphrase &Schimbă parola - + Change the passphrase used for wallet encryption &Schimbă parola folosită pentru criptarea portofelului electronic - + &File &Fişier - + &Settings &Setări - + &Help &Ajutor - + Tabs toolbar Bara de ferestre de lucru - + Actions toolbar Bara de acţiuni - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network %n active connections to Bitcoin network @@ -499,17 +498,17 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? - + Downloaded %1 of %2 blocks of transaction history. S-au descărcat %1 din %2 blocuri din istoricul tranzaciilor. - + Downloaded %1 blocks of transaction history. S-au descărcat %1 blocuri din istoricul tranzaciilor. - + %n second(s) ago %n seconds ago @@ -518,7 +517,7 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? - + %n minute(s) ago Acum %n minut @@ -527,7 +526,7 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? - + %n hour(s) ago Acum %n oră @@ -536,7 +535,7 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? - + %n day(s) ago Acum %n zi @@ -545,42 +544,42 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? - + 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ă tranzacţie depăşeşte limita. Puteţi iniţia tranzacţia platind un comision de %1, de care vor beneficia nodurile care procesează tranzacţia şi ajută la menţinerea reţelei. Acceptaţi plata comisionului? - + Sending... Expediază... - + Sent transaction Tranzacţie expediată - + Incoming transaction Tranzacţie recepţionată - + Date: %1 Amount: %2 Type: %3 @@ -589,60 +588,60 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Portofelul electronic este <b>criptat</b> iar in momentul de faţă este <b>deblocat</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Portofelul electronic este <b>criptat</b> iar in momentul de faţă este <b>blocat</b> - + Backup Wallet - + Backup portofelul electronic - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &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. - + &Display addresses in transaction list &Afişează adresele în lista de tranzacţii - + Whether to show Bitcoin addresses in the transaction list @@ -764,7 +763,7 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Conectare la reţeaua Bitcoin folosind un proxy SOCKS4 (de exemplu, când conexiunea se stabileşte prin reţeaua Tor) @@ -789,7 +788,7 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. @@ -797,11 +796,6 @@ Address: %4 Pay transaction &fee Plăteşte comision pentru tranzacţie &f - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - MessagePage @@ -923,11 +917,6 @@ Address: %4 Balance: Balanţă: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -943,15 +932,10 @@ Address: %4 Unconfirmed: Neconfirmat: - - - 0 BTC - 0 BTC - Wallet - + Portofelul @@ -994,17 +978,17 @@ Address: %4 Amount: - + Sumă: BTC - + Label: - + Etichetă: @@ -1036,13 +1020,13 @@ Address: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins Trimite Bitcoin @@ -1061,16 +1045,16 @@ Address: %4 Remove all transaction fields - - - Clear all - Şterge tot - Balance: Balanţă: + + + Clear all + Şterge tot + 123.456 BTC @@ -1087,58 +1071,58 @@ Address: %4 &S Trimite - + <b>%1</b> to %2 (%3) <b>%1</b> la %2 (%3) - + Confirm send coins Confirmaţi trimiterea de bitcoin - + Are you sure you want to send %1? Sunteţi sigur că doriţi să trimiteţi %1? - + and şi - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance + + The amount exceeds your balance. Suma depăşeşte soldul contului. - - Total exceeds your balance when the %1 transaction fee is included + + The total exceeds your balance when the %1 transaction fee is included. Total depăşeşte soldul contului in cazul plăţii comisionului de %1. - - Duplicate address found, can only send to each address once in one send operation + + 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: Tranyacţia nu a putut fi iniţiată + + Error: Transaction creation failed. + Eroare: Tranyacţia nu a putut fi iniţiată. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. Eroare: Tranyacţia a fost respinsă. Acesta poate fi rezultatul cheltuirii prealabile a unei sume de bitcoin din portofelul electronic, ca în cazul folosirii unei copii a fisierului wallet.dat, în care s-au efectuat tranzacţii neînregistrate în fisierul curent. @@ -1218,11 +1202,6 @@ Address: %4 Open until %1 Deschis până la %1 - - - %1/offline? - %1/offline? - %1/unconfirmed @@ -1233,6 +1212,11 @@ Address: %4 %1 confirmations %1 confirmări + + + %1/offline? + %1/offline? + <b>Status:</b> @@ -1383,7 +1367,7 @@ Address: %4 Cantitate - + Open for %n block(s) Deschis pentru for %n bloc @@ -1392,96 +1376,96 @@ Address: %4 - + Open until %1 Deschis până la %1 - + Offline (%1 confirmations) Neconectat (%1 confirmări) - + Unconfirmed (%1 of %2 confirmations) Neconfirmat (%1 din %2 confirmări) - + Confirmed (%1 confirmations) Confirmat (%1 confirmări) - + Mined balance will be available in %n more blocks - + Soldul de bitcoin produs va fi disponibil după încă %n bloc Soldul de bitcoin produs va fi disponibil după încă %n blocuri Soldul de bitcoin produs va fi disponibil după încă %n blocuri - + This block was not received by any other nodes and will probably not be accepted! Blocul nu a fost recepţionat de niciun alt nod şi e probabil că nu va fi acceptat. - + Generated but not accepted Generat, dar neacceptat - + Received with Recepţionat cu - + Received from - + Sent to Trimis către - + Payment to yourself Plată către un cont propriu - + Mined Produs - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. Starea tranzacţiei. Treceţi cu mouse-ul 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. @@ -1572,7 +1556,7 @@ Address: %4 Copy amount - + Copiază sumă @@ -1585,67 +1569,67 @@ Address: %4 Afişează detalii... - + Export Transaction Data Exportă tranzacţiile - + 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 în timpul exportului - + Could not write to file %1. Fisierul %1 nu a putut fi accesat pentru scriere. - + Range: Interval: - + to către @@ -1660,6 +1644,66 @@ Address: %4 bitcoin-core + + + Loading block index... + Încarc indice bloc... + + + + Error loading blkindex.dat + + + + + Loading wallet... + Încarc portofel... + + + + Error loading wallet.dat: Wallet corrupted + + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + + + + + Wallet needed to be rewritten: restart Bitcoin to complete + + + + + Error loading wallet.dat + + + + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Rescanning... + Rescanez... + + + + Done loading + Încărcare terminată + Bitcoin version @@ -1717,287 +1761,282 @@ Address: %4 - Specify data directory + Show splash screen on startup (default: 1) - Specify connection timeout (in milliseconds) + Specify data directory - Connect through socks4 proxy + Set database cache size in megabytes (default: 25) - Allow DNS lookups for addnode and connect + Specify connection timeout (in milliseconds) - Listen for connections on <port> (default: 8333 or testnet: 18333) + Connect through socks4 proxy - Maintain at most <n> connections to peers (default: 125) + Allow DNS lookups for addnode and connect - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) - Don't accept connections from outside + Add a node to connect to and attempt to keep the connection open - Don't bootstrap list of peers using DNS + Connect only to the specified node - 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) - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + Set language, for example "de_DE" (default: system locale) - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + Find peers using DNS lookup (default: 1) - - Don't attempt to use UPnP to map the listening port + + Threshold for disconnecting misbehaving peers (default: 100) - - Attempt to use UPnP to map the listening port + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Fee per kB to add to transactions you send + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Accept command line and JSON-RPC commands + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Run in the background as a daemon and accept commands + Use Universal Plug and Play to map the listening port (default: 1) - Use the test network + Use Universal Plug and Play to map the listening port (default: 0) - Output extra debugging information + Fee per KB to add to transactions you send - Prepend debug output with timestamp + Accept command line and JSON-RPC commands - Send trace/debug info to console instead of debug.log file + Run in the background as a daemon and accept commands - Send trace/debug info to debugger + Use the test network - Username for JSON-RPC connections + Output extra debugging information - Password for JSON-RPC connections + Prepend debug output with timestamp - Listen for JSON-RPC connections on <port> (default: 8332) + Send trace/debug info to console instead of debug.log file - Allow JSON-RPC connections from specified IP address + Send trace/debug info to debugger - Send commands to node running on <ip> (default: 127.0.0.1) + Username for JSON-RPC connections - Set key pool size to <n> (default: 100) + Password for JSON-RPC connections - Rescan the block chain for missing wallet transactions + Listen for JSON-RPC connections on <port> (default: 8332) - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Allow JSON-RPC connections from specified IP address - - Use OpenSSL (https) for JSON-RPC connections + + Send commands to node running on <ip> (default: 127.0.0.1) - - Server certificate file (default: server.cert) + + Execute command when the best block changes (%s in cmd is replaced by block hash) - Server private key (default: server.pem) + Upgrade wallet to latest format - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + 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) - This help message + How thorough the block verification is (0-6, default: 1) - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Loading addresses... - Încarc adrese... + Use OpenSSL (https) for JSON-RPC connections + - Error loading addr.dat + Server certificate file (default: server.cert) - - Error loading blkindex.dat + + Server private key (default: server.pem) - - Error loading wallet.dat: Wallet corrupted + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Error loading wallet.dat: Wallet requires newer version of Bitcoin + This help message - Wallet needed to be rewritten: restart Bitcoin to complete - - - - - Error loading wallet.dat + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - - - Loading block index... - Încarc indice bloc... - - - - Loading wallet... - Încarc portofel... - - - - Rescanning... - Rescanez... - - Done loading - Încărcare terminată + Loading addresses... + Încarc adrese... + Error loading addr.dat + + + + Invalid -proxy address - + Invalid amount for -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + Error: CreateThread(StartNode) failed - - Warning: Disk space is low + + Warning: Disk space is low - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + beta diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts index 877f91ce1e..be3e6261b6 100644 --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -42,7 +42,7 @@ This product includes software developed by the OpenSSL Project for use in the O These are your Bitcoin 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. - Здесь перечислены Ваши адреса для получения платежей. Вы можете использовать их для того, чтобы давать разным людям разные адреса и таким образом иметь возможность отслеживать кто и сколько Вам платил, а так же поддерживать бо́льшую анонимность.. + Здесь перечислены Ваши адреса для получения платежей. Вы можете использовать их для того, чтобы давать разным людям разные адреса и таким образом иметь возможность отслеживать кто и сколько Вам платил, а так же поддерживать бо́льшую анонимность. @@ -67,18 +67,23 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - &Kопировать - - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Удалить выделенный адрес из списка (могут быть удалены только записи из адресной книги). + &Kопировать Show &QR Code Показать &QR код + + + &Sign Message + &Подписать сообщение + + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Удалить выделенный адрес из списка (могут быть удалены только записи из адресной книги). + &Delete @@ -90,20 +95,25 @@ This product includes software developed by the OpenSSL Project for use in the O Подпишите сообщение для доказательства - - &Sign Message - &Подписать сообщение + + Export Address Book Data + Экспортировать адресную книгу - - Copy address - Копировать адрес + + Comma separated file (*.csv) + Текст, разделённый запятыми (*.csv) Copy label Копировать метку + + + Copy address + Копировать адрес + Edit @@ -115,28 +125,23 @@ This product includes software developed by the OpenSSL Project for use in the O Удалить - - Export Address Book Data - Экспортировать адресную книгу - - - - Comma separated file (*.csv) - Текст, разделённый запятыми (*.csv) - - - + Error exporting Ошибка экспорта - + Could not write to file %1. Невозможно записать в файл %1. AddressTableModel + + + (no label) + [нет метки] + Label @@ -147,92 +152,62 @@ This product includes software developed by the OpenSSL Project for use in the O Address Адрес - - - (no label) - [нет метки] - AskPassphraseDialog - - Dialog - Dialog - - - - - TextLabel - TextLabel + + + + + Wallet encryption failed + Не удалось зашифровать бумажник - + Enter passphrase Введите пароль - + New passphrase Новый пароль - - Repeat new passphrase - Повторите новый пароль + + TextLabel + - - 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> + + Decrypt wallet + Расшифровать бумажник + + + + Repeat new passphrase + Повторите новый пароль 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 BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ВНИМАНИЕ: Если вы зашифруете бумажник и потеряете свой ​​пароль, вы <b>ПОТЕРЯЕТЕ ВСЕ ВАШИ БИТКОИНЫ!</b> -Вы действительно хотите зашифровать ваш бумажник? - @@ -240,23 +215,19 @@ Are you sure you wish to encrypt your wallet? Бумажник зашифрован - - - Warning: The Caps Lock key is on. - Внимание: Caps Lock включен. + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Шифрование бумажника не удалось из-за внутренней ошибки. Ваш бумажник не был зашифрован. - - - - - Wallet encryption failed - Не удалось зашифровать бумажник + + Wallet unlock failed + Разблокировка бумажника не удалась - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Шифрование бумажника не удалось из-за внутренней ошибки. Ваш бумажник не был зашифрован. + + Dialog + Dialog @@ -264,15 +235,36 @@ Are you sure you wish to encrypt your wallet? Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши биткоины от кражи с помощью инфицирования вашего компьютера вредоносным ПО. - - - The supplied passphrases do not match. - Введённые пароли не совпадают. + + This operation needs your wallet passphrase to unlock the wallet. + Для выполнения операции требуется пароль вашего бумажника. - - Wallet unlock failed - Разблокировка бумажника не удалась + + 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> + + + + Unlock wallet + Разблокировать бумажник + + + + Enter the old and new passphrase to the wallet. + Введите старый и новый пароль для бумажника. + + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ВНИМАНИЕ: Если вы зашифруете бумажник и потеряете свой ​​пароль, вы <b>ПОТЕРЯЕТЕ ВСЕ ВАШИ БИТКОИНЫ!</b> +Вы действительно хотите зашифровать ваш бумажник? + + + + Wallet decryption failed + Расшифрование бумажника не удалось @@ -282,221 +274,163 @@ Are you sure you wish to encrypt your wallet? Указанный пароль не подходит. - - Wallet decryption failed - Расшифрование бумажника не удалось + + + The supplied passphrases do not match. + Введённые пароли не совпадают. - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Пароль бумажника успешно изменён. + + + + Warning: The Caps Lock key is on. + Внимание: Caps Lock включен. + BitcoinGUI - - Bitcoin Wallet - Bitcoin-бумажник + + &Address Book + &Адресная книга - - - Synchronizing with network... - Синхронизация с сетью... + + &Send coins + Отп&равка монет - - Block chain synchronization in progress - Идёт синхронизация цепочки блоков + + &Export... + &Экспорт... - - &Overview - О&бзор + + About &Qt + О &Qt - - Show general overview of wallet - Показать общий обзор действий с бумажником + + &Settings + &Настройки + + + + Tabs toolbar + Панель вкладок - + &Transactions &Транзакции - + Browse transaction history Показать историю транзакций - - &Address Book - &Адресная книга + + + Synchronizing with network... + Синхронизация с сетью... - + + &Overview + О&бзор + + + Edit the list of stored addresses and labels Изменить список сохранённых адресов и меток к ним - + &Receive coins &Получение монет - + Show the list of addresses for receiving payments Показать список адресов для получения платежей - - &Send coins - Отп&равка монет + + Modify configuration options for bitcoin + Изменить настройки - - Send coins to a bitcoin address - Отправить монеты на указанный адрес + + Quit application + Закрыть приложение - - Sign &message - Подписать &сообщение + + &Options... + Оп&ции... - - Prove you control an address - Доказать, что вы владеете адресом + + Block chain synchronization in progress + Идёт синхронизация цепочки блоков - - E&xit - В&ыход + + Show general overview of wallet + Показать общий обзор действий с бумажником - - Quit application - Закрыть приложение + + Send coins to a bitcoin address + Отправить монеты на указанный адрес Bitcoin - - &About %1 - &О %1 + + Prove you control an address + Доказать, что вы владеете адресом - - Show information about Bitcoin - Показать информацию о Bitcoin'е + + Encrypt or decrypt wallet + Зашифровать или расшифровать бумажник - - &Options... - Оп&ции... + + &Backup Wallet + &Сделать резервную копию бумажника - - Modify configuration options for bitcoin - Изменить настройки + + Change the passphrase used for wallet encryption + Изменить пароль шифрования бумажника - - Open &Bitcoin - &Показать бумажник + + &File + &Файл - - Show the Bitcoin window - Показать окно бумажника + + &Help + &Помощь - - &Export... - &Экспорт... + + Actions toolbar + Панель действий - - &Encrypt Wallet - &Зашифровать бумажник - - - - Encrypt or decrypt wallet - Зашифровать или расшифровать бумажник - - - - &Change Passphrase - &Изменить пароль - - - - Change the passphrase used for wallet encryption - Изменить пароль шифрования бумажника - - - - About &Qt - О &Qt - - - - Show information about Qt - Показать информацию о Qt - - - - Export the data in the current tab to a file - - - - - &Backup Wallet - &Backup бумажник - - - - Backup wallet to another location - - - - - &File - &Файл - - - - &Settings - &Настройки - - - - &Help - &Помощь - - - - Tabs toolbar - Панель вкладок - - - - Actions toolbar - Панель действий - - - + [testnet] [тестовая сеть] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network %n активное соединение с сетью @@ -505,17 +439,12 @@ Are you sure you wish to encrypt your wallet? - - Downloaded %1 of %2 blocks of transaction history. - Загружено %1 из %2 блоков истории транзакций. - - - + Downloaded %1 blocks of transaction history. Загружено %1 блоков истории транзакций. - + %n second(s) ago %n секунду назад @@ -524,7 +453,7 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago %n минуту назад @@ -533,7 +462,7 @@ Are you sure you wish to encrypt your wallet? - + %n hour(s) ago %n час назад @@ -541,52 +470,33 @@ Are you sure you wish to encrypt your wallet? %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, которая отправится тем узлам, которые обработают Вашу транзакцию и поможет поддержать сеть. Вы хотите добавить комиссию? - - - - Sending... - Отправка... + Данная транзакция превышает предельно допустимый размер. Но Вы можете всё равно совершить её, добавив комиссию в %1, которая отправится тем узлам, которые обработают Вашу транзакцию, и поможет поддержать сеть. Вы хотите добавить комиссию? - + Sent transaction Исходящая транзакция - + Incoming transaction Входящая транзакция - + Date: %1 Amount: %2 Type: %3 @@ -599,76 +509,165 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Бумажник <b>зашифрован</b> и в настоящее время <b>разблокирован</b> - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> + + There was an error trying to save the wallet data to the new location. + При попытке сохранения данных бумажника в новое место произошла ошибка. + + + + E&xit + В&ыход + + + + &About %1 + &О %1 + + + + Show information about Qt + Показать информацию о Qt + + + + Open &Bitcoin + &Показать бумажник + + + + Show the Bitcoin window + Показать окно бумажника + + + + &Encrypt Wallet + &Зашифровать бумажник + + + + &Change Passphrase + &Изменить пароль + + + + Show information about Bitcoin + Показать информацию о Bitcoin'е + + + + Export the data in the current tab to a file + Экспортировать данные из вкладки в файл + + + + Backup wallet to another location + Сделать резервную копию бумажника в другом месте + + + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + Загружено %1 из %2 блоков истории транзакций. + + + + %n day(s) ago + + %n день назад + %n дня назад + %n дней назад + - + Backup Wallet - + Сделать резервную копию бумажника + + + + Backup Failed + Резервное копирование не удалось - + Wallet Data (*.dat) Данные Кошелька (*.dat) - - Backup Failed - + + Sign &message + Подписать &сообщение - - There was an error trying to save the wallet data to the new location. - + + Bitcoin Wallet + Bitcoin-бумажник - - A fatal error occured. Bitcoin can no longer continue safely and will quit. - + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> + + + + Sending... + Отправка... + + + + Last received block was generated %1. + Последний полученный блок был сгенерирован %1. + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Произошла неисправимая ошибка. Bitcoin не может безопасно продолжать работу и будет закрыт. DisplayOptionsPage - + &Unit to show amounts in: &Измерять монеты в: - + Choose the default subdivision unit to show in the interface, and when sending coins Единица измерения количества монет при отображении и при отправке - + &Display addresses in transaction list - &Показывать адреса в списке транзакций + &Показывать адреса в списке транзакций - + Whether to show Bitcoin addresses in the transaction list - + Показывать ли адреса Bitcoin в списке транзакций EditAddressDialog - - - Edit Address - Изменить адрес - &Label &Метка + + + Edit Address + Изменить адрес + The label associated with this address book entry @@ -709,11 +708,6 @@ Address: %4 The entered address "%1" is already in the address book. Введённый адрес «%1» уже находится в адресной книге. - - - The entered address "%1" is not a valid bitcoin address. - Введённый адрес «%1» не является правильным Bitcoin-адресом. - Could not unlock wallet. @@ -724,6 +718,11 @@ Address: %4 New key generation failed. Генерация нового ключа не удалась. + + + The entered address "%1" is not a valid bitcoin address. + Введённый адрес «%1» не является правильным Bitcoin-адресом. + MainOptionsPage @@ -765,7 +764,7 @@ Address: %4 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. - Сворачивать вместо закрытия. Если данная опция будет выбрана — приложение закроется только после выбора соответствующего пункта в меню. + Сворачивать вместо закрытия. Если данная опция будет выбрана — приложение закроется только после выбора соответствующего пункта в меню. @@ -773,15 +772,25 @@ Address: %4 &Подключаться через SOCKS4 прокси: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Подключаться к сети Bitcoin через SOCKS4 прокси (например, при использовании Tor) + + Port of the proxy (e.g. 1234) + Порт прокси-сервера (например, 9050) {1234)?} + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработано быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. Proxy &IP: &IP Прокси: + + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Подключаться к сети Bitcoin через SOCKS4 прокси (например, при использовании Tor) + IP address of the proxy (e.g. 127.0.0.1) @@ -792,26 +801,11 @@ Address: %4 &Port: По&рт: - - - Port of the proxy (e.g. 1234) - Порт прокси-сервера (например 1234) - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработано быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. - Pay transaction &fee Добавлять ко&миссию - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработано быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. - MessagePage @@ -823,12 +817,12 @@ Address: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + Вы можете подписывать сообщения своими адресами, чтобы доказать владение ими. Будьте осторожны, не подписывайте что-то неопределённое, так как фишинговые атаки могут обманным путём заставить вас подписать нежелательные сообщения. Подписывайте только те сообщения, с которыми вы согласны вплоть до мелочей. The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Адрес, которым вы хотите подписать сообщение (напр. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -855,6 +849,11 @@ Address: %4 Enter the message you want to sign here Введите сообщение для подписи + + + Copy the current signature to the system clipboard + Скопировать текущую подпись в системный буфер обмена + Click "Sign Message" to get signature @@ -870,11 +869,6 @@ Address: %4 &Sign Message &Подписать сообщение - - - Copy the current signature to the system clipboard - - &Copy to Clipboard @@ -928,15 +922,30 @@ Address: %4 Form Форма + + + Wallet + Бумажник + + + + Unconfirmed: + Не подтверждено: + Balance: Баланс: - - 123.456 BTC - 123.456 BTC + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Общая сумма всех транзакций, которые до сих пор не подтверждены, и до сих пор не учитываются в текущем балансе + + + + Total number of transactions in wallet + Общее количество транзакций в Вашем бумажнике @@ -949,43 +958,38 @@ Address: %4 0 - - Unconfirmed: - Не подтверждено: - - - - 0 BTC - 0 BTC - - - - Wallet - Бумажник + + Your current balance + Ваш текущий баланс <b>Recent transactions</b> <b>Последние транзакции</b> + + + QRCodeDialog - - Your current balance - Ваш текущий баланс + + Request Payment + Запросить платёж - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Общая сумма всех транзакций, которые до сих пор не подтверждены, и до сих пор не учитываются в текущем балансе + + Amount: + Количество: - - Total number of transactions in wallet - Общее количество транзакций в Вашем бумажнике + + Label: + Метка: + + + + &Save As... + &Сохранить как... - - - QRCodeDialog Dialog @@ -996,40 +1000,20 @@ Address: %4 QR Code QR код - - - Request Payment - Запросить платёж - - - - Amount: - Количество: - BTC BTC - - - Label: - Метка: - Message: Сообщение: - - - &Save As... - &Сохранить как... - Error encoding URI into QR Code. - + Ошибка кодирования URI в QR-код @@ -1039,53 +1023,11 @@ Address: %4 PNG Images (*.png) - + PNG Изображения (*.png) SendCoinsDialog - - - - - - - - - - Send Coins - Отправка - - - - Send to multiple recipients at once - Отправить нескольким получателям одновременно - - - - &Add recipient... - &Добавить получателя... - - - - Clear all - Очистить всё - - - - Remove all transaction fields - Удалить все поля транзакции - - - - Balance: - Баланс: - - - - 123.456 BTC - 123.456 BTC - Confirm the send action @@ -1097,59 +1039,101 @@ Address: %4 &Отправить - + <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 recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. Адрес получателя неверный, пожалуйста, перепроверьте. - + The amount to pay must be larger than 0. Количество монет для отправки должно быть больше 0. - - Amount exceeds your balance - Количество отправляемых монет превышает Ваш баланс + + The total exceeds your balance when the %1 transaction fee is included. + Сумма превысит Ваш баланс, если комиссия в размере %1 будет добавлена к транзакции. - - Total exceeds your balance when the %1 transaction fee is included - Сумма превысит Ваш баланс, если комиссия в %1 будет добавлена к транзакции + + Error: Transaction creation failed. + Ошибка: Создание транзакции не удалось. - - Duplicate address found, can only send to each address once in one send operation - Обнаружен дублирующийся адрес. Отправка на один и тот же адрес возможна только один раз за одну операцию отправки + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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: Transaction creation failed - Ошибка: Создание транзакции не удалось + + Send Coins + Отправка - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Ошибка: В транзакции отказано. Такое может произойти, если некоторые монеты уже были потрачены, например, если Вы используете одну копию бумажника (wallet.dat), а монеты были потрачены из другой копии, но не были отмечены как потраченные в этой. Или в случае кражи (компрометации) Вашего бумажника. + + Send to multiple recipients at once + Отправить нескольким получателям одновременно + + + + &Add recipient... + &Добавить получателя... + + + + Remove all transaction fields + Удалить все поля транзакции + + + + Clear all + Очистить всё + + + + Balance: + Баланс: + + + + 123.456 BTC + 123.456 BTC + + + + Confirm send coins + Подтвердите отправку монет + + + + The amount exceeds your balance. + Количество отправляемых монет превышает Ваш баланс + + + + Duplicate address found, can only send to each address once per send operation. + Обнаружен дублирующийся адрес. Отправка на один и тот же адрес возможна только один раз за одну операцию отправки @@ -1169,47 +1153,47 @@ Address: %4 Pay &To: Полу&чатель: + + + &Label: + &Метка: + + + + Choose address from address book + Выберите адрес из адресной книги + + + + Paste address from clipboard + Вставить адрес из буфера обмена + + + + Remove this recipient + Удалить этого получателя + Enter a label for this address to add it to your address book Введите метку для данного адреса (для добавления в адресную книгу) - - - &Label: - &Метка: - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Адрес получателя платежа (например 1LA5FtQhnnWnkK6zjFfutR7Stiit4wKd63) - - - Choose address from address book - Выберите адрес из адресной книги - Alt+A Alt+A - - - Paste address from clipboard - Вставить адрес из буфера обмена - Alt+P Alt+P - - - Remove this recipient - Удалить этого получателя - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1218,26 +1202,31 @@ Address: %4 TransactionDesc - - - Open for %1 blocks - Открыто до получения %1 блоков - Open until %1 Открыто до %1 - - - %1/offline? - %1/оффлайн? - %1/unconfirmed %1/не подтверждено + + + , has not been successfully broadcast yet + , ещё не было успешно разослано + + + + Open for %1 blocks + Открыто до получения %1 блоков + + + + %1/offline? + %1/оффлайн? + %1 confirmations @@ -1248,11 +1237,6 @@ Address: %4 <b>Status:</b> <b>Статус:</b> - - - , has not been successfully broadcast yet - , ещё не было успешно разослано - , broadcast through %1 node @@ -1294,7 +1278,7 @@ Address: %4 (yours, label: - (Ваш, метка: + (Ваш, метка: @@ -1339,7 +1323,7 @@ Address: %4 Message: - Сообщение: + Сообщение: @@ -1372,28 +1356,8 @@ Address: %4 TransactionTableModel - - - Date - Дата - - - - Type - Тип - - - - Address - Адрес - - - - Amount - Количество - - + Open for %n block(s) Открыто для %n блока @@ -1402,108 +1366,178 @@ Address: %4 - + Open until %1 Открыто до %1 - + Offline (%1 confirmations) Оффлайн (%1 подтверждений) - + Unconfirmed (%1 of %2 confirmations) Не подтверждено (%1 из %2 подтверждений) - + Confirmed (%1 confirmations) Подтверждено (%1 подтверждений) - - - Mined balance will be available in %n more blocks - - Добытыми монетами можно будет воспользоваться через %n блок - Добытыми монетами можно будет воспользоваться через %n блока - Добытыми монетами можно будет воспользоваться через %n блоков - - - + 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. Сумма, добавленная, или снятая с баланса. + + + Date + Дата + + + + Address + Адрес + + + + Amount + Количество + + + + Type + Тип + + + + Mined balance will be available in %n more blocks + + Добытыми монетами можно будет воспользоваться через %n блок + Добытыми монетами можно будет воспользоваться через %n блока + Добытыми монетами можно будет воспользоваться через %n блоков + + TransactionView + + + ID + ID + + + + Could not write to file %1. + Невозможно записать в файл %1. + + + + This year + В этом году + + + + Range... + Промежуток... + + + + Received with + Получено на + + + + Copy amount + Скопировать сумму + + + + Address + Адрес + + + + Amount + Количество + + + + Error exporting + Ошибка экспорта + All Все + + + Range: + Промежуток от: + Today @@ -1524,21 +1558,6 @@ Address: %4 Last month За последний месяц - - - This year - В этом году - - - - Range... - Промежуток... - - - - Received with - Получено на - Sent to @@ -1579,86 +1598,51 @@ Address: %4 Copy label Копировать метку - - - Copy amount - Скопировать сумму - Edit label Изменить метку - - Show 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. - Невозможно записать в файл %1. - - - - Range: - Промежуток от: - - - + to до + + + Show details... + Показать детали... + WalletModel @@ -1670,348 +1654,403 @@ Address: %4 bitcoin-core - - - Bitcoin version - Версия - Usage: Использование: - - Send command to -server or bitcoind - Отправить команду на -server или bitcoind - - - - List commands - Список команд - - - - - Get help for a command - Получить помощь по команде - - - - Options: - Опции: - - - - Specify configuration file (default: bitcoin.conf) - Указать конфигурационный файл (по умолчанию: bitcoin.conf) - - - - Specify pid file (default: bitcoind.pid) - Указать pid-файл (по умолчанию: bitcoin.pid) + + Loading addresses... + Загрузка адресов... - - Generate coins - Генерировать монеты + + Rescanning... + Сканирование... - - Don't generate coins - Не генерировать монеты + + Loading block index... + Загрузка индекса блоков... - - Start minimized - Запускать свёрнутым + + Show splash screen on startup (default: 1) + Показывать сплэш при запуске (по умолчанию: 1) - + Specify data directory Укажите каталог данных - + Specify connection timeout (in milliseconds) Укажите таймаут соединения (в миллисекундах) - - Connect through socks4 proxy - Подключаться через socks4 прокси - - - - Allow DNS lookups for addnode and connect - Разрешить обращения к DNS для addnode и подключения - - - + Listen for connections on <port> (default: 8333 or testnet: 18333) Принимать входящие подключения на <port> (по умолчанию: 8333 или 18333 в тестовой сети) - + Maintain at most <n> connections to peers (default: 125) Поддерживать не более <n> подключений к узлам (по умолчанию: 125) - - Add a node to connect to - Добавить узел для подключения - - - - Connect only to the specified node - Подключаться только к указанному узлу + + Accept connections from outside (default: 1) + Принимать подключения извне (по умолчанию: 1) - - Don't accept connections from outside - Не принимать входящие подключения + + Set language, for example "de_DE" (default: system locale) + Выберите язык, например "de_DE" (по умолчанию: как в системе) - - Don't bootstrap list of peers using DNS - Не получать начальный список узлов через DNS + + Find peers using DNS lookup (default: 1) + Искать узлы с помощью DNS (по умолчанию: 1) - + 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: 10000) - Максимальный размер буфера приёма на соединение, <n>*1000 байт (по умолчанию: 10000) + + Use Universal Plug and Play to map the listening port (default: 1) + Использовать UPnP для проброса порта (по умолчанию: 1) - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Максимальный размер буфера отправки на соединение, <n>*1000 байт (по умолчанию: 10000) + + Use Universal Plug and Play to map the listening port (default: 0) + Использовать UPnP для проброса порта (по умолчанию: 0) - - Don't attempt to use UPnP to map the listening port - Не пытаться использовать UPnP для назначения входящего порта + + Invalid -proxy address + Ошибка в адресе прокси - - Attempt to use UPnP to map the listening port - Пытаться использовать UPnP для назначения входящего порта + + Invalid amount for -paytxfee=<amount> + Ошибка в сумме комиссии - - Fee per kB to add to transactions you send - Комиссия на Кб, добавляемая к вашим переводам + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + ВНИМАНИЕ: Установлена слишком большая комиссия (-paytxfee=). Данный параметр отвечает за комиссию, которую Вы будете добавлять к сумме при осуществлении транзакций. - - Accept command line and JSON-RPC commands - Принимать командную строку и команды JSON-RPC - + + Error: CreateThread(StartNode) failed + Ошибка: Созданиние потока (запуск узла) не удался + - - Run in the background as a daemon and accept commands - Запускаться в фоне как демон и принимать команды + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Невозможно забиндить порт %d на данном компьютере. Возможно, бумажник ужк запущен. - - Use the test network - Использовать тестовую сеть + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + ВНИМАНИЕ: Проверьте дату и время, установленные на Вашем компьютере. Если Ваши часы идут не правильно Bitcoin может наботать не корректно. - - Output extra debugging information - Выводить дополнительную отладочную информацию + + beta + бета - Prepend debug output with timestamp - Дописывать отметки времени к отладочному выводу + Accept command line and JSON-RPC commands + Принимать командную строку и команды JSON-RPC - Send trace/debug info to console instead of debug.log file - Выводить информацию трассировки/отладки на консоль вместо файла debug.log + Run in the background as a daemon and accept commands + Запускаться в фоне как демон и принимать команды + Use the test network + Использовать тестовую сеть + + + Send trace/debug info to debugger Отправлять информацию трассировки/отладки в отладчик - - Username for JSON-RPC connections - Имя для подключений JSON-RPC + + Allow JSON-RPC connections from specified IP address + Разрешить подключения JSON-RPC с указанного IP - - Password for JSON-RPC connections - Пароль для подключений JSON-RPC + + Send commands to node running on <ip> (default: 127.0.0.1) + Посылать команды узлу, запущенному на <ip> (по умолчанию: 127.0.0.1) - - Listen for JSON-RPC connections on <port> (default: 8332) - Ожидать подключения JSON-RPC на <порт> (по умолчанию: 8332) + + 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) + Разрешённые алгоритмы (по умолчанию: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Set key pool size to <n> (default: 100) - Установить размер запаса ключей в <n> (по умолчанию: 100) + + This help message + Эта справка - - Rescan the block chain for missing wallet transactions - Перепроверить цепь блоков на предмет отсутствующих в кошельке транзакций + + Error loading wallet.dat: Wallet corrupted + Ошибка загрузки wallet.dat: Бумажник поврежден - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -Параметры SSL: (см. Bitcoin Wiki для инструкций по настройке SSL) + + Wallet needed to be rewritten: restart Bitcoin to complete + Необходимо перезаписать бумажник, перезапустите Bitcoin для завершения операции. - - Use OpenSSL (https) for JSON-RPC connections - Использовать OpenSSL (https) для подключений JSON-RPC + + Error loading wallet.dat + Ошибка при загрузке wallet.dat - - Server certificate file (default: server.cert) - Файл серверного сертификата (по умолчанию: server.cert) + + Connect through socks4 proxy + Подключаться через socks4 прокси - - Server private key (default: server.pem) - Приватный ключ сервера (по умолчанию: server.pem) + + Allow DNS lookups for addnode and connect + Разрешить обращения к DNS для addnode и подключения - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Невозможно установить блокировку на рабочую директорию %s. Возможно, бумажник уже запущен. + + Connect only to the specified node + Подключаться только к указанному узлу - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Разрешённые алгоритмы (по умолчанию: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Максимальный размер буфера приёма на соединение, <n>*1000 байт (по умолчанию: 10000) - - Loading addresses... - Загрузка адресов... + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Максимальный размер буфера отправки на соединение, <n>*1000 байт (по умолчанию: 10000) - - This help message - Эта справка + + Error loading addr.dat + Ошибка загрузки addr.dat - - Loading block index... - Загрузка индекса блоков... + + Bitcoin version + Версия - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Невозможно установить блокировку на рабочую директорию %s. Возможно, бумажник уже запущен. + + + Loading wallet... Загрузка бумажника... - - Rescanning... - Сканирование... + + Send command to -server or bitcoind + Отправить команду на -server или bitcoind - - Error loading addr.dat - Ошибка загрузки addr.dat + + List commands + Список команд + - - Error loading blkindex.dat - Ошибка чтения blkindex.dat + + Get help for a command + Получить помощь по команде - - Error loading wallet.dat: Wallet corrupted - Ошибка загрузки wallet.dat: Бумажник поврежден + + Options: + Опции: - - Done loading - Загрузка завершена + + Specify configuration file (default: bitcoin.conf) + Указать конфигурационный файл (по умолчанию: bitcoin.conf) - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Ошибка загрузки wallet.dat: бумажник требует более новую версию Bitcoin + + Specify pid file (default: bitcoind.pid) + Указать pid-файл (по умолчанию: bitcoin.pid) - - Invalid -proxy address - Ошибка в адресе прокси + + Generate coins + Генерировать монеты - - Wallet needed to be rewritten: restart Bitcoin to complete - Необходимо перезаписать бумажник, перезапустите Bitcoin для завершения операции. + + Don't generate coins + Не генерировать монеты - - Invalid amount for -paytxfee=<amount> - Ошибка в сумме комиссии + + Start minimized + Запускать свёрнутым - - Error loading wallet.dat - Ошибка при загрузке wallet.dat + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Выполнить команду, когда появляется новый блок (%s в команде заменяется на хэш блока) + + + + Output extra debugging information + Выводить дополнительную отладочную информацию + + + + Prepend debug output with timestamp + Дописывать отметки времени к отладочному выводу + + + + Send trace/debug info to console instead of debug.log file + Выводить информацию трассировки/отладки на консоль вместо файла debug.log + + + + Username for JSON-RPC connections + Имя для подключений JSON-RPC + + + + Password for JSON-RPC connections + Пароль для подключений JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 8332) + Ожидать подключения JSON-RPC на <порт> (по умолчанию: 8332) + + + + Set key pool size to <n> (default: 100) + Установить размер запаса ключей в <n> (по умолчанию: 100) + + + + Rescan the block chain for missing wallet transactions + Перепроверить цепь блоков на предмет отсутствующих в кошельке транзакций + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +Параметры SSL: (см. Bitcoin Wiki для инструкций по настройке SSL) + + + + Use OpenSSL (https) for JSON-RPC connections + Использовать OpenSSL (https) для подключений JSON-RPC + + + + Add a node to connect to and attempt to keep the connection open + Добавить узел для подключения и пытаться поддерживать соединение открытым - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - ВНИМАНИЕ: Установлена слишком большая комиссия (-paytxfee=). Данный параметр отвечает за комиссию, которую Вы будете добавлять к сумме при осуществлении транзакций. + Error loading blkindex.dat + Ошибка чтения blkindex.dat - - Error: CreateThread(StartNode) failed - Ошибка: Созданиние потока (запуск узла) не удался + + Cannot downgrade wallet + Не удаётся понизить версию бумажника - - Warning: Disk space is low - ВНИМАНИЕ: На диске заканчивается свободное пространство + + Cannot initialize keypool + Не удаётся инициализировать массив ключей - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Невозможно забиндить порт %d на данном компьютере. Возможно, бумажник ужк запущен. + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Ошибка загрузки wallet.dat: бумажник требует более новую версию Bitcoin - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - ВНИМАНИЕ: Проверьте дату и время, установленные на Вашем компьютере. Если Ваши часы идут не правильно Bitcoin может наботать не корректно. + Cannot write default address + Не удаётся записать адрес по умолчанию - - beta - бета + + Done loading + Загрузка завершена + + + + Warning: Disk space is low + ВНИМАНИЕ: На диске заканчивается свободное пространство + + + + Fee per KB to add to transactions you send + Комиссия на килобайт, добавляемая к вашим транзакциям + + + + Find peers using internet relay chat (default: 0) + Найти участников через IRC (по умолчанию: 0) + + + + 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) + + + + Set database cache size in megabytes (default: 25) + Установить размер кэша базы данных в мегабайтах (по умолчанию: 25) + + + + Upgrade wallet to latest format + Обновить бумажник до последнего формата diff --git a/src/qt/locale/bitcoin_sk.ts b/src/qt/locale/bitcoin_sk.ts index 1dc430ea3c..1cc927be26 100644 --- a/src/qt/locale/bitcoin_sk.ts +++ b/src/qt/locale/bitcoin_sk.ts @@ -109,22 +109,22 @@ This product includes software developed by the OpenSSL Project for use in the O Zmazať - + Export Address Book Data Exportovať dáta z adresára - + Comma separated file (*.csv) Čiarkou oddelený súbor (*.csv) - + Error exporting Chyba exportu. - + Could not write to file %1. Nedalo sa zapisovať do súboru %1. @@ -155,23 +155,22 @@ This product includes software developed by the OpenSSL Project for use in the O Dialóg - - + TextLabel TextovýPopis - + Enter passphrase Zadajte heslo - + New passphrase Nové heslo - + Repeat new passphrase Zopakujte nové heslo @@ -234,9 +233,9 @@ Ste si istí, že si želáte zašifrovať peňaženku? Peňaženka zašifrovaná - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + + Wallet passphrase was successfully changed. + Heslo k peňaženke bolo úspešne zmenené. @@ -281,296 +280,291 @@ Ste si istí, že si želáte zašifrovať peňaženku? Zlyhalo šifrovanie peňaženky. - - Wallet passphrase was succesfully changed. - Heslo k peňaženke bolo úspešne zmenené. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin sa teraz ukončí pre dokončenie procesu šifrovania. Pamätaj že šifrovanie peňaženky Ťa nemôže úplne ochrániť pred kráďežou bitcoinov pomocou škodlivého software. BitcoinGUI - + Bitcoin Wallet Bitcoin peňaženka - - + + Synchronizing with network... Synchronizácia so sieťou... - + Block chain synchronization in progress Prebieha synchronizácia blockchain. - + &Overview &Prehľad - + Show general overview of wallet Zobraziť celkový prehľad o peňaženke - + &Transactions - &Preklady + &Transakcie - + Browse transaction history Prechádzať históriu transakcií - + &Address Book &Adresár - + Edit the list of stored addresses and labels Editovať zoznam uložených adries a popisov - + &Receive coins &Prijať bitcoins - + Show the list of addresses for receiving payments Zobraziť zoznam adries pre prijímanie platieb. - + &Send coins &Poslať bitcoins - + Send coins to a bitcoin address Poslať bitcoins na adresu - + Sign &message Podpísať &správu - + Prove you control an address Dokázať že kontrolujete adresu - + E&xit U&končiť - + Quit application Ukončiť program - + &About %1 &O %1 - + Show information about Bitcoin Zobraziť informácie o Bitcoin - + About &Qt O &Qt - + Show information about Qt Zobrazit informácie o Qt - + &Options... &Možnosti... - + Modify configuration options for bitcoin Upraviť možnosti nastavenia pre bitcoin - + Open &Bitcoin Otvoriť &Bitcoin - + Show the Bitcoin window Zobraziť okno Bitcoin - + &Export... &Export... - - Export the data in the current tab to a file - - - - + &Encrypt Wallet &Zašifrovať Peňaženku - + Encrypt or decrypt wallet Zašifrovať alebo dešifrovať peňaženku - + &Backup Wallet &Backup peňaženku - - Backup wallet to another location - - - - + &Change Passphrase &Zmena Hesla - + Change the passphrase used for wallet encryption Zmeniť heslo použité na šifrovanie peňaženky - + &File &Súbor - + &Settings &Nastavenia - + &Help &Pomoc - + Tabs toolbar Lišta záložiek - + Actions toolbar Lišta aktvivít - + [testnet] [testovacia sieť] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - - + + %n aktívne spojenie v Bitcoin sieti + %n aktívne spojenia v Bitcoin sieti + %n aktívnych spojení v Bitconi sieti - + Downloaded %1 of %2 blocks of transaction history. - - - Downloaded %1 blocks of transaction history. - - - + %n second(s) ago - - + + pred %n sekundou + pred %n sekundami + pred %n sekundami - + %n minute(s) ago - - + + pred %n minútou + pred %n minútami + pred %n minútami - + %n hour(s) ago - - + + pred hodinou + pred %n hodinami + pred %n hodinami - + %n day(s) ago - - + + včera + 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 generovaný %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? - + Veľkosť tejto transakcie prekračuje limit. Stále ju však môžete odoslať za poplatok %1 ktorý bude pripísaný uzlu spracúvajúcemu vašu transakciu. Chcete zaplatiť poplatok? - + Sending... - Odosielanie... + Odosielanie... - + Sent transaction Odoslané transakcie - + Incoming transaction Prijaté transakcie - + Date: %1 Amount: %2 Type: %3 @@ -582,60 +576,75 @@ Typ: %3 Adresa: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + Peňaženka je <b>zašifrovaná</b> a momentálne <b>odomknutá</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> - + Peňaženka je <b>zašifrovaná</b> a momentálne <b>zamknutá</b> - + Backup Wallet - + Zálohovať peňaženku - + Wallet Data (*.dat) - + + There was an error trying to save the wallet data to the new location. + Nastala chyba pri pokuse uložiť peňaženku na nové miesto. + + + Backup Failed - - There was an error trying to save the wallet data to the new location. - + + Export the data in the current tab to a file + Exportovať tento náhľad do súboru - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + Backup wallet to another location + Zálohovať peňaženku na iné miesto + + + + Downloaded %1 blocks of transaction history. + Stiahnutých %1 blokov transakčnej histórie + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &Zobrazovať hodnoty v jednotkách: - + Choose the default subdivision unit to show in the interface, and when sending coins - + &Display addresses in transaction list &Zobraziť adresy zo zoznamu transakcií - + Whether to show Bitcoin addresses in the transaction list @@ -665,7 +674,7 @@ Adresa: %4 The address associated with this address book entry. This can only be modified for sending addresses. - + Adresa spojená s týmto záznamom v adresári. Možno upravovať len pre odosielajúce adresy. @@ -723,7 +732,7 @@ Adresa: %4 &Minimize to the tray instead of the taskbar - + Zobraziť len ikonu na lište po minimalizovaní okna. @@ -757,7 +766,7 @@ Adresa: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Pripojiť do siete Bitcoin cez SOCKS4 proxy (napr. keď sa pripájate cez Tor) @@ -780,18 +789,13 @@ Adresa: %4 Port of the proxy (e.g. 1234) Port proxy (napr. 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Voliteľný transakčný poplatok za kB ktorý pomôže rýchlemu spracovaniu transakcie. Väčšina transakcií má 1 kB. Poplatok 0.01 je odporúčaný. - Pay transaction &fee Zaplatiť transakčné &poplatky - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Voliteľný transakčný poplatok za kB ktorý pomôže rýchlemu spracovaniu transakcie. Väčšina transakcií má 1 kB. Poplatok 0.01 je odporúčaný. @@ -806,7 +810,7 @@ Adresa: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + Môžete podpísať správy svojou adresou a dokázať, že ju vlastníte. Buďte opatrní a podpíšte len prehlásenia s ktorými plne súhlasíte, nakoľko útoky typu "phishing" Vás môžu lákať k ich podpísaniu. @@ -916,11 +920,6 @@ Adresa: %4 Balance: Zostatok: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -936,15 +935,10 @@ Adresa: %4 Unconfirmed: Nepotvrdené: - - - 0 BTC - 0 BTC - Wallet - + Peňaženka @@ -1029,13 +1023,13 @@ Adresa: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins Poslať Bitcoins @@ -1080,59 +1074,59 @@ Adresa: %4 &Odoslať - + <b>%1</b> to %2 (%3) <b>%1</b> do %2 (%3) - + Confirm send coins Potvrdiť odoslanie bitcoins - + Are you sure you want to send %1? Ste si istí, že chcete odoslať %1? - + and a - - The recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. Adresa príjemcu je neplatná, prosím, overte ju. - + The amount to pay must be larger than 0. Suma na úhradu musí byť väčšia ako 0. - - Amount exceeds your balance - Suma je vyššia ako Váš zostatok + + The amount exceeds your balance. + Suma je vyššia ako Váš zostatok. - - Total exceeds your balance when the %1 transaction fee is included - Suma celkom prevyšuje Váš zostatok ak sú započítané %1 transakčné poplatky + + The total exceeds your balance when the %1 transaction fee is included. + Suma celkom prevyšuje Váš zostatok ak sú započítané %1 transakčné poplatky. - - Duplicate address found, can only send to each address once in one send operation + + Duplicate address found, can only send to each address once per send operation. Duplikát adresy objavený, je možné poslať na každú adresu len raz v jednej odchádzajúcej transakcii. - - Error: Transaction creation failed - Chyba: Zlyhalo vytvorenie transakcie + + Error: Transaction creation failed. + Chyba: Zlyhalo vytvorenie transakcie. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. + Chyba: Transakcia bola odmietnutá. Toto sa môže stať ak niektoré z mincí vo vašej peňaženke boli už utratené, napríklad ak používaš kópiu wallet.dat a mince označené v druhej kópií neboli označené ako utratené v tejto. @@ -1201,20 +1195,10 @@ Adresa: %4 TransactionDesc - - - Open for %1 blocks - - Open until %1 - - - - - %1/offline? - + Otvorené do %1 @@ -1246,6 +1230,16 @@ Adresa: %4 , broadcast through %1 nodes , odoslaná cez %1 nód + + + Open for %1 blocks + + + + + %1/offline? + + <b>Date:</b> @@ -1375,102 +1369,102 @@ Adresa: %4 Amount Hodnota - - - Open for %n block(s) - - - - - + Open until %1 - + Otvorené do %1 - + Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) Nepotvrdené (%1 z %2 potvrdení) - + Confirmed (%1 confirmations) Potvrdené (%1 potvrdení) - - - Mined balance will be available in %n more blocks - - - - - + This block was not received by any other nodes and will probably not be accepted! Ten blok nebol prijatý žiadnou inou nódou a pravdepodobne nebude akceptovaný! - + Generated but not accepted Vypočítané ale neakceptované + + + Open for %n block(s) + + + + - + Received with Prijaté s - + Received from Prijaté od: - + Sent to Odoslané na - + Payment to yourself Platba sebe samému + + + Mined balance will be available in %n more blocks + + + + - + Mined Vyfárané - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. Status transakcie. Pohybujte myšou nad týmto poľom a zjaví sa počet potvrdení. - + Date and time that the transaction was received. Dátum a čas prijatia transakcie. - + Type of transaction. Typ transakcie. - + Destination address of transaction. Cieľová adresa transakcie. - + Amount removed from or added to balance. Suma pridaná alebo odobraná k zostatku. @@ -1574,67 +1568,67 @@ Adresa: %4 Ukázať detaily... - + Export Transaction Data Exportovať transakčné dáta - + 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 exportu - + Could not write to file %1. Nedalo sa zapisovať do súboru %1. - + Range: Rozsah: - + to do @@ -1706,287 +1700,342 @@ Adresa: %4 + Show splash screen on startup (default: 1) + + + + Specify data directory Určiť priečinok s dátami - + + Set database cache size in megabytes (default: 25) + + + + Specify connection timeout (in milliseconds) Určiť aut spojenia (v milisekundách) - + Connect through socks4 proxy Pripojenie cez socks4 proxy - + Allow DNS lookups for addnode and connect Povoliť vyhľadávanie DNS pre pridanie nódy a spojenie - + Listen for connections on <port> (default: 8333 or testnet: 18333) Načúvať spojeniam na <port> (prednastavené: 8333 alebo testovacia sieť: 18333) - + Maintain at most <n> connections to peers (default: 125) Udržiavať maximálne <n> spojení (predvolené: 125) - - Add a node to connect to - Pridať nódu a pripojiť sa - - - + Connect only to the specified node Pripojiť sa len k určenej nóde - - Don't accept connections from outside - Neprijímať spojenia z vonku - - - - Don't bootstrap list of peers using DNS - - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - - - - Don't attempt to use UPnP to map the listening port - Neskúsiť použiť UPnP pre mapovanie počúvajúceho portu - - - - Attempt to use UPnP to map the listening port - Skúsiť použiť UPnP pre mapovanie počúvajúceho portu - - - - Fee per kB to add to transactions you send - Poplatok za kB ktorý treba pridať k odoslanej transakcii - - - + 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 Produkovať extra ladiace informácie - + Prepend debug output with timestamp Pridať na začiatok ladiaceho výstupu časový údaj - + 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 Odoslať trace/debug informácie do ladiaceho programu - + 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: 8332) Počúvať JSON-RPC spojeniam na <port> (predvolené: 8332) - + 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) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) Nastaviť zásobu adries na <n> (predvolené: 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) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL možnosť: (pozrite Bitcoin Wiki pre návod na nastavenie SSL) - + 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) Prijateľné šifry (predvolené: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Táto pomocná správa - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + Loading addresses... Načítavanie adries... - + Error loading addr.dat Chyba načítania addr.dat - + Error loading blkindex.dat Chyba načítania 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 Bitcoin Chyba načítania wallet.dat: Peňaženka vyžaduje novšiu verziu Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete Bolo potrebné prepísať peňaženku: dokončite reštartovaním Bitcoin - + Error loading wallet.dat Chyba načítania wallet.dat - - Loading block index... - Načítavanie zoznamu blokov... + + Warning: Disk space is low + Varovanie: Málo voľného miesta na disku - - Loading wallet... - Načítavam peňaženku... + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + + + + Rescan the block chain for missing wallet transactions + Znovu skenovať reťaz blokov pre chýbajúce transakcie + + + + Add a node to connect to and attempt to keep the connection open + + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) + + + + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + + + + Use Universal Plug and Play to map the listening port (default: 1) + + + + + Use Universal Plug and Play to map the listening port (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + Cannot downgrade wallet + - + + Cannot initialize keypool + + + + + Cannot write default address + + + + Rescanning... - + Done loading Dokončené načítavanie - + + Loading block index... + Načítavanie zoznamu blokov... + + + + Loading wallet... + Načítavam peňaženku... + + + Invalid -proxy address Neplatná adresa proxy - + Invalid amount for -paytxfee=<amount> Neplatná suma pre -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. Varovanie: -paytxfee je nastavené veľmi vysoko. Toto sú transakčné poplatky ktoré zaplatíte ak odošlete transakciu. - + Error: CreateThread(StartNode) failed Chyba: zlyhalo CreateThread(StartNode) - - Warning: Disk space is low - Varovanie: Málo voľného miesta na disku - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - - - - + beta beta diff --git a/src/qt/locale/bitcoin_sr.ts b/src/qt/locale/bitcoin_sr.ts index ed22deb319..7c8a0f1eb1 100644 --- a/src/qt/locale/bitcoin_sr.ts +++ b/src/qt/locale/bitcoin_sr.ts @@ -109,22 +109,22 @@ This product includes software developed by the OpenSSL Project for use in the O - + Export Address Book Data Извоз података из адресара - + Comma separated file (*.csv) Зарезом одвојене вредности (*.csv) - + Error exporting Грешка током извоза - + Could not write to file %1. Није могуће писати у фајл %1. @@ -155,23 +155,22 @@ This product includes software developed by the OpenSSL Project for use in the O Дијалог - - + TextLabel TextLabel - + Enter passphrase Унесите лозинку - + New passphrase Нова лозинка - + Repeat new passphrase Поновите нову лозинку @@ -238,12 +237,6 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Warning: The Caps Lock key is on. - - @@ -282,215 +275,221 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. - Лозинка за приступ новчанику је успешно промењена. + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on. + BitcoinGUI - + Bitcoin Wallet Bitcoin новчаник - - + + Synchronizing with network... Синхронизација са мрежом у току... - + Block chain synchronization in progress Синхронизовање ланца блоква је у току - + &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 &Слање новца - + Send coins to a bitcoin address Пошаљите новац на bitcoin адресу - + Sign &message - + Prove you control an address - + E&xit - + Quit application Напустите програм - + &About %1 - + Show information about Bitcoin Прегледајте информације о Bitcoin-у - + About &Qt - + Show information about Qt - + &Options... П&оставке... - + Modify configuration options for bitcoin Изаберите могућности bitcoin-а - + Open &Bitcoin Отвори &Bitcoin - + Show the Bitcoin window Приказује прозор Bitcoin-а - + &Export... &Извоз... - + Export the data in the current tab to a file - + &Encrypt Wallet &Шифровање новчаника - + Encrypt or decrypt wallet Шифровање и дешифровање новчаника - + &Backup Wallet &Backup новчаника - + Backup wallet to another location - + &Change Passphrase Промени &лозинку - + Change the passphrase used for wallet encryption Мењање лозинке којом се шифрује новчаник - + &File &Фајл - + &Settings &Подешавања - + &Help П&омоћ - + Tabs toolbar Трака са картицама - + Actions toolbar Трака са алаткама - + [testnet] [testnet] - + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network %n активна веза са Bitcoin мрежом @@ -499,17 +498,17 @@ Are you sure you wish to encrypt your wallet? - + Downloaded %1 of %2 blocks of transaction history. Преузето је %1 од укупно %2 блокова историјата трансакција. - + Downloaded %1 blocks of transaction history. Преузето је %1 блокова историјата трансакција. - + %n second(s) ago пре %n секунд @@ -518,7 +517,7 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago пре %n минут @@ -527,7 +526,7 @@ Are you sure you wish to encrypt your wallet? - + %n hour(s) ago пре %n сат @@ -536,7 +535,7 @@ Are you sure you wish to encrypt your wallet? - + %n day(s) ago пре %n дан @@ -545,42 +544,42 @@ Are you sure you wish to encrypt your wallet? - + 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, која ће отићи чвору који прерађује трансакцију и помаже издржавању целе мреже. Да ли желите да дате напојницу? - + Sending... Слање... - + Sent transaction Послана трансакција - + Incoming transaction Придошла трансакција - + Date: %1 Amount: %2 Type: %3 @@ -589,91 +588,66 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Новчаник јс <b>шифрован</b> и тренутно <b>откључан</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Новчаник јс <b>шифрован</b> и тренутно <b>закључан</b> - + Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &Јединица за приказивање износа: - + Choose the default subdivision unit to show in the interface, and when sending coins - + &Display addresses in transaction list - + Whether to show Bitcoin addresses in the transaction list 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 @@ -714,6 +688,31 @@ Address: %4 New key generation failed. + + + 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. + + MainOptionsPage @@ -764,7 +763,7 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) @@ -789,7 +788,7 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. @@ -797,11 +796,6 @@ Address: %4 Pay transaction &fee - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - MessagePage @@ -913,6 +907,21 @@ Address: %4 OverviewPage + + + Your current balance + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + + + + + Total number of transactions in wallet + Укупан број трансакција у новчанику + Form @@ -923,11 +932,6 @@ Address: %4 Balance: - - - 123.456 BTC - - Number of transactions: @@ -943,36 +947,16 @@ Address: %4 Unconfirmed: - - - 0 BTC - - Wallet - Новчаник + <b>Recent transactions</b> - - - Your current balance - - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - - - - - Total number of transactions in wallet - Укупан број трансакција у новчанику - QRCodeDialog @@ -1036,13 +1020,13 @@ Address: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins @@ -1087,58 +1071,58 @@ Address: %4 &Пошаљи - + <b>%1</b> to %2 (%3) - + Confirm send coins - + Are you sure you want to send %1? Да ли сте сигурни да желите да пошаљете %1? - + and - - The recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. - + The amount to pay must be larger than 0. - - Amount exceeds your balance + + The amount exceeds your balance. - - 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 in one 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. @@ -1364,18 +1348,18 @@ Address: %4 TransactionTableModel - Date - + Address + Адреса - Type + Date - Address - Адреса + Type + @@ -1383,101 +1367,105 @@ Address: %4 - + Open for %n block(s) + + - + Open until %1 - + Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) - + Mined balance will be available in %n more blocks + + - + 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. @@ -1581,67 +1569,67 @@ Address: %4 - + 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 @@ -1713,287 +1701,342 @@ Address: %4 - Specify data directory + Show splash screen on startup (default: 1) - Specify connection timeout (in milliseconds) + Specify data directory - Connect through socks4 proxy + Set database cache size in megabytes (default: 25) - Allow DNS lookups for addnode and connect + Specify connection timeout (in milliseconds) - Listen for connections on <port> (default: 8333 or testnet: 18333) + Connect through socks4 proxy - Maintain at most <n> connections to peers (default: 125) + Allow DNS lookups for addnode and connect - Add a node to connect to + Listen for connections on <port> (default: 8333 or testnet: 18333) - Connect only to the specified node + Maintain at most <n> connections to peers (default: 125) - Don't accept connections from outside + Add a node to connect to and attempt to keep the connection open - Don't bootstrap list of peers using DNS + Connect only to the specified node - 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) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Threshold for disconnecting misbehaving peers (default: 100) + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - Don't attempt to use UPnP to map the listening port + + Use Universal Plug and Play to map the listening port (default: 1) - - Attempt to use UPnP to map the listening port + + Use Universal Plug and Play to map the listening port (default: 0) - - Fee per kB to add to transactions you send + + Fee per KB to add to transactions you send - + Accept command line and JSON-RPC commands - + Run in the background as a daemon and accept commands - + Use the test network - + Output extra debugging information - + Prepend debug output with timestamp - + Send trace/debug info to console instead of debug.log file - + Send trace/debug info to debugger - + Username for JSON-RPC connections - + Password for JSON-RPC connections - + Listen for JSON-RPC connections on <port> (default: 8332) - + Allow JSON-RPC connections from specified IP address - + Send commands to node running on <ip> (default: 127.0.0.1) - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin 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) - + This help message - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + Loading addresses... - + Error loading addr.dat - + + Loading block index... + + + + Error loading blkindex.dat - + + Loading wallet... + Новчаник се учитава... + + + Error loading wallet.dat: Wallet corrupted - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete - + Error loading wallet.dat - - Loading block index... + + Cannot downgrade wallet - - Loading wallet... - Новчаник се учитава... + + Cannot initialize keypool + - + + Cannot write default address + + + + Rescanning... - + Done loading - + Invalid -proxy address - + Invalid amount for -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + Error: CreateThread(StartNode) failed - - Warning: Disk space is low + + Warning: Disk space is low - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + beta diff --git a/src/qt/locale/bitcoin_sv.ts b/src/qt/locale/bitcoin_sv.ts index 2a0b50e5da..023de06206 100644 --- a/src/qt/locale/bitcoin_sv.ts +++ b/src/qt/locale/bitcoin_sv.ts @@ -12,7 +12,7 @@ <b>Bitcoin</b> version - <b>Bitcoin</b> version + <b>Bitcoin</b>-version @@ -23,7 +23,13 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Copyright © 2009-2012 Bitcoin-utvecklarna + +Detta är experimentell mjukvara. + +Distribuerad under mjukvarulicensen MIT/X11, se den medföljande filen license.txt 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. @@ -41,7 +47,7 @@ This product includes software developed by the OpenSSL Project for use in the O Double-click to edit address or label - Dubbelklicka för att ändra adress eller etikett + Dubbel-klicka för att ändra adressen eller etiketten @@ -61,12 +67,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - & Kopiera till Urklipp - - - - Show &QR Code - + &Kopiera till Urklipp @@ -81,53 +82,58 @@ This product includes software developed by the OpenSSL Project for use in the O Delete the currently selected address from the list. Only sending addresses can be deleted. - Ta bort den markerade adressen från listan. Endast sändningsadresser kan tas bort. + Ta bort den valda adressen från listan. Bara avsändar-adresser kan tas bort. &Delete - & Radera + &Ta bort + + + + Show &QR Code + Visa &QR-kod Copy address - Kopiera adress + Kopiera adress Copy label - Kopiera etikett + Kopiera etikett Edit - Editera - - - - Delete - Ta bort + Editera - + Export Address Book Data - Exportera Adressboksinformation + Exportera Adressbok - + Comma separated file (*.csv) - Kommaseparerad fil (*. csv) + Kommaseparerad fil (*.csv) - + Error exporting Fel vid export - + Could not write to file %1. Kunde inte skriva till filen %1. + + + Delete + Ta bort + AddressTableModel @@ -152,33 +158,32 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - Dialog - - - - - TextLabel - TextLabel + Dialog - + Enter passphrase Ange lösenord - + New passphrase Nytt lösenord - + Repeat new passphrase Upprepa nytt lösenord + + + TextLabel + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Ange plånbokens nya lösenfras. <br/> Använd ett lösenord på <b>10 eller fler slumpmässiga tecken,</b> eller <b>åtta eller fler ord.</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> @@ -188,7 +193,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. - Denna operation behöver din plånboks lösenfras för att låsa upp plånboken. + Denna operation behöver din plånboks lösenord för att låsa upp plånboken. @@ -198,7 +203,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. - Denna operation behöver din plånboks lösenfras för att dekryptera plånboken. + Denna operation behöver din plånboks lösenord för att dekryptera plånboken. @@ -208,24 +213,18 @@ This product includes software developed by the OpenSSL Project for use in the O Change passphrase - Ändra lösenfras + Ändra lösenord Enter the old and new passphrase to the wallet. - Ange plånbokens gamla och nya lösenfras. + 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 BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - VARNING: Om du krypterar din plånbok och glömmer din lösenfras, kommer du att <b>förlora alla dina BITCOINS!</b> Är du säker på att du vill kryptera din plånbok? - @@ -235,13 +234,7 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Programmet kommer nu att stänga ner för att göra färdigt krypteringen. Notera att en krypterat konto inte skyddar mot all form av stöld på en infekterad dator. - - - - - Warning: The Caps Lock key is on. - Varning: Caps Lock är påslaget + Programmet kommer nu att stänga ner för att färdigställa krypteringen. Tänk på att en krypterad plånbok inte skyddar mot stöld om din dator är infekterad med en keylogger. @@ -260,7 +253,7 @@ Are you sure you wish to encrypt your wallet? The supplied passphrases do not match. - De angivna lösenfraserna överensstämmer inte. + De angivna lösenorden överensstämmer inte. @@ -272,7 +265,7 @@ Are you sure you wish to encrypt your wallet? The passphrase entered for the wallet decryption was incorrect. - Lösenfrasen för dekryptering av plånbok var felaktig. + Lösenordet för dekryptering av plånbok var felaktig. @@ -281,233 +274,225 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Plånbokens lösenfras har ändrats. + + + + Warning: The Caps Lock key is on. + Varning: Caps Lock är påslaget. + + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + VARNING: Om du krypterar din plånbok och glömmer din lösenfras, kommer du att <b>förlora alla dina BITCOINS!</b> Är du säker på att du vill kryptera din plånbok? + BitcoinGUI - - Bitcoin Wallet - Bitcoin-plånbok - - - - + + Synchronizing with network... - Synkroniserar med nätverk ... + Synkroniserar med nätverk... - + Block chain synchronization in progress - Synkronisering av blockkedja pågår + Synkronisering av blockkedja pågår - + &Overview - & Översikt + &Översikt - + Show general overview of wallet Visa översiktsvy av plånbok - + &Transactions &Transaktioner - + Browse transaction history Bläddra i transaktionshistorik - + &Address Book &Adressbok - + Edit the list of stored addresses and labels Redigera listan med lagrade adresser och etiketter - + &Receive coins - & Ta emot bitcoins + &Ta emot bitcoins - + Show the list of addresses for receiving payments Visa listan med adresser för att ta emot betalningar - + &Send coins - & Skicka bitcoins - - - - Send coins to a bitcoin address - Skicka bitcoins till en bitcoinadress - - - - Sign &message - Signera &meddelande + &Skicka bitcoins - + Prove you control an address - + E&xit &Avsluta - + Quit application Avsluta programmet - + &About %1 - &Om %1 + - + Show information about Bitcoin Visa information om Bitcoin - + About &Qt Om &Qt - + Show information about Qt Visa information om Qt - + &Options... - & Alternativ ... + &Alternativ... - + Modify configuration options for bitcoin - Ändra konfigurationsalternativ för bitcoin - - - - Open &Bitcoin - Öppna &Bitcoin + Ändra konfigurationsalternativ för Bitcoin - + Show the Bitcoin window Visa Bitcoin-fönster - + &Export... - &Exportera ... - - - - Export the data in the current tab to a file - + &Exportera... - + &Encrypt Wallet &Kryptera plånbok - + Encrypt or decrypt wallet Kryptera eller dekryptera plånbok - - &Backup Wallet - &Backup plånbok + + Send coins to a bitcoin address + Skicka bitcoins till en bitcoinadress - - Backup wallet to another location - + + Bitcoin Wallet + Bitcoin-plånbok - + + Sign &message + Signera &meddelande + + + + &Backup Wallet + &Säkerhetskopiera Plånbok + + + &Change Passphrase - &Byt lösenfras + &Byt Lösenord... - + Change the passphrase used for wallet encryption - Byt lösenfras för kryptering av plånbok + Byt lösenord för kryptering av plånbok - + &File &Arkiv - + &Settings &Inställningar - + &Help &Hjälp - + Tabs toolbar Verktygsfält för Tabbar - + Actions toolbar Verktygsfältet för Handlingar - + [testnet] [testnet] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network - %n aktiv anslutning till Bitcoin-nätverket. - %n aktiva anslutningar till Bitcoin-nätverket. + %n aktiv anslutning till Bitcoin-nätverket + %n aktiva anslutningar till Bitcoin-nätverket - - Downloaded %1 of %2 blocks of transaction history. - Laddat ner %1 av %2 block från transaktionshistoriken. + + Open &Bitcoin + Öppna &amp;Bitcoin - + Downloaded %1 blocks of transaction history. Laddat ner %1 block från transaktionshistoriken. - + %n second(s) ago %n sekund sedan @@ -515,7 +500,7 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago %n minut sedan @@ -523,7 +508,7 @@ Are you sure you wish to encrypt your wallet? - + %n hour(s) ago %n timme sedan @@ -531,7 +516,7 @@ Are you sure you wish to encrypt your wallet? - + %n day(s) ago %n dag sedan @@ -539,46 +524,37 @@ Are you sure you wish to encrypt your wallet? - + Up to date Uppdaterad - + Catching up... - Hämtar senaste + Hämtar senaste... - + Last received block was generated %1. - Senast mottagna blocked genererades %1. + Senast 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? - Transaktionen överskrider storleksgränsen. - -Du kan dock fortfarande skicka den mot en kostnad av %1. Denna avgift går till noderna som behandlar din transaktion och bidrar till nätverket. - -Vill du betala denna avgift? - - - - Sending... - Skickar... + Transaktionen överskrider storleksgränsen. Du kan dock fortfarande skicka den mot en kostnad av %1. Denna avgift går till noderna som behandlar din transaktion och bidrar till nätverket. Vill du betala denna avgift? - + Sent transaction Transaktion skickad - + Incoming transaction Inkommande transaktion - + Date: %1 Amount: %2 Type: %3 @@ -587,66 +563,91 @@ Address: %4 Datum: %1 Belopp: %2 Typ: %3 -Adress:%4 +Adress: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Denna plånbok är <b>krypterad</b> och för närvarande <b>olåst</b>. + 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>. + Denna plånbok är <b>krypterad</b> och för närvarande <b>låst</b> + + + + Export the data in the current tab to a file + Exportera informationen i den nuvarande fliken till en fil + + + + Backup wallet to another location + Säkerhetskopiera plånboken till en annan plats + + + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + Laddat ner %1 av %2 block från transaktionshistoriken. + + + + Sending... + Skickar... - + Backup Wallet - + Säkerhetskopiera Plånbok - + Wallet Data (*.dat) - + Plånboks-data (*.dat) - + Backup Failed - + Säkerhetskopiering misslyckades - + There was an error trying to save the wallet data to the new location. - + Det inträffade ett fel när plånboken skulle sparas till den nya platsen. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Ett allvarligt fel har uppstått. Bitcoin kan inte längre köras säkert och kommer att avslutas. DisplayOptionsPage - + &Unit to show amounts in: &Enhet att visa belopp i: - + Choose the default subdivision unit to show in the interface, and when sending coins Välj en standard för enhets mått, att visa när du skickar mynt - + &Display addresses in transaction list &Visa adresser i transaktionslistan - + Whether to show Bitcoin addresses in the transaction list - + Anger om Bitcoin-adresser skall visas i transaktionslistan @@ -766,8 +767,8 @@ Adress:%4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Anslut till Bitcoin-nätverket genom en SOCKS4-proxy (t.ex. när du ansluter genom Tor). + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Anslut till Bitcoin-nätverket genom en SOCKS4-proxy (t.ex. när du ansluter genom Tor) @@ -791,36 +792,31 @@ Adress:%4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Valfri transaktionsavgift per kB som ser till att dina transaktioner behandlas snabbt. De flesta transaktioner är 1 kB. Avgift 0.01 rekommenderas. Pay transaction &fee Betala överförings &avgift - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - MessagePage Message - + 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Adressen att signera meddelandet med (t.ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -845,12 +841,12 @@ Adress:%4 Enter the message you want to sign here - + Skriv in meddelandet du vill signera här Click "Sign Message" to get signature - + Klicka "Signera Meddelande" för att få en signatur @@ -865,12 +861,12 @@ Adress:%4 Copy the current signature to the system clipboard - + Kopiera signaturen till systemets Urklipp &Copy to Clipboard - & Kopiera till Urklipp + &amp; Kopiera till Urklipp @@ -926,9 +922,9 @@ Adress:%4 Saldo: - - 123.456 BTC - 123.456 BTC + + Wallet + Plånbok @@ -946,25 +942,15 @@ Adress:%4 Obekräftade: - - 0 BTC - 0 BTC - - - - Wallet - + + Your current balance + Ditt nuvarande saldo <b>Recent transactions</b> <b>Nyligen genomförda transaktioner</b> - - - Your current balance - Ditt nuvarande saldo - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance @@ -984,19 +970,19 @@ Adress:%4 Dialog - - QR Code - + + Amount: + Belopp: Request Payment - + Begär Betalning - - Amount: - Belopp: + + Label: + Etikett: @@ -1004,9 +990,9 @@ Adress:%4 BTC - - Label: - Etikett: + + QR Code + QR-kod @@ -1021,7 +1007,7 @@ Adress:%4 Error encoding URI into QR Code. - + Fel vid skapande av QR-kod från URI. @@ -1031,20 +1017,20 @@ Adress:%4 PNG Images (*.png) - + PNG-bilder (*.png) SendCoinsDialog - - - - - - - + + + + + + + Send Coins Skicka pengar @@ -1058,16 +1044,16 @@ Adress:%4 &Add recipient... &Lägg till mottagare... - - - Remove all transaction fields - - Clear all Rensa alla + + + Remove all transaction fields + Ta bort alla transaktions-fält + Balance: @@ -1089,59 +1075,59 @@ Adress:%4 &Skicka - + <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 på att du vill skicka %1? - + and and - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance - Värdet överstiger ditt saldo + + The amount exceeds your balance. + Värdet överstiger ditt saldo. - - Total exceeds your balance when the %1 transaction fee is included - Totalt överstiger det ditt saldo när transaktionsavgiften %1 ingår + + 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 in one send operation - Dublett av adress funnen, kan bara skicka till varje adress en gång per sändning + + 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 gick inte att skapa + + Error: Transaction creation failed. + Fel: Transaktionen gick inte att skapa. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Fel: Transaktionen avslogs. Detta kan hända om några av mynten i plånboken redan spenderats, som om du använde en kopia av wallet.dat och mynt spenderades i kopian men inte markerats som spenderas här. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Fel: Transaktionen avslogs. Detta kan hända om några av mynten i plånboken redan spenderats, t.ex om du använt en kopia av wallet.dat och mynt spenderades i kopian men inte markerats som spenderas här. @@ -1228,7 +1214,7 @@ Adress:%4 %1/unconfirmed - %1/okonfirmerad + %1/obekräftade @@ -1240,6 +1226,16 @@ Adress:%4 <b>Status:</b> <b>Status:</b> + + + (%1 matures in %2 more blocks) + + + + + Transaction ID: + + , has not been successfully broadcast yet @@ -1301,11 +1297,6 @@ Adress:%4 <b>Credit:</b> <b>Kredit:</b> - - - (%1 matures in %2 more blocks) - - (not accepted) @@ -1338,11 +1329,6 @@ Adress:%4 Comment: Kommentar: - - - Transaction ID: - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. @@ -1385,103 +1371,104 @@ Adress:%4 Mängd - + Open for %n block(s) - + Öppen i %n block + Öppen i %n block - + Open until %1 Öppet till %1 - + Offline (%1 confirmations) Offline (%1 bekräftelser) - + Unconfirmed (%1 of %2 confirmations) Obekräftad (%1 av %2 bekräftelser) - + Confirmed (%1 confirmations) Bekräftad (%1 bekräftelser) - + Mined balance will be available in %n more blocks - + 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 - - - - + Sent to Skickad till - + Payment to yourself Betalning till dig själv - + Mined Skapad - - (n/a) - (n/a) + + Received from + Mottaget från + + + + (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. @@ -1567,11 +1554,6 @@ Adress:%4 Copy label Kopiera etikett - - - Copy amount - - Edit label @@ -1583,67 +1565,72 @@ Adress:%4 Visa detaljer... - + + Copy amount + Kopiera belopp + + + Export Transaction Data Exportera Transaktions Data - + 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 export - + Could not write to file %1. Kunde inte skriva till filen %1. - + Range: Intervall: - + to till @@ -1658,6 +1645,11 @@ Adress:%4 bitcoin-core + + + Done loading + Klar med laddning + Bitcoin version @@ -1715,287 +1707,338 @@ Adress:%4 + Show splash screen on startup (default: 1) + Visa startbilden vid uppstart (standard: 1) + + + Specify data directory Ange katalog för data - + Specify connection timeout (in milliseconds) Ange timeout för uppkoppling (i millisekunder) - + Connect through socks4 proxy Koppla upp genom socks4 proxy - + Allow DNS lookups for addnode and connect - - Listen for connections on <port> (default: 8333 or testnet: 18333) - + + Accept connections from outside (default: 1) + Acceptera anslutningar utifrån (standard: 1) - - Maintain at most <n> connections to peers (default: 125) - + + Set language, for example "de_DE" (default: system locale) + Ändra språk, till exempel "de_DE" (standard: systemets språk) - - Add a node to connect to - Lägg till en nod att koppla upp mot + + Find peers using DNS lookup (default: 1) + Söl efter klienter med DNS sökningen (standard: 1) - - Connect only to the specified node - Koppla enbart upp till den specifierade noden + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maximal buffert för mottagning per anslutning, <n>*1000 byte (förval: 5000) {1000 ?} {10000)?} - - Don't accept connections from outside - Acceptera ej anslutningar utifrån + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maximal buffert för sändning per anslutning, <n>*1000 byte (förval: 5000) {1000 ?} {10000)?} - - Don't bootstrap list of peers using DNS - + + Use Universal Plug and Play to map the listening port (default: 1) + Use UPnP to map the listening port (default: 1) - - Threshold for disconnecting misbehaving peers (default: 100) - + + Use Universal Plug and Play to map the listening port (default: 0) + Use UPnP to map the listening port (default: 0) - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + + Output extra debugging information + Skriv ut extra felsökningsinformation - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner) - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Accepterade krypteringsalgoritmer (förval: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Don't attempt to use UPnP to map the listening port - + + Connect only to the specified node + Koppla enbart upp till den specifierade noden - - Attempt to use UPnP to map the listening port - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kan inte låsa data-mappen %s. Bitcoin körs förmodligen redan. - - Fee per kB to add to transactions you send - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Exekvera kommando när bästa blocket ändras (%s i cmd är utbytt av blockhash) - - Accept command line and JSON-RPC commands - + + Use the test network + Använd test nätverket - - Run in the background as a daemon and accept commands - + + 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örval: 86400) - - Use the test network - Använd test nätverket + + Rescan the block chain for missing wallet transactions + Sök i block-kedjan efter saknade wallet transaktioner - - Output extra debugging information - + + This help message + Det här hjälp medelandet - Prepend debug output with timestamp - + Accept command line and JSON-RPC commands + Tillåt kommandon från kommandotolken och JSON-RPC-kommandon - - Send trace/debug info to console instead of debug.log file - + + Loading addresses... + Laddar adresser... - - Send trace/debug info to debugger - + + 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 - - Username for JSON-RPC connections - + + Allow JSON-RPC connections from specified IP address + Tillåt JSON-RPC-anslutningar från specifika IP-adresser - - Password for JSON-RPC connections - + + Error loading wallet.dat: Wallet corrupted + Fel vid inläsningen av wallet.dat: Kontofilen verkar skadad - - Listen for JSON-RPC connections on <port> (default: 8332) - + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Fel vid inläsningen av wallet.dat: Kontofilen kräver en senare version av Bitcoin - - Allow JSON-RPC connections from specified IP address - + + Wallet needed to be rewritten: restart Bitcoin to complete + Kontot behöver sparas om: Starta om Programmet - - Send commands to node running on <ip> (default: 127.0.0.1) - + + Error loading wallet.dat + Fel vid inläsning av kontofilen wallet.dat - - Set key pool size to <n> (default: 100) - + + Cannot downgrade wallet + Kan inte nedgradera plånboken - - Rescan the block chain for missing wallet transactions - Sök i block-kedjan efter saknade wallet transaktioner + + Cannot initialize keypool + Kan inte initiera keypool - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Cannot write default address + Kan inte skriva standardadress - - Use OpenSSL (https) for JSON-RPC connections - + + Error loading blkindex.dat + Fel vid inläsning av blkindex.dat - - Server certificate file (default: server.cert) - + + Fee per KB to add to transactions you send + Avgift per KB att lägga till på transaktioner du skickar - - Server private key (default: server.pem) - + + Find peers using internet relay chat (default: 0) + Sök efter klienter med internet relay chat (standard: 0) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + + How many blocks to check at startup (default: 2500, 0 = all) + Hur många block att kontrollera vid uppstart (standardvärde: 2500, 0 = alla) - This help message - Det här hjälp medelandet + How thorough the block verification is (0-6, default: 1) + Hur grundlig blockverifikationen är (0-6, standardvärde: 1) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + + Listen for JSON-RPC connections on <port> (default: 8332) + Lyssna på JSON-RPC-anslutningar på <port> (förval: 8332) - - Loading addresses... - Laddar adresser... + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Lyssna efter anslutningar på <port> (förval: 8333 eller testnet: 18333) - + Error loading addr.dat - - Error loading blkindex.dat - + + Loading block index... + Laddar blockindex... - - Error loading wallet.dat: Wallet corrupted - Fel vid inläsningen av wallet.dat: Kontofilen verkar skadad + + Loading wallet... + Laddar plånbok... - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Fel vid inläsningen av wallet.dat: Kontofilen kräver en senare version av Bitcoin + + Maintain at most <n> connections to peers (default: 125) + Ha som mest <n> anslutningar till andra klienter (förval: 125) - - Wallet needed to be rewritten: restart Bitcoin to complete - Kontot behöver sparas om: Starta om Programmet + + Password for JSON-RPC connections + Lösenord för JSON-RPC-anslutningar - - Error loading wallet.dat - Fel vid inläsning av kontofilen wallet.dat + + Prepend debug output with timestamp + Skriv ut tid i felsökningsinformationen + + + + Rescanning... + Söker igen... + + + + Run in the background as a daemon and accept commands + Kör i bakgrunden som tjänst och acceptera kommandon + + + + Send commands to node running on <ip> (default: 127.0.0.1) + Skicka kommandon till klient på <ip> (förval: 127.0.0.1) + + + + 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-/debuginformation till debugger + + + + Server certificate file (default: server.cert) + Serverns certifikatfil (förval: server.cert) - Loading block index... - Laddar block index... + Server private key (default: server.pem) + Serverns privata nyckel (förval: server.pem) - - Loading wallet... - Laddar konto... + + Set database cache size in megabytes (default: 25) + Sätt databas cache storleken i megabyte (standard: 25) - - Rescanning... - Söker igen... + + Set key pool size to <n> (default: 100) + Sätt storleken på nyckelpoolen till <n> (förval: 100) - - Done loading - Klar med laddning + + Threshold for disconnecting misbehaving peers (default: 100) + Tröskelvärde för att koppla ifrån klienter som missköter sig (förval: 100) - + + Upgrade wallet to latest format + Uppgradera plånboken till senaste formatet + + + + Use OpenSSL (https) for JSON-RPC connections + Använd OpenSSL (https) för JSON-RPC-anslutningar + + + + Username for JSON-RPC connections + Användarnamn för JSON-RPC-anslutningar + + + Invalid -proxy address Ogiltig proxyadress - + Invalid amount for -paytxfee=<amount> Ogiltigt belopp för -paytxfee=<belopp> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + Error: CreateThread(StartNode) failed - - Warning: Disk space is low - + + Warning: Disk space is low + Varning: Hårddiskutrymme är lågt - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + Varning: Vänligen kolla så att din dators datum och tid är korrekt! Om din klocka går fel kommer Bitcoin inte fungera korrekt. - + beta beta diff --git a/src/qt/locale/bitcoin_tr.ts b/src/qt/locale/bitcoin_tr.ts index 14747d5e06..c10f29f351 100644 --- a/src/qt/locale/bitcoin_tr.ts +++ b/src/qt/locale/bitcoin_tr.ts @@ -62,23 +62,18 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) Copy the currently selected address to the system clipboard - Şu anda seçili olan adresi panoya kopyalar + Şu anda seçili olan adresi panoya kopyala &Copy to Clipboard - Panoya &kopyala + Panoya &kopyala Show &QR Code &QR kodunu göster - - - Sign a message to prove you own this address - Bu adresin sizin olduğunu ispatlamak için mesaj imzalayın - &Sign Message @@ -94,15 +89,20 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) &Delete &Sil + + + Sign a message to prove you own this address + Bu adresin sizin olduğunu ispatlamak için mesaj imzalayın + Copy address - Adresi kopyala + Adresi kopyala Copy label - Etiketi kopyala + Etiketi kopyala @@ -115,22 +115,22 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) Sil - + Export Address Book Data Adres defteri verilerini dışa aktar - + Comma separated file (*.csv) Virgülle ayrılmış değerler dosyası (*.csv) - + Error exporting Dışa aktarımda hata oluştu - + Could not write to file %1. %1 dosyasına yazılamadı. @@ -158,29 +158,28 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) Dialog - Diyalog - - - - - TextLabel - Metin Etiketi + Diyalog - + Enter passphrase Parolayı giriniz - + New passphrase Yeni parola - + Repeat new passphrase Yeni parolayı tekrarlayınız + + + TextLabel + + 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>. @@ -242,13 +241,7 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Şifreleme işlemini tamamlamak için Bitcoin şimdi kapanacaktır. Cüzdanınızı şifrelemenin, bitcoinlerinizin bilgisayara bulaşan kötücül bir yazılım tarafından çalınmaya karşı tamamen koruyamayacağını unutmayınız. - - - - - Warning: The Caps Lock key is on. - Uyarı: Caps Lock tuşu etkin durumda. + Şifreleme işlemini tamamlamak için Bitcoin şimdi kapanacaktır. Cüzdanınızı şifrelemenin, Bitcoinlerinizin bilgisayara bulaşan kötücül bir yazılım tarafından çalınmaya karşı tamamen koruyamayacağını unutmayınız. @@ -288,295 +281,286 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Cüzdan parolası başarılı bir şekilde değiştirildi. + + + + Warning: The Caps Lock key is on. + Uyarı: Caps Lock tuşu faal durumda. + BitcoinGUI - - Bitcoin Wallet - Bitcoin cüzdanı - - - - + + Synchronizing with network... Şebeke ile senkronizasyon... - - Block chain synchronization in progress - Blok zinciri senkronizasyonu sürüyor - - - + &Overview &Genel bakış - + Show general overview of wallet - Cüzdana genel bakışı gösterir + Cüzdana genel bakışı göster - + &Transactions &Muameleler - + Browse transaction history Muamele tarihçesini tara - + &Address Book &Adres defteri - + Edit the list of stored addresses and labels - Saklanan adres ve etiket listesini düzenler + Saklanan adres ve etiket listesini düzenle - + &Receive coins - Para &al + Bitcoin &al - + Show the list of addresses for receiving payments - Ödeme alma adreslerinin listesini gösterir + Ödeme alma adreslerinin listesini göster - + &Send coins - Para &yolla - - - - Send coins to a bitcoin address - Bir bitcoin adresine para (bitcoin) yollar - - - - Sign &message - &Mesaj imzala + Bitcoin &yolla - - Prove you control an address - Bu adresin kontrolünüz altında olduğunu ispatlayın + + Bitcoin Wallet + Bitcoin cüzdanı - + E&xit &Çık - + Quit application - Uygulamadan çıkar + Uygulamadan çık - - &About %1 - %1 &hakkında - - - + Show information about Bitcoin - Bitcoin hakkında bilgi gösterir + Bitcoin hakkında bilgi göster - + About &Qt &Qt hakkında - + Show information about Qt - Qt hakkında bilgi görüntüler + Qt hakkında bilgi görüntü - + &Options... &Seçenekler... - - Modify configuration options for bitcoin - Bitcoin seçeneklerinin yapılandırmasını değiştirir - - - - Open &Bitcoin - &Bitcoin'i aç - - - - Show the Bitcoin window - Bitcoin penceresini gösterir - - - + &Export... &Dışa aktar... - + Export the data in the current tab to a file Güncel sekmedeki verileri bir dosyaya aktar - - &Encrypt Wallet - Cüzdanı &şifrele + + Sign &message + &Mesaj imzala - + Encrypt or decrypt wallet - Cüzdanı şifreler ya da şifreyi açar + Cüzdanı şifrele ya da şifreyi aç - - &Backup Wallet - Cüzdanı &yedekle - - - + Backup wallet to another location Cüzdanı diğer bir konumda yedekle - - &Change Passphrase - &Parolayı değiştir - - - + Change the passphrase used for wallet encryption - Cüzdan şifrelemesi için kullanılan parolayı değiştirir + Cüzdan şifrelemesi için kullanılan parolayı değiştir - + &File &Dosya - + &Settings &Ayarlar - + &Help &Yardım - + Tabs toolbar Sekme araç çubuğu - + Actions toolbar Faaliyet araç çubuğu - + [testnet] [testnet] - - bitcoin-qt - bitcoin-qt + + &About %1 + %1 &hakkında + + + + Block chain synchronization in progress + Blok zinciri senkronizasyonu sürüyor + + + + Send coins to a bitcoin address + Bir Bitcoin adresine Bitcoin yolla + + + + Prove you control an address + Bu adresin kontrolünüz altında olduğunu ispatlayın + + + + Modify configuration options for bitcoin + Bitcoin seçeneklerinin yapılandırmasını değiştir + + + + Open &Bitcoin + &Bitcoin'i aç + + + + Show the Bitcoin window + Bitcoin penceresini gösterir + + + + &Encrypt Wallet + Cüzdanı &şifrele + + + + &Change Passphrase + &Parolayı değiştir - + %n active connection(s) to Bitcoin network - Bitcoin şebekesine %n etkin bağlantı + Bitcoin şebekesine %n faal bağlantı - - Downloaded %1 of %2 blocks of transaction history. - Muamele tarihçesinin %2 sayıda blokundan %1 adet blok indirildi. - - - + Downloaded %1 blocks of transaction history. Muamele tarihçesinin %1 adet bloku 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 şu vakit oluşturulmuştu: %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 muamele boyut sınırlarını aşmıştır. Gene de %1 ücret ödeyerek gönderebilirsiniz, ki bu ücret muamelenizi işleyen ve şebekeye yardım eden düğümlere ödenecektir. Ücreti ödemek istiyor musunuz? - - Sending... - Yollanıyor... + + &Backup Wallet + Cüzdanı &yedekle - + Sent transaction Muamele yollandı - + Incoming transaction Gelen muamele - + Date: %1 Amount: %2 Type: %3 @@ -589,62 +573,77 @@ Adres: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilidi açılmıştır</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 verileri (*.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 verilerinin başka bir konumda kaydedilmesi sırasında bir hata meydana geldi. - - A fatal error occured. Bitcoin can no longer continue safely and will quit. - + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + Muamele tarihçesinin %2 sayıda blokundan %1 adet blok indirildi. + + + + Sending... + Yollanıyor... + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Ciddi bir hata oluştu. Bitcoin artık güvenli bir şekilde işlemeye devam edemez ve kapanacaktır. DisplayOptionsPage - + &Unit to show amounts in: Miktarı göstermek için &birim: - + Choose the default subdivision unit to show in the interface, and when sending coins Para (coin) gönderildiğinde arayüzde gösterilecek varsayılan alt birimi seçiniz - + &Display addresses in transaction list &Muamele listesinde adresleri göster - + Whether to show Bitcoin addresses in the transaction list - + Muamele listesinde Bitcoin adreslerinin gösterilip gösterilmeyeceklerini belirler @@ -764,7 +763,7 @@ Adres: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Bitcoin şebekesine SOCKS4 vekil sunucusu vasıtasıyla bağlanır (mesela Tor ile bağlanıldığında) @@ -787,18 +786,13 @@ Adres: %4 Port of the proxy (e.g. 1234) Vekil sunucun portu (örneğin 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Muamelelerin hızlı işlenmesini garantilemeye yardım eden, seçime dayalı kB başı muamele ücreti. Muamelelerin çoğunluğunun boyutu 1 kB'dir. 0.01 ücreti önerilir. - Pay transaction &fee Muamele ücreti &öde - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Muamelelerin hızlı işlenmesini garantilemeye yardım eden, seçime dayalı kB başı muamele ücreti. Muamelelerin çoğunluğunun boyutu 1 kB'dir. 0.01 ücreti önerilir. @@ -818,7 +812,7 @@ Adres: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Mesajın imzalanmasında kullanılacak adres (mesela 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -863,7 +857,7 @@ Adres: %4 Copy the current signature to the system clipboard - + Güncel imzayı sistem panosuna kopyala @@ -924,9 +918,9 @@ Adres: %4 Bakiye: - - 123.456 BTC - 123.456 BTC + + Wallet + Cüzdan @@ -943,21 +937,6 @@ Adres: %4 Unconfirmed: Doğrulanmamış: - - - 0 BTC - 0 BTC - - - - Wallet - Cüzdan - - - - <b>Recent transactions</b> - <b>Son muameleler</b> - Your current balance @@ -973,6 +952,11 @@ Adres: %4 Total number of transactions in wallet Cüzdandaki muamelelerin toplam sayısı + + + <b>Recent transactions</b> + <b>Son muameleler</b> + QRCodeDialog @@ -996,16 +980,16 @@ Adres: %4 Amount: Miktar: - - - BTC - BTC - Label: Etiket: + + + BTC + BTC + Message: @@ -1019,7 +1003,7 @@ Adres: %4 Error encoding URI into QR Code. - + URI'nin QR koduna kodlanmasında hata oluştu. @@ -1036,13 +1020,13 @@ Adres: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins Para (coin) yolla @@ -1087,58 +1071,58 @@ Adres: %4 &Gönder - + <b>%1</b> to %2 (%3) <b>%1</b> şu adrese: %2 (%3) - + Confirm send coins Gönderiyi teyit ediniz - + Are you sure you want to send %1? %1 tutarını göndermek istediğinizden emin misiniz? - + and ve - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance - Tutar bakiyenizden yüksektir + + The amount exceeds your balance. + Tutar bakiyenizden yüksektir. - - Total exceeds your balance when the %1 transaction fee is included - Toplam, %1 muamele ücreti ilâve edildiğinde bakiyenizi geçmektedir + + 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 in one send operation - Çift adres bulundu, belli bir gönderi sırasında her adrese sadece tek bir gönderide bulunulabilir + + 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: Muamele oluşturması başarısız oldu + + Error: Transaction creation failed. + Hata: Muamele oluşturması 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. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Hata: Muamele reddedildi. Cüzdanınızdaki madenî paraların bazıları zaten harcanmış olduğunda bu meydana gelebilir. Örneğin wallet.dat dosyasının bir kopyasını kullandıysanız ve kopyada para harcandığında ancak burada harcandığı işaretlenmediğinde. @@ -1231,7 +1215,7 @@ Adres: %4 %1 confirmations - %1 doğrulama + %1 teyit @@ -1383,101 +1367,101 @@ Adres: %4 Miktar - + Open for %n block(s) %n blok için açık - + Open until %1 %1 değerine dek açık - + Offline (%1 confirmations) Çevrimdışı (%1 doğrulama) - + Unconfirmed (%1 of %2 confirmations) Doğrulanmadı (%1 (toplam %2 üzerinden) doğrulama) - + Confirmed (%1 confirmations) Doğrulandı (%1 doğrulama) - + Mined balance will be available in %n more blocks Madenden çıkarılan bakiye %n ek blok sonrasında kullanılabilecektir - + 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ınan - + 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 miktar. @@ -1581,67 +1565,67 @@ Adres: %4 Detayları göster... - + Export Transaction Data Muamele verilerini dışa aktar - + Comma separated file (*.csv) Virgülle ayrılmış değerler dosyası (*.csv) - + Confirmed Doğrulandı - + Date Tarih - + Type Tür - + Label Etiket - + Address Adres - + Amount Miktar - + ID Kimlik - + Error exporting Dışa aktarımda hata oluştu - + Could not write to file %1. %1 dosyasına yazılamadı. - + Range: Aralık: - + to ilâ @@ -1713,288 +1697,343 @@ Adres: %4 + Show splash screen on startup (default: 1) + Başlatıldığında başlangıç ekranını göster (varsayılan: 1) + + + Specify data directory Veri dizinini belirt - + Specify connection timeout (in milliseconds) Bağlantı zaman aşım süresini milisaniye olarak belirt - + Connect through socks4 proxy Socks4 vekil sunucusu vasıtasıyla bağlan - + Allow DNS lookups for addnode and connect Düğüm ekleme ve bağlantı için DNS aramalarına izin ver - + Listen for connections on <port> (default: 8333 or testnet: 18333) Bağlantılar için dinlenecek <port> (varsayılan: 8333 ya da testnet: 18333) - - Maintain at most <n> connections to peers (default: 125) - Eşler ile en çok <n> adet bağlantı kur (varsayılan: 125) + + Accept connections from outside (default: 1) + Dışarıdan gelen bağlantıları kabul et (varsayılan: 1) - - Add a node to connect to - Bağlanılacak düğüm ekle + + Set language, for example "de_DE" (default: system locale) + Lisan belirt, mesela "de_De" (varsayılan: sistem dili) - - Connect only to the specified node - Sadece belirtilen düğüme bağlan + + Find peers using DNS lookup (default: 1) + Eşleri DNS araması vasıtasıyla bul (varsayılan: 1) - - Don't accept connections from outside - Dışarıdan bağlantıları reddet + + Use Universal Plug and Play to map the listening port (default: 1) + Dinlenecek portu haritalamak için UPnP kullan (varsayılan: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Dinlenecek portu haritalamak için UPnP kullan (varsayılan: 0) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Kabul edilebilir şifreler (varsayılan: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Warning: Disk space is low + Uyarı: Disk alanı düşük + + + + Maintain at most <n> connections to peers (default: 125) + Eşler ile en çok <n> adet bağlantı kur (varsayılan: 125) - Don't bootstrap list of peers using DNS - Eş listesini DNS kullanarak başlatma + Connect only to the specified node + Sadece belirtilen düğüme bağlan - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + %s veri dizininde kilit elde edilemedi. Bitcoin muhtemelen hâlihazırda çalışmaktadır. + + + 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: 10000) Her bağlantı için alım tamponu, <n>*1000 bayt (varsayılan: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Her bağlantı için yollama tamponu, <n>*1000 bayt (varsayılan: 10000) - - Don't attempt to use UPnP to map the listening port - Dinlenilecek portu haritalamak için UPnP kullanma - - - - Attempt to use UPnP to map the listening port - Dinlenilecek portu haritalamak için UPnP kullan - - - - Fee per kB to add to transactions you send - Yolladığınız muameleler için eklenecek kB başı ücret - - - + Accept command line and JSON-RPC commands Konut satırı ve JSON-RPC komutlarını kabul et - + + 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) + + + 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 İlâve hata ayıklama verisi çıkar - + Prepend debug output with timestamp Hata ayıklama çıktısına tarih ön ekleri ilâve et - + 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 -debugger- trace/hata ayıklama verileri 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: 8332) JSON-RPC bağlantıları için dinlenecek <port> (varsayılan: 8332) - + 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 - + 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 - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL seçenekleri: (SSL kurulum bilgisi için Bitcoin vikisine bakınız) - + 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) - Kabul edilebilir şifreler (varsayılan: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - + This help message Bu yardım mesajı - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - %s veri dizininde kilit elde edilemedi. Bitcoin muhtemelen hâlihazırda çalışmaktadır. - - - + Loading addresses... Adresler 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ış + + + Error loading addr.dat addr.dat dosyasının yüklenmesinde hata oluştu - + Error loading blkindex.dat blkindex.dat dosyasının yüklenmesinde hata oluştu - + Error loading wallet.dat: Wallet corrupted wallet.dat dosyasının yüklenmesinde hata oluştu: bozuk cüzdan - + Error loading wallet.dat: Wallet requires newer version of Bitcoin wallet.dat dosyasının yüklenmesinde hata oluştu: cüzdanın daha yeni bir Bitcoin sürümüne ihtiyacı var - + Wallet needed to be rewritten: restart Bitcoin to complete Cüzdanın tekrar yazılması gerekiyordu: işlemi tamamlamak için Bitcoin'i yeniden başlatınız - + 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 + Keypool başlatılamadı + + + + Cannot write default address + Varsayılan adres yazılamadı + + + + Done loading + Yükleme tamamlandı + + + + Fee per KB to add to transactions you send + Yolladığınız muameleler için eklenecek KB başı ücret + + + + Find peers using internet relay chat (default: 0) + Eşleri Internet Relay Chat vasıtasıyla bul (varsayılan: 0) + + + + How many blocks to check at startup (default: 2500, 0 = all) + Başlangıçta ne kadar blokun denetleneceği (varsayılan: 2500, 0 = tümü) + + + + How thorough the block verification is (0-6, default: 1) + Blok kontrolünün derinliği (0 ilâ 6, varsayılan: 1) + + + Loading block index... Blok indeksi yükleniyor... - + Loading wallet... Cüzdan yükleniyor... - + Rescanning... Yeniden tarama... - - Done loading - Yükleme tamamlandı + + Set database cache size in megabytes (default: 25) + Veritabanı önbellek boyutunu megabayt olarak belirt (varsayılan: 25) - + + Upgrade wallet to latest format + Cüzdanı en yeni biçime güncelle + + + Invalid -proxy address Geçersiz -proxy adresi - + Invalid amount for -paytxfee=<amount> -paytxfee=<miktar> için geçersiz miktar - + 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. - + Error: CreateThread(StartNode) failed Hata: CreateThread(StartNode) başarısız oldu - - Warning: Disk space is low - Uyarı: Disk alanı düşük - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. %d sayılı porta bu bilgisayarda bağlanılamadı. Bitcoin muhtemelen hâlihazırda çalışmaktadır. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Uyarı: Lütfen bilgisayarınızın tarih ve saatinin doğru olup olmadığını kontrol ediniz. Saatiniz doğru değilse Bitcoin gerektiği gibi çalışamaz. - + beta beta diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts index d27087c3aa..29a67a7e19 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -69,21 +69,11 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &Копіювати - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Видалити виділену адресу зі списку. Лише адреси з адресної книги можуть бути видалені. - Show &QR Code Показати QR-&Код - - - &Delete - &Видалити - Sign a message to prove you own this address @@ -94,6 +84,16 @@ This product includes software developed by the OpenSSL Project for use in the O &Sign Message &Підписати повідомлення + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Видалити виділену адресу зі списку. Лише адреси з адресної книги можуть бути видалені. + + + + &Delete + &Видалити + Copy address @@ -115,22 +115,22 @@ This product includes software developed by the OpenSSL Project for use in the O Видалити - + Export Address Book Data Експортувати адресну книгу - + Comma separated file (*.csv) Файли відділені комами (*.csv) - + Error exporting Помилка при експортуванні - + Could not write to file %1. Неможливо записати у файл %1. @@ -155,32 +155,49 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog + + + Decrypt wallet + Дешифрувати гаманець + Dialog Діалог - - + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. + + + TextLabel Текстова мітка - + Enter passphrase Введіть пароль - + New passphrase Новий пароль - + Repeat new passphrase Повторіть пароль + + + + + + Wallet encryption failed + Не вдалося зашифрувати гаманець + 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>. @@ -206,11 +223,6 @@ This product includes software developed by the OpenSSL Project for use in the O This operation needs your wallet passphrase to decrypt the wallet. Ця операція потребує пароль для дешифрування гаманця. - - - Decrypt wallet - Дешифрувати гаманець - Change passphrase @@ -226,13 +238,6 @@ This product includes software developed by the OpenSSL Project for use in the O Confirm wallet encryption Підтвердити шифрування гаманця - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - УВАГА: Якщо ви зашифруєте гаманець і забудете пароль, ви <b>ВТРАТИТЕ ВСІ СВОЇ БІТКОІНИ</b>! -Ви дійсно хочете зашифрувати свій гаманець? - @@ -240,29 +245,22 @@ Are you sure you wish to encrypt your wallet? Гаманець зашифровано - - - Warning: The Caps Lock key is on. - Увага: Ввімкнено Caps Lock + + Wallet passphrase was successfully changed. + Пароль було успішно змінено. - - - - - Wallet encryption failed - Не вдалося зашифрувати гаманець + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + УВАГА: Якщо ви зашифруєте гаманець і забудете пароль, ви <b>ВТРАТИТЕ ВСІ СВОЇ БІТКОІНИ</b>! +Ви дійсно хочете зашифрувати свій гаманець? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Виникла помилка під час шифрування гаманця. Ваш гаманець не було зашифровано. - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. - @@ -287,216 +285,207 @@ Are you sure you wish to encrypt your wallet? Не вдалося розшифрувати гаманець - - Wallet passphrase was succesfully changed. - Пароль було успішно змінено. + + + Warning: The Caps Lock key is on. + Увага: Ввімкнено Caps Lock BitcoinGUI - + + Send coins to a bitcoin address + Відправити монети на вказану адресу + + + Bitcoin Wallet Гаманець - - + + Synchronizing with network... Синхронізація з мережею... - + Block chain synchronization in progress Відбувається синхронізація ланцюжка блоків... - + &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 В&ідправити - - Send coins to a bitcoin address - Відправити монети на вказану адресу - - - + Sign &message &Підписати повідомлення - - Prove you control an address - Доведіть, що це ваша адреса - - - + E&xit &Вихід - + Quit application Вийти - + &About %1 П&ро %1 - + Show information about Bitcoin Показати інформацію про Bitcoin - + &Options... &Параметри... - + Modify configuration options for bitcoin Редагувати параметри - + Open &Bitcoin Показати &гаманець - + Show the Bitcoin window Показати вікно гаманця - + &Export... &Експорт... - + &Encrypt Wallet &Шифрування гаманця - + Encrypt or decrypt wallet Зашифрувати чи розшифрувати гаманець - + + &Backup Wallet + &Резервне копіювання гаманця + + + &Change Passphrase Змінити парол&ь - + Change the passphrase used for wallet encryption Змінити пароль, який використовується для шифрування гаманця - + About &Qt &Про Qt - - Show information about Qt - Показати інформацію про Qt + + Prove you control an address + Доведіть, що це ваша адреса - Export the data in the current tab to a file - - - - - &Backup Wallet - &Backup гаманця + Show information about Qt + Показати інформацію про Qt - - Backup wallet to another location - + + Backup Wallet + Резервне копіювання гаманця - - &File - &Файл + + Wallet Data (*.dat) + Дані гаманця (*.dat) - - &Settings - &Налаштування + + Backup Failed + Резервне копіювання не вдалося - - &Help - &Довідка + + There was an error trying to save the wallet data to the new location. + Виникла помилка при спробі зберегти гаманець в новому місці - - Tabs toolbar - Панель вкладок + + &File + &Файл - + Actions toolbar Панель дій - + [testnet] [тестова мережа] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network %n активне з’єднання з мережею @@ -505,17 +494,22 @@ Are you sure you wish to encrypt your wallet? - - Downloaded %1 of %2 blocks of transaction history. - Завантажено %1 з %2 блоків історії переказів. + + bitcoin-qt + bitcoin-qt - + Downloaded %1 blocks of transaction history. Завантажено %1 блоків історії транзакцій. + + + Downloaded %1 of %2 blocks of transaction history. + Завантажено %1 з %2 блоків історії переказів. + - + %n second(s) ago %n секунду тому @@ -524,7 +518,7 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago %n хвилину тому @@ -533,7 +527,7 @@ Are you sure you wish to encrypt your wallet? - + %n hour(s) ago %n годину тому @@ -542,7 +536,7 @@ Are you sure you wish to encrypt your wallet? - + %n day(s) ago %n день тому @@ -551,42 +545,42 @@ Are you sure you wish to encrypt your wallet? - + 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, яка відправиться тим вузлам що оброблять ваш переказ, та допоможе підтримати мережу. Ви хочете додати комісію? - + Sending... Відправлення... - + Sent transaction Надіслані перекази - + Incoming transaction Отримані перекази - + Date: %1 Amount: %2 Type: %3 @@ -599,60 +593,65 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> <b>Зашифрований</b> гаманець <b>розблоковано</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> <b>Зашифрований</b> гаманець <b>заблоковано</b> - - Backup Wallet - + + Export the data in the current tab to a file + Експортувати дані з поточної вкладки в файл - - Wallet Data (*.dat) - + + Backup wallet to another location + Резервне копіювання гаманця в інше місце - - Backup Failed - + + &Settings + &Налаштування - - There was an error trying to save the wallet data to the new location. - + + &Help + &Довідка + + + + Tabs toolbar + Панель вкладок - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: В&имірювати монети в: - + Choose the default subdivision unit to show in the interface, and when sending coins Виберіть одиницю вимірювання монет, яка буде відображатись в гаманці та при відправленні. - + &Display addresses in transaction list &Відображати адресу в списку переказів - + Whether to show Bitcoin addresses in the transaction list @@ -704,16 +703,6 @@ Address: %4 Edit sending address Редагувати адресу для відправлення - - - The entered address "%1" is already in the address book. - Введена адреса «%1» вже присутня в адресній книзі. - - - - The entered address "%1" is not a valid bitcoin address. - Введена адреса «%1» не є коректною адресою в мережі Bitcoin. - Could not unlock wallet. @@ -724,6 +713,16 @@ Address: %4 New key generation failed. Не вдалося згенерувати нові ключі. + + + The entered address "%1" is already in the address book. + Введена адреса «%1» вже присутня в адресній книзі. + + + + The entered address "%1" is not a valid bitcoin address. + Введена адреса «%1» не є коректною адресою в мережі Bitcoin. + MainOptionsPage @@ -774,8 +773,8 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Підключатись до мережі Bitcoin через SOCKS4-проксі (наприклад при використанні Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Підключатись до мережі Bitcoin через SOCKS4-проксі (наприклад при використанні Tor) @@ -785,7 +784,7 @@ Address: %4 IP address of the proxy (e.g. 127.0.0.1) - IP-адреса проксі-сервера (наприклад 127.0.0.1) + IP-адреса проксі-сервера (наприклад 127.0.0.1) @@ -799,18 +798,13 @@ Address: %4 - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Добровільна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Добровільна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. Pay transaction &fee - Заплатити комісі&ю - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Добровільна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. + Заплатити комісі&ю @@ -835,16 +829,16 @@ Address: %4 Choose adress from address book Вибрати адресу з адресної книги - - - Alt+A - Alt+A - Paste address from clipboard Вставити адресу + + + Alt+A + Alt+A + Alt+P @@ -923,69 +917,74 @@ Address: %4 OverviewPage + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Загальна сума всіх переказів, які ще не підтверджені, та до сих пір не враховуються в загальному балансі + + + + <b>Recent transactions</b> + <b>Недавні перекази</b> + Form Форма + + + Your current balance + Ваш поточний баланс + + + + Total number of transactions in wallet + Загальна кількість переказів в гаманці + + + + 0 + 0 + Balance: Баланс: - - - 123.456 BTC - 123.456 BTC - Number of transactions: Кількість переказів: - - - 0 - 0 - Unconfirmed: Непідтверджені: - - - 0 BTC - 0 BTC - Wallet Гаманець + + + QRCodeDialog - - <b>Recent transactions</b> - <b>Недавні перекази</b> + + Amount: + Кількість: - - Your current balance - Ваш поточний баланс + + Label: + Мітка: - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Загальна сума всіх переказів, які ще не підтверджені, та до сих пір не враховуються в загальному балансі - - - - Total number of transactions in wallet - Загальна кількість переказів в гаманці + + &Save As... + &Зберегти як... - - - QRCodeDialog Dialog @@ -1001,31 +1000,16 @@ Address: %4 Request Payment Запросити Платіж - - - Amount: - Кількість: - BTC BTC - - - Label: - Мітка: - Message: Повідомлення: - - - &Save As... - &Зберегти як... - Error encoding URI into QR Code. @@ -1046,13 +1030,13 @@ Address: %4 SendCoinsDialog - - - - - - - + + + + + + + Send Coins Відправити @@ -1066,16 +1050,6 @@ Address: %4 &Add recipient... Дод&ати одержувача... - - - Clear all - Очистити все - - - - Remove all transaction fields - Видалити всі поля транзакції - Balance: @@ -1097,63 +1071,78 @@ Address: %4 &Відправити - + + Remove all transaction fields + Видалити всі поля транзакції + + + <b>%1</b> to %2 (%3) <b>%1</b> адресату %2 (%3) - + + Clear all + Очистити все + + + Confirm send coins Підтвердіть відправлення - + Are you sure you want to send %1? Ви впевнені що хочете відправити %1 - + and і - - The recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. Адреса отримувача невірна, будьласка перепровірте. - + The amount to pay must be larger than 0. Кількість монет для відправлення повинна бути більшою 0. - - Amount exceeds your balance - Кількість монет для відправлення перевищує ваш баланс + + The amount exceeds your balance. + Кількість монет для відправлення перевищує ваш баланс. - - Total exceeds your balance when the %1 transaction fee is included - Сума перевищить ваш баланс, якщо комісія %1 буде додана до вашого переказу + + The total exceeds your balance when the %1 transaction fee is included. + Сума перевищить ваш баланс, якщо комісія %1 буде додана до вашого переказу. - - Duplicate address found, can only send to each address once in one 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. Помилка: переказ було відхилено. Це може статись, якщо декілька монет з вашого гаманця вже використані, наприклад, якщо ви використовуєте одну копію гаманця (wallet.dat), а монети були використані з іншої копії, але не позначені як використані в цій. SendCoinsEntry + + + Pay &To: + &Отримувач: + Form @@ -1164,11 +1153,6 @@ Address: %4 A&mount: &Кількість: - - - Pay &To: - &Отримувач: - @@ -1218,16 +1202,16 @@ Address: %4 TransactionDesc + + + %1 confirmations + %1 підтверджень + Open for %1 blocks Відкрити для %1 блоків - - - Open until %1 - Відкрити до %1 - %1/offline? @@ -1238,20 +1222,10 @@ Address: %4 %1/unconfirmed %1/не підтверджено - - - %1 confirmations - %1 підтверджень - <b>Status:</b> - <b>Статус:</b> - - - - , has not been successfully broadcast yet - , ще не було успішно розіслано + <b>Статус:</b> @@ -1266,7 +1240,7 @@ Address: %4 <b>Date:</b> - <b>Дата:</b> + <b>Дата:</b> @@ -1289,13 +1263,48 @@ Address: %4 <b>To:</b> - <b>Одержувач:</b> + <b>Одержувач:</b> (yours, label: (Ваша, мітка: + + + <b>Net amount:</b> + <b>Загальна сума:</b> + + + + Message: + Повідомлення: + + + + Comment: + Коментар: + + + + Transaction ID: + ID транзакції: + + + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Після генерації монет, потрібно зачекати 120 блоків, перш ніж їх можна буде використати. Коли ви згенерували цей блок, його було відправлено в мережу для того, щоб він був доданий до ланцюжка блоків. Якщо ця процедура не вдасться, статус буде змінено на «не підтверджено» і ви не зможете потратити згенеровані монету. Таке може статись, якщо хтось інший згенерував блок на декілька секунд раніше. + + + + Open until %1 + Відкрити до %1 + + + + , has not been successfully broadcast yet + , ще не було успішно розіслано + (yours) @@ -1307,7 +1316,7 @@ Address: %4 <b>Credit:</b> - <b>Кредит:</b> + <b>Кредит:</b> @@ -1324,38 +1333,13 @@ Address: %4 <b>Debit:</b> - <b>Дебет:</b> + <b>Дебет:</b> <b>Transaction fee:</b> <b>Комісія за переказ:</b> - - - <b>Net amount:</b> - <b>Загальна сума:</b> - - - - Message: - Повідомлення: - - - - Comment: - Коментар: - - - - Transaction ID: - ID транзакції: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Після генерації монет, потрібно зачекати 120 блоків, перш ніж їх можна буде використати. Коли ви згенерували цей блок, його було відправлено в мережу для того, щоб він був доданий до ланцюжка блоків. Якщо ця процедура не вдасться, статус буде змінено на «не підтверджено» і ви не зможете потратити згенеровані монету. Таке може статись, якщо хтось інший згенерував блок на декілька секунд раніше. - TransactionDescDialog @@ -1393,7 +1377,7 @@ Address: %4 Кількість - + Open for %n block(s) Відкрити для %n блоку @@ -1402,153 +1386,102 @@ Address: %4 - + Open until %1 Відкрити до %1 - + Offline (%1 confirmations) Поза інтернетом (%1 підтверджень) - + Unconfirmed (%1 of %2 confirmations) Непідтверджено (%1 із %2 підтверджень) - + Confirmed (%1 confirmations) Підтверджено (%1 підтверджень) - - - Mined balance will be available in %n more blocks - - Добутими монетами можна буде скористатись через %n блок - Добутими монетами можна буде скористатись через %n блоки - Добутими монетами можна буде скористатись через %n блоків - - - + 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. Сума, додана чи знята з балансу. + + + Mined balance will be available in %n more blocks + + Добутими монетами можна буде скористатись через %n блок + Добутими монетами можна буде скористатись через %n блоки + Добутими монетами можна буде скористатись через %n блоків + + TransactionView - - - - All - Всі - - - - Today - Сьогодні - - - - This week - На цьому тижні - - - - This month - На цьому місяці - - - - Last month - Минулого місяця - - - - This year - Цього року - - - - Range... - Проміжок - - - - Received with - Отримані на - - - - Sent to - Відправлені на - - - - To yourself - Відправлені собі - Mined @@ -1579,85 +1512,136 @@ Address: %4 Copy label Скопіювати мітку - - - Copy amount - Копіювати кількість - Edit label Редагувати мітку - - Show details... - Показати деталі... - - - + Export Transaction Data Експортувати дані переказів - + Comma separated file (*.csv) Файли, розділені комою (*.csv) - + Confirmed Підтверджені - + Date Дата - - Type - Тип + + to + до - + Label Мітка - + Address Адреса - + + Today + Сьогодні + + + + This week + На цьому тижні + + + + This month + На цьому місяці + + + + Last month + Минулого місяця + + + + This year + Цього року + + + + Range... + Проміжок + + + + Received with + Отримані на + + + + Sent to + Відправлені на + + + + To yourself + Відправлені собі + + + + + All + Всі + + + + Copy amount + Копіювати кількість + + + Amount Кількість - + ID Ідентифікатор - + Error exporting Помилка експорту - + Could not write to file %1. Неможливо записати у файл %1 - + Range: Діапазон від: - - to - до + + Show details... + Показати деталі... + + + + Type + Тип @@ -1670,26 +1654,145 @@ Address: %4 bitcoin-core - - - Bitcoin version - Версія - Usage: Вкористання: + + + Show splash screen on startup (default: 1) + + + + + Set database cache size in megabytes (default: 25) + + + + + Add a node to connect to and attempt to keep the connection open + Додати вузол для підключення and attempt to keep the connection open + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) + + + + + Use Universal Plug and Play to map the listening port (default: 1) + Намагатись використовувати UPnP для відображення порту що прослуховується на роутері (default: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Намагатись використовувати UPnP для відображення порту що прослуховується на роутері (default: 0) + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Неможливо встановити блокування на робочий каталог %s. Можливо, гаманець вже запущено. + + + + Loading addresses... + Завантаження адрес... + + + + Loading block index... + Завантаження індексу блоків... + + + + Loading wallet... + Завантаження гаманця... + + + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Rescanning... + Сканування... + + + + Done loading + Завантаження завершене + + + + Error: CreateThread(StartNode) failed + Помилка: CreateThread(StartNode) дала збій + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Неможливо прив’язати до порту %d на цьому комп’ютері. Молживо гаманець вже запущено. + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Увага: будь ласка, перевірте дату і час на свому комп’ютері. Якщо ваш годинник йде неправильно, Bitcoin може працювати некоректно. + + + + beta + бета + Send command to -server or bitcoind Відправити команду серверу -server чи демону - - - - - List commands - Список команд @@ -1722,6 +1825,11 @@ Address: %4 Генерувати монети + + + Invalid -proxy address + Помилка в адресі проксі-сервера + Don't generate coins @@ -1729,322 +1837,250 @@ Address: %4 - - Start minimized - Запускати згорнутим - - - - + Specify data directory Вкажіть робочий каталог - + Specify connection timeout (in milliseconds) Вкажіть таймаут з’єднання (в мілісекундах) - - Connect through socks4 proxy - Підключитись через SOCKS4-проксі - - - - - Allow DNS lookups for addnode and connect - Дозволити пошук в DNS для команд «addnode» і «connect» - - - - + Listen for connections on <port> (default: 8333 or testnet: 18333) Чекати на з'єднання на порту (по замовченню 8333 або тестова мережа 18333) - + Maintain at most <n> connections to peers (default: 125) Підтримувати не більше <n> зв'язків з колегами (за замовчуванням: 125) - - Add a node to connect to - Додати вузол для підключення - - - - - Connect only to the specified node - Підключитись лише до вказаного вузла + + Accept command line and JSON-RPC commands + Приймати команди із командного рядка та команди JSON-RPC - - Don't accept connections from outside - Не приймати підключення ззовні + + Run in the background as a daemon and accept commands + Запустити в фоновому режимі (як демон) та приймати команди - - Don't bootstrap list of peers using DNS - Не завантажувати список пірів за допомогою DNS - - - + 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: 10000) - Максимальоий буфер , <n> * 1000 байт (за умовчанням: 10000) - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Максимальній розмір виіхідного буферу на одне з'єднання (за замовчуванням 10000) - - - - Don't attempt to use UPnP to map the listening port - Не намагатись використовувати UPnP для відображення порту що прослуховується на роутері - - - - - Attempt to use UPnP to map the listening port - Намагатись використовувати UPnP для відображення порту що прослуховується на роутері + + Start minimized + Запускати згорнутим - - Fee per kB to add to transactions you send - Комісія за Кб - - - - Accept command line and JSON-RPC commands - Приймати команди із командного рядка та команди JSON-RPC - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Максимальній розмір вхідного буферу на одне з'єднання (за замовчуванням 86400) - - Run in the background as a daemon and accept commands - Запустити в фоновому режимі (як демон) та приймати команди + + Connect through socks4 proxy + Підключитись через SOCKS4-проксі - - Use the test network - Використовувати тестову мережу + + Allow DNS lookups for addnode and connect + Дозволити пошук в DNS для команд «addnode» і «connect» - - Output extra debugging information - Виводити більше налагоджувальної інформації - - - + Prepend debug output with timestamp Доповнювати налагоджувальний вивід відміткою часу - + 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: 8332) Прослуховувати <port> для JSON-RPC-з’єднань (за промовчуванням: 8332) - - 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) - - - - - Set key pool size to <n> (default: 100) - Встановити розмір пулу ключів <n> (за промовчуванням: 100) - - - - - Rescan the block chain for missing wallet transactions - Пересканувати ланцюжок блоків, в пошуку втрачених переказів - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Максимальоий буфер , <n> * 1000 байт (за умовчанням: 10000) - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -Параметри SSL: (див. Bitcoin Wiki) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Максимальній розмір виіхідного буферу на одне з'єднання (за замовчуванням 10000) - + 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) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Неможливо встановити блокування на робочий каталог %s. Можливо, гаманець вже запущено. - - - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Допустимі шифри (за промовчуванням: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Loading addresses... - Завантаження адрес... + + Error loading wallet.dat: Wallet corrupted + Помилка при завантаженні wallet.dat: Гаманець пошкоджено - - This help message - Дана довідка - + + Wallet needed to be rewritten: restart Bitcoin to complete + Потрібно перезаписати гаманець: перезапустіть Біткоін-клієнт для завершення - - Loading block index... - Завантаження індексу блоків... + + Output extra debugging information + Виводити більше налагоджувальної інформації - - Loading wallet... - Завантаження гаманця... + + Error loading addr.dat + Помилка при завантаженні addr.dat - - Rescanning... - Сканування... + + Invalid amount for -paytxfee=<amount> + Помилка у величині комісії - - Error loading addr.dat - Помилка при завантаженні addr.dat + + List commands + Список команд + - - Error loading blkindex.dat - Помилка при завантаженні blkindex.dat + + Bitcoin version + Версія - - Error loading wallet.dat: Wallet corrupted - Помилка при завантаженні wallet.dat: Гаманець пошкоджено + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + Увага: встановлено занадто велику комісію (-paytxfee). Комісія зніматиметься кожен раз коли ви проводитимете перекази. - - Done loading - Завантаження завершене + + Connect only to the specified node + Підключитись лише до вказаного вузла + - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Помилка при завантаженні wallet.dat: Гаманець потребує новішої версії Біткоін-клієнта + + Use the test network + Використовувати тестову мережу + - - Invalid -proxy address - Помилка в адресі проксі-сервера + + Password for JSON-RPC connections + Пароль для JSON-RPC-з’єднань + - - Wallet needed to be rewritten: restart Bitcoin to complete - Потрібно перезаписати гаманець: перезапустіть Біткоін-клієнт для завершення + + Allow JSON-RPC connections from specified IP address + Дозволити JSON-RPC-з’єднання з вказаної IP-адреси + - - Invalid amount for -paytxfee=<amount> - Помилка у величині комісії + + Send commands to node running on <ip> (default: 127.0.0.1) + Відправляти команди на вузол, запущений на <ip> (за промовчуванням: 127.0.0.1) + - - Error loading wallet.dat - Помилка при завантаженні wallet.dat + + Set key pool size to <n> (default: 100) + Встановити розмір пулу ключів <n> (за промовчуванням: 100) + - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - Увага: встановлено занадто велику комісію (-paytxfee). Комісія зніматиметься кожен раз коли ви проводитимете перекази. + + Rescan the block chain for missing wallet transactions + Пересканувати ланцюжок блоків, в пошуку втрачених переказів + - - Error: CreateThread(StartNode) failed - Помилка: CreateThread(StartNode) дала збій + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +Параметри SSL: (див. Bitcoin Wiki) + - - Warning: Disk space is low - Увага: На диску мало вільного місця + + This help message + Дана довідка + + + + + Error loading blkindex.dat + Помилка при завантаженні blkindex.dat + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Помилка при завантаженні wallet.dat: Гаманець потребує новішої версії Біткоін-клієнта - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Неможливо прив’язати до порту %d на цьому комп’ютері. Молживо гаманець вже запущено. + Error loading wallet.dat + Помилка при завантаженні wallet.dat - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Увага: будь ласка, перевірте дату і час на свому комп’ютері. Якщо ваш годинник йде неправильно, Bitcoin може працювати некоректно. + + Warning: Disk space is low + Увага: На диску мало вільного місця - - beta - бета + + Fee per KB to add to transactions you send + Комісія за Кб + diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index bed8c3603f..a9875e5205 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -37,7 +37,7 @@ This product includes software developed by the OpenSSL Project for use in the O Address Book - 地址薄 + 地址簿 @@ -69,30 +69,30 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &复制到剪贴板 - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - 从列表中删除当前选中地址。只有发送地址可以被删除。 - Show &QR Code 显示二维码 - - - &Delete - &删除 - Sign a message to prove you own this address - 发送签名消息以证明您是该比特币地址的拥有者 + 发送签名消息以证明您是该比特币地址的拥有者 &Sign Message - &发送签名消息 + &发送签名消息 + + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + 从列表中删除当前选中地址。只有发送地址可以被删除。 + + + + &Delete + &删除 @@ -107,7 +107,12 @@ This product includes software developed by the OpenSSL Project for use in the O Edit - 编辑 + 编辑 + + + + Export Address Book Data + 导出地址簿数据 @@ -115,28 +120,28 @@ This product includes software developed by the OpenSSL Project for use in the O 删除 - - Export Address Book Data - 导出地址薄数据 - - - + Comma separated file (*.csv) 逗号分隔文件 (*.csv) - + Error exporting 导出错误 - + Could not write to file %1. 无法写入文件 %1。 AddressTableModel + + + (no label) + (没有标签) + Label @@ -147,50 +152,67 @@ This product includes software developed by the OpenSSL Project for use in the O Address 地址 - - - (no label) - (没有标签) - AskPassphraseDialog - - Dialog - 会话 + + Decrypt wallet + 解密钱包 - - - TextLabel - 文本标签 + + This operation needs your wallet passphrase to decrypt the wallet. + 该操作需要您首先使用口令解密钱包。 + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的比特币还是有可能丢失。 + + + + Dialog + 会话 - + Enter passphrase 输入口令 - + New passphrase 新口令 - - Repeat new passphrase - 重复新口令 + + + + + Wallet encryption failed + 钱包加密失败 - - 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>。 + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + 由于一个本地错误,加密钱包操作已经失败。您的钱包没有被加密。 + + + + TextLabel + 文本标签 Encrypt wallet 加密钱包 + + + Repeat new passphrase + 重复新口令 + This operation needs your wallet passphrase to unlock the wallet. @@ -202,67 +224,26 @@ This product includes software developed by the OpenSSL Project for use in the O 解锁钱包 - - This operation needs your wallet passphrase to decrypt the wallet. - 该操作需要您首先使用口令解密钱包。 - - - - Decrypt wallet - 解密钱包 + + 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>。 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 BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - 警告:如果您加密了您的钱包之后忘记了口令,您将会<b>失去所有的比特币</b>! -确定要加密钱包吗? - Wallet encrypted 钱包已加密 - - - - Warning: The Caps Lock key is on. - 警告:大写锁定键CapsLock开启 - - - - - - - Wallet encryption failed - 钱包加密失败 - - - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - 由于一个本地错误,加密钱包操作已经失败。您的钱包没有被加密。 - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的比特币还是有可能丢失。 - @@ -288,295 +269,308 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. 钱包口令修改成功 + + + + Warning: The Caps Lock key is on. + 警告:大写锁定键CapsLock开启 + + + + Enter the old and new passphrase to the wallet. + 请输入钱包的旧口令与新口令。 + + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + 警告:如果您加密了您的钱包之后忘记了口令,您将会<b>失去所有的比特币</b>! +确定要加密钱包吗? + BitcoinGUI - - Bitcoin Wallet - 比特币钱包 + + Backup Wallet + 备份钱包 + + + + Wallet Data (*.dat) + 钱包文件(*.dat) + + + + Backup Failed + 备份失败 + + + + Send coins to a bitcoin address + 将货币发送到一个比特币地址 - - + + Synchronizing with network... 正在与网络同步... - + Block chain synchronization in progress 正在同步区域锁链 - + &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 &发送货币 - - Send coins to a bitcoin address - 将货币发送到一个比特币地址 - - - - Sign &message - 发送签名 &消息 - - - + Prove you control an address 证明您拥有某个比特币地址 - + E&xit 退出 - + Quit application 退出程序 - - &About %1 - &关于 %1 - - - + Show information about Bitcoin 显示比特币的相关信息 - - &Options... - &选项... + + About &Qt + 关于 &Qt - - Modify configuration options for bitcoin - 修改比特币配置选项 + + Show information about Qt + 显示Qt相关信息 - - Open &Bitcoin - 打开 &比特币 + + &Options... + &选项... - - Show the Bitcoin window - 显示比特币窗口 + + Sign &message + 发送签名 &消息 - - &Export... - &导出... + + Export the data in the current tab to a file + 导出当前数据到文件 - - &Encrypt Wallet - &加密钱包 + + &About %1 + &关于 %1 - - Encrypt or decrypt wallet - 加密或解密钱包 + + Open &Bitcoin + 打开 &比特币 - &Change Passphrase - &修改口令 - - - - Change the passphrase used for wallet encryption - 修改钱包加密口令 - - - - About &Qt - 关于 &Qt - - - - Show information about Qt - 显示Qt相关信息 + Show the Bitcoin window + 显示比特币窗口 - - Export the data in the current tab to a file - 导出当前数据到文件 + + Encrypt or decrypt wallet + 加密或解密钱包 - + &Backup Wallet &备份钱包 - + Backup wallet to another location 备份钱包到其它文件夹 - + + Change the passphrase used for wallet encryption + 修改钱包加密口令 + + + &File &文件 - + &Settings &设置 - + &Help &帮助 - + Tabs toolbar 分页工具栏 - + Actions toolbar 动作工具栏 - + [testnet] [testnet] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network - %n 个到比特币网络的活动连接 + 您连接到比特币网络的连接数量共有%n条 - + + Modify configuration options for bitcoin + 修改比特币配置选项 + + + + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. %1 / %2 个交易历史的区块已下载 - + Downloaded %1 blocks of transaction history. - %1 个交易历史的区块已下载 + %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 交易费, 交易费将支付给处理该笔交易的网络节点,有助于维持比特币网络的运行. 您愿意支付交易费用吗? - - Sending... - 发送中 - + + &Change Passphrase + &修改口令 + - + Sent transaction 已发送交易 - + Incoming transaction 流入交易 - + Date: %1 Amount: %2 Type: %3 @@ -589,66 +583,76 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> 钱包已被<b>加密</b>,当前为<b>解锁</b>状态 - + Wallet is <b>encrypted</b> and currently <b>locked</b> 钱包已被<b>加密</b>,当前为<b>锁定</b>状态 - - Backup Wallet - 备份钱包 + + &Export... + &导出... - - Wallet Data (*.dat) - 钱包文件(*.dat) + + There was an error trying to save the wallet data to the new location. + 备份钱包到其它文件夹失败. - - Backup Failed - 备份失败 + + Sending... + 发送中 - - There was an error trying to save the wallet data to the new location. - 备份钱包到其它文件夹失败. + + &Encrypt Wallet + &加密钱包 + + + + Bitcoin Wallet + 比特币钱包 - - A fatal error occured. Bitcoin can no longer continue safely and will quit. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. DisplayOptionsPage - + &Unit to show amounts in: &金额显示单位: - + Choose the default subdivision unit to show in the interface, and when sending coins 选择显示及发送比特币时使用的最小单位 - + &Display addresses in transaction list &在交易列表中显示地址 - + Whether to show Bitcoin addresses in the transaction list - + 是否需要在交易清单中显示比特币地址。 EditAddressDialog + + + The label associated with this address book entry + 与此地址条目关联的标签 + Edit Address @@ -659,11 +663,6 @@ Address: %4 &Label &标签 - - - The label associated with this address book entry - 与此地址条目关联的标签 - &Address @@ -697,12 +696,7 @@ Address: %4 The entered address "%1" is already in the address book. - 输入的地址 "%1" 已经存在于地址薄。 - - - - The entered address "%1" is not a valid bitcoin address. - 输入的地址 "%1" 并不是一个有效的比特币地址 + 输入的地址 "%1" 已经存在于地址簿。 @@ -714,6 +708,11 @@ Address: %4 New key generation failed. 密钥创建失败. + + + The entered address "%1" is not a valid bitcoin address. + 输入的地址 "%1" 并不是一个有效的比特币地址 + MainOptionsPage @@ -764,7 +763,7 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) 通过一个SOCKS4代理连接到比特币网络 (如使用Tor连接时) @@ -775,32 +774,27 @@ Address: %4 IP address of the proxy (e.g. 127.0.0.1) - 代理服务器IP (如 127.0.0.1) + 代理服务器IP (如 127.0.0.1) &Port: - &端口: + &端口: Port of the proxy (e.g. 1234) - 代理端口 (比如 1234) + 代理端口(例如 9050) {1234)?} - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - 建议支付交易费用,有助于您的交易得到尽快处理. 绝大多数交易的字节数为 1 kB. 建议支付0.01个比特币. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + 建议支付交易费用,有助于您的交易得到尽快处理. 绝大多数交易的字节数为 1 kB. 建议支付0.01个比特币. Pay transaction &fee - 支付交易 &费用 - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - 建议支付交易费用,有助于您的交易得到尽快处理. 绝大多数交易的字节数为 1 kB. 建议支付0.01个比特币. + 支付交易 &费用 @@ -845,6 +839,11 @@ Address: %4 Enter the message you want to sign here 请输入您要发送的签名消息 + + + Copy the current signature to the system clipboard + 复制当前签名至剪切板 + Click "Sign Message" to get signature @@ -860,11 +859,6 @@ Address: %4 &Sign Message &发送签名消息 - - - Copy the current signature to the system clipboard - - &Copy to Clipboard @@ -903,7 +897,7 @@ Address: %4 Display - 查看 + 显示 @@ -924,40 +918,20 @@ Address: %4 余额 - - 123.456 BTC - 123.456 BTC + + Wallet + 钱包 Number of transactions: 交易笔数 - - - 0 - 0 - Unconfirmed: 未确认: - - - 0 BTC - 0 BTC - - - - Wallet - 钱包 - - - - <b>Recent transactions</b> - <b>当前交易</b> - Your current balance @@ -973,19 +947,19 @@ Address: %4 Total number of transactions in wallet 钱包总交易数量 - - - QRCodeDialog - - Dialog - 会话 + + <b>Recent transactions</b> + <b>最近交易记录</b> - - QR Code - 二维码 + + 0 + 0 + + + QRCodeDialog Request Payment @@ -996,11 +970,6 @@ Address: %4 Amount: 金额: - - - BTC - BTC - Label: @@ -1016,33 +985,48 @@ Address: %4 &Save As... &另存为 + + + PNG Images (*.png) + PNG图像文件(*.png) + + + + Dialog + 会话 + + + + QR Code + 二维码 + + + + BTC + BTC + Error encoding URI into QR Code. - + 将 URI 转换成二维码失败. Save Image... 保存图像... - - - PNG Images (*.png) - PNG图像文件(*.png) - SendCoinsDialog - - - - - - - + + + + + + + Send Coins 发送货币 @@ -1051,16 +1035,6 @@ Address: %4 Send to multiple recipients at once 一次发送给多个接收者 - - - &Add recipient... - &添加接收者... - - - - Clear all - 清除全部 - Remove all transaction fields @@ -1069,12 +1043,7 @@ Address: %4 Balance: - 余额 - - - - 123.456 BTC - 123.456 BTC + 余额: @@ -1087,63 +1056,83 @@ Address: %4 &发送 - + <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 recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. 接收者地址不合法,请检查。 - + The amount to pay must be larger than 0. 支付金额必须大于0. - - Amount exceeds your balance - 余额不足。 + + &Add recipient... + &添加接收者... - - Total exceeds your balance when the %1 transaction fee is included - 计入 %1 的交易费后,您的余额不足以支付总价。 + + Clear all + 清除全部 - - Duplicate address found, can only send to each address once in one send operation - 发现重复地址,一次操作中只可以给每个地址发送一次 + + 123.456 BTC + 123.456 BTC - - Error: Transaction creation failed + + 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的副本,而货币在那个副本中已经被消费,但在当前钱包中未被标记为已消费。 + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + 错误: 交易被拒绝. 如果您使用的是备份钱包,可能存在两个钱包不同步的情况,另一个钱包中的比特币已经被使用,但本地的这个钱包尚没有记录。 SendCoinsEntry + + + Alt+A + Alt+A + Form @@ -1157,7 +1146,7 @@ Address: %4 Pay &To: - 支付 &到: + 付款&给: @@ -1178,12 +1167,7 @@ Address: %4 Choose address from address book - 从地址薄选择地址 - - - - Alt+A - Alt+A + 从地址簿选择地址 @@ -1208,6 +1192,17 @@ Address: %4 TransactionDesc + + + + <b>From:</b> + <b>从:</b> + + + + %1/offline? + %1/离线? + Open for %1 blocks @@ -1218,11 +1213,6 @@ Address: %4 Open until %1 至 %1 个数据块时开启 - - - %1/offline? - %1/离线? - %1/unconfirmed @@ -1236,7 +1226,7 @@ Address: %4 <b>Status:</b> - <b>状态:</b> + <b>状态:</b> @@ -1246,7 +1236,7 @@ Address: %4 , broadcast through %1 node - ,同过 %1 节点广播 + ,同过 %1 节点组广播 @@ -1256,19 +1246,13 @@ Address: %4 <b>Date:</b> - <b>日期:</b> + <b>日期:</b> <b>Source:</b> Generated<br> <b>来源:</b> 生成<br> - - - - <b>From:</b> - <b>从:</b> - unknown @@ -1279,7 +1263,7 @@ Address: %4 <b>To:</b> - <b>到:</b> + <b>到:</b> @@ -1314,12 +1298,12 @@ Address: %4 <b>Debit:</b> - 支出 + <b>支出:</b> <b>Transaction fee:</b> - 交易费 + <b>交易费:</b> @@ -1352,12 +1336,12 @@ Address: %4 Transaction details - 交易细节 + 交易明细 This pane shows a detailed description of the transaction - 当前面板显示了交易的详细描述 + 当前面板显示了交易的详细信息 @@ -1383,128 +1367,112 @@ Address: %4 数量 - + Open for %n block(s) 开启 %n 个数据块 - + Open until %1 至 %1 个数据块时开启 - + Offline (%1 confirmations) 离线 (%1 个确认项) - + Unconfirmed (%1 of %2 confirmations) 未确认 (%1 / %2 条确认信息) - + Confirmed (%1 confirmations) 已确认 (%1 条确认信息) - - - Mined balance will be available in %n more blocks - - 挖矿所得将在 %n 个数据块之后可用 - - - + 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. - 从余额添加或移除的金额 + 从余额添加或移除的金额。 + + + + Mined balance will be available in %n more blocks + + 挖矿所得将在 %n 个数据块之后可用 + TransactionView - - - - All - 全部 - - - - Today - 今天 - This week 本周 - - - This month - 本月 - Last month @@ -1515,46 +1483,21 @@ Address: %4 This year 今年 - - - Range... - 范围... - Received with 接收于 - - - Sent to - 发送到 - To yourself 到自己 - - - Mined - 挖矿所得 - - - - Other - 其他 - Enter address or label to search 输入地址或标签进行搜索 - - - Min amount - 最小金额 - Copy address @@ -1565,85 +1508,126 @@ Address: %4 Copy label 复制标签 + + + to + + Copy amount 复制金额 + + + + All + 全部 + + + + Today + 今天 + Edit label 编辑标签 - - Show 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 - + + This month + 本月 + + + + Range... + 范围... + + + + Sent to + 发送到 + + + + Mined + 挖矿所得 + + + + Other + 其他 + + + + Min amount + 最小金额 + + + + Show details... + 显示细节... @@ -1661,6 +1645,50 @@ Address: %4 Bitcoin version 比特币版本 + + + Upgrade wallet to latest format + 将钱包升级到最新的格式 + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + 无法给数据目录 %s 加锁。比特币进程可能已在运行。 + + + + Loading block index... + 加载区块索引... + + + + Rescanning... + 正在重新扫描... + + + + Run in the background as a daemon and accept commands + 在后台运行并接受命令 + + + + + + Set database cache size in megabytes (default: 25) + 设置数据库缓冲区大小 (缺省: 25MB) + + + + Specify connection timeout (in milliseconds) + 指定连接超时时间 (微秒) + + + + + Specify pid file (default: bitcoind.pid) + 指定 pid 文件 (默认为 bitcoind.pid) + + Usage: @@ -1697,205 +1725,205 @@ Address: %4 - - Specify pid file (default: bitcoind.pid) - 指定 pid 文件 (默认为 bitcoind.pid) - + + Invalid -proxy address + 代理地址不合法 - - Generate coins - 生成货币 - + + Invalid amount for -paytxfee=<amount> + 不合适的交易费 -paytxfee=<amount> - - Don't generate coins - 不要生成货币 - + + Error: CreateThread(StartNode) failed + 错误:线程创建(StartNode)失败 - - Start minimized - 启动时最小化 - + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + 无法绑定端口 %d 到这台计算机。比特币进程可能已在运行。 - - Specify data directory - 指定数据目录 - + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + 警告:请确定您当前计算机的日期和时间是正确的。比特币将无法在错误的时间下正常工作。 - - Specify connection timeout (in milliseconds) - 指定连接超时时间 (微秒) - + + beta + 测试 - - Connect through socks4 proxy - 通过 socks4 代理连接 + + Specify data directory + 指定数据目录 - - Allow DNS lookups for addnode and connect - 连接节点时允许DNS查找 - + + Show splash screen on startup (default: 1) + 启动时显示版权页 (缺省: 1) - + Listen for connections on <port> (default: 8333 or testnet: 18333) 监听端口连接 <port> (缺省: 8333 or testnet: 18333) - - Maintain at most <n> connections to peers (default: 125) - 最大连接数 <n> (缺省: 125) + + Accept connections from outside (default: 1) + 接受来自外部的连接 (缺省: 1) - - Add a node to connect to - 连接到指定节点 + + Set language, for example "de_DE" (default: system locale) + 设置语言, 例如 "de_DE" (缺省: 系统语言) - - Connect only to the specified node - 只连接到指定节点 - + + Find peers using DNS lookup (default: 1) + - - Don't accept connections from outside - 禁止接收外部连接 - + + Threshold for disconnecting misbehaving peers (default: 100) + Threshold for disconnecting misbehaving peers (缺省: 100) - - Don't bootstrap list of peers using DNS - 不要用DNS启动 + + Use Universal Plug and Play to map the listening port (default: 1) + 使用UPnp映射监听端口(缺省: 1) - - Threshold for disconnecting misbehaving peers (default: 100) - Threshold for disconnecting misbehaving peers (缺省: 100) + + Use Universal Plug and Play to map the listening port (default: 0) + 使用UPnp映射监听端口(缺省: 0) - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Number of seconds to keep misbehaving peers from reconnecting (缺省: 86400) + + Accept command line and JSON-RPC commands + 接受命令行和 JSON-RPC 命令 + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maximum per-connection receive buffer, <n>*1000 bytes (缺省: 10000) + + Use the test network + 使用测试网络 + - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maximum per-connection send buffer, <n>*1000 bytes (缺省: 10000) + + Prepend debug output with timestamp + 为调试输出信息添加时间戳 + + + + Send trace/debug info to console instead of debug.log file + 跟踪/调试信息输出到控制台,不输出到debug.log文件 - - Don't attempt to use UPnP to map the listening port - 禁止使用 UPnP 映射监听端口 + + Username for JSON-RPC connections + JSON-RPC连接用户名 - - Attempt to use UPnP to map the listening port - 尝试使用 UPnP 映射监听端口 + + Password for JSON-RPC connections + JSON-RPC连接密码 - - Fee per kB to add to transactions you send - 为付款交易支付比特币(每kb) + + Allow JSON-RPC connections from specified IP address + 允许从指定IP接受到的JSON-RPC连接 + - - Accept command line and JSON-RPC commands - 接受命令行和 JSON-RPC 命令 + + Set key pool size to <n> (default: 100) + 设置密钥池大小为 <n> (缺省: 100) - - Run in the background as a daemon and accept commands - 在后台运行并接受命令 - + + Use OpenSSL (https) for JSON-RPC connections + 为 JSON-RPC 连接使用 OpenSSL (https)连接 + + + + Server certificate file (default: server.cert) + 服务器证书 (默认为 server.cert) - - Use the test network - 使用测试网络 + + Server private key (default: server.pem) + 服务器私钥 (默认为 server.pem) - - Output extra debugging information - 输出调试信息 + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + 可接受的加密器 (默认为 TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Prepend debug output with timestamp - 为调试输出信息添加时间戳 + + This help message + 该帮助信息 + - - Send trace/debug info to console instead of debug.log file - 跟踪/调试信息输出到控制台,不输出到debug.log文件 + + Error loading blkindex.dat + blkindex.dat文件加载错误 - - Send trace/debug info to debugger - 跟踪/调试信息输出到 调试器debugger + + Error loading wallet.dat: Wallet corrupted + wallet.dat钱包文件加载错误:钱包损坏 - - Username for JSON-RPC connections - JSON-RPC连接用户名 - + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + wallet.dat钱包文件加载错误:请升级到最新Bitcoin客户端 - - Password for JSON-RPC connections - JSON-RPC连接密码 - + + Wallet needed to be rewritten: restart Bitcoin to complete + 钱包文件需要重写:请退出并重新启动Bitcoin客户端 - - Listen for JSON-RPC connections on <port> (default: 8332) - JSON-RPC连接监听<端口> (默认为 8332) - + + Error loading wallet.dat + wallet.dat钱包文件加载错误 - - Allow JSON-RPC connections from specified IP address - 允许从指定IP接受到的JSON-RPC连接 + + Allow DNS lookups for addnode and connect + 连接节点时允许DNS查找 - - Send commands to node running on <ip> (default: 127.0.0.1) - 向IP地址为 <ip> 的节点发送指令 (缺省: 127.0.0.1) + + Connect only to the specified node + 只连接到指定节点 - - Set key pool size to <n> (default: 100) - 设置密钥池大小为 <n> (缺省: 100) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maximum per-connection receive buffer, <n>*1000 bytes (缺省: 10000) - - Rescan the block chain for missing wallet transactions - 重新扫描数据链以查找遗漏的交易 - + + Send trace/debug info to debugger + 跟踪/调试信息输出到 调试器debugger - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1903,133 +1931,141 @@ SSL 选项: (SSL 安装教程具体见比特币维基百科) - - Use OpenSSL (https) for JSON-RPC connections - 为 JSON-RPC 连接使用 OpenSSL (https)连接 + + Error loading addr.dat + addr.dat文件加载错误 - - Server certificate file (default: server.cert) - 服务器证书 (默认为 server.cert) - + + Loading addresses... + 正在加载地址... - - Server private key (default: server.pem) - 服务器私钥 (默认为 server.pem) - + + Loading wallet... + 正在加载钱包... - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - 无法给数据目录 %s 加锁。比特币进程可能已在运行。 + + Done loading + 加载完成 - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - 可接受的加密器 (默认为 TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + 警告: -paytxfee 交易费设置过高. 每进行一笔交易您都将支付该数量的交易费. + + + + Generate coins + 生成货币 - - Loading addresses... - 正在加载地址... + + Add a node to connect to and attempt to keep the connection open + 添加节点并与其保持连接 - - This help message - 该帮助信息 + + Don't generate coins + 不要生成货币 - - Loading block index... - 加载区块索引... + + Cannot downgrade wallet + 无法降级钱包格式 - - Loading wallet... - 正在加载钱包... + + Start minimized + 启动时最小化 + - - Rescanning... - 正在重新扫描... + + Cannot initialize keypool + 无法初始化 keypool - - Error loading addr.dat - addr.dat文件加载错误 + + Connect through socks4 proxy + 通过 socks4 代理连接 + - - Error loading blkindex.dat - blkindex.dat文件加载错误 + + Cannot write default address + 无法写入缺省地址 - - Error loading wallet.dat: Wallet corrupted - wallet.dat钱包文件加载错误:钱包损坏 + + Maintain at most <n> connections to peers (default: 125) + 最大连接数 <n> (缺省: 125) - - Done loading - 加载完成 + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Number of seconds to keep misbehaving peers from reconnecting (缺省: 86400) - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - wallet.dat钱包文件加载错误:请升级到最新Bitcoin客户端 + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maximum per-connection send buffer, <n>*1000 bytes (缺省: 10000) - - Invalid -proxy address - 代理地址不合法 + + Fee per KB to add to transactions you send + 每发送1KB交易所需的费用 - - Wallet needed to be rewritten: restart Bitcoin to complete - 钱包文件需要重写:请退出并重新启动Bitcoin客户端 + + Find peers using internet relay chat (default: 0) + 通过IRC聊天室查找网络上的比特币节点 (缺省: 0) - - Invalid amount for -paytxfee=<amount> - 不合适的交易费 -paytxfee=<amount> + + Output extra debugging information + 输出调试信息 - - Error loading wallet.dat - wallet.dat钱包文件加载错误 + + How many blocks to check at startup (default: 2500, 0 = all) + 启动时需检查的区块数量 (缺省: 2500, 设置0为检查所有区块) - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - 警告: -paytxfee 交易费设置过高. 每进行一笔交易您都将支付该数量的交易费. + + How thorough the block verification is (0-6, default: 1) + 需要几个确认 (0-6个, 缺省: 1个) - - Error: CreateThread(StartNode) failed - 错误:线程创建(StartNode)失败 + + Listen for JSON-RPC connections on <port> (default: 8332) + JSON-RPC连接监听<端口> (默认为 8332) + - - Warning: Disk space is low - 警告:磁盘空间不足 + + Send commands to node running on <ip> (default: 127.0.0.1) + 向IP地址为 <ip> 的节点发送指令 (缺省: 127.0.0.1) + - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - 无法绑定端口 %d 到这台计算机。比特币进程可能已在运行。 + + Rescan the block chain for missing wallet transactions + 重新扫描数据链以查找遗漏的交易 + - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - 警告:请确定您当前计算机的日期和时间是正确的。比特币将无法在错误的时间下正常工作。 + + Warning: Disk space is low + 警告:磁盘空间不足 - - beta - 测试 + + Execute command when the best block changes (%s in cmd is replaced by block hash) + 当最佳区块变化时执行命令 (命令行中的 %s 会被替换成区块哈希值) diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index 84e77aa681..a9efab37da 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -67,18 +67,23 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - 複製到剪貼簿 - - - - Delete the currently selected address from the list. Only sending addresses can be deleted. - 從列表中刪除目前選取的位址. 只能夠刪除付款位址. + 複製到剪貼簿 Show &QR Code 顯示 &QR 條碼 + + + &Sign Message + 簽署訊息 + + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + 從列表中刪除目前選取的位址. 只能夠刪除付款位址. + &Delete @@ -90,20 +95,25 @@ This product includes software developed by the OpenSSL Project for use in the O 簽署一則訊息來證明你擁有這個位址 - - &Sign Message - 簽署訊息 + + Export Address Book Data + 匯出位址簿資料 - - Copy address - 複製位址 + + Comma separated file (*.csv) + 逗號區隔資料檔 (*.csv) Copy label 複製標記 + + + Copy address + 複製位址 + Edit @@ -115,28 +125,23 @@ This product includes software developed by the OpenSSL Project for use in the O 刪除 - - Export Address Book Data - 匯出位址簿資料 - - - - Comma separated file (*.csv) - 逗號區隔資料檔 (*.csv) - - - + Error exporting 資料匯出有誤 - + Could not write to file %1. 無法寫入檔案 %1. AddressTableModel + + + (no label) + (沒有標記) + Label @@ -147,44 +152,41 @@ This product includes software developed by the OpenSSL Project for use in the O Address 位址 - - - (no label) - (沒有標記) - AskPassphraseDialog - - Dialog - 對話視窗 + + + + + Wallet encryption failed + 錢包加密失敗 - - - TextLabel - 文字標籤 + + Dialog + 對話視窗 - + Enter passphrase 輸入密碼 - + New passphrase 新的密碼 - - Repeat new passphrase - 重複新密碼 + + Decrypt wallet + 錢包解密 - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - 輸入錢包的新密碼.<br/>請用<b>10個以上的字元</b>, 或是<b>8個以上的字詞</b>. + + Repeat new passphrase + 重複新密碼 @@ -192,40 +194,54 @@ This product includes software developed by the OpenSSL Project for use in the O 錢包加密 - - This operation needs your wallet passphrase to unlock the wallet. - 這個動作需要用你的錢包密碼來解鎖 + + TextLabel + 文字標籤 - - Unlock wallet - 錢包解鎖 + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + 錢包加密因程式內部有誤而失敗. 你的錢包還是沒有加密. - - This operation needs your wallet passphrase to decrypt the wallet. - 這個動作需要用你的錢包密碼來解密 + + + The supplied passphrases do not match. + 提供的密碼不符. - - Decrypt wallet - 錢包解密 + + Wallet unlock failed + 錢包解鎖失敗 - - Change passphrase - 變更密碼 + + + + The passphrase entered for the wallet decryption was incorrect. + 用來解密錢包的密碼輸入錯誤. + + + + Wallet decryption failed + 錢包解密失敗 + + + + + Wallet encrypted + 錢包已加密 + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 位元幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的位元幣. 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 BITCOINS</b>! @@ -234,10 +250,9 @@ Are you sure you wish to encrypt your wallet? 你確定要將錢包加密嗎? - - - Wallet encrypted - 錢包已加密 + + Wallet passphrase was successfully changed. + 錢包密碼變更成功. @@ -246,337 +261,284 @@ Are you sure you wish to encrypt your wallet? 警告: 鍵盤輸入鎖定為大寫字母中. - - - - - Wallet encryption failed - 錢包加密失敗 + + This operation needs your wallet passphrase to unlock the wallet. + 這個動作需要用你的錢包密碼來解鎖 - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - 錢包加密因程式內部有誤而失敗. 你的錢包還是沒有加密. + + This operation needs your wallet passphrase to decrypt the wallet. + 這個動作需要用你的錢包密碼來解密 - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 位元幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的位元幣. + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + 輸入錢包的新密碼.<br/>請用<b>10個以上的字元</b>, 或是<b>8個以上的單字</b>. - - - The supplied passphrases do not match. - 提供的密碼不符. + + Unlock wallet + 錢包解鎖 - - Wallet unlock failed - 錢包解鎖失敗 + + Change passphrase + 變更密碼 - - - - The passphrase entered for the wallet decryption was incorrect. - 用來解密錢包的密碼輸入錯誤. + + Confirm wallet encryption + 錢包加密確認 + + + BitcoinGUI - - Wallet decryption failed - 錢包解密失敗 + + Show the list of addresses for receiving payments + 顯示收款位址的列表 - - Wallet passphrase was succesfully changed. - 錢包密碼變更成功. + + &Send coins + 付錢 + + + + Edit the list of stored addresses and labels + 編輯儲存位址與標記的列表 - - - BitcoinGUI - + Bitcoin Wallet 位元幣錢包 - - + + Synchronizing with network... 網路同步中... - + Block chain synchronization in progress 正在進行區塊鎖鏈的同步中 - + &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 - 顯示收款位址的列表 + + Prove you control an address + 證明你控制一個位址 - - &Send coins - 付錢 + + E&xit + 結束 - - Send coins to a bitcoin address - 付錢至某個位元幣位址 + + Show information about Qt + 顯示有關於 Qt 的資訊 - - Sign &message - 訊息簽署 + + Modify configuration options for bitcoin + 修改位元幣的設定選項 - - Prove you control an address - 證明你控制一個位址 + + Show the Bitcoin window + 顯示位元幣主視窗 - - E&xit - 結束 + + &Backup Wallet + 錢包備份 - - Quit application - 結束應用程式 + + &Change Passphrase + 變更密碼 - - &About %1 - 關於%1 + + Quit application + 結束應用程式 - + Show information about Bitcoin 顯示位元幣相關資訊 - - &Options... - 選項... + + About &Qt + 關於 &Qt - - Modify configuration options for bitcoin - 修改位元幣的設定選項 + + &Settings + 設定 - - Open &Bitcoin - 開啟位元幣 + + &Help + 求助 - - Show the Bitcoin window - 顯示位元幣主視窗 + + Tabs toolbar + 分頁工具列 - - &Export... - 匯出... + + Actions toolbar + 動作工具列 - - &Encrypt Wallet - 錢包加密 + + [testnet] + [testnet] - + Encrypt or decrypt wallet 將錢包加解密 - - - &Change Passphrase - 變更密碼 - - - - Change the passphrase used for wallet encryption - 變更錢包加密用的密碼 - - - - About &Qt - 關於 &Qt - - - - Show information about Qt - 顯示有關於 Qt 的資訊 - - - - Export the data in the current tab to a file - 將目前分頁的資料匯出存成檔案 - - - - &Backup Wallet - 錢包備份 - - Backup wallet to another location - 將錢包備份到其它地方 - - - - &File - 檔案 - - - - &Settings - 設定 - - - - &Help - 求助 - - - - Tabs toolbar - 分頁工具列 - - - - Actions toolbar - 動作工具列 - - - - [testnet] - [testnet] - - - - bitcoin-qt - bitcoin-qt + Open &Bitcoin + 開啟位元幣 - + %n active connection(s) to Bitcoin network 與位元幣網路有 %n 個連線在使用中 - - Downloaded %1 of %2 blocks of transaction history. - 已下載了 %1/%2 個交易紀錄的區塊. + + Backup wallet to another location + 將錢包備份到其它地方 - + Downloaded %1 blocks of transaction history. 已下載了 %1 個交易紀錄的區塊. + + + Send coins to a bitcoin address + 付錢至某個位元幣位址 + - + %n second(s) ago %n 秒鐘前 + + + Sign &message + 訊息簽署 + - + %n minute(s) ago %n 分鐘前 - - %n hour(s) ago - - %n 小時前 - - - - + %n day(s) ago %n 天前 - + Up to date 最新狀態 - + Catching up... 進度追趕中... - + + &About %1 + 關於%1 + + + 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 的費用來傳送. 這筆費用會付給處理該筆交易的節點, 並幫助維持整個網路. 你願意支付這項費用嗎? - + + &Options... + 選項... + + + + bitcoin-qt + + + + Sending... - 付出中... + 付出中... - + Sent transaction 付款交易 - + Incoming transaction 收款交易 - + Date: %1 Amount: %2 Type: %3 @@ -588,62 +550,99 @@ Address: %4 位址: %4 - + + &Encrypt Wallet + 錢包加密 + + + 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> - + + Change the passphrase used for wallet encryption + 變更錢包加密用的密碼 + + + 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 occured. Bitcoin can no longer continue safely and will quit. - + + &Export... + 匯出... + + + + Export the data in the current tab to a file + 將目前分頁的資料匯出存成檔案 + + + + &File + 檔案 + + + + %n hour(s) ago + + %n 小時前 + + + + + Downloaded %1 of %2 blocks of transaction history. + 已下載了 %1/%2 個交易紀錄的區塊. + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + 發生了致命的錯誤. 位元幣程式無法再繼續安全執行, 只好結束. DisplayOptionsPage - + &Unit to show amounts in: 金額顯示單位: - + Choose the default subdivision unit to show in the interface, and when sending coins 選擇操作界面與付錢時預設顯示的細分單位 - + &Display addresses in transaction list - &在交易列表中顯示位址 + 在交易列表顯示位址 - + Whether to show Bitcoin addresses in the transaction list - + 是否要在交易列表中顯示位元幣位址 @@ -678,11 +677,6 @@ Address: %4 New receiving address 新收款位址 - - - New sending address - 新付款位址 - Edit receiving address @@ -698,11 +692,6 @@ Address: %4 The entered address "%1" is already in the address book. 輸入的位址"%1"已存在於位址簿中. - - - The entered address "%1" is not a valid bitcoin address. - 輸入的位址"%1"並非有效的位元幣位址 - Could not unlock wallet. @@ -713,6 +702,16 @@ Address: %4 New key generation failed. 新密鑰產生失敗. + + + New sending address + 新付款位址 + + + + The entered address "%1" is not a valid bitcoin address. + 輸入的位址"%1"並非有效的位元幣位址 + MainOptionsPage @@ -734,7 +733,7 @@ Address: %4 Show only a tray icon after minimizing the window - 視窗最小化時只顯示圖示於通知區域 + 最小化視窗後只在通知區域顯示圖示 @@ -749,7 +748,7 @@ Address: %4 M&inimize on close - 關閉時最小化 + 關閉時最小化 @@ -763,9 +762,19 @@ Address: %4 - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) 透過 SOCKS4 代理伺服器連線至位元幣網路 (比如說透過 Tor) + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + 非必要的交易手續費, 以 kB 為計費單位, 且有助於縮短你的交易處理時間. 大部份交易的資料大小是 1 kB. 建議設定為 0.01 元. + + + + Pay transaction &fee + 付交易手續費 + Proxy &IP: @@ -786,21 +795,6 @@ Address: %4 Port of the proxy (e.g. 1234) 代理伺服器的通訊埠 (比如說 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - 非必要的交易手續費, 以 kB 為計費單位, 且有助於縮短你的交易處理時間. 大部份交易的資料大小是 1 kB. 建議設定為 0.01 元. - - - - Pay transaction &fee - 付交易手續費 - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - 非必要的交易手續費, 以 kB 為計費單位, 且有助於縮短你的交易處理時間. 大部份交易的資料大小是 1 kB. 建議設定為 0.01 元. - MessagePage @@ -817,7 +811,7 @@ Address: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + 用來簽署訊息的位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -844,6 +838,11 @@ Address: %4 Enter the message you want to sign here 在這裡輸入你想簽署的訊息 + + + Copy the current signature to the system clipboard + 複製目前的簽章到系統剪貼簿 + Click "Sign Message" to get signature @@ -859,11 +858,6 @@ Address: %4 &Sign Message 簽署訊息 - - - Copy the current signature to the system clipboard - - &Copy to Clipboard @@ -895,9 +889,9 @@ Address: %4 OptionsDialog - - Main - 主要 + + Options + 選項 @@ -905,58 +899,38 @@ Address: %4 顯示 - - Options - 選項 + + Main + 主要 OverviewPage - - - Form - 表單 - Balance: 餘額: - - 123.456 BTC - 123.456 BTC + + Form + 表單 Number of transactions: 交易次數: - - - 0 - 0 - Unconfirmed: 未確認額: - - - 0 BTC - 0 BTC - Wallet 錢包 - - - <b>Recent transactions</b> - <b>最近交易</b> - Your current balance @@ -972,9 +946,39 @@ Address: %4 Total number of transactions in wallet 錢包中紀錄的總交易次數 + + + <b>Recent transactions</b> + <b>最近交易</b> + + + + 0 + 0 + QRCodeDialog + + + Request Payment + 付款單 + + + + Label: + 標記: + + + + &Save As... + 儲存為... + + + + PNG Images (*.png) + PNG 圖檔 (*.png) + Dialog @@ -985,11 +989,6 @@ Address: %4 QR Code QR 條碼 - - - Request Payment - 付款單 - Amount: @@ -1000,66 +999,24 @@ Address: %4 BTC BTC - - - Label: - 標記: - Message: 訊息: - - - &Save As... - 儲存為... - Error encoding URI into QR Code. - + 將 URI 編碼成 QR 條碼時發生錯誤 Save Image... 儲存圖片... - - - PNG Images (*.png) - PNG 圖檔 (*.png) - SendCoinsDialog - - - - - - - - - - Send Coins - 付錢 - - - - Send to multiple recipients at once - 一次付給多個人 - - - - &Add recipient... - 加收款人... - - - - Clear all - 全部清掉 - Remove all transaction fields @@ -1086,58 +1043,85 @@ Address: %4 付出 - - <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 amount to pay must be larger than 0. + 付款金額必須大於 0. + - The recepient address is not valid, please recheck. - 無效的收款位址, 請再檢查看看. + + + + + + + Send Coins + 付錢 - - The amount to pay must be larger than 0. - 付款金額必須大於 0. + + Send to multiple recipients at once + 一次付給多個人 - - Amount exceeds your balance - 金額超過了你的餘額 + + &Add recipient... + 加收款人... - - Total exceeds your balance when the %1 transaction fee is included - 加上交易手續費 %1 後的總金額超過了你的餘額 + + Clear all + 全部清掉 - - Duplicate address found, can only send to each address once in one send operation - 發現了重複的位址; 在一次付款作業中, 只能付給每個位址一次 + + <b>%1</b> to %2 (%3) + <b>%1</b> 給 %2 (%3) - - Error: Transaction creation failed - 錯誤: 交易產生失敗 + + and + - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 recipient address is not valid, please recheck. + 無效的收款位址, 請再檢查看看. + + + + 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, 然後用複製的錢包花掉了錢, 你現在所用的原來的錢包中卻沒有該筆交易紀錄. @@ -1207,21 +1191,11 @@ Address: %4 TransactionDesc - - - Open for %1 blocks - 在 %1 個區塊內未定 - Open until %1 在 %1 前未定 - - - %1/offline? - %1/離線中? - %1/unconfirmed @@ -1232,16 +1206,31 @@ Address: %4 %1 confirmations 經確認 %1 次 - - - <b>Status:</b> - <b>狀態:</b> - , has not been successfully broadcast yet , 尚未成功公告出去 + + + unknown + 未知 + + + + Open for %1 blocks + 在 %1 個區塊內未定 + + + + %1/offline? + %1/離線中? + + + + <b>Status:</b> + <b>狀態:</b> + , broadcast through %1 node @@ -1268,11 +1257,6 @@ Address: %4 <b>From:</b> <b>來自:</b> - - - unknown - 未知 - @@ -1363,136 +1347,201 @@ Address: %4 TransactionTableModel - Date - 日期 + Amount + 金額 - - Type - 種類 + + 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. + 減去或加入至餘額的金額 - Address - 位址 + Type + 種類 - Amount - 金額 + Date + 日期 - + Open for %n block(s) 在 %n 個區塊內未定 - + Open until %1 在 %1 前未定 - + Offline (%1 confirmations) 離線中 (經確認 %1 次) - + Unconfirmed (%1 of %2 confirmations) 未確認 (經確認 %1 次, 應確認 %2 次) - + Confirmed (%1 confirmations) 已確認 (經確認 %1 次) - + Mined balance will be available in %n more blocks 生產金額將在 %n 個區塊產出後可用 - - This block was not received by any other nodes and will probably not be accepted! - 沒有其他節點收到這個區塊, 也許它不被接受! - - - + Generated but not accepted 產出但不被接受 - + Received with 收受於 - - Received from - 收受自 + + Address + 位址 - - Sent to - 付出至 + + This block was not received by any other nodes and will probably not be accepted! + 沒有其他節點收到這個區塊, 也許它不被接受! + + + TransactionView - - Payment to yourself - 付給自己 + + Could not write to file %1. + 無法寫入至 %1 檔案. - - Mined - 開採所得 + + This month + 這個月 - - (n/a) - (不適用) + + Last month + 上個月 - - Transaction status. Hover over this field to show number of confirmations. - 交易狀態. 移動游標至欄位上方來顯示確認次數. + + Copy amount + 複製金額 - - Date and time that the transaction was received. - 收到交易的日期與時間. + + Edit label + 編輯標記 - - Type of transaction. - 交易的種類. + + Comma separated file (*.csv) + 逗號分隔資料檔 (*.csv) - - Destination address of transaction. - 交易的目標位址. + + Confirmed + 已確認 - - Amount removed from or added to balance. - 減去或加入至餘額的金額 + + Date + 日期 - - - TransactionView - - - All - 全部 + + Type + 種類 - - Today - 今天 + + Label + 標記 + + + + Address + 位址 + + + + Amount + 金額 + + + + ID + 識別碼 + + + + + All + 全部 + + + + Today + 今天 @@ -1500,19 +1549,14 @@ Address: %4 這週 - - This month - 這個月 - - - - Last month - 上個月 + + Range: + 範圍: - - This year - 今年 + + to + @@ -1565,14 +1609,9 @@ Address: %4 複製標記 - - Copy amount - 複製金額 - - - - Edit label - 編輯標記 + + Error exporting + 匯出錯誤 @@ -1580,85 +1619,77 @@ Address: %4 顯示明細... - + Export Transaction Data 匯出交易資料 - - Comma separated file (*.csv) - 逗號分隔資料檔 (*.csv) - - - - Confirmed - 已確認 - - - - Date - 日期 + + This year + 今年 + + + WalletModel - - Type - 種類 + + Sending... + 付出中... + + + bitcoin-core - - Label - 標記 + + Bitcoin version + 位元幣版本 - - Address - 位址 + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + 無法鎖定資料目錄 %s. 也許位元幣已經在執行了. - - Amount - 金額 + + Listen for connections on <port> (default: 8333 or testnet: 18333) + 在通訊埠 <port> 聽候連線 (預設: 8333, 或若為測試網路: 18333) - - ID - 識別碼 + + Loading block index... + 載入區塊索引中... - - Error exporting - 匯出錯誤 + + Rescanning... + 重新掃描中... - - Could not write to file %1. - 無法寫入至 %1 檔案. + + Done loading + 載入完成 - - Range: - 範圍: + + Set database cache size in megabytes (default: 25) + 設定資料庫快取大小為多少百萬位元組(MB, 預設: 25) - - to - + + Specify data directory + 指定資料目錄 + - - - WalletModel - - Sending... - 付出中... + + Specify pid file (default: bitcoind.pid) + 指定行程識別碼檔案 (預設: bitcoind.pid) + - - - bitcoin-core - - Bitcoin version - 位元幣版本 + + Threshold for disconnecting misbehaving peers (default: 100) + 與亂搞的節點斷線的臨界值 (預設: 100) @@ -1669,24 +1700,12 @@ Address: %4 Send command to -server or bitcoind 送指令至 -server 或 bitcoind - - - - - List commands - 列出指令 Get help for a command 取得指令說明 - - - - - Options: - 選項: @@ -1696,199 +1715,200 @@ Address: %4 - - Specify pid file (default: bitcoind.pid) - 指定行程識別碼檔案 (預設: bitcoind.pid) + + Specify connection timeout (in milliseconds) + 指定連線逾時時間 (毫秒) - - Generate coins - 生產位元幣 - + + Maintain at most <n> connections to peers (default: 125) + 維持與節點連線數的上限為 <n> 個 (預設: 125) - - Don't generate coins - 不生產位元幣 - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + 避免與亂搞的節點連線的秒數 (預設: 86400) - - Start minimized - 啓動時最小化 + + Accept command line and JSON-RPC commands + 接受命令列與 JSON-RPC 指令 - - Specify data directory - 指定資料目錄 - + + Send trace/debug info to console instead of debug.log file + 輸出追蹤或除錯資訊至終端機, 而非 debug.log 檔案 - - Specify connection timeout (in milliseconds) - 指定連線逾時時間 (毫秒) - + + Username for JSON-RPC connections + JSON-RPC 連線使用者名稱 - - Connect through socks4 proxy - 透過 socks4 代理伺服器連線 - + + Send trace/debug info to debugger + 輸出追蹤或除錯資訊給除錯器 - - Allow DNS lookups for addnode and connect - 允許 addnode 和 connect 時做域名解析 - + + Show splash screen on startup (default: 1) + 顯示啓動畫面 (預設: 1) - - Listen for connections on <port> (default: 8333 or testnet: 18333) - 在通訊埠 <port> 聽候連線 (預設: 8333, 或若為測試網路: 18333) + + Accept connections from outside (default: 1) + 是否接受外來連線 (預設: 1) - - Maintain at most <n> connections to peers (default: 125) - 維持與節點連線數的上限為 <n> 個 (預設: 125) + + Set language, for example "de_DE" (default: system locale) + 設定語言, 比如說 "de_DE" (預設: 系統語系) - - Add a node to connect to - 新增連線節點 - + + Find peers using DNS lookup (default: 1) + - - Connect only to the specified node - 只連線至指定節點 - + + Use Universal Plug and Play to map the listening port (default: 1) + 是否使用通用即插即用(UPnP)協定來設定聽候連線的通訊埠 (預設: 1) - - Don't accept connections from outside - 不接受外來連線 - + + Use Universal Plug and Play to map the listening port (default: 0) + 是否使用通用即插即用(UPnP)協定來設定聽候連線的通訊埠 (預設: 0) - - Don't bootstrap list of peers using DNS - 初始化節點列表時不使用 DNS + + Password for JSON-RPC connections + JSON-RPC 連線密碼 - - Threshold for disconnecting misbehaving peers (default: 100) - 與亂搞的節點斷線的臨界值 (預設: 100) + + Listen for JSON-RPC connections on <port> (default: 8332) + 在通訊埠 <port> 聽候 JSON-RPC 連線 (預設: 8332) - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - 避免與亂搞的節點連線的秒數 (預設: 86400) + + Allow JSON-RPC connections from specified IP address + 只允許從指定網路位址來的 JSON-RPC 連線 - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - 每個連線的接收緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) + + 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: 10000) - 每個連線的傳送緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) + + Set key pool size to <n> (default: 100) + 設定密鑰池大小為 <n> (預設: 100) + - - Don't attempt to use UPnP to map the listening port - 不嘗試用 UPnP 來設定服務連接埠的對應 - + + Rescan the block chain for missing wallet transactions + 重新掃描區塊鎖鏈, 以尋找錢包所遺漏的交易. - - Attempt to use UPnP to map the listening port - 嘗試用 UPnP 來設定服務連接埠的對應 + + Use OpenSSL (https) for JSON-RPC connections + 使用 OpenSSL (https) 於JSON-RPC 連線 - - Fee per kB to add to transactions you send - 交易付款時每 kB 的交易手續費 + + Server certificate file (default: server.cert) + 伺服器憑證檔 (預設: server.cert) + - - Accept command line and JSON-RPC commands - 接受命令列與 JSON-RPC 指令 + + Server private key (default: server.pem) + 伺服器密鑰檔 (預設: server.pem) - - Run in the background as a daemon and accept commands - 以背景程式執行並接受指令 + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + 可以接受的加密法 (預設: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Use the test network - 使用測試網路 + + This help message + 此協助訊息 - - Output extra debugging information - 輸出額外的除錯資訊 + + Error loading blkindex.dat + 載入 blkindex.dat 失敗 - - Prepend debug output with timestamp - 在除錯輸出內容前附加時間 + + Error loading wallet.dat: Wallet corrupted + 載入檔案 wallet.dat 失敗: 錢包壞掉了 - - Send trace/debug info to console instead of debug.log file - 輸出追蹤或除錯資訊至終端機, 而非 debug.log 檔案 + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + 載入檔案 wallet.dat 失敗: 此錢包需要新版的 Bitcoin - - Send trace/debug info to debugger - 輸出追蹤或除錯資訊給除錯器 + + Wallet needed to be rewritten: restart Bitcoin to complete + 錢包需要重寫: 請重啟位元幣來完成 - - Username for JSON-RPC connections - JSON-RPC 連線使用者名稱 + + Error loading wallet.dat + 載入檔案 wallet.dat 失敗 - - Password for JSON-RPC connections - JSON-RPC 連線密碼 + + Start minimized + 啓動時最小化 + - - Listen for JSON-RPC connections on <port> (default: 8332) - 在通訊埠 <port> 聽候 JSON-RPC 連線 (預設: 8332) + + Allow DNS lookups for addnode and connect + 允許 addnode 和 connect 時做域名解析 + - - Allow JSON-RPC connections from specified IP address - 只允許從指定網路位址來的 JSON-RPC 連線 + + Connect only to the specified node + 只連線至指定節點 + - - Send commands to node running on <ip> (default: 127.0.0.1) - 送指令給在 <ip> 的節點 (預設: 127.0.0.1) - + + Run in the background as a daemon and accept commands + 以背景程式執行並接受指令 - - Set key pool size to <n> (default: 100) - 設定密鑰池大小為 <n> (預設: 100) + + Use the test network + 使用測試網路 - - Rescan the block chain for missing wallet transactions - 重新掃描區塊鎖鏈, 以尋找錢包所遺漏的交易. + + Output extra debugging information + 輸出額外的除錯資訊 - + + Prepend debug output with timestamp + 在除錯輸出內容前附加時間 + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1896,134 +1916,149 @@ SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) - - Use OpenSSL (https) for JSON-RPC connections - 使用 OpenSSL (https) 於JSON-RPC 連線 - + + Error loading addr.dat + 載入 addr.dat 失敗 - - Server certificate file (default: server.cert) - 伺服器憑證檔 (預設: server.cert) - + + Loading addresses... + 載入位址中... - - Server private key (default: server.pem) - 伺服器密鑰檔 (預設: server.pem) - + + Loading wallet... + 載入錢包中... - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - 無法鎖定資料目錄 %s. 也許位元幣已經在執行了. + + Invalid -proxy address + 無效的 -proxy 位址 - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - 可以接受的加密法 (預設: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + + Invalid amount for -paytxfee=<amount> + -paytxfee=<金額> 中的金額無效 - - Loading addresses... - 載入位址中... + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + 警告: -paytxfee 設定得很高. 這是當你交易付款時所要支付的手續費. - - This help message - 此協助訊息 - + + Error: CreateThread(StartNode) failed + 錯誤: CreateThread(StartNode) 失敗 - - Loading block index... - 載入區塊索引中... + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + 無法與這台電腦上的通訊埠 %d 連結. 也許 Bitcoin 已經在執行了. - - Loading wallet... - 載入錢包中... + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + 警告: 請檢查電腦時間日期是否正確. 位元幣無法在時鐘不準的情況下正常運作. - - Rescanning... - 重新掃描中... + + beta + 公測版 - - Error loading addr.dat - 載入 addr.dat 失敗 + + Generate coins + 生產位元幣 + - - Error loading blkindex.dat - 載入 blkindex.dat 失敗 + + Don't generate coins + 不生產位元幣 + - - Error loading wallet.dat: Wallet corrupted - 載入 wallet.dat 失敗: 錢包壞掉了 + + Warning: Disk space is low + 警告: 磁碟空間很少 - - Done loading - 載入完成 + + List commands + 列出指令 + - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - 載入 wallet.dat 失敗: 此錢包需要新版的 Bitcoin + + Options: + 選項: + - - Invalid -proxy address - 無效的 -proxy 位址 + + Connect through socks4 proxy + 透過 socks4 代理伺服器連線 + - - Wallet needed to be rewritten: restart Bitcoin to complete - 錢包需要重寫: 請重啟位元幣來完成 + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + 每個連線的接收緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) - - Invalid amount for -paytxfee=<amount> - -paytxfee=<金額> 中的金額無效 + + Execute command when the best block changes (%s in cmd is replaced by block hash) + 當最新區塊改變時所要執行的指令 (指令中的 %s 會被取代為區塊的雜湊值) - - Error loading wallet.dat - 載入 wallet.dat 失敗 + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + 每個連線的傳送緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - 警告: -paytxfee 設定得很高. 這是當你交易付款時所要支付的手續費. + + Add a node to connect to and attempt to keep the connection open + 加入一個要連線的節線, 並試著保持對它的連線暢通 - - Error: CreateThread(StartNode) failed - 錯誤: CreateThread(StartNode) 失敗 + + Cannot downgrade wallet + 無法將錢包格式降級 - - Warning: Disk space is low - 警告: 磁碟空間很少 + + Cannot initialize keypool + 無法將密鑰池初始化 - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - 無法與這台電腦上的通訊埠 %d 連結. 也許 Bitcoin 已經在執行了. + + Cannot write default address + 無法寫入預設位址 - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - 警告: 請檢查電腦時間日期是否正確. 位元幣無法在時鐘不準的情況下正常運作. + + Fee per KB to add to transactions you send + 交易付款時每 KB 的交易手續費 - - beta - 公測版 + + Find peers using internet relay chat (default: 0) + 是否使用網際網路中繼聊天(IRC)來找節點 (預設: 0) + + + + 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) + + + + Upgrade wallet to latest format + 將錢包升級成最新的格式 -- cgit v1.2.3 From 7355f007569ce58f9eaa14945e3e0d5781277537 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 28 Aug 2012 21:21:30 +0000 Subject: Update supported translations --- src/qt/locale/bitcoin_ca_ES.ts | 34 +- src/qt/locale/bitcoin_cs.ts | 824 +++++++++++----------- src/qt/locale/bitcoin_da.ts | 1062 ++++++++++++++-------------- src/qt/locale/bitcoin_de.ts | 1390 ++++++++++++++++++------------------ src/qt/locale/bitcoin_es.ts | 1418 ++++++++++++++++++------------------- src/qt/locale/bitcoin_es_CL.ts | 1368 +++++++++++++++++------------------ src/qt/locale/bitcoin_et.ts | 7 + src/qt/locale/bitcoin_eu_ES.ts | 2 +- src/qt/locale/bitcoin_fa.ts | 804 ++++++++++----------- src/qt/locale/bitcoin_fa_IR.ts | 573 ++++++++------- src/qt/locale/bitcoin_fi.ts | 706 +++++++++--------- src/qt/locale/bitcoin_fr_FR.ts | 112 +-- src/qt/locale/bitcoin_he.ts | 852 +++++++++++----------- src/qt/locale/bitcoin_hr.ts | 876 +++++++++++------------ src/qt/locale/bitcoin_hu.ts | 1334 +++++++++++++++++------------------ src/qt/locale/bitcoin_it.ts | 1380 ++++++++++++++++++------------------ src/qt/locale/bitcoin_lt.ts | 348 ++++----- src/qt/locale/bitcoin_nb.ts | 1474 +++++++++++++++++++------------------- src/qt/locale/bitcoin_nl.ts | 1320 +++++++++++++++++----------------- src/qt/locale/bitcoin_pl.ts | 886 +++++++++++------------ src/qt/locale/bitcoin_pt_BR.ts | 1518 +++++++++++++++++++-------------------- src/qt/locale/bitcoin_ro_RO.ts | 156 ++-- src/qt/locale/bitcoin_ru.ts | 1530 ++++++++++++++++++++-------------------- src/qt/locale/bitcoin_sk.ts | 476 ++++++------- src/qt/locale/bitcoin_sr.ts | 30 +- src/qt/locale/bitcoin_sv.ts | 869 +++++++++++------------ src/qt/locale/bitcoin_tr.ts | 800 ++++++++++----------- src/qt/locale/bitcoin_uk.ts | 1272 ++++++++++++++++----------------- src/qt/locale/bitcoin_zh_CN.ts | 1232 ++++++++++++++++---------------- src/qt/locale/bitcoin_zh_TW.ts | 1298 +++++++++++++++++----------------- 30 files changed, 12987 insertions(+), 12964 deletions(-) diff --git a/src/qt/locale/bitcoin_ca_ES.ts b/src/qt/locale/bitcoin_ca_ES.ts index 59ab5adf8d..05d1460d4d 100644 --- a/src/qt/locale/bitcoin_ca_ES.ts +++ b/src/qt/locale/bitcoin_ca_ES.ts @@ -492,6 +492,8 @@ Are you sure you wish to encrypt your wallet? %n active connection(s) to Bitcoin network + + @@ -509,6 +511,8 @@ Are you sure you wish to encrypt your wallet? %n second(s) ago + + @@ -516,6 +520,8 @@ Are you sure you wish to encrypt your wallet? %n minute(s) ago + + @@ -523,6 +529,8 @@ Are you sure you wish to encrypt your wallet? %n hour(s) ago + + @@ -530,6 +538,8 @@ Are you sure you wish to encrypt your wallet? %n day(s) ago + + @@ -1071,13 +1081,13 @@ Address: %4 - Are you sure you want to send %1? - + and + i - and - i + Are you sure you want to send %1? + @@ -1089,11 +1099,6 @@ Address: %4 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. @@ -1114,6 +1119,11 @@ Address: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. + Import superi el saldo de la seva compte. + SendCoinsEntry @@ -1141,7 +1151,7 @@ Address: %4 &Label: - &Etiqueta: + @@ -1360,6 +1370,8 @@ Address: %4 Open for %n block(s) + + @@ -1387,6 +1399,8 @@ Address: %4 Mined balance will be available in %n more blocks + + diff --git a/src/qt/locale/bitcoin_cs.ts b/src/qt/locale/bitcoin_cs.ts index e590b6c719..0761a4d791 100644 --- a/src/qt/locale/bitcoin_cs.ts +++ b/src/qt/locale/bitcoin_cs.ts @@ -67,13 +67,18 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open &Copy to Clipboard - &Zkopíruj do schránky + &Zkopíruj do schránky Show &QR Code Zobraz &QR kód + + + Sign a message to prove you own this address + Podepiš zprávu, čímž prokážeš, že jsi vlastníkem této adresy + &Sign Message @@ -89,25 +94,20 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open &Delete S&maž - - - Sign a message to prove you own this address - Podepiš zprávu, čímž prokážeš, že jsi vlastníkem této adresy - Copy address - Kopíruj adresu + Kopíruj adresu Copy label - Kopíruj její označení + Kopíruj její označení Edit - Uprav + Uprav @@ -158,7 +158,7 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Dialog - Dialog + Dialog @@ -175,11 +175,6 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Repeat new passphrase Totéž heslo ještě jednou - - - TextLabel - Textový popisek - 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>. @@ -226,11 +221,15 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Potvrď zašifrování peněženky - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - VAROVÁNÍ: Pokud zašifruješ peněženku a ztratíš či zapomeneš heslo, <b>PŘIJDEŠ O VŠECHNY BITCOINY</b>! -Jsi si jistý, že chceš peněženku zašifrovat? + + + Warning: The Caps Lock key is on. + Upozornění: Caps Lock je zapnutý. + + + + TextLabel + Textový popisek @@ -285,14 +284,20 @@ Jsi si jistý, že chceš peněženku zašifrovat? Heslo k peněžence bylo v pořádku změněno. - - - Warning: The Caps Lock key is on. - Upozornění: Caps Lock je zapnutý! + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + VAROVÁNÍ: Pokud zašifruješ peněženku a ztratíš či zapomeneš heslo, <b>PŘIJDEŠ O VŠECHNY BITCOINY</b>! +Jsi si jistý, že chceš peněženku zašifrovat? BitcoinGUI + + + Show the list of addresses for receiving payments + Zobraz seznam adres pro příjem plateb + @@ -315,9 +320,9 @@ Jsi si jistý, že chceš peněženku zašifrovat? &Transakce - - Browse transaction history - Procházet historii transakcí + + &Export... + &Export... @@ -334,16 +339,6 @@ Jsi si jistý, že chceš peněženku zašifrovat? &Receive coins Pří&jem mincí - - - Show the list of addresses for receiving payments - Zobraz seznam adres pro příjem plateb - - - - &Send coins - P&oslání mincí - Bitcoin Wallet @@ -370,9 +365,9 @@ Jsi si jistý, že chceš peněženku zašifrovat? O &Qt - - Show information about Qt - Zobraz informace o Qt + + [testnet] + [testnet] @@ -380,25 +375,35 @@ Jsi si jistý, že chceš peněženku zašifrovat? &Možnosti... - - &Export... - &Export... + + Block chain synchronization in progress + Provádí se synchronizace řetězce bloků - - Export the data in the current tab to a file - Exportovat data z tohoto panelu do souboru + + Browse transaction history + Procházet historii transakcí Sign &message Po&depiš zprávu + + + &About %1 + &O %1 + Encrypt or decrypt wallet Zašifruj nebo dešifruj peněženku + + + &Backup Wallet + &Zazálohovat peněženku + Backup wallet to another location @@ -430,35 +435,78 @@ Jsi si jistý, že chceš peněženku zašifrovat? Panel s listy - - Actions toolbar - Panel akcí + + Downloaded %1 of %2 blocks of transaction history. + Staženo %1 z %2 bloků transakční historie. - - - [testnet] - [testnet] + + + %n second(s) ago + + před vteřinou + před %n vteřinami + před %n vteřinami + + + + + %n day(s) ago + + včera + před %n dny + před %n dny + - - &About %1 - &O %1 + + Sent transaction + Odeslané transakce - - Block chain synchronization in progress - Provádí se synchronizace řetězce bloků + + Incoming transaction + Příchozí transakce Send coins to a bitcoin address Pošli mince na Bitcoinovou adresu + + + Sending... + Posílám... + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> + Prove you control an address Prokaž vlastnictví adresy + + + &Send coins + P&oslání mincí + + + + There was an error trying to save the wallet data to the new location. + Při ukládání peněženky na nové místo se přihodila nějaká chyba. + + + + Backup Wallet + Záloha peněženky + + + + Wallet Data (*.dat) + Data peněženky (*.dat) + Modify configuration options for bitcoin @@ -482,7 +530,22 @@ Jsi si jistý, že chceš peněženku zašifrovat? &Change Passphrase - Změň &heslo... + Změň &heslo + + + + Show information about Qt + Zobraz informace o Qt + + + + Export the data in the current tab to a file + Exportovat data z tohoto panelu do souboru + + + + Actions toolbar + Panel akcí @@ -498,15 +561,6 @@ Jsi si jistý, že chceš peněženku zašifrovat? Downloaded %1 blocks of transaction history. Staženo %1 bloků transakční historie. - - - %n second(s) ago - - před vteřinou - před %n vteřinami - před %n vteřinami - - %n minute(s) ago @@ -525,20 +579,6 @@ Jsi si jistý, že chceš peněženku zašifrovat? před %n hodinami - - - %n day(s) ago - - včera - před %n dny - před %n dny - - - - - Up to date - Aktuální - Catching up... @@ -549,25 +589,25 @@ Jsi si jistý, že chceš peněženku zašifrovat? Last received block was generated %1. Poslední stažený blok byl vygenerován %1. + + + Up to date + Aktuální + 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? Tahle transakce přesahuje velikostní limit. I tak ji ale můžeš poslat, pokud za ni zaplatíš poplatek %1, který půjde uzlům, které tvou transakci zpracují, a navíc tak podpoříš síť. Chceš zaplatit poplatek? - - &Backup Wallet - &Zazálohovat peněženku - - - - Sent transaction - Odeslané transakce + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Peněženka je <b>zašifrovaná</b> a momentálně <b>odemčená</b> - - Incoming transaction - Příchozí transakce + + Backup Failed + Zálohování selhalo @@ -583,72 +623,32 @@ Adresa: %4 - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Peněženka je <b>zašifrovaná</b> a momentálně <b>odemčená</b> - - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> + + bitcoin-qt + bitcoin-qt - - Backup Wallet - Záloha peněženky + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Stala se fatální chyba. Bitcoin nemůže bezpečně pokračovat v činnosti, a proto skončí. + + + DisplayOptionsPage - - Wallet Data (*.dat) - Data peněženky (*.dat) + + &Unit to show amounts in: + &Jednotka pro částky: - - Backup Failed - Zálohování selhalo + + 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í - - There was an error trying to save the wallet data to the new location. - Při ukládání peněženky na nové místo se přihodila nějaká chyba. - - - - bitcoin-qt - bitcoin-qt - - - - Downloaded %1 of %2 blocks of transaction history. - Staženo %1 z %2 bloků transakční historie. - - - - Sending... - Posílám... - - - - A fatal error occurred. Bitcoin can no longer continue safely and will quit. - Stala se fatální chyba. Bitcoin nemůže bezpečně pokračovat v činnosti, a proto skončí. - - - - DisplayOptionsPage - - - &Unit to show amounts in: - &Jednotka pro částky: - - - - Choose the default subdivision unit to show in the interface, and when sending coins - Zvol výchozí podjednotku, která se bude zobrazovat v programu a při posílání mincí - - - - &Display addresses in transaction list - &Ukazovat adresy ve výpisu transakcí + + &Display addresses in transaction list + &Ukazovat adresy ve výpisu transakcí @@ -864,11 +864,6 @@ Adresa: %4 &Sign Message &Podepiš zprávu - - - Copy the current signature to the system clipboard - Zkopíruj aktuálně vybraný podpis do systémové schránky - &Copy to Clipboard @@ -896,6 +891,11 @@ Adresa: %4 Sign failed Podepisování selhalo + + + Copy the current signature to the system clipboard + Zkopíruj aktuálně vybraný podpis do systémové schránky + OptionsDialog @@ -917,6 +917,11 @@ Adresa: %4 OverviewPage + + + Number of transactions: + Počet transakcí: + Form @@ -933,25 +938,15 @@ Adresa: %4 Peněženka - - Number of transactions: - Počet transakcí: - - - - 0 - 0 + + Your current balance + Aktuální stav tvého účtu Unconfirmed: Nepotvrzeno: - - - Your current balance - Aktuální stav tvého účtu - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance @@ -967,6 +962,11 @@ Adresa: %4 <b>Recent transactions</b> <b>Poslední transakce</b> + + + 0 + 0 + QRCodeDialog @@ -995,16 +995,16 @@ Adresa: %4 Label: Označení: - - - BTC - BTC - Message: Zpráva: + + + BTC + BTC + &Save As... @@ -1055,11 +1055,6 @@ Adresa: %4 Remove all transaction fields Smaž všechny transakční formuláře - - - Clear all - Všechno smaž - Balance: @@ -1105,11 +1100,6 @@ Adresa: %4 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. @@ -1135,6 +1125,16 @@ Adresa: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Chyba Transakce byla odmítnuta. Tohle může nastat, pokud nějaké mince z tvé peněženky už jednou byly utraceny, například pokud používáš kopii souboru wallet.dat a mince byly utraceny v druhé kopii, ale nebyly označeny jako utracené v této. + + + The amount to pay must be larger than 0. + Odesílaná částka musí být větší než 0. + + + + Clear all + Všechno smaž + SendCoinsEntry @@ -1482,6 +1482,26 @@ Adresa: %4 TransactionView + + + Type + Typ + + + + Could not write to file %1. + Nemohu zapisovat do souboru %1. + + + + Range: + Rozsah: + + + + to + + @@ -1598,11 +1618,6 @@ Adresa: %4 Date Datum - - - Type - Typ - Label @@ -1628,21 +1643,6 @@ Adresa: %4 Error exporting Chyba při exportu - - - Could not write to file %1. - Nemohu zapisovat do souboru %1. - - - - Range: - Rozsah: - - - - to - - WalletModel @@ -1660,34 +1660,34 @@ Adresa: %4 Verze Bitcoinu - - Usage: - Užití: + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Čekat na spojení na <portu> (výchozí: 8333 nebo testnet: 18333) - - Send command to -server or bitcoind - Poslat příkaz pro -server nebo bitcoind + + Maintain at most <n> connections to peers (default: 125) + Povol nejvýše <n> připojení k uzlům (výchozí: 125) - - List commands - Výpis příkazů + + Run in the background as a daemon and accept commands + Běžet na pozadí jako démon a akceptovat příkazy - - Get help for a command - Získat nápovědu pro příkaz + + Specify configuration file (default: bitcoin.conf) + Konfigurační soubor (výchozí: bitcoin.conf) - - Options: - Možnosti: + + Specify connection timeout (in milliseconds) + Zadej časový limit spojení (v milisekundách) - - Specify configuration file (default: bitcoin.conf) - Konfigurační soubor (výchozí: bitcoin.conf) + + Specify data directory + Adresář pro data @@ -1695,89 +1695,189 @@ Adresa: %4 PID soubor (výchozí: bitcoind.pid) - - Generate coins - Generovat mince + + Threshold for disconnecting misbehaving peers (default: 100) + Práh pro odpojování nesprávně se chovajících uzlů (výchozí: 100) - - Don't generate coins - Negenerovat mince + + Usage: + Užití: - - Start minimized - Startovat minimalizovaně + + Send command to -server or bitcoind + Poslat příkaz pro -server nebo bitcoind - - Show splash screen on startup (default: 1) - Zobrazovat startovací obrazovku (výchozí: 1) + + Options: + Možnosti: - - Specify data directory - Adresář pro data + + Username for JSON-RPC connections + Uživatelské jméno pro JSON-RPC spojení - - Specify connection timeout (in milliseconds) - Zadej časový limit spojení (v milisekundách) + + Send trace/debug info to console instead of debug.log file + Posílat stopovací/ladicí informace do konzole místo do souboru debug.log - - Connect through socks4 proxy - Připojovat se přes socks4 proxy + + Send trace/debug info to debugger + Posílat stopovací/ladicí informace do debuggeru - - Allow DNS lookups for addnode and connect - Povolit DNS dotazy pro addnode (přidání uzlu) a connect (připojení) + + 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) - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Čekat na spojení na <portu> (výchozí: 8333 nebo testnet: 18333) + + Use the test network + Použít testovací síť (testnet) - - Accept connections from outside (default: 1) - Přijímat spojení zvenčí (výchozí: 1) + + This help message + Tato nápověda - - Set language, for example "de_DE" (default: system locale) - Nastavit jazyk, například "de_DE" (výchozí: systémové nastavení) + + Loading addresses... + Načítám adresy... - - Find peers using DNS lookup (default: 1) - Hledat uzly přes DNS (výchozí: 1) + + 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 - - Use Universal Plug and Play to map the listening port (default: 1) - Použít UPnP k namapování naslouchacího portu (výchozí: 1) + + Error loading blkindex.dat + Chyba při načítání blkindex.dat - - Use Universal Plug and Play to map the listening port (default: 0) - Použít UPnP k namapování naslouchacího portu (výchozí: 0) - + + 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 Bitcoin + Chyba při načítání wallet.dat: peněženka vyžaduje novější verzi Bitcoinu + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Soubor s peněženkou potřeboval přepsat: restartuj Bitcoin, aby se operace dokončila + + + + Error loading wallet.dat + Chyba při načítání wallet.dat + + + + Cannot downgrade wallet + Nemohu převést peněženku do staršího formátu + + + + Cannot initialize keypool + Nemohu inicializovat zásobník klíčů + + + + Cannot write default address + Nemohu napsat výchozí adresu + + + + Done loading + Načítání dokončeno + + + + Fee per KB to add to transactions you send + Poplatek za KB, který se přidá ke každé odeslané transakci + + + + Find peers using internet relay chat (default: 0) + Hledat uzly přes IRC (výchozí: 0) + + + + How many blocks to check at startup (default: 2500, 0 = all) + Kolik bloků při startu zkontrolovat (výchozí: 2500, 0 = všechny) + + + + How thorough the block verification is (0-6, default: 1) + Jak moc důkladná má verifikace bloků být (0-6, výchozí: 1) + + + + Loading block index... + Načítám index bloků... + + + + Loading wallet... + Načítám peněženku... + + + + Rescanning... + Přeskenovávám... + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Akceptovatelné šifry (výchozí: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Warning: Disk space is low - Upozornění: Na disku je málo místa + + Set database cache size in megabytes (default: 25) + Nastavit velikost databázové vyrovnávací paměti v megabajtech (výchozí: 25) - - Maintain at most <n> connections to peers (default: 125) - Povol nejvýše <n> připojení k uzlům (výchozí: 125) + + List commands + Výpis příkazů + + + + Get help for a command + Získat nápovědu pro příkaz + + + + Generate coins + Generovat mince + + + + Don't generate coins + Negenerovat mince + + + + Start minimized + Startovat minimalizovaně + + + + Connect through socks4 proxy + Připojovat se přes socks4 proxy + + + + Allow DNS lookups for addnode and connect + Povolit DNS dotazy pro addnode (přidání uzlu) a connect (připojení) @@ -1785,14 +1885,19 @@ Adresa: %4 Připojovat se pouze k udanému uzlu - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Nedaří se mi získat zámek na datový adresář %s. Bitcoin pravděpodobně už jednou běží. + + Accept connections from outside (default: 1) + Přijímat spojení zvenčí (výchozí: 1) - - Threshold for disconnecting misbehaving peers (default: 100) - Práh pro odpojování nesprávně se chovajících uzlů (výchozí: 100) + + Set language, for example "de_DE" (default: system locale) + Nastavit jazyk, například "de_DE" (výchozí: systémové nastavení) + + + + Find peers using DNS lookup (default: 1) + Hledat uzly přes DNS (výchozí: 1) @@ -1809,25 +1914,35 @@ Adresa: %4 Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maximální velikost odesílacího bufferu pro každé spojení, <n>*1000 bytů (výchozí: 10000) + + + Use Universal Plug and Play to map the listening port (default: 1) + Použít UPnP k namapování naslouchacího portu (výchozí: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Použít UPnP k namapování naslouchacího portu (výchozí: 0) + Accept command line and JSON-RPC commands Akceptovat příkazy z příkazové řádky a přes JSON-RPC - - 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) + + Show splash screen on startup (default: 1) + Zobrazovat startovací obrazovku (výchozí: 1) - - Run in the background as a daemon and accept commands - Běžet na pozadí jako démon a akceptovat příkazy + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Nedaří se mi získat zámek na datový adresář %s. Bitcoin pravděpodobně už jednou běží. - - Use the test network - Použít testovací síť (testnet) + + 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) @@ -1839,21 +1954,6 @@ Adresa: %4 Prepend debug output with timestamp Připojit před ladící výstup časové razítko - - - Send trace/debug info to console instead of debug.log file - Posílat stopovací/ladící informace do konzole místo do souboru debug.log - - - - Send trace/debug info to debugger - Posílat stopovací/ladící informace do debuggeru - - - - Username for JSON-RPC connections - Uživatelské jméno pro JSON-RPC spojení - Password for JSON-RPC connections @@ -1869,11 +1969,6 @@ Adresa: %4 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) - Set key pool size to <n> (default: 100) @@ -1906,116 +2001,11 @@ Možnosti SSL: (viz instrukce nastavení SSL v Bitcoin Wiki) Server private key (default: server.pem) Soubor se serverovým soukromým klíčem (výchozí: server.pem) - - - This help message - Tato nápověda - - - - Loading addresses... - Načítám adresy... - - - - 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 - Error loading addr.dat Chyba při načítání addr.dat - - - Error loading blkindex.dat - Chyba při načítání blkindex.dat - - - - Error loading wallet.dat: Wallet corrupted - Chyba při načítání wallet.dat: peněženka je poškozená - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Chyba při načítání wallet.dat: peněženka vyžaduje novější verzi Bitcoinu - - - - Wallet needed to be rewritten: restart Bitcoin to complete - Soubor s peněženkou potřeboval přepsat: restartuj Bitcoin, aby se operace dokončila - - - - Error loading wallet.dat - Chyba při načítání wallet.dat - - - - Cannot downgrade wallet - Nemohu převést peněženku do staršího formátu - - - - Cannot initialize keypool - Nemohu inicializovat zásobník klíčů - - - - Cannot write default address - Nemohu napsat výchozí adresu - - - - Done loading - Načítání dokončeno - - - - Fee per KB to add to transactions you send - Poplatek za KB, který se přidá ke každé odeslané transakci - - - - Find peers using internet relay chat (default: 0) - Hledat uzly přes IRC (výchozí: 0) - - - - How many blocks to check at startup (default: 2500, 0 = all) - Kolik bloků při startu zkontrolovat (výchozí: 2500, 0 = všechny) - - - - How thorough the block verification is (0-6, default: 1) - Jak moc důkladná má verifikace bloků být (0-6, výchozí: 1) - - - - Loading block index... - Načítám index bloků... - - - - Loading wallet... - Načítám peněženku... - - - - Rescanning... - Přeskenovávám... - - - - Set database cache size in megabytes (default: 25) - Nastavit velikost databázové vyrovnávací paměti v megabajtech (výchozí: 25) - - - - Upgrade wallet to latest format - Převést peněženku na nejnovější formát - Invalid -proxy address @@ -2036,6 +2026,11 @@ Možnosti SSL: (viz instrukce nastavení SSL v Bitcoin Wiki) Error: CreateThread(StartNode) failed Chyba: Selhalo CreateThread(StartNode) + + + Warning: Disk space is low + Upozornění: Na disku je málo místa + Unable to bind to port %d on this computer. Bitcoin is probably already running. @@ -2051,5 +2046,10 @@ Možnosti SSL: (viz instrukce nastavení SSL v Bitcoin Wiki) beta beta + + + Upgrade wallet to latest format + Převést peněženku na nejnovější formát + diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index 9ff76e27c8..a30395056d 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -160,22 +160,20 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open Dialog Dialog + + + Repeat new passphrase + Gentag ny adgangskode + TextLabel TekstEtiket - - Enter passphrase - Indtast adgangskode - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ADVARSEL: Hvis du krypterer din tegnebog og mister dit kodeord vil du <b>miste alle dine BITCOINS</b>! -Er du sikker på at du ønsker at kryptere din tegnebog? + + Enter the old and new passphrase to the wallet. + Indtast den gamle og nye adgangskode til tegnebogen. @@ -183,30 +181,20 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Ny adgangskode - - Repeat new passphrase - Gentag ny adgangskode + + 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. 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>. - - - Wallet unlock failed - Tegnebogsoplåsning mislykkedes - Encrypt wallet Krypter tegnebog - - - 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. - This operation needs your wallet passphrase to unlock the wallet. @@ -223,35 +211,42 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Denne funktion har brug for din tegnebogs kodeord for at dekryptere tegnebogen. - - Decrypt wallet - Dekryptér tegnebog + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. + + + + Wallet unlock failed + Tegnebogsoplåsning mislykkedes + + + + + Warning: The Caps Lock key is on. + Change passphrase Skift adgangskode - - - Enter the old and new passphrase to the wallet. - Indtast den gamle og nye adgangskode til tegnebogen. - Confirm wallet encryption Bekræft tegnebogskryptering - - - Wallet encrypted - Tegnebog krypteret + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ADVARSEL: Hvis du krypterer din tegnebog og mister dit kodeord vil du <b>miste alle dine BITCOINS</b>! +Er du sikker på at du ønsker at kryptere din tegnebog? - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin will close now to finish the encryption process. Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. + + Decrypt wallet + Dekryptér tegnebog @@ -285,23 +280,28 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Tegnebogskodeord blev ændret. - - - Warning: The Caps Lock key is on. - + + Enter passphrase + Indtast adgangskode + + + + + Wallet encrypted + Tegnebog krypteret BitcoinGUI - - &Change Passphrase - &Skift adgangskode + + E&xit + &Luk - - Bitcoin Wallet - Bitcoin Tegnebog + + &Encrypt Wallet + &Kryptér tegnebog @@ -309,20 +309,15 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Synchronizing with network... Synkroniserer med netværk ... - - - Block chain synchronization in progress - Blokkæde synkronisering i gang - &Overview &Oversigt - - Show general overview of wallet - Vis generel oversigt over tegnebog + + Bitcoin Wallet + Bitcoin Tegnebog @@ -330,14 +325,22 @@ Er du sikker på at du ønsker at kryptere din tegnebog? &Transaktioner - - Browse transaction history - Gennemse transaktionshistorik + + &Export... + &Eksporter... - - &Address Book - &Adressebog + + Block chain synchronization in progress + Blokkæde synkronisering i gang + + + + %n second(s) ago + + %n sekund(er) siden + %n sekund(er) siden + @@ -360,24 +363,32 @@ Er du sikker på at du ønsker at kryptere din tegnebog? &Send coins - - Send coins to a bitcoin address - Send coins til en bitcoinadresse + + bitcoin-qt + bitcoin-qt - - Sign &message - + + Sent transaction + Afsendt transaktion - - Prove you control an address - + + Incoming transaction + Indgående transaktion - - E&xit - &Luk + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Dato: %1 +Beløb: %2 +Type: %3 +Adresse: %4 + @@ -385,9 +396,9 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Afslut program - - &About %1 - &Om %1 + + &Options... + &Indstillinger ... @@ -395,19 +406,24 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Vis oplysninger om Bitcoin - - About &Qt - Om &Qt + + Send coins to a bitcoin address + Send coins til en bitcoinadresse - - Show information about Qt - Vis oplysninger om Qt + + Sign &message + - - &Options... - &Indstillinger ... + + Prove you control an address + + + + + &About %1 + &Om %1 @@ -424,79 +440,31 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Show the Bitcoin window Vis Bitcoinvinduet - - - &Export... - &Eksporter... - Export the data in the current tab to a file - - - - - &Encrypt Wallet - &Kryptér tegnebog + Eksportér den aktuelle visning til en fil Encrypt or decrypt wallet Kryptér eller dekryptér tegnebog - - - &Backup Wallet - &Backup tegnebog - Backup wallet to another location + + + &Change Passphrase + &Skift adgangskode + Change the passphrase used for wallet encryption Skift kodeord anvendt til tegnebogskryptering - - - &File - &Fil - - - - &Settings - &Indstillinger - - - - &Help - &Hjælp - - - - Tabs toolbar - Faneværktøjslinje - - - - Actions toolbar - Handlingsværktøjslinje - - - - [testnet] - [testnet] - - - - %n active connection(s) to Bitcoin network - - %n aktiv(e) forbindelse(r) til Bitcoinnetværket - %n aktiv(e) forbindelse(r) til Bitcoinnetværket - - Backup Wallet @@ -518,17 +486,44 @@ Er du sikker på at du ønsker at kryptere din tegnebog? - - bitcoin-qt - bitcoin-qt + + About &Qt + Om &Qt + + + + Show information about Qt + Vis oplysninger om Qt + + + + &File + &Fil + + + + &Settings + &Indstillinger + + + + Tabs toolbar + Faneværktøjslinje + + + + [testnet] + [testnet] + + + + Downloaded %1 of %2 blocks of transaction history. + Downloadet %1 af %2 blokke af transaktionshistorie. - - - %n hour(s) ago - - %n time(r) siden - %n time(r) siden - + + + &Backup Wallet + &Backup tegnebog @@ -538,10 +533,13 @@ Er du sikker på at du ønsker at kryptere din tegnebog? %n minut(ter) siden - - - Downloaded %1 of %2 blocks of transaction history. - Downloadet %1 af %2 blokke af transaktionshistorie. + + + %n hour(s) ago + + %n time(r) siden + %n time(r) siden + @@ -551,16 +549,34 @@ Er du sikker på at du ønsker at kryptere din tegnebog? %n dag(e) siden + + + Actions toolbar + Handlingsværktøjslinje + Up to date Opdateret + + + %n active connection(s) to Bitcoin network + + %n aktiv(e) forbindelse(r) til Bitcoinnetværket + %n aktiv(e) forbindelse(r) til Bitcoinnetværket + + Catching up... Indhenter... + + + Downloaded %1 blocks of transaction history. + Downloadet %1 blokke af transaktionshistorie. + Last received block was generated %1. @@ -572,55 +588,39 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Denne transaktion er over størrelsesbegrænsningen. Du kan stadig sende den for et gebyr på %1 som går til de noder der behandler din transaktion, og som hjælper med at støtte netværket. Ønsker du at betale gebyret? - - Sending... - Sender... + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Tegnebog er <b>krypteret</b> og i øjeblikket <b>ulåst</b> - - Sent transaction - Afsendt transaktion + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> - - Incoming transaction - Indgående transaktion + + Sending... + Sender... - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Dato: %1 -Beløb: %2 -Type: %3 -Adresse: %4 - + + Show general overview of wallet + Vis generel oversigt over tegnebog - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Tegnebog er <b>krypteret</b> og i øjeblikket <b>ulåst</b> + + Browse transaction history + Gennemse transaktionshistorik - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> + + &Address Book + &Adressebog - - Downloaded %1 blocks of transaction history. - Downloadet %1 blokke af transaktionshistorie. - - - - %n second(s) ago - - %n sekund(er) siden - %n sekund(er) siden - + + &Help + &Hjælp @@ -640,16 +640,16 @@ Adresse: %4 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 når du sender coins - - - &Display addresses in transaction list - &Vis adresser i transaktionensliste - Whether to show Bitcoin addresses in the transaction list + + + &Display addresses in transaction list + &Vis adresser i transaktionensliste + EditAddressDialog @@ -689,43 +689,38 @@ Adresse: %4 Ny afsendelsesadresse - - The entered address "%1" is already in the address book. - Den indtastede adresse "%1" er allerede i adressebogen. + + 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. + Could not unlock wallet. Kunne ikke låse tegnebog op. - - - The entered address "%1" is not a valid bitcoin address. - Den indtastede adresse "%1" er ikke en gyldig bitcoinadresse. - New key generation failed. Ny nøglegenerering mislykkedes. - - Edit receiving address - Rediger modtagelsesadresse + + The entered address "%1" is not a valid bitcoin address. + Den indtastede adresse "%1" er ikke en gyldig bitcoinadresse. MainOptionsPage - - - Show only a tray icon after minimizing the window - Vis kun et systembakkeikon efter minimering af vinduet - &Start Bitcoin on window system startup @@ -741,6 +736,11 @@ Adresse: %4 &Minimize to the tray instead of the taskbar &Minimer til systembakken i stedet for proceslinjen + + + Show only a tray icon after minimizing the window + Vis kun et systembakkeikon efter minimering af vinduet + Map port using &UPnP @@ -771,16 +771,6 @@ Adresse: %4 Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Opret forbindelse til Bitconnetværket via en SOCKS4 proxy (f.eks. ved tilslutning gennem Tor) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1 kB. Gebyr på 0.01 anbefales. - - - - Pay transaction &fee - Betal transaktions&gebyr - Proxy &IP: @@ -801,13 +791,23 @@ Adresse: %4 Port of the proxy (e.g. 1234) Porten på proxyen (f.eks. 1234) + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1 kB. Gebyr på 0.01 anbefales. + + + + Pay transaction &fee + Betal transaktions&gebyr + MessagePage Message - + Besked @@ -817,7 +817,7 @@ Adresse: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Indtast en Bitcoinadresse (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -859,16 +859,16 @@ Adresse: %4 &Copy to Clipboard &Kopier til Udklipsholder - - - Alt+A - Alt+A - Alt+P Alt+P + + + Alt+A + Alt+A + @@ -879,7 +879,7 @@ Adresse: %4 %1 is not a valid address. - + Den indtastede adresse "%1" er ikke en gyldig bitcoinadresse. @@ -894,16 +894,16 @@ Adresse: %4 OptionsDialog - - - Main - Generelt - Options Indstillinger + + + Main + Generelt + Display @@ -912,16 +912,16 @@ Adresse: %4 OverviewPage - - - Form - Formular - Balance: Saldo: + + + Form + Formular + Number of transactions: @@ -930,7 +930,7 @@ Adresse: %4 0 - + 0 @@ -940,7 +940,7 @@ Adresse: %4 Wallet - + tegnebog @@ -965,6 +965,16 @@ Adresse: %4 QRCodeDialog + + + Message: + Besked: + + + + Dialog + Dialog + QR Code @@ -978,7 +988,7 @@ Adresse: %4 Amount: - + Beløb: @@ -990,21 +1000,11 @@ Adresse: %4 Label: Etiket: - - - Message: - Besked: - &Save As... - - - Dialog - Dialog - Error encoding URI into QR Code. @@ -1024,19 +1024,9 @@ Adresse: %4 SendCoinsDialog - - Send to multiple recipients at once - Send til flere modtagere på én gang - - - - Confirm the send action - Bekræft afsendelsen - - - - 123.456 BTC - 123.456 BTC + + Balance: + Saldo: @@ -1048,7 +1038,7 @@ Adresse: %4 Send Coins - + Send Coins @@ -1056,19 +1046,19 @@ Adresse: %4 - - &Send - &Afsend - - - - &Add recipient... - &Tilføj modtager... + + 123.456 BTC + 123.456 BTC - - Balance: - Saldo: + + Confirm the send action + Bekræft afsendelsen + + + + &Send + &Afsend @@ -1095,11 +1085,6 @@ Adresse: %4 The recipient address is not valid, please recheck. Modtagerens adresse er ikke gyldig. Tjek venligst adressen igen. - - - The amount exceeds your balance. - Beløbet overstiger din saldo. - The total exceeds your balance when the %1 transaction fee is included. @@ -1125,11 +1110,26 @@ Adresse: %4 Clear all Ryd alle + + + &Add recipient... + &Tilføj modtager... + + + + Send to multiple recipients at once + Send til flere modtagere på én gang + 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. + SendCoinsEntry @@ -1159,6 +1159,11 @@ Adresse: %4 &Label: &Etiket: + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adresse som betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Choose address from address book @@ -1167,51 +1172,66 @@ Adresse: %4 Alt+A - Alt+A + Alt+A Paste address from clipboard - Indsæt adresse fra udklipsholderen - - - - Alt+P - Alt+P + Indsæt adresse fra udklipsholderen Remove this recipient Fjern denne modtager - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adresse som betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Indtast en Bitcoinadresse (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + Alt+P + Alt+P + TransactionDesc - - Message: - Besked: + + %1 confirmations + %1 bekræftelser + + + + <b>Status:</b> + <b>Status:</b> , has not been successfully broadcast yet , er ikke blevet transmitteret endnu + + + Open until %1 + Åben indtil %1 + Open for %1 blocks Åben for %1 blokke + + + %1/offline? + %1/offline? + + + + %1/unconfirmed + %1/ubekræftet + , broadcast through %1 node @@ -1232,31 +1252,6 @@ Adresse: %4 <b>Source:</b> Generated<br> <b>Kilde:</b> Genereret<br> - - - %1/unconfirmed - %1/ubekræftet - - - - Open until %1 - Åben indtil %1 - - - - %1/offline? - - - - - %1 confirmations - %1 bekræftelser - - - - <b>Status:</b> - - @@ -1308,18 +1303,23 @@ Adresse: %4 <b>Debit:</b> - <b>Debet:</b> + <b>Debet:</b> <b>Transaction fee:</b> - <b>Transaktionsgebyr:</b> + <b>Transaktionsgebyr:</b> <b>Net amount:</b> <b>Nettobeløb:</b> + + + Message: + Besked: + Comment: @@ -1351,6 +1351,21 @@ Adresse: %4 TransactionTableModel + + + (n/a) + (n/a) + + + + Transaction status. Hover over this field to show number of confirmations. + Transactionsstatus. Hold musen over dette felt for at vise antallet af bekræftelser. + + + + Date and time that the transaction was received. + Dato og tid for at transaktionen blev modtaget. + Date @@ -1399,14 +1414,6 @@ Adresse: %4 Confirmed (%1 confirmations) Bekræftet (%1 bekræftelser) - - - Mined balance will be available in %n more blocks - - Minerede balance vil være tilgængelig om %n blok(ke) - Minerede balance vil være tilgængelig om %n blok(ke) - - This block was not received by any other nodes and will probably not be accepted! @@ -1428,24 +1435,19 @@ Adresse: %4 Modtaget fra - - (n/a) - (n/a) - - - - Transaction status. Hover over this field to show number of confirmations. - Transactionsstatus. Hold musen over dette felt for at vise antallet af bekræftelser. + + Sent to + Sendt til - - Date and time that the transaction was received. - Dato og tid for at transaktionen blev modtaget. + + Payment to yourself + Betaling til dig selv - - Type of transaction. - Type af transaktion. + + Mined + Minerede @@ -1458,43 +1460,46 @@ Adresse: %4 Beløb fjernet eller tilføjet balance. - - Payment to yourself - Betaling til dig selv - - - - Mined - Minerede + + Type of transaction. + Type af transaktion. - - - Sent to - Sendt til + + + Mined balance will be available in %n more blocks + + Minerede balance vil være tilgængelig om %n blok(ke) + Minerede balance vil være tilgængelig om %n blok(ke) + TransactionView + + + Confirmed + Bekræftet + + + + Date + Dato + + + + Type + Type + ID ID - - - Error exporting - Fejl under eksport - Could not write to file %1. Kunne ikke skrive til filen %1. - - - Range: - Interval: - to @@ -1606,21 +1611,6 @@ Adresse: %4 Comma separated file (*.csv) Kommasepareret fil (*.csv) - - - Confirmed - Bekræftet - - - - Date - Dato - - - - Type - Type - Label @@ -1628,94 +1618,72 @@ Adresse: %4 - Address - Adresse - - - - Amount - Beløb - - - - WalletModel - - - Sending... - Sender... - - - - bitcoin-core - - - Bitcoin version - Bitcoinversion - - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kan låse data-biblioteket %s. Bitcoin kører sikkert allerede. - - - - Loading addresses... - Indlæser adresser... - - - - Loading block index... - Indlæser blok-indeks... - - - - Loading wallet... - Indlæser tegnebog... - - - - Wallet needed to be rewritten: restart Bitcoin to complete - + Address + Adresse - - Cannot downgrade wallet - + + Amount + Beløb - - Cannot initialize keypool - + + Error exporting + Fejl under eksport - - Cannot write default address - + + Range: + Interval: + + + WalletModel - - Rescanning... - Genindlæser... + + Sending... + Sender... + + + bitcoin-core - - 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. + + Usage: + Anvendelse: - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Advarsel: Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet. Hvis der er fejl i disse vil Bitcoin ikke fungere korrekt. + + Loading addresses... + Indlæser adresser... Done loading Indlæsning gennemført + + + Send command to -server or bitcoind + Send kommando til -server eller bitcoind + + + + + List commands + Liste over kommandoer + + Options: Indstillinger: + + + + + Get help for a command + Få hjælp til en kommando @@ -1742,11 +1710,6 @@ Adresse: %4 Generér ikke coins - - - Invalid -proxy address - Ugyldig -proxy adresse - Specify data directory @@ -1760,14 +1723,25 @@ Adresse: %4 - - beta - beta + + Invalid -proxy address + Ugyldig -proxy adresse Accept command line and JSON-RPC commands Accepter kommandolinje- og JSON-RPC-kommandoer + + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Kunne ikke binde sig til port %d på denne computer. Bitcoin kører sikkert allerede. + + + + Run in the background as a daemon and accept commands + Kør i baggrunden som en service, og acceptér kommandoer @@ -1780,31 +1754,16 @@ Adresse: %4 Set database cache size in megabytes (default: 25) - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Lyt til forbindelser på <port> (standard: 8333 or testnet: 18333) - Maintain at most <n> connections to peers (default: 125) - - - Add a node to connect to and attempt to keep the connection open - Tilføj en node til at forbinde til and attempt to keep the connection open - Find peers using internet relay chat (default: 0) - - - Accept connections from outside (default: 1) - Acceptér forbindelser udefra - Set language, for example "de_DE" (default: system locale) @@ -1835,27 +1794,6 @@ Adresse: %4 Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - - Use Universal Plug and Play to map the listening port (default: 1) - Forsøg at bruge UPnP til at kofnigurere den lyttende port (standard: 1) - - - - Use Universal Plug and Play to map the listening port (default: 0) - Forsøg at bruge UPnP til at kofnigurere den lyttende port (standard: 0) - - - - Fee per KB to add to transactions you send - Gebyr pr. kB, som skal tilføjes til transaktioner du sender - - - - Run in the background as a daemon and accept commands - Kør i baggrunden som en service, og acceptér kommandoer - - Use the test network @@ -1969,66 +1907,90 @@ Adresse: %4 - - Connect only to the specified node - Tilslut kun til den angivne node + + Connect through socks4 proxy + Tilslut via SOCKS4 proxy - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL-indstillinger: (se Bitcoin Wiki for SSL opsætningsinstruktioner) + + Bitcoin version + Bitcoinversion - - Send command to -server or bitcoind - Send kommando til -server eller bitcoind - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kan låse data-biblioteket %s. Bitcoin kører sikkert allerede. - - List commands - Liste over kommandoer - + + Loading block index... + Indlæser blok-indeks... - - Get help for a command - Få hjælp til en kommando - + + Loading wallet... + Indlæser tegnebog... - - Usage: - Anvendelse: + + Wallet needed to be rewritten: restart Bitcoin to complete + + + + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Rescanning... + Genindlæser... + + + + 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. Error: CreateThread(StartNode) failed Fejl: CreateThread(StartNode) mislykkedes + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Advarsel: Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet. Hvis der er fejl i disse vil Bitcoin ikke fungere korrekt. + Invalid amount for -paytxfee=<amount> Ugyldigt beløb for -paytxfee=<amount> - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Kunne ikke binde sig til port %d på denne computer. Bitcoin kører sikkert allerede. + + Warning: Disk space is low + Advarsel: Diskplads er lav + + + + beta + beta Start minimized Start minimeret - - - - - Connect through socks4 proxy - Tilslut via SOCKS4 proxy @@ -2037,11 +1999,54 @@ SSL-indstillinger: (se Bitcoin Wiki for SSL opsætningsinstruktioner)Tillad DNS-opslag for addnode og connect + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Lyt til forbindelser på <port> (standard: 8333 or testnet: 18333) + + + + Add a node to connect to and attempt to keep the connection open + Tilføj en node til at forbinde til and attempt to keep the connection open + + + + Connect only to the specified node + Tilslut kun til den angivne node + + + + + Accept connections from outside (default: 1) + Acceptér forbindelser udefra + + + + Use Universal Plug and Play to map the listening port (default: 1) + Forsøg at bruge UPnP til at kofnigurere den lyttende port (standard: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Forsøg at bruge UPnP til at kofnigurere den lyttende port (standard: 0) + + + + Fee per KB to add to transactions you send + Gebyr pr. kB, som skal tilføjes til transaktioner du sender + Username for JSON-RPC connections Brugernavn til JSON-RPC-forbindelser + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL-indstillinger: (se Bitcoin Wiki for SSL opsætningsinstruktioner) @@ -2068,10 +2073,5 @@ SSL-indstillinger: (se Bitcoin Wiki for SSL opsætningsinstruktioner)Error loading wallet.dat Fejl ved indlæsning af wallet.dat - - - Warning: Disk space is low - Advarsel: Diskplads er lav - diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index 919d7149b3..ae2b11aca5 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -42,7 +42,7 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open These are your Bitcoin 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. - Dies sind Ihre Bitcoin-Adressen zum Empfangen von Zahlungen. Es steht Ihnen frei, jedem Absender eine andere mitzuteilen, um einen besseren Überblick über eingehende Zahlungen zu erhalten. + Dies sind Ihre Bitcoin-Adressen zum Empfangen von Zahlungen. Es steht Ihnen frei, jedem Absender eine Andere mitzuteilen, um einen besseren Überblick über eingehende Zahlungen zu erhalten. @@ -67,17 +67,7 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open &Copy to Clipboard - Signatur in die Zwischenablage &kopieren - - - - Show &QR Code - &QR-Code anzeigen - - - - &Sign Message - Nachricht &signieren + In die Zwischenablage &kopieren @@ -89,31 +79,31 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open &Delete &Löschen + + + &Sign Message + Nachricht &signieren + + + + Show &QR Code + &QR-Code anzeigen + Sign a message to prove you own this address Eine Nachricht signieren, um den Besitz einer Adresse zu beweisen - - Export Address Book Data - Adressbuch exportieren - - - - Comma separated file (*.csv) - Kommagetrennte Datei (*.csv) + + Copy address + Adresse kopieren Copy label Bezeichnung kopieren - - - Copy address - Adresse kopieren - Edit @@ -125,23 +115,28 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Löschen - - Error exporting - Fehler beim Exportieren + + Export Address Book Data + Adressbuch exportieren + + + + Comma separated file (*.csv) + Kommagetrennte Datei (*.csv) Could not write to file %1. Konnte nicht in Datei %1 schreiben. + + + Error exporting + Fehler beim Exportieren + AddressTableModel - - - (no label) - (keine Bezeichnung) - Label @@ -152,36 +147,33 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Address Adresse + + + (no label) + (keine Bezeichnung) + AskPassphraseDialog - - - - - - Wallet encryption failed - Verschlüsselung der Brieftasche fehlgeschlagen - - - - Dialog - Dialog - Enter passphrase Passphrase eingeben + + + Unlock wallet + Brieftasche entsperren + New passphrase Neue Passphrase - - Decrypt wallet - Brieftasche entschlüsseln + + Change passphrase + Passphrase ändern @@ -189,9 +181,9 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Neue Passphrase wiederholen - - Encrypt wallet - Brieftasche verschlüsseln + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Geben Sie die neue Passphrase für die Brieftasche ein.<br>Bitte benutzen Sie eine Passphrase bestehend aus <b>10 oder mehr zufälligen Zeichen</b> oder <b>8 oder mehr Wörtern</b>. @@ -199,32 +191,14 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Textbezeichnung - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Die Verschlüsselung der Brieftasche ist aufgrund eines internen Fehlers fehlgeschlagen. Ihre Brieftasche wurde nicht verschlüsselt. - - - - - The supplied passphrases do not match. - Die eingegebenen Passphrasen stimmen nicht überein. - - - - Wallet unlock failed - Entsperrung der Brieftasche fehlgeschlagen - - - - - - The passphrase entered for the wallet decryption was incorrect. - Die eingegebene Passphrase zum Entschlüsseln der Brieftasche war nicht korrekt. + + Encrypt wallet + Brieftasche verschlüsseln - - Wallet decryption failed - Entschlüsselung der Brieftasche fehlgeschlagen + + Dialog + Dialog @@ -232,36 +206,35 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Wallet encrypted Brieftasche verschlüsselt - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung Ihrer Brieftasche nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadsoftware schützt, die Ihren Computer befällt. - Enter the old and new passphrase to the wallet. Geben Sie die alte und die neue Passphrase der Brieftasche ein. - - Wallet passphrase was successfully changed. - Die Passphrase der Brieftasche wurde erfolgreich geändert. + + Confirm wallet encryption + Verschlüsselung der Brieftasche bestätigen - - - Warning: The Caps Lock key is on. - Warnung: Die Feststelltaste ist aktiviert. + + + + + Wallet encryption failed + Verschlüsselung der Brieftasche fehlgeschlagen - - This operation needs your wallet passphrase to decrypt the wallet. - Dieser Vorgang benötigt Ihre Passphrase um die Brieftasche zu entschlüsseln. + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Die Verschlüsselung der Brieftasche ist aufgrund eines internen Fehlers fehlgeschlagen. Ihre Brieftasche wurde nicht verschlüsselt. - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Geben Sie die neue Passphrase für die Brieftasche ein.<br>Bitte benutzen Sie eine Passphrase bestehend aus <b>10 oder mehr zufälligen Zeichen</b> oder <b>8 oder mehr Wörtern</b>. + + + + The passphrase entered for the wallet decryption was incorrect. + Die eingegebene Passphrase zum Entschlüsseln der Brieftasche war nicht korrekt. @@ -269,19 +242,14 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Dieser Vorgang benötigt Ihre Passphrase um die Brieftasche zu entsperren. - - Unlock wallet - Brieftasche entsperren - - - - Change passphrase - Passphrase ändern + + This operation needs your wallet passphrase to decrypt the wallet. + Dieser Vorgang benötigt Ihre Passphrase um die Brieftasche zu entschlüsseln. - - Confirm wallet encryption - Verschlüsselung der Brieftasche bestätigen + + Decrypt wallet + Brieftasche entschlüsseln @@ -289,18 +257,55 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Are you sure you wish to encrypt your wallet? WARNUNG: Wenn Sie Ihre Brieftasche verschlüsseln und Ihre Passphrase verlieren, werden Sie <b>ALLE IHRE BITCOINS VERLIEREN</b>!<br><br>Sind Sie sich sicher, dass Sie Ihre Brieftasche verschlüsseln möchten? + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung Ihrer Brieftasche nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadsoftware schützt, die Ihren Computer befällt. + + + + + The supplied passphrases do not match. + Die eingegebenen Passphrasen stimmen nicht überein. + + + + Wallet unlock failed + Entsperrung der Brieftasche fehlgeschlagen + + + + Wallet decryption failed + Entschlüsselung der Brieftasche fehlgeschlagen + + + + Wallet passphrase was successfully changed. + Die Passphrase der Brieftasche wurde erfolgreich geändert. + + + + + Warning: The Caps Lock key is on. + Warnung: Die Feststelltaste ist aktiviert. + BitcoinGUI - - Edit the list of stored addresses and labels - Liste der gespeicherten Zahlungsadressen und Bezeichnungen bearbeiten + + &Overview + &Übersicht - - Show the list of addresses for receiving payments - Liste der Empfangsadressen anzeigen + + Show general overview of wallet + Allgemeine Übersicht der Brieftasche anzeigen + + + + &Transactions + &Transaktionen @@ -308,9 +313,14 @@ Are you sure you wish to encrypt your wallet? Bitcoins &überweisen - - Send coins to a bitcoin address - Bitcoins an eine Bitcoin-Adresse überweisen + + Change the passphrase used for wallet encryption + Ändert die Passphrase, die für die Verschlüsselung der Brieftasche benutzt wird + + + + Bitcoin Wallet + Bitcoin-Brieftasche @@ -318,14 +328,14 @@ Are you sure you wish to encrypt your wallet? Informationen über Qt anzeigen - - Change the passphrase used for wallet encryption - Ändert die Passphrase, die für die Verschlüsselung der Brieftasche benutzt wird + + &Change Passphrase + Passphrase &ändern... - - Bitcoin Wallet - Bitcoin-Brieftasche + + Sending... + Transaktionsgebühr bestätigen @@ -339,29 +349,19 @@ Are you sure you wish to encrypt your wallet? Synchronisation der Blockkette wird durchgeführt - - Export the data in the current tab to a file - Daten der aktuellen Ansicht in eine Datei exportieren + + Browse transaction history + Transaktionsverlauf durchsehen - - Show general overview of wallet - Allgemeine Übersicht der Brieftasche anzeigen + + &Address Book + &Adressbuch - - &Transactions - &Transaktionen - - - - Browse transaction history - Transaktionsverlauf durchsehen - - - - &Address Book - &Adressbuch + + Edit the list of stored addresses and labels + Liste der gespeicherten Zahlungsadressen und Bezeichnungen bearbeiten @@ -369,20 +369,35 @@ Are you sure you wish to encrypt your wallet? Bitcoins &empfangen - - &Overview - &Übersicht + + Show the list of addresses for receiving payments + Liste der Empfangsadressen anzeigen Prove you control an address Beweisen Sie die Kontrolle einer Adresse + + + E&xit + &Beenden + Quit application Anwendung beenden + + + &About %1 + &Über %1 + + + + &Options... + &Erweiterte Einstellungen... + Show information about Bitcoin @@ -393,51 +408,56 @@ Are you sure you wish to encrypt your wallet? About &Qt Über &Qt - - - &Options... - &Erweiterte Einstellungen... - Show the Bitcoin window Bitcoin-Fenster anzeigen + + + &Export... + &Exportieren... + + + + Export the data in the current tab to a file + Daten der aktuellen Ansicht in eine Datei exportieren + &Encrypt Wallet Brieftasche &verschlüsseln... - - &Change Passphrase - Passphrase &ändern... - - - - &Settings - &Einstellungen + + Encrypt or decrypt wallet + Brieftasche ent- oder verschlüsseln &Help &Hilfe + + + Backup wallet to another location + Eine Sicherungskopie der Brieftasche erstellen und abspeichern + Tabs toolbar Registerkarten-Leiste + + + &File + &Datei + Actions toolbar Aktionen-Werkzeugleiste - - - Backup wallet to another location - Eine Sicherungskopie der Brieftasche erstellen und abspeichern - %n active connection(s) to Bitcoin network @@ -446,11 +466,6 @@ Are you sure you wish to encrypt your wallet? %n aktive Verbindungen zum Bitcoin-Netzwerk - - - [testnet] - [Testnetz] - Downloaded %1 blocks of transaction history. @@ -464,11 +479,6 @@ Are you sure you wish to encrypt your wallet? vor %n Sekunden - - - Sign &message - &Nachricht signieren... - %n minute(s) ago @@ -485,6 +495,24 @@ Are you sure you wish to encrypt your wallet? vor %n Stunden + + + %n day(s) ago + + vor %n Tag + vor %n Tagen + + + + + Send coins to a bitcoin address + Bitcoins an eine Bitcoin-Adresse überweisen + + + + Sign &message + &Nachricht signieren... + Up to date @@ -495,11 +523,6 @@ Are you sure you wish to encrypt your wallet? Catching up... Hole auf... - - - &About %1 - &Über %1 - Last received block was generated %1. @@ -510,21 +533,6 @@ Are you sure you wish to encrypt your wallet? 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? Die Transaktion übersteigt das Größenlimit. Sie können sie trotzdem senden, wenn Sie eine zusätzliche Transaktionsgebühr in Höhe von %1 zahlen. Diese wird an die Knoten verteilt, die Ihre Transaktion bearbeiten und unterstützt damit das Bitcoin-Netzwerk.<br><br>Möchten Sie die Gebühr bezahlen? - - - Modify configuration options for bitcoin - Erweiterte Bitcoin-Einstellungen ändern - - - - Open &Bitcoin - &Bitcoin öffnen - - - - bitcoin-qt - - Sent transaction @@ -548,9 +556,14 @@ Typ: %3 Adresse: %4 - - &Backup Wallet - Brieftasche &sichern... + + Modify configuration options for bitcoin + Erweiterte Bitcoin-Einstellungen ändern + + + + Open &Bitcoin + &Bitcoin öffnen @@ -562,11 +575,6 @@ Adresse: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> Brieftasche ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> - - - E&xit - &Beenden - Backup Wallet @@ -577,6 +585,11 @@ Adresse: %4 Wallet Data (*.dat) Brieftaschendaten (*.dat) + + + &Backup Wallet + Brieftasche &sichern... + Backup Failed @@ -588,32 +601,19 @@ Adresse: %4 Fehler beim Abspeichern der Sicherungskopie der Brieftasche. - - &Export... - &Exportieren... - - - - Encrypt or decrypt wallet - Brieftasche ent- oder verschlüsseln + + &Settings + &Einstellungen - - &File - &Datei - - - - %n day(s) ago - - vor %n Tag - vor %n Tagen - + + [testnet] + [Testnetz] - - Sending... - Transaktionsgebühr bestätigen + + bitcoin-qt + bitcoin-qt @@ -719,6 +719,11 @@ Adresse: %4 MainOptionsPage + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. + Minimiert die Anwendung anstatt sie zu Beenden, wenn das Fenster geschlossen wird. Wenn dies aktiviert ist, müssen Sie das Programm über "Beenden" im Menü schließen. + &Start Bitcoin on window system startup @@ -754,11 +759,6 @@ Adresse: %4 M&inimize on close Beim Schließen &minimieren - - - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Minimiert die Anwendung anstatt sie zu Beenden, wenn das Fenster geschlossen wird. Wenn dies aktiviert ist, müssen Sie das Programm über "Beenden" im Menü schließen. - &Connect through SOCKS4 proxy: @@ -777,7 +777,7 @@ Adresse: %4 IP address of the proxy (e.g. 127.0.0.1) - IP-Adresse des Proxyservers (z.B. 127.0.0.1) + IP-Adresse des Proxy-Servers (z.B. 127.0.0.1) @@ -789,16 +789,16 @@ Adresse: %4 Port of the proxy (e.g. 1234) Port des Proxy-Servers (z.B. 1234) - - - Pay transaction &fee - Transaktions&gebühr bezahlen - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Optionale Transaktionsgebühr pro kB, die sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 wird empfohlen. + + + Pay transaction &fee + Transaktions&gebühr bezahlen + MessagePage @@ -812,6 +812,38 @@ Adresse: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Sie können Nachrichten mit Ihren Adressen signieren, um den Besitz dieser Adressen zu beweisen. Bitte nutzen Sie diese Funktion mit Vorsicht und nehmen Sie sich vor Phishing-Angriffen in Acht, um nicht ungewollt etwas zu signieren, dass für Sie negative Auswirkungen haben könnte. + + + Sign a message to prove you own this address + Die Nachricht signieren, um den Besitz der angegebenen Adresse nachzuweisen + + + + &Sign Message + Nachricht &signieren + + + + + + Error signing + Fehler beim Signieren + + + + %1 is not a valid address. + %1 ist keine gültige Adresse. + + + + Private key for %1 is not available. + Privater Schlüssel für %1 ist nicht verfügbar. + + + + Sign failed + Signierung der Nachricht fehlgeschlagen + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -842,79 +874,42 @@ Adresse: %4 Enter the message you want to sign here Zu signierende Nachricht hier eingeben - - - Copy the current signature to the system clipboard - Aktuelle Signatur in die Zwischenablage kopieren - Click "Sign Message" to get signature Auf "Nachricht signieren" klicken, um die Signatur zu erhalten. Diese wird dann hier angezeigt. - - Sign a message to prove you own this address - Die Nachricht signieren, um den Besitz der angegebenen Adresse nachzuweisen - - - - &Sign Message - Nachricht &signieren + + Copy the current signature to the system clipboard + Aktuelle Signatur in die Zwischenablage kopieren &Copy to Clipboard Signatur in die Zwischenablage &kopieren + + + OptionsDialog - - - - Error signing - Fehler beim Signieren + + Main + Allgemein - - %1 is not a valid address. - %1 ist keine gültige Adresse. - - - - Private key for %1 is not available. - Privater Schlüssel für %1 ist nicht verfügbar. - - - - Sign failed - Signierung der Nachricht fehlgeschlagen + + Display + Anzeige - - - OptionsDialog Options Erweiterte Einstellungen - - - Main - Allgemein - - - - Display - Anzeige - OverviewPage - - - Form - Formular - Balance: @@ -926,19 +921,19 @@ Adresse: %4 Anzahl der Transaktionen: - - 0 - + + Unconfirmed: + Unbestätigt: - - Wallet - Brieftasche + + <b>Recent transactions</b> + <b>Letzte Transaktionen</b> - - Unconfirmed: - Unbestätigt: + + Your current balance + Ihr aktueller Kontostand @@ -946,23 +941,33 @@ Adresse: %4 Betrag aus unbestätigten Transaktionen, der noch nicht im aktuellen Kontostand enthalten ist - - Total number of transactions in wallet - Anzahl aller Transaktionen in der Brieftasche + + Form + Formular - - <b>Recent transactions</b> - <b>Letzte Transaktionen</b> + + Wallet + Brieftasche - - Your current balance - Ihr aktueller Kontostand + + 0 + 0 + + + + Total number of transactions in wallet + Anzahl aller Transaktionen in der Brieftasche QRCodeDialog + + + Message: + Nachricht: + Request Payment @@ -978,16 +983,6 @@ Adresse: %4 PNG Images (*.png) PNG Bild (*.png) - - - Dialog - Dialog - - - - QR Code - QR-Code - Amount: @@ -1004,28 +999,28 @@ Adresse: %4 Bezeichnung: - - Message: - Nachricht: + + Save Image... + QR-Code abspeichern + + + + Dialog + Dialog + + + + QR Code + QR-Code Error encoding URI into QR Code. Fehler beim Kodieren der URI in den QR-Code. - - - Save Image... - QR-Code abspeichern - SendCoinsDialog - - - Clear all - - Balance: @@ -1051,11 +1046,31 @@ Adresse: %4 <b>%1</b> to %2 (%3) <b>%1</b> an %2 (%3) + + + Confirm send coins + Überweisung bestätigen + Are you sure you want to send %1? Sind Sie sich sicher, dass Sie die folgende Überweisung ausführen möchten?<br>%1 + + + and + und + + + + The amount to pay must be larger than 0. + Der zu zahlende Betrag muss größer als 0 sein. + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Fehler: Die Transaktion wurde abgelehnt. Dies kann passieren, wenn einige Bitcoins aus Ihrer Brieftasche bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie Ihrer wallet.dat genutzt, die Bitcoins dort ausgegeben haben und dies daher in der derzeit aktiven Brieftasche nicht vermerkt ist. + @@ -1084,25 +1099,15 @@ Adresse: %4 Alle Überweisungsfelder zurücksetzen - - Confirm send coins - Überweisung bestätigen - - - - and - und + + Clear all + Zurücksetzen 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. @@ -1123,19 +1128,9 @@ Adresse: %4 Error: Transaction creation failed. Fehler: Transaktionserstellung fehlgeschlagen. - - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Fehler: Die Transaktion wurde abgelehnt. Dies kann passieren, wenn einige Bitcoins aus Ihrer Brieftasche bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie Ihrer wallet.dat genutzt, die Bitcoins dort ausgegeben haben und dies daher in der derzeit aktiven Brieftasche nicht vermerkt ist. - SendCoinsEntry - - - Form - Formular - A&mount: @@ -1187,6 +1182,11 @@ Adresse: %4 Remove this recipient Diesen Empfänger entfernen + + + Form + Formular + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1195,35 +1195,10 @@ Adresse: %4 TransactionDesc - - - %1 confirmations - %1 Bestätigungen - - - - , has not been successfully broadcast yet - , wurde noch nicht erfolgreich übertragen - - - - <b>Status:</b> - <b>Status:</b> - - - - %1/offline? - %1/offline? - - - - Open for %1 blocks - Offen für %1 Blöcke - Open until %1 - Offen bis %1 + Offen bis %1 @@ -1231,9 +1206,14 @@ Adresse: %4 %1/unbestätigt - - , broadcast through %1 node - , über %1 Knoten übertragen + + %1 confirmations + %1 Bestätigungen + + + + unknown + unbekannt @@ -1243,12 +1223,7 @@ Adresse: %4 <b>Date:</b> - <b>Datum:</b> - - - - <b>Source:</b> Generated<br> - <b>Quelle:</b> Generiert<br> + <b>Datum:</b> @@ -1256,11 +1231,6 @@ Adresse: %4 <b>From:</b> <b>Von:</b> - - - unknown - unbekannt - @@ -1296,6 +1266,36 @@ Adresse: %4 (not accepted) (nicht angenommen) + + + Open for %1 blocks + Offen für %1 Blöcke + + + + %1/offline? + %1/offline? + + + + <b>Status:</b> + <b>Status:</b> + + + + , has not been successfully broadcast yet + , wurde noch nicht erfolgreich übertragen + + + + , broadcast through %1 node + , über %1 Knoten übertragen + + + + <b>Source:</b> Generated<br> + <b>Quelle:</b> Generiert<br> + @@ -1316,7 +1316,7 @@ Adresse: %4 Message: - Nachricht: + Nachricht: @@ -1350,17 +1350,55 @@ Adresse: %4 TransactionTableModel - - Sent to - Überwiesen an + + Address + Adresse - - - Payment to yourself - Eigenüberweisung + + + Open for %n block(s) + + Offen für %n Block + Offen für %n Blöcke + - + + Open until %1 + Offen bis %1 + + + + Confirmed (%1 confirmations) + Bestätigt (%1 Bestätigungen) + + + + This block was not received by any other nodes and will probably not be accepted! + Dieser Block wurde von keinem anderen Knoten empfangen und wird wahrscheinlich nicht angenommen werden! + + + + Received with + Empfangen über + + + + Received from + Empfangen von + + + + Sent to + Überwiesen an + + + + Payment to yourself + Eigenüberweisung + + + Mined Erarbeitet @@ -1394,6 +1432,11 @@ Adresse: %4 Amount removed from or added to balance. Der Betrag, der dem Kontostand abgezogen oder hinzugefügt wurde. + + + Date + Datum + Amount @@ -1404,24 +1447,6 @@ Adresse: %4 Type Typ - - - Address - Adresse - - - - Open for %n block(s) - - Offen für %n Block - Offen für %n Blöcke - - - - - Open until %1 - Offen bis %1 - Offline (%1 confirmations) @@ -1432,11 +1457,6 @@ Adresse: %4 Unconfirmed (%1 of %2 confirmations) Unbestätigt (%1 von %2 Bestätigungen) - - - Confirmed (%1 confirmations) - Bestätigt (%1 Bestätigungen) - Mined balance will be available in %n more blocks @@ -1445,26 +1465,6 @@ Adresse: %4 Der erarbeitete Betrag wird in %n Blöcken verfügbar sein - - - This block was not received by any other nodes and will probably not be accepted! - Dieser Block wurde von keinem anderen Knoten empfangen und wird wahrscheinlich nicht angenommen werden! - - - - Received with - Empfangen über - - - - Received from - Empfangen von - - - - Date - Datum - Generated but not accepted @@ -1474,19 +1474,24 @@ Adresse: %4 TransactionView - - Could not write to file %1. - Konnte nicht in Datei %1 schreiben. + + Today + Heute - - Range: - Zeitraum: + + This week + Diese Woche - - to - bis + + This year + Dieses Jahr + + + + Received with + Empfangen über @@ -1498,6 +1503,11 @@ Adresse: %4 Edit label Bezeichnung bearbeiten + + + Export Transaction Data + Transaktionen exportieren + Comma separated file (*.csv) @@ -1544,20 +1554,19 @@ Adresse: %4 Fehler beim Exportieren - - - All - Alle + + Could not write to file %1. + Konnte nicht in Datei %1 schreiben. - - Today - Heute + + Range: + Zeitraum: - - This week - Diese Woche + + to + bis @@ -1569,31 +1578,6 @@ Adresse: %4 Last month Letzten Monat - - - This year - Dieses Jahr - - - - Range... - Zeitraum... - - - - Received with - Empfangen über - - - - Sent to - Überwiesen an - - - - To yourself - Eigenüberweisung - Mined @@ -1630,9 +1614,25 @@ Adresse: %4 Transaktionsdetails anzeigen - - Export Transaction Data - Transaktionen exportieren + + + All + Alle + + + + Range... + Zeitraum... + + + + Sent to + Überwiesen an + + + + To yourself + Eigenüberweisung @@ -1646,104 +1646,79 @@ Adresse: %4 bitcoin-core - - Bitcoin version - Bitcoin Version + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Datenverzeichnis %s kann nicht gesperrt werden. Evtl. wurde Bitcoin bereits gestartet. - - Usage: - Benutzung: + + Cannot initialize keypool + Schlüsselpool kann nicht initialisiert werden - - Loading addresses... - Lade Adressen... + + Cannot write default address + Standardadresse kann nicht geschrieben werden - - Loading block index... - Lade Blockindex... + + Error loading blkindex.dat + Fehler beim Laden von blkindex.dat - - Loading wallet... - Lade Brieftasche... + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Fehler beim Laden von wallet.dat: Brieftasche benötigt neuere Version von Bitcoin - - Send command to -server or bitcoind - Befehl an -server oder bitcoind senden + + Error loading wallet.dat + Fehler beim Laden von wallet.dat (Brieftasche) - - List commands - Befehle auflisten + + Cannot downgrade wallet + Brieftasche kann nicht auf eine ältere Version herabgestuft werden - - Get help for a command - Hilfe zu einem Befehl erhalten + + Generate coins + Bitcoins generieren - - Options: - Optionen: + + Invalid -proxy address + Fehlerhafte Proxy-Adresse - - Prepend debug output with timestamp - Der Debugausgabe einen Zeitstempel voranstellen + + Specify data directory + Datenverzeichnis angeben - - Set database cache size in megabytes (default: 25) - Größe des Datenbankcaches in MB festlegen (Standard: 25) + + 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 gesetzt. Dies ist die Gebühr die beim Senden einer Transaktion fällig wird. - - Specify configuration file (default: bitcoin.conf) - Konfigurationsdatei angeben (Standard: bitcoin.conf) + + Error: CreateThread(StartNode) failed + Fehler: CreateThread(StartNode) fehlgeschlagen - - Specify pid file (default: bitcoind.pid) - PID-Datei angeben (Standard: bitcoind.pid) + + Listen for connections on <port> (default: 8333 or testnet: 18333) + <port> nach Verbindungen abhören (Standard: 8333 oder Testnetz: 18333) - - Generate coins - Bitcoins generieren - - - - Don't generate coins - Keine Bitcoins generieren - - - - Specify connection timeout (in milliseconds) - Verbindungstimeout angeben (in Millisekunden) - - - - Specify data directory - Datenverzeichnis angeben - - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - <port> nach Verbindungen abhören (Standard: 8333 oder Testnetz: 18333) - - - - Maintain at most <n> connections to peers (default: 125) - Maximal <n> Verbindungen zu Gegenstellen aufrechterhalten (Standard: 125) + + Prepend debug output with timestamp + Der Debugausgabe einen Zeitstempel voranstellen - - Threshold for disconnecting misbehaving peers (default: 100) - Schwellenwert, um Verbindungen zu sich nicht konform verhaltenden Gegenstellen zu beenden (Standard: 100) + + beta + Beta @@ -1755,65 +1730,45 @@ Adresse: %4 Accept command line and JSON-RPC commands Kommandozeilenbefehle und JSON-RPC Befehle annehmen + + + Use the test network + Das Testnetz verwenden + + + + Add a node to connect to and attempt to keep the connection open + Mit dem Knoten verbinden und versuchen die Verbindung aufrecht zu halten + Send trace/debug info to console instead of debug.log file Rückverfolgungs- und Debuginformationen an die Konsole senden anstatt sie in die debug.log Datei zu schreiben + + + Find peers using internet relay chat (default: 0) + Gegenstellen via Internet Relay Chat finden (Standard: 0) + Username for JSON-RPC connections Benutzername für JSON-RPC Verbindungen - - - Send trace/debug info to debugger - Rückverfolgungs- und Debuginformationen an den Debugger senden - Password for JSON-RPC connections Passwort für JSON-RPC Verbindungen - - Listen for JSON-RPC connections on <port> (default: 8332) - <port> nach JSON-RPC Verbindungen abhören (Standard: 8332) - - - - Use the test network - Das Testnetz verwenden - - - - Show splash screen on startup (default: 1) - Startbildschirm beim Starten anzeigen (Standard: 1) - - - - Accept connections from outside (default: 1) - Eingehende Verbindungen annehmen (Standard: 1) - - - - Set language, for example "de_DE" (default: system locale) - Sprache festlegen, z.B. "de_DE" (Standard: System Locale) - - - - Find peers using DNS lookup (default: 1) - Gegenstellen via DNS-Namensauflösung finden (Standard: 1) - - - - Use Universal Plug and Play to map the listening port (default: 1) - UPnP verwenden, um die Portweiterleitung einzurichten (Standard: 1) + + Run in the background as a daemon and accept commands + Als Hintergrunddienst starten und Befehle annehmen - - Use Universal Plug and Play to map the listening port (default: 0) - UPnP verwenden, um die Portweiterleitung einzurichten (Standard: 0) + + Fee per KB to add to transactions you send + Gebühr pro KB, die gesendeten Transaktionen hinzugefügt wird @@ -1856,34 +1811,34 @@ Adresse: %4 Dieser Hilfetext - - Error loading blkindex.dat - Fehler beim Laden von blkindex.dat + + 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) - - Error loading wallet.dat: Wallet corrupted - Fehler beim Laden von wallet.dat: Brieftasche beschädigt + + Rescan the block chain for missing wallet transactions + Blockkette erneut nach fehlenden Transaktionen der Brieftasche durchsuchen - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Fehler beim Laden von wallet.dat: Brieftasche benötigt neuere Version von Bitcoin + + Upgrade wallet to latest format + Brieftasche auf das neueste Format aktualisieren - - Wallet needed to be rewritten: restart Bitcoin to complete - Brieftasche muss neu geschrieben werden: Starten Sie Bitcoin zur Fertigstellung neu + + How many blocks to check at startup (default: 2500, 0 = all) + Wieviele Blöcke sollen beim Starten geprüft werden (Standard: 2500, 0 = alle) - - Error loading wallet.dat - Fehler beim Laden von wallet.dat (Brieftasche) + + How thorough the block verification is (0-6, default: 1) + Wie gründlich soll die Blockprüfung sein (0-6, Standard: 1) - - Start minimized - Minimiert starten + + Specify configuration file (default: bitcoin.conf) + Konfigurationsdatei angeben (Standard: bitcoin.conf) @@ -1891,75 +1846,67 @@ Adresse: %4 Über einen SOCKS4-Proxy verbinden: - - Allow DNS lookups for addnode and connect - Erlaube DNS Namensauflösung für addnode und connect + + Send trace/debug info to debugger + Rückverfolgungs- und Debug-Informationen an den Debugger senden - - Connect only to the specified node - Nur mit dem angegebenem Knoten verbinden + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL Einstellungen: (siehe Bitcoin-Wiki für SSL Installationsanweisungen) - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maximale Größe des Empfangspuffers pro Verbindung, <n>*1000 Bytes (Standard: 10000) + + Bitcoin version + Bitcoin Version - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maximale Größe des Sendepuffers pro Verbindung, <n>*1000 Bytes (Standard: 10000) + + Maintain at most <n> connections to peers (default: 125) + Maximal <n> Verbindungen zu Gegenstellen aufrechterhalten (Standard: 125) - - Run in the background as a daemon and accept commands - Als Hintergrunddienst starten und Befehle akzeptieren + + Options: + Optionen: - - Output extra debugging information - Ausgabe zusätzlicher Debugging-Informationen + + Send command to -server or bitcoind + Befehl an -server oder bitcoind senden - - Error loading addr.dat - Fehler beim Laden von addr.dat + + Specify connection timeout (in milliseconds) + Verbindungstimeout angeben (in Millisekunden) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Konnte das Datenverzeichnis %s nicht sperren. Evtl. wurde Bitcoin bereits gestartet. + + Specify pid file (default: bitcoind.pid) + PID-Datei angeben (Standard: bitcoind.pid) - - Rescanning... - Durchsuche erneut... + + Threshold for disconnecting misbehaving peers (default: 100) + Schwellenwert, um Verbindungen zu sich nicht konform verhaltenden Gegenstellen zu beenden (Standard: 100) + + + + Usage: + Benutzung: Done loading Laden abgeschlossen - - - Invalid -proxy address - Fehlerhafte Proxy-Adresse - Invalid amount for -paytxfee=<amount> Ungültige Angabe für -paytxfee=<Betrag> - - - 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 gesetzt. Dies ist die Gebühr die beim Senden einer Transaktion fällig wird. - - - - Error: CreateThread(StartNode) failed - Fehler: CreateThread(StartNode) fehlgeschlagen - Unable to bind to port %d on this computer. Bitcoin is probably already running. @@ -1971,9 +1918,34 @@ Adresse: %4 Warnung: Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen Ihres Computers, da Bitcoin ansonsten nicht ordnungsgemäß funktionieren wird. - - beta - Beta + + List commands + Befehle auflisten + + + + Loading addresses... + Lade Adressen... + + + + Loading block index... + Lade Blockindex... + + + + Loading wallet... + Lade Brieftasche... + + + + Rescanning... + Durchsuche erneut... + + + + Get help for a command + Hilfe zu einem Befehl erhalten @@ -1981,66 +1953,94 @@ Adresse: %4 Warnung: Festplattenplatz wird knapp - - 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) + + Error loading addr.dat + Fehler beim Laden von addr.dat - - Rescan the block chain for missing wallet transactions - Blockkette erneut nach fehlenden Transaktionen der Brieftasche durchsuchen + + Don't generate coins + Keine Bitcoins generieren - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL Einstellungen: (siehe Bitcoin-Wiki für SSL Installationsanweisungen) + + Error loading wallet.dat: Wallet corrupted + Fehler beim Laden von wallet.dat: Brieftasche beschädigt - - Add a node to connect to and attempt to keep the connection open - Mit dem Knoten verbinden und versuchen die Verbindung aufrecht zu halten + + Wallet needed to be rewritten: restart Bitcoin to complete + Brieftasche muss neu geschrieben werden: Starten Sie Bitcoin zur Fertigstellung neu - - Cannot downgrade wallet - Brieftasche kann nicht auf eine ältere Version herabgestuft werden + + Start minimized + Minimiert starten - - Cannot initialize keypool - Schlüsselpool kann nicht initialisiert werden + + Show splash screen on startup (default: 1) + Startbildschirm beim Starten anzeigen (Standard: 1) - - Cannot write default address - Standardadresse kann nicht geschrieben werden + + Set database cache size in megabytes (default: 25) + Größe des Datenbankcaches in MB festlegen (Standard: 25) - - Fee per KB to add to transactions you send - Gebühr pro KB, die gesendeten Transaktionen hinzugefügt wird + + Allow DNS lookups for addnode and connect + Erlaube DNS Namensauflösung für addnode und connect - - Find peers using internet relay chat (default: 0) - Gegenstellen via Internet Relay Chat finden (Standard: 0) + + Connect only to the specified node + Nur mit dem angegebenem Knoten verbinden - - How many blocks to check at startup (default: 2500, 0 = all) - Wieviele Blöcke sollen beim Starten geprüft werden (Standard: 2500, 0 = alle) + + Accept connections from outside (default: 1) + Eingehende Verbindungen annehmen (Standard: 1) - - How thorough the block verification is (0-6, default: 1) - Wie gründlich soll die Blockprüfung sein (0-6, Standard: 1) + + Set language, for example "de_DE" (default: system locale) + Sprache festlegen, z.B. "de_DE" (Standard: System Locale) - - Upgrade wallet to latest format - Brieftasche auf das neueste Format aktualisieren + + Find peers using DNS lookup (default: 1) + Gegenstellen via DNS-Namensauflösung finden (Standard: 1) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maximale Größe des Empfangspuffers pro Verbindung, <n>*1000 Bytes (Standard: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maximale Größe des Sendepuffers pro Verbindung, <n>*1000 Bytes (Standard: 10000) + + + + Use Universal Plug and Play to map the listening port (default: 1) + UPnP verwenden, um die Portweiterleitung einzurichten (Standard: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + UPnP verwenden, um die Portweiterleitung einzurichten (Standard: 0) + + + + Output extra debugging information + Ausgabe zusätzlicher Debugging-Informationen + + + + Listen for JSON-RPC connections on <port> (default: 8332) + <port> nach JSON-RPC Verbindungen abhören (Standard: 8332) diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index 418936f36b..dfe71e5c77 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -62,11 +62,21 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.&New Address... &Nueva Dirección + + + Show &QR Code + Mostrar código &QR + Sign a message to prove you own this address + + + &Sign Message + &Firmar mensaje + Delete the currently selected address from the list. Only sending addresses can be deleted. @@ -78,14 +88,14 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.&Borrar - - Show &QR Code - Mostrar código &QR + + &Copy to Clipboard + &Copiar al portapapeles - - &Sign Message - &Firmar mensaje + + Comma separated file (*.csv) + Archivos de columnas separadas por coma (*.csv) @@ -93,24 +103,14 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Copiar la dirección seleccionada al portapapeles - - Export Address Book Data - Exportar datos de la libreta de direcciones - - - - &Copy to Clipboard - &Copiar al portapapeles + + Copy address + Copiar dirección Copy label - Copia etiqueta - - - - Copy address - Copiar dirección + Copiar etiqueta @@ -122,6 +122,11 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Delete Borrar + + + Export Address Book Data + Exportar datos de la libreta de direcciones + Error exporting @@ -132,23 +137,18 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Could not write to file %1. No se pudo escribir en el archivo %1. - - - Comma separated file (*.csv) - Archivos separados por coma (*.csv) - AddressTableModel - Address - Dirección + Label + Etiqueta - Label - Etiqueta + Address + Dirección @@ -158,30 +158,43 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. AskPassphraseDialog + + + Enter passphrase + Contraseña actual + Repeat new passphrase Repita la nueva contraseña + + + TextLabel + Cambiar contraseña: + + + + This operation needs your wallet passphrase to decrypt the wallet. + Para descifrar el monedero esta operación necesita de su contraseña. + New passphrase Nueva contraseña - - Dialog - Cambiar contraseña - - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Introduzca la nueva contraseña del monedero.<br/>Por favor elija una con <b>10 o más caracteres aleatorios</b> u <b>ocho o más palabras</b>. + + + + + Wallet encryption failed + Ha fallado el cifrado del monedero - - TextLabel - Cambiar contraseña: + + Change passphrase + Cambia contraseña @@ -189,19 +202,9 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Cifrar el monedero - - This operation needs your wallet passphrase to unlock the wallet. - Para desbloquear el monedero esta operación necesita de su contraseña. - - - - Unlock wallet - Desbloquear monedero - - - - This operation needs your wallet passphrase to decrypt the wallet. - Para descifrar el monedero esta operación necesita de su contraseña. + + Dialog + Cambiar contraseña @@ -209,26 +212,19 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Descifrar 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 - - - Wallet encrypted - Monedero cifrado + + 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>. - - - The supplied passphrases do not match. - Las contraseñas no coinciden. + + 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. @@ -242,16 +238,6 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.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. - La contraseña de cartera ha sido cambiada con exit. - @@ -259,9 +245,30 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. - - Confirm wallet encryption - Confirmar cifrado del monedero + + This operation needs your wallet passphrase to unlock the wallet. + Para desbloquear el monedero esta operación necesita de su contraseña. + + + + Enter the old and new passphrase to the wallet. + Introduzca la contraseña anterior del monedero y la nueva. + + + + Unlock wallet + Desbloquear monedero + + + + + Wallet encrypted + Monedero cifrado + + + + Wallet passphrase was successfully changed. + La contraseña de cartera ha sido cambiada con exit. @@ -270,72 +277,64 @@ Are you sure you wish to encrypt your wallet? ATENCION: ¡Si encriptas tu cartera y pierdes la contraseña perderas <b>TODOS TUS BITCOINS</b>!" ¿Seguro que quieres seguir encriptando la cartera? - - - - - - Wallet encryption failed - Encriptación de cartera fallida - - - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Encriptación de cartera fallida debido a un error interno. Tu cartera no ha sido encriptada. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerda que encriptando tu cartera no garantiza mantener a salvo tus bitcoins en caso de tener viruses en el ordenador. - - Enter passphrase - Contraseña actual + + Wallet decryption failed + Ha fallado el descifrado del monedero + + + + + The supplied passphrases do not match. + Las contraseñas no coinciden. BitcoinGUI - - Show information about Bitcoin - Mostrar información acerca de Bitcoin + + Show general overview of wallet + Mostrar vista general del monedero - - - Synchronizing with network... - Sincronizando con la red… + + Edit the list of stored addresses and labels + Editar la lista de las direcciones y etiquetas almacenadas - - Open &Bitcoin - Abre &Bitcoin + + Show the list of addresses for receiving payments + Mostrar la lista de direcciones utilizadas para recibir pagos - - Change the passphrase used for wallet encryption - Cambiar la contraseña utilizada para el cifrado del monedero + + &Options... + &Opciones... - - Show general overview of wallet - Mostrar vista general del monedero + + Browse transaction history + Examinar el historial de transacciones - - Downloaded %1 blocks of transaction history. - Se han bajado %1 bloques de historial. + + &Receive coins + &Recibir monedas - - &Transactions - &Transacciones + + &About %1 + S&obre %1 - - Browse transaction history - Examinar el historial de transacciones + + Open &Bitcoin + Abre &Bitcoin @@ -343,14 +342,10 @@ Are you sure you wish to encrypt your wallet? Cartera Bitcoin - - &Address Book - &Libreta de direcciones - - - - Edit the list of stored addresses and labels - Editar la lista de las direcciones y etiquetas almacenadas + + + Synchronizing with network... + Sincronizando con la red… @@ -358,14 +353,19 @@ Are you sure you wish to encrypt your wallet? Sincronización cadena de bloques en progreso - - &Receive coins - &Recibir monedas + + &Overview + &Vista general - - Show the list of addresses for receiving payments - Mostrar la lista de direcciones utilizadas para recibir pagos + + &Transactions + &Transacciones + + + + &Address Book + &Libreta de direcciones @@ -373,34 +373,34 @@ Are you sure you wish to encrypt your wallet? &Enviar monedas - - E&xit - &Salir + + Send coins to a bitcoin address + Envia monedas a una dirección bitcoin - - &Overview - &Vista general + + Sign &message + Firmar &mensaje... - - &Export... - &Exportar… + + Prove you control an address + - - &Help - A&yuda + + E&xit + &Salir - - Send coins to a bitcoin address - Envia monedas a una dirección bitcoin + + Show information about Bitcoin + Mostrar información acerca de Bitcoin - - Quit application - Salir de la aplicación + + Modify configuration options for bitcoin + Modifica opciones de configuración @@ -408,29 +408,47 @@ Are you sure you wish to encrypt your wallet? Exportar a un archivo los datos de esta pestaña - - Encrypt or decrypt wallet - Cifrar o descifrar el monedero + + &Backup Wallet + Copia de &respaldo del monedero... - - About &Qt - Acerca de &Qt + + Tabs toolbar + Barra de pestañas - - Backup wallet to another location - Copia de seguridad del monedero en otra ubicación + + Backup Failed + La copia de seguridad ha fallado - - Show information about Qt - Mostrar información acerca de Qt + + Quit application + Salir de la aplicación - - &Options... - &Opciones... + + &Encrypt Wallet + &Encriptar cartera + + + + [testnet] + [testnet] + + + + %n active connection(s) to Bitcoin network + + %n conexión activa hacia la red Bitcoin + %n conexiones activas hacia la red Bitcoin + + + + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para el cifrado del monedero @@ -438,9 +456,9 @@ Are you sure you wish to encrypt your wallet? &Archivo - - Tabs toolbar - Barra de pestañas + + &Settings + &Configuración @@ -448,17 +466,9 @@ Are you sure you wish to encrypt your wallet? Barra de acciones - - [testnet] - [testnet] - - - - %n active connection(s) to Bitcoin network - - %n conexión activa hacia la red Bitcoin - %n conexiones activas hacia la red Bitcoin - + + Downloaded %1 blocks of transaction history. + Se han bajado %1 bloques de historial. @@ -468,51 +478,65 @@ Are you sure you wish to encrypt your wallet? hace %n segundos - - - Show the Bitcoin window - Muestra la ventana de Bitcoin + + + %n minute(s) ago + + hace %n minuto + hace %n minutos + - - - Sign &message - Firmar &mensaje... + + + %n hour(s) ago + + hace %n hora + hace %n horas + - - - Prove you control an address - + + + %n day(s) ago + + hace %n día + hace %n días + - - &About %1 - S&obre %1 + + Up to date + Actualizado - - Modify configuration options for bitcoin - Modifica opciones de configuración + + Catching up... + Recuperando... - - &Encrypt Wallet - &Encriptar cartera + + Last received block was generated %1. + El último bloque recibido fue generado %1. - - &Backup Wallet - Copia de &respaldo del monedero... + + Show the Bitcoin window + Muestra la ventana de Bitcoin - - Last received block was generated %1. - El último bloque recibido fue generado %1. + + &Export... + &Exporta... 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 supera el límite. Puede seguir enviándola incluyendo una comisión de %1 que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Desea pagar esa tarifa? + + + &Change Passphrase + &Cambiar la contraseña + Sent transaction @@ -536,73 +560,39 @@ 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> - - - - Backup Failed - La copia de seguridad ha fallado - - - - %n minute(s) ago - - Hace %n minuto - Hace %n minutos - - - - - %n hour(s) ago - - Hace %n hora - Hace %n horas - + + Encrypt or decrypt wallet + Cifrar o descifrar el monedero - - &Change Passphrase - &Cambiar la contraseña + + About &Qt + Acerca de &Qt - - &Settings - &Configuración - - - - %n day(s) ago - - hace %n día - hace %n días - + + Backup wallet to another location + Copia de seguridad del monedero en otra ubicación - - Catching up... - Recuperando... + + Show information about Qt + Mostrar información acerca de Qt - - Up to date - Actualizado + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + El monedero está <b>cifrado</b> y actualmente <b>desbloqueado</b> - - There was an error trying to save the wallet data to the new location. - Ha habido un error al intentar guardar los datos del monedero a la nueva ubicación. + + Wallet is <b>encrypted</b> and currently <b>locked</b> + El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> - - Sending... - Enviando... + + &Help + &Ayuda @@ -619,6 +609,16 @@ Dirección: %4 Wallet Data (*.dat) Datos del monedero (*.dat) + + + There was an error trying to save the wallet data to the new location. + Ha habido un error al intentar guardar los datos del monedero a la nueva ubicación. + + + + Sending... + Enviando... + Downloaded %1 of %2 blocks of transaction history. @@ -655,11 +655,6 @@ Dirección: %4 EditAddressDialog - - - New key generation failed. - Ha fallado la generación de la nueva clave. - Edit Address @@ -710,24 +705,24 @@ Dirección: %4 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 bitcoin address. + La dirección introducida "%1" no es una dirección Bitcoin valida. + Could not unlock wallet. No se pudo desbloquear el monedero. - - The entered address "%1" is not a valid bitcoin address. - La dirección introducida "%1" no es una dirección Bitcoin valida. + + New key generation failed. + Ha fallado la generación de la nueva clave. MainOptionsPage - - - Proxy &IP: - &IP Proxy: - &Port: @@ -783,10 +778,15 @@ Dirección: %4 Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Conecta a la red Bitcoin atraves de un proxy SOCKS4 (ej. para conectar con la red Tor) + + + Proxy &IP: + &IP Proxy: + IP address of the proxy (e.g. 127.0.0.1) - Dirección IP del proxy (ej. 127.0.0.1) + Dirección IP del proxy (ej. 127.0.0.1) @@ -801,25 +801,15 @@ Dirección: %4 Pay transaction &fee - Comisión de &transacciones + Comision de &transacciónes MessagePage - - - Message - 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 los 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 firmando su identidad a través de ellos. Solo firme declaraciones totalmente detalladas con las que usted esté de acuerdo. - The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Introduce una dirección Bitcoin (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -841,11 +831,6 @@ Dirección: %4 Alt+P Alt+P - - - Enter the message you want to sign here - Introduzca el mensaje que desea firmar aquí - Click "Sign Message" to get signature @@ -856,6 +841,26 @@ Dirección: %4 Sign a message to prove you own this address + + + &Copy to Clipboard + &Copiar al portapapeles + + + + Message + 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 los 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 firmando su identidad a través de ellos. Solo firme declaraciones totalmente detalladas con las que usted esté de acuerdo. + + + + Enter the message you want to sign here + Introduzca el mensaje que desea firmar aquí + &Sign Message @@ -864,12 +869,7 @@ Dirección: %4 Copy the current signature to the system clipboard - Copiar la firma actual al portapapeles del sistema - - - - &Copy to Clipboard - &Copiar al portapapeles + Copiar la firma actual al portapapeles del sistema @@ -881,7 +881,7 @@ Dirección: %4 %1 is not a valid address. - + La dirección introducida "%1" no es una dirección Bitcoin válida. @@ -896,16 +896,16 @@ Dirección: %4 OptionsDialog - - - Main - Principal - Options Opciones + + + Main + Principal + Display @@ -925,30 +925,30 @@ Dirección: %4 Saldo: - - Number of transactions: - Número de movimientos: + + Total number of transactions in wallet + Número total de movimientos en el monedero - <b>Recent transactions</b> - <b>Movimientos recientes</b> - - - - 0 - 0 - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - El total de las transacciones que faltan por confirmar y que no se cuentan para el total general. + <b>Recent transactions</b> + <b>Movimientos recientes</b> Unconfirmed: No confirmado(s): + + + Number of transactions: + Número de movimientos: + + + + 0 + 0 + Wallet @@ -960,13 +960,23 @@ Dirección: %4 Saldo actual - - Total number of transactions in wallet - Número total de movimientos en el monedero + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Total de las transacciones que faltan por confirmar y que no se cuentan para el total general QRCodeDialog + + + PNG Images (*.png) + Imágenes PNG (*.png) + + + + Save Image... + + Message: @@ -980,13 +990,18 @@ Dirección: %4 QR Code - + Código QR Request Payment Solicitud de pago + + + Amount: + Cuantía: + BTC @@ -1002,39 +1017,71 @@ Dirección: %4 &Save As... &Guardar Como ... - - - Amount: - Cuantía: - Error encoding URI into QR Code. Error al codificar la URI en el código QR. + + + SendCoinsDialog - - Save Image... - + + Send to multiple recipients at once + Envía a multiples destinatarios de una vez - - PNG Images (*.png) - Imágenes PNG (*.png) + + &Add recipient... + &Agrega destinatario... - - - SendCoinsDialog Remove all transaction fields Eliminar todos los campos de las transacciones + + + Clear all + &Borra todos + + + + Balance: + Saldo: + + + + 123.456 BTC + 123.456 BTC + + + + &Send + &Envía + Are you sure you want to send %1? Estas seguro que quieres enviar %1? + + + Confirm the send action + Confirma el envio + + + + + + + + + + + Send Coins + Envía monedas + <b>%1</b> to %2 (%3) @@ -1075,11 +1122,6 @@ Dirección: %4 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. - - - Clear all - &Borra todos - Error: Transaction creation failed. @@ -1090,48 +1132,6 @@ Dirección: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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: transacción rechazada. Puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado así aquí. - - - - - - - - - - Send Coins - Envía monedas - - - - Send to multiple recipients at once - Envía a multiples destinatarios de una vez - - - - &Add recipient... - &Agrega destinatario... - - - - Balance: - Balance: - - - - 123.456 BTC - 123.456 BTC - - - - Confirm the send action - Confirma el envío - - - - &Send - &Envía - SendCoinsEntry @@ -1166,16 +1166,6 @@ Dirección: %4 The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) La dirección donde enviar el pago (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - Choose address from address book - Elija una dirección de la libreta de direcciones - - - - Alt+A - Alt+A - Paste address from clipboard @@ -1196,81 +1186,101 @@ Dirección: %4 Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Introduce una dirección Bitcoin (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + Choose address from address book + Elija una dirección de la libreta de direcciones + + + + Alt+A + Alt+A + TransactionDesc - - - <b>From:</b> - <b>De:</b> + + Message: + Mensaje: - - Open until %1 - Abierto hasta %1 + + Comment: + Comentario: + + + + %1 confirmations + %1 confirmaciónes Open for %1 blocks Abierto hasta %1 bloques + + + Open until %1 + Abierto hasta %1 + %1/offline? %1/fuera de linea? + + + <b>Status:</b> + <b>Estado:</b> + + + + , broadcast through %1 node + , emitido mediante %1 nodo + %1/unconfirmed %1/no confirmado - - %1 confirmations - %1 confirmaciones + + <b>Date:</b> + <b>Fecha:</b> - - unknown - desconocido + + <b>Source:</b> Generated<br> + <b>Fuente:</b> Generado<br> - - - - <b>To:</b> - <b>Para:</b> + + + <b>From:</b> + <b>De:</b> , has not been successfully broadcast yet , no ha sido emitido satisfactoriamente todavía - - - <b>Status:</b> - <b>Estado:</b> - - - - , broadcast through %1 node - , emitido mediante %1 nodo - , broadcast through %1 nodes , emitido mediante %1 nodos - - <b>Date:</b> - <b>Fecha:</b> + + unknown + desconocido - - <b>Source:</b> Generated<br> - <b>Fuente:</b> Generado<br> + + + + <b>To:</b> + <b>Para:</b> @@ -1317,16 +1327,6 @@ Dirección: %4 <b>Net amount:</b> <b>Cantidad total:</b> - - - Message: - Mensaje: - - - - Comment: - Comentario: - Transaction ID: @@ -1346,31 +1346,13 @@ Dirección: %4 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 - - - - Open for %n block(s) - - Abierto por %n bloque - Abierto por %n bloques - + + This pane shows a detailed description of the transaction + Esta ventana muestra información detallada sobre la transacción + + + TransactionTableModel Open until %1 @@ -1411,11 +1393,21 @@ Dirección: %4 Sent to Enviado a + + + Date + Fecha + Payment to yourself Pago propio + + + Address + Dirección + Mined @@ -1453,13 +1445,16 @@ Dirección: %4 - Address - Dirección + Type + Tipo - - - Amount - Cantidad + + + Open for %n block(s) + + Abierto por %n bloque + Abierto por %n bloques + @@ -1474,19 +1469,54 @@ Dirección: %4 Received from Recibidos de + + + Amount + Cantidad + TransactionView + + + Min amount + Cantidad mínima + + + + Copy address + Copiar dirección + + + + Copy label + Copiar etiqueta + + + + Edit label + Editar etiqueta + + + + Export Transaction Data + Exportar datos de la transacción + + + + Comma separated file (*.csv) + Archivos de columnas separadas por coma (*.csv) + + + + Confirmed + Confirmado + Date Fecha - - - Type - Tipo - Label @@ -1518,9 +1548,9 @@ Dirección: %4 No se pudo escribir en el archivo %1. - - Range: - Rango: + + Copy amount + Copiar cuantía @@ -1574,70 +1604,40 @@ Dirección: %4 A ti mismo - - 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 + + Mined + Minado - - Edit label - Editar etiqueta + + Other + Otra - - Export Transaction Data - Exportar datos de la transacción + + Enter address or label to search + Introduzca una dirección o etiqueta que buscar - - Comma separated file (*.csv) - Archivos de columnas separadas por coma (*.csv) + + Type + Tipo - - Confirmed - Confirmado + + Range: + Rango: - - Copy amount - Copiar cuantía + + Show details... + Muestra detalles... to para - - - Mined - Minado - - - - Other - Otra - - - - Show details... - Muestra detalles... - WalletModel @@ -1650,9 +1650,24 @@ Dirección: %4 bitcoin-core - - Bitcoin version - Versión de Bitcoin + + Usage: + Uso: + + + + Loading block index... + Cargando el índice de bloques... + + + + Rescanning... + Rescaneando... + + + + Done loading + Generado pero no aceptado @@ -1665,54 +1680,15 @@ Dirección: %4 Listen for connections on <port> (default: 8333 or testnet: 18333) Preste atención a las conexiones en <puerto> (por defecto: 8333 o testnet: 18333) - - - Loading block index... - Cargando el índice de bloques... - - - - Send command to -server or bitcoind - Envíar comando a -server o bitcoind - Set database cache size in megabytes (default: 25) Establecer el tamaño del caché de la base de datos en megabytes (por defecto: 25) - - - Specify configuration file (default: bitcoin.conf) - Especifica archivo de configuración (predeterminado: bitcoin.conf) - - Specify connection timeout (in milliseconds) Especifica tiempo de espera para conexion (en milisegundos) - - - - - Usage: - Uso: - - - - List commands - Muestra comandos - - - - - Options: - Opciones: - - - - - Specify pid file (default: bitcoind.pid) - Especifica archivo pid (predeterminado: bitcoin.pid) @@ -1720,11 +1696,6 @@ Dirección: %4 Don't generate coins No generar monedas - - - Show splash screen on startup (default: 1) - Mostrar pantalla de bienvenida en el inicio (por defecto: 1) - Specify data directory @@ -1736,39 +1707,14 @@ Dirección: %4 Mantener en la mayoría de las conexiones <n> a sus compañeros (por defecto: 125) - - Accept connections from outside (default: 1) - Aceptar conexiones desde el exterior (predeterminado: 1) - - - - Set language, for example "de_DE" (default: system locale) - Establecer el idioma, por ejemplo, "es_ES" (por defecto: configuración regional del sistema) - - - - Find peers using DNS lookup (default: 1) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - - - - Use Universal Plug and Play to map the listening port (default: 1) - Usar UPnP para asignar el puerto de escucha (predeterminado: 1) + + Add a node to connect to and attempt to keep the connection open + Añadir un nodo para conectarse y tratar de mantener la conexión abierta - - Use Universal Plug and Play to map the listening port (default: 0) - Usar UPnP para asignar el puerto de escucha (predeterminado: 0) + + Find peers using internet relay chat (default: 0) + Encontrar los pares utilizando Internet Relay Chat (por defecto: 0) @@ -1783,9 +1729,19 @@ Dirección: %4 - - Output extra debugging information - + + Fee per KB to add to transactions you send + Tarifa por KB que añadir a las transacciones que envíe + + + + Invalid amount for -paytxfee=<amount> + Cantidad inválida para -paytxfee=<amount> + + + + 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. @@ -1811,6 +1767,31 @@ Dirección: %4 Permite conexiones JSON-RPC desde la dirección IP especificada + + + Prepend debug output with timestamp + Anteponer la salida de depuración, con indicación de la hora + + + + Find peers using DNS lookup (default: 1) + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + + + + Output extra debugging information + + Send commands to node running on <ip> (default: 127.0.0.1) @@ -1828,16 +1809,6 @@ Dirección: %4 Rescan the block chain for missing wallet transactions Volver a examinar la cadena de bloques en busca de transacciones del monedero perdidas - - - Invalid amount for -paytxfee=<amount> - Cantidad inválida para -paytxfee=<amount> - - - - 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. - Use OpenSSL (https) for JSON-RPC connections @@ -1888,6 +1859,41 @@ Dirección: %4 Error loading wallet.dat Error al cargar wallet.dat + + + How many blocks to check at startup (default: 2500, 0 = all) + Cuántos bloques para comprobar en el arranque (por defecto: 2500, 0 = todos) + + + + How thorough the block verification is (0-6, default: 1) + Cómo completa la verificación del bloque es (0-6, por defecto: 1) + + + + Upgrade wallet to latest format + Actualizar el monedero al último formato + + + + Cannot downgrade wallet + No se puede rebajar el monedero + + + + Cannot initialize keypool + No se puede inicializar grupo de teclas + + + + Cannot write default address + No se puede escribir la dirección por defecto + + + + Wallet needed to be rewritten: restart Bitcoin to complete + El monedero ha necesitado ser reescrito. Reinicie Bitcoin para completar el proceso + Unable to bind to port %d on this computer. Bitcoin is probably already running. @@ -1904,27 +1910,27 @@ Dirección: %4 beta - - Connect through socks4 proxy - Conecta mediante proxy socks4 + + Specify configuration file (default: bitcoin.conf) + Especifica archivo de configuración (predeterminado: bitcoin.conf) - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) + + Allow DNS lookups for addnode and connect + Permite búsqueda DNS para addnode y connect - - Invalid -proxy address - Dirección -proxy invalida + + Connect only to the specified node + Conecta solo al nodo especificado + - - Loading addresses... - Cargando direcciones... + + Bitcoin version + Versión de Bitcoin @@ -1933,49 +1939,52 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - Loading wallet... - Cargando cartera... + + Invalid -proxy address + Dirección -proxy invalida - - Rescanning... - Rescaneando... + + Error: CreateThread(StartNode) failed + Error: CreateThread(StartNode) fallido - - Done loading - Carga completa + + Loading wallet... + Cargando monedero... - - Error: CreateThread(StartNode) failed - Error: CreateThread(StartNode) fallido + + Loading addresses... + Cargando direcciones... - - Add a node to connect to and attempt to keep the connection open - Añadir un nodo para conectarse y tratar de mantener la conexión abierta + + Warning: Disk space is low + Atención: Poco espacio en el disco duro - - Cannot downgrade wallet - No se puede rebajar el monedero + + Send command to -server or bitcoind + Envíar comando a -server o bitcoind - - 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) + + List commands + Muestra comandos + - - Cannot initialize keypool - No se puede inicializar grupo de teclas + + Options: + Opciones: + - - Cannot write default address - No se puede escribir la dirección por defecto + + Specify pid file (default: bitcoind.pid) + Especifica archivo pid (predeterminado: bitcoin.pid) + @@ -1990,52 +1999,30 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - Allow DNS lookups for addnode and connect - Permite búsqueda DNS para addnode y connect - - - - - Connect only to the specified node - Conecta solo al nodo especificado - - - - - Fee per KB to add to transactions you send - Tarifa por KB que añadir a las transacciones que envíe - - - - Find peers using internet relay chat (default: 0) - Encontrar los pares utilizando Internet Relay Chat (por defecto: 0) + + Show splash screen on startup (default: 1) + Mostrar pantalla de bienvenida en el inicio (por defecto: 1) - - Accept command line and JSON-RPC commands - Aceptar comandos consola y JSON-RPC + + Connect through socks4 proxy + Conecta mediante proxy socks4 - - Wallet needed to be rewritten: restart Bitcoin to complete - El monedero ha necesitado ser reescrito. Reinicie Bitcoin para completar el proceso - - - - Error loading addr.dat - Error cargando addr.dat + + Accept connections from outside (default: 1) + Aceptar conexiones desde el exterior (predeterminado: 1) - - How many blocks to check at startup (default: 2500, 0 = all) - Cuántos bloques para comprobar en el arranque (por defecto: 2500, 0 = todos) + + Set language, for example "de_DE" (default: system locale) + Establecer el idioma, por ejemplo, "es_ES" (por defecto: configuración regional del sistema) - - How thorough the block verification is (0-6, default: 1) - Cómo completa la verificación del bloque es (0-6, por defecto: 1) + + Threshold for disconnecting misbehaving peers (default: 100) + Umbral para la desconexión de los compañeros se portan mal (por defecto: 100) @@ -2043,14 +2030,20 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Número de segundos que se mantienen los compañeros se portan mal en volver a conectarse (por defecto: 86400) - - Warning: Disk space is low - Atención: Poco espacio en el disco duro + + Use Universal Plug and Play to map the listening port (default: 1) + Usar UPnP para asignar el puerto de escucha (predeterminado: 1) - - Prepend debug output with timestamp - Anteponer la salida de depuración, con indicación de la hora + + Use Universal Plug and Play to map the listening port (default: 0) + Usar UPnP para asignar el puerto de escucha (predeterminado: 0) + + + + Accept command line and JSON-RPC commands + Aceptar comandos consola y JSON-RPC + @@ -2063,14 +2056,21 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Enviar rastrear / debug info al depurador - - Upgrade wallet to latest format - Actualizar el monedero al último formato + + 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) - - Threshold for disconnecting misbehaving peers (default: 100) - Umbral para la desconexión de los compañeros se portan mal (por defecto: 100) + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) + + + + + Error loading addr.dat + Error cargando addr.dat diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index 73c9c7e8bc..590fcd9a59 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -72,21 +72,11 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.&Copy to Clipboard &Copiar al portapapeles - - - Show &QR Code - Mostrar Código &QR - Sign a message to prove you own this address Firmar un mensaje para provar que usted es dueño de esta dirección - - - &Sign Message - Firmar Mensaje - Delete the currently selected address from the list. Only sending addresses can be deleted. @@ -98,24 +88,14 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.&Borrar - - Copy address - Copia dirección - - - - Copy label - Copia etiqueta - - - - Edit - Editar + + &Sign Message + Firmar Mensaje - - Delete - Borrar + + Show &QR Code + Mostrar Código &QR @@ -129,13 +109,33 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. - Error exporting - Exportar errores + Could not write to file %1. + No se pudo escribir al archivo %1. + + + + Edit + Editar + + + + Copy address + Copia dirección + + + + Copy label + Copia etiqueta + + + + Delete + Borrar - Could not write to file %1. - No se pudo escribir al archivo %1. + Error exporting + Exportar errores @@ -159,24 +159,14 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. AskPassphraseDialog - - Decrypt wallet - Decodificar cartera - - - - Dialog - Cambiar contraseña - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus bitcoins de ser robados por malware que infecte su computador + + New passphrase + Nueva contraseña - - TextLabel - Cambiar contraseña: + + Repeat new passphrase + Repite nueva contraseña: @@ -184,22 +174,24 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Introduce contraseña actual - - New passphrase - Nueva contraseña + + Unlock wallet + Desbloquea billetera - - Repeat new passphrase - Repite nueva contraseña: + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + La codificación de la billetera falló debido a un error interno. Tu billetera no ha sido codificada. - - - - - Wallet encryption failed - Falló la codificación de la billetera + + Dialog + Cambiar contraseña + + + + TextLabel + Cambiar contraseña: @@ -216,21 +208,11 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.This operation needs your wallet passphrase to unlock the wallet. Esta operación necesita la contraseña para desbloquear la billetera. - - - Unlock wallet - Desbloquea billetera - This operation needs your wallet passphrase to decrypt the wallet. Esta operación necesita la contraseña para decodificar la billetara. - - - Change passphrase - Cambia contraseña - Enter the old and new passphrase to the wallet. @@ -242,10 +224,11 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Confirma la codificación de cartera - - - Wallet encrypted - Billetera codificada + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ATENCIÓN: ¡Si codificas tu billetera y pierdes la contraseña perderás <b>TODOS TUS BITCOINS</b>!" +¿Seguro que quieres seguir codificando la billetera? @@ -253,28 +236,32 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.La contraseña de billetera ha sido cambiada con éxito. - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ATENCIÓN: ¡Si codificas tu billetera y pierdes la contraseña perderás <b>TODOS TUS BITCOINS</b>!" -¿Seguro que quieres seguir codificando la billetera? + + Change passphrase + Cambia contraseña - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - La codificación de la billetera falló debido a un error interno. Tu billetera no ha sido codificada. + + Decrypt wallet + Decodificar cartera - - - The supplied passphrases do not match. - Las contraseñas no coinciden. + + + Wallet encrypted + Billetera codificada Wallet unlock failed Ha fallado el desbloqueo de la billetera + + + + The supplied passphrases do not match. + Las contraseñas no coinciden. + @@ -287,31 +274,73 @@ Are you sure you wish to encrypt your wallet? Wallet decryption failed Ha fallado la decodificación de la billetera + + + + + + Wallet encryption failed + Falló la codificación de la billetera + Warning: The Caps Lock key is on. Precaucion: Mayúsculas Activadas + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus bitcoins de ser robados por malware que infecte su computador + BitcoinGUI - - Send coins to a bitcoin address - Enviar monedas a una dirección bitcoin + + Show the list of addresses for receiving payments + Muestra la lista de direcciónes utilizadas para recibir pagos - - - Synchronizing with network... - Sincronizando con la red... + + Show information about Bitcoin + Muestra información acerca de Bitcoin + + + + Encrypt or decrypt wallet + Codificar o decodificar la billetera + + + + Modify configuration options for bitcoin + Modifica las opciones de configuración de bitcoin + + + + &Address Book + &Guia de direcciónes + + + + Edit the list of stored addresses and labels + Edita la lista de direcciones y etiquetas almacenadas + + + + &Receive coins + &Recibir monedas Bitcoin Wallet Billetera Bitcoin + + + &Send coins + &Envíar monedas + &Overview @@ -322,11 +351,6 @@ Are you sure you wish to encrypt your wallet? Show general overview of wallet Muestra una vista general de la billetera - - - Block chain synchronization in progress - Sincronización de la cadena de bloques en progreso - &Transactions @@ -338,46 +362,66 @@ Are you sure you wish to encrypt your wallet? Explora el historial de transacciónes - - &Address Book - &Guia de direcciónes + + [testnet] + [red-de-pruebas] - - Edit the list of stored addresses and labels - Edita la lista de direcciones y etiquetas almacenadas + + E&xit + &Salir - - &Receive coins - &Recibir monedas + + Quit application + Salir del programa - - Show the list of addresses for receiving payments - Muestra la lista de direcciónes utilizadas para recibir pagos + + About &Qt + Acerca de - - E&xit - &Salir + + Show information about Qt + Mostrar Información sobre QT Export the data in the current tab to a file Exportar los datos de la pestaña actual a un archivo + + + &Options... + &Opciones + Backup wallet to another location Respaldar billetera en otra ubicación - - Backup Wallet - Respaldar billetera - - + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para la codificación de la billetera + + + + Downloaded %1 blocks of transaction history. + Descargado %1 bloques del historial de transacciones. + + + + Last received block was generated %1. + El ultimo bloque recibido fue generado %1. + + + + Backup Wallet + Respaldar billetera + + Wallet Data (*.dat) Datos de billetera (*.dat) @@ -388,14 +432,14 @@ Are you sure you wish to encrypt your wallet? Ha fallado el respaldo - - &Send coins - &Envíar monedas + + Send coins to a bitcoin address + Enviar monedas a una dirección bitcoin - - Quit application - Salir del programa + + &Export... + &Exportar... @@ -407,36 +451,6 @@ Are you sure you wish to encrypt your wallet? Prove you control an address Suministre dirección de control - - - Show information about Bitcoin - Muestra información acerca de Bitcoin - - - - About &Qt - Acerca de - - - - Show information about Qt - Mostrar Información sobre QT - - - - &Options... - &Opciones - - - - &Export... - &Exportar... - - - - Modify configuration options for bitcoin - Modifica las opciones de configuración de bitcoin - Open &Bitcoin @@ -447,36 +461,52 @@ Are you sure you wish to encrypt your wallet? Show the Bitcoin window Muestra la ventana de Bitcoin + + + &About %1 + S&obre %1 + + + + + Synchronizing with network... + Sincronizando con la red... + &Encrypt Wallet &Codificar la billetera - - Encrypt or decrypt wallet - Codificar o decodificar la billetera - - - - Change the passphrase used for wallet encryption - Cambiar la contraseña utilizada para la codificación de la billetera + + &Backup Wallet + &Respaldar billetera &Change Passphrase &Cambiar la contraseña + + + &File + &Archivo + + + + &Settings + &Configuración + + + + &Help + &Ayuda + Actions toolbar Barra de acciónes - - - [testnet] - [red-de-pruebas] - %n active connection(s) to Bitcoin network @@ -486,14 +516,9 @@ Are you sure you wish to encrypt your wallet? - - Downloaded %1 blocks of transaction history. - Descargado %1 bloques del historial de transacciones. - - - - Tabs toolbar - Barra de pestañas + + Downloaded %1 of %2 blocks of transaction history. + Descargados %1 de %2 bloques del historial de transacciones. @@ -519,26 +544,6 @@ Are you sure you wish to encrypt your wallet? Hace %n horas - - - Downloaded %1 of %2 blocks of transaction history. - Descargados %1 de %2 bloques del historial de transacciones. - - - - &About %1 - S&obre %1 - - - - &Backup Wallet - &Respaldar billetera - - - - bitcoin-qt - - %n day(s) ago @@ -558,9 +563,14 @@ Are you sure you wish to encrypt your wallet? Recuperando... - - Last received block was generated %1. - El ultimo bloque recibido fue generado %1. + + There was an error trying to save the wallet data to the new location. + + + + + Block chain synchronization in progress + Sincronización de la cadena de bloques en progreso @@ -589,6 +599,11 @@ Cantidad: %2 Tipo: %3 Dirección: %4 + + + bitcoin-qt + bitcoin-qt + Wallet is <b>encrypted</b> and currently <b>unlocked</b> @@ -599,30 +614,15 @@ Dirección: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> La billetera esta <b>codificada</b> y actualmente <b>bloqueda</b> - - - There was an error trying to save the wallet data to the new location. - - Sending... Enviando... - - &File - &Archivo - - - - &Settings - &Configuración - - - - &Help - &Ayuda + + Tabs toolbar + Barra de pestañas @@ -690,16 +690,6 @@ Dirección: %4 New sending address Nueva dirección para enviar - - - Edit receiving address - Editar dirección de recepción - - - - Edit sending address - Editar dirección de envio - Could not unlock wallet. @@ -710,6 +700,16 @@ Dirección: %4 New key generation failed. La generación de nueva clave falló. + + + Edit receiving address + Editar dirección de recepción + + + + Edit sending address + Editar dirección de envio + The entered address "%1" is already in the address book. @@ -751,7 +751,7 @@ Dirección: %4 Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Abre automáticamente el puerto del cliente Bitcoin en el router. Esto funciona solo cuando tu router es compatible con UPnP y está habilitado. + Abre automáticamente el puerto del cliente Bitcoin en el router. Esto funciona solo cuando tu router es compatible con UPnP y está habilitado. @@ -761,7 +761,7 @@ Dirección: %4 Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Minimiza la ventana en lugar de salir del programa cuando la ventana se cierra. Cuando esta opción esta activa el programa solo se puede cerrar seleccionando Salir desde el menu. + Minimiza la ventana en lugar de salir del programa cuando la ventana se cierra. Cuando esta opción esta activa el programa solo se puede cerrar seleccionando Salir desde el menu. @@ -781,12 +781,12 @@ Dirección: %4 IP address of the proxy (e.g. 127.0.0.1) - Dirección IP del servidor proxy (ej. 127.0.0.1) + Dirección IP del servidor proxy (ej. 127.0.0.1) &Port: - &Puerto: + &Puerto: @@ -796,20 +796,20 @@ Dirección: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Comisión opcional por kB que ayuda a asegurar que sus transacciones son procesadas rápidamente. La mayoria de transacciones son de 1 KB. Se recomienda comisión de 0.01 + Comisión opcional por kB que ayuda a asegurar que sus transacciones son procesadas rápidamente. La mayoria de transacciones son de 1 KB. Se recomienda comisión de 0.01. Pay transaction &fee - Comisión de &transacciónes + Comisión de &transacciónes MessagePage - - Message - Mensaje + + Sign failed + Falló Firma @@ -819,37 +819,7 @@ Dirección: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - - - Choose adress from address book - Elije dirección de la guia - - - - Alt+A - Alt+A - - - - Private key for %1 is not available. - Llave privada para %q no esta disponible. - - - - Sign failed - Falló Firma - - - - Paste address from clipboard - Pega dirección desde portapapeles - - - - Alt+P - Alt+P + Introduce una dirección Bitcoin (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -893,52 +863,77 @@ Dirección: %4 %1 is not a valid address. %1 no es una dirección válida. - - - OptionsDialog - - Main - Principal + + Message + Mensaje - - Display - Mostrado + + Choose adress from address book + Elije dirección de la guia - - Options - Opciones + + Alt+A + Alt+A - - - OverviewPage - - <b>Recent transactions</b> - <b>Transacciones recientes</b> - + + Paste address from clipboard + Pega dirección desde portapapeles + + + + Alt+P + Alt+P + + + + Private key for %1 is not available. + Llave privada para %q no esta disponible. + + + + OptionsDialog + + + Main + Principal + + + + Display + Mostrado + + + + Options + Opciones + + + + OverviewPage Total of transactions that have yet to be confirmed, and do not yet count toward the current balance Total de transacciones que no han sido confirmadas aun, y que no cuentan para el saldo actual. - - Wallet - Cartera + + Total number of transactions in wallet + Número total de transacciones en la billetera + + + + Your current balance + Tu saldo actual Form Formulario - - - Total number of transactions in wallet - Número total de transacciones en la billetera - Balance: @@ -952,7 +947,7 @@ Dirección: %4 0 - + 0 @@ -960,18 +955,18 @@ Dirección: %4 No confirmados: - - Your current balance - Tu saldo actual + + Wallet + Cartera + + + + <b>Recent transactions</b> + <b>Transacciones recientes</b> QRCodeDialog - - - Request Payment - Solicitar Pago - Message: @@ -997,16 +992,6 @@ Dirección: %4 Save Image... - - - Amount: - Cantidad: - - - - BTC - BTC - Label: @@ -1022,31 +1007,39 @@ Dirección: %4 QR Code Código QR + + + Request Payment + Solicitar Pago + + + + Amount: + Cantidad: + + + + BTC + BTC + SendCoinsDialog - - Remove all transaction fields - Remover todos los campos de la transacción - - - - - - - - - - - Send Coins - Enviar monedas + + <b>%1</b> to %2 (%3) + <b>%1</b> to %2 (%3) Send to multiple recipients at once Enviar a múltiples destinatarios + + + Remove all transaction fields + Remover todos los campos de la transacción + Balance: @@ -1068,19 +1061,14 @@ Dirección: %4 &Envía - - <b>%1</b> to %2 (%3) - <b>%1</b> to %2 (%3) - - - - Confirm send coins - Confirmar el envio de monedas + + Are you sure you want to send %1? + Estas seguro que quieres enviar %1? - - The recipient address is not valid, please recheck. - La dirección de destinatarion no es valida, comprueba otra vez. + + and + y @@ -1108,47 +1096,64 @@ Dirección: %4 Error: La transacción fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. - - Clear all - &Borra todos + + + + + + + + + Send Coins + Enviar monedas - - Are you sure you want to send %1? - Estas seguro que quieres enviar %1? + + &Add recipient... + &Agrega destinatario... - - and - y + + Clear all + &Borra todos - - &Add recipient... - &Agrega destinatario... + + Confirm send coins + Confirmar el envio de monedas The amount to pay must be larger than 0. La cantidad por pagar tiene que ser mayor 0. + + + The recipient address is not valid, please recheck. + La dirección de destinatarion no es valida, comprueba otra vez. + SendCoinsEntry + + + Pay &To: + &Pagar a: + A&mount: Cantidad: - - Form - Envio + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + La dirección donde enviar el pago (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - Pay &To: - &Pagar a: + + Remove this recipient + Elimina destinatario @@ -1156,16 +1161,16 @@ Dirección: %4 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 + + + Form + Envio + &Label: &Etiqueta: - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - La dirección donde enviar el pago (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose address from address book @@ -1186,11 +1191,6 @@ Dirección: %4 Alt+P Alt+P - - - Remove this recipient - Elimina destinatario - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1199,21 +1199,36 @@ Dirección: %4 TransactionDesc + + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Las monedas generadas deben esperar 120 bloques antes de ser gastadas. Cuando has generado este bloque se emitió a la red para ser agregado en la cadena de bloques. Si falla al incluirse en la cadena, cambiará a "no aceptado" y las monedas no se podrán gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque casi al mismo tiempo que el tuyo. + + + + Open until %1 + Abierto hasta %1 + Open for %1 blocks Abierto hasta %1 bloques - - - %1/offline? - %1/fuera de linea? - %1/unconfirmed %1/no confirmado + + + %1 confirmations + %1 confirmaciónes + + + + %1/offline? + %1/fuera de linea? + <b>Status:</b> @@ -1250,17 +1265,22 @@ Dirección: %4 <b>From:</b> <b>De:</b> + + + unknown + desconocido + <b>To:</b> - + <b>Para:</b> (yours, label: - (tuya, etiqueta: + (tuya, etiqueta: @@ -1297,6 +1317,16 @@ Dirección: %4 <b>Transaction fee:</b> <b>Comisión transacción:</b> + + + <b>Net amount:</b> + <b>Cantidad total:</b> + + + + Message: + Mensaje: + Comment: @@ -1307,48 +1337,18 @@ Dirección: %4 Transaction ID: ID de Transacción: + + + TransactionDescDialog - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Las monedas generadas deben esperar 120 bloques antes de ser gastadas. Cuando has generado este bloque se emitió a la red para ser agregado en la cadena de bloques. Si falla al incluirse en la cadena, cambiará a "no aceptado" y las monedas no se podrán gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque casi al mismo tiempo que el tuyo. + + Transaction details + Detalles de transacción - - Open until %1 - Abierto hasta %1 - - - - %1 confirmations - %1 confirmaciónes - - - - unknown - desconocido - - - - <b>Net amount:</b> - <b>Cantidad total:</b> - - - - Message: - Mensaje: - - - - 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 + + This pane shows a detailed description of the transaction + Esta ventana muestra información detallada sobre la transacción @@ -1401,14 +1401,6 @@ Dirección: %4 Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) - - - Mined balance will be available in %n more blocks - - El balance minado estará disponible en %n bloque mas - El balance minado estará disponible en %n bloques mas - - This block was not received by any other nodes and will probably not be accepted! @@ -1474,24 +1466,17 @@ Dirección: %4 Amount removed from or added to balance. Cantidad restada o añadida al balance + + + Mined balance will be available in %n more blocks + + El balance minado estará disponible en %n bloque mas + El balance minado estará disponible en %n bloques mas + + TransactionView - - - To yourself - A ti mismo - - - - Mined - Minado - - - - Other - Otra - Enter address or label to search @@ -1507,21 +1492,11 @@ Dirección: %4 Copy address Copia dirección - - - Copy label - Copia etiqueta - Edit label Edita etiqueta - - - Export Transaction Data - Exportar datos de transacción - Comma separated file (*.csv) @@ -1538,19 +1513,9 @@ Dirección: %4 Fecha - - Amount - Cantidad - - - - Error exporting - Error exportando - - - - Show details... - Muestra detalles... + + Label + Etiqueta @@ -1593,6 +1558,11 @@ Dirección: %4 This year Este año + + + Amount + Cantidad + Range... @@ -1613,15 +1583,35 @@ Dirección: %4 Range: Rango: + + + To yourself + A ti mismo + + + + Mined + Minado + + + + Other + Otra + + + + Copy label + Copia etiqueta + to para - - ID - ID + + Error exporting + Error exportando @@ -1629,15 +1619,25 @@ Dirección: %4 No se pudo escribir en el archivo %1. - - Label - Etiqueta + + Show details... + Muestra detalles... Address Dirección + + + Export Transaction Data + Exportar datos de transacción + + + + ID + ID + WalletModel @@ -1650,24 +1650,100 @@ Dirección: %4 bitcoin-core - - Bitcoin version - Versión Bitcoin + + Usage: + Uso: + + + + Loading addresses... + Cargando direcciónes... + + + + Loading block index... + Cargando el index de bloques... + + + + Loading wallet... + Cargando cartera... + + + + Done loading + Carga completa + + + + Rescanning... + Rescaneando... + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. + + + + Get help for a command + Recibir ayuda para un comando + + + + + Options: + Opciones: + + + + + Specify configuration file (default: bitcoin.conf) + Especifica archivo de configuración (predeterminado: bitcoin.conf) + + + + + Specify pid file (default: bitcoind.pid) + Especifica archivo pid (predeterminado: bitcoin.pid) + + + + + Don't generate coins + No generar monedas + Show splash screen on startup (default: 1) + + + Specify data directory + Especifica directorio para los datos + + Set database cache size in megabytes (default: 25) + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Escuchar por conecciones en <puerto> (Por defecto: 8333 o red de prueba: 18333) + + + + 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 @@ -1684,6 +1760,11 @@ Dirección: %4 Find peers using DNS lookup (default: 1) + + + Threshold for disconnecting misbehaving peers (default: 100) + Umbral de desconección de clientes con mal comportamiento (por defecto: 100) + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) @@ -1699,21 +1780,6 @@ Dirección: %4 Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - - Use Universal Plug and Play to map the listening port (default: 1) - Intenta usar UPnP para mapear el puerto de escucha (default: 1) - - - - Use Universal Plug and Play to map the listening port (default: 0) - Intenta usar UPnP para mapear el puerto de escucha (default: 0) - - - - Fee per KB to add to transactions you send - Comisión por kB para adicionarla a las transacciones enviadas - Execute command when the best block changes (%s in cmd is replaced by block hash) @@ -1729,22 +1795,6 @@ Dirección: %4 How thorough the block verification is (0-6, default: 1) - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. - - - - - Loading addresses... - Cargando direcciónes... - - - - Loading block index... - Cargando el index de bloques... - Cannot downgrade wallet @@ -1760,93 +1810,25 @@ Dirección: %4 Cannot write default address - - - Rescanning... - Rescaneando... - - - - Invalid amount for -paytxfee=<amount> - Cantidad inválida para -paytxfee=<amount> - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. - - - - beta - beta - - - - Get help for a command - Recibir ayuda para un comando - - - - - Options: - Opciones: - - - - - Specify configuration file (default: bitcoin.conf) - Especifica archivo de configuración (predeterminado: bitcoin.conf) - - - - - Specify pid file (default: bitcoind.pid) - Especifica archivo pid (predeterminado: bitcoin.pid) - - - - - Generate coins - Genera monedas - - - - - Don't generate coins - No generar monedas - - Invalid -proxy address Dirección -proxy invalida - - Specify data directory - Especifica directorio para los datos - - - - - Specify connection timeout (in milliseconds) - Especifica tiempo de espera para conexion (en milisegundos) - - - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Escuchar por conecciones en <puerto> (Por defecto: 8333 o red de prueba: 18333) + + 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. - - Maintain at most <n> connections to peers (default: 125) - Mantener al menos <n> conecciones por cliente (por defecto: 125) + + Find peers using internet relay chat (default: 0) + Buscar pares usando 'internet relay chat (IRC)' (predeterminado: 0) - - Threshold for disconnecting misbehaving peers (default: 100) - Umbral de desconección de clientes con mal comportamiento (por defecto: 100) + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Precaución: Por favor revise que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal configurado Bitcoin no funcionará correctamente. @@ -1855,9 +1837,9 @@ Dirección: %4 - - Start minimized - Arranca minimizado + + Use the test network + Usa la red de pruebas @@ -1867,26 +1849,9 @@ Dirección: %4 - - Send commands to node running on <ip> (default: 127.0.0.1) - Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - - - - - Use the test network - Usa la red de pruebas - - - - - Error: CreateThread(StartNode) failed - Error: CreateThread(StartNode) fallido - - - - Connect through socks4 proxy - Conecta mediante proxy socks4 + + Start minimized + Arranca minimizado @@ -1894,12 +1859,6 @@ Dirección: %4 Prepend debug output with timestamp Anteponer salida de depuracion con marca de tiempo - - - Allow DNS lookups for addnode and connect - Permite búsqueda DNS para addnode y connect - - Send trace/debug info to console instead of debug.log file @@ -1911,86 +1870,98 @@ Dirección: %4 Enviar informacion de seguimiento al depurador - - Username for JSON-RPC connections - Usuario para las conexiones JSON-RPC + + Use OpenSSL (https) for JSON-RPC connections + Usa OpenSSL (https) para las conexiones JSON-RPC - - Listen for JSON-RPC connections on <port> (default: 8332) - Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) + + Server private key (default: server.pem) + Clave privada del servidor (Predeterminado: server.pem) - - Connect only to the specified node - Conecta solo al nodo especificado + + Allow JSON-RPC connections from specified IP address + Permite conexiones JSON-RPC desde la dirección IP especificada - - Use OpenSSL (https) for JSON-RPC connections - Usa OpenSSL (https) para las conexiones JSON-RPC - + + Error loading wallet.dat: Wallet corrupted + Error cargando wallet.dat: Billetera corrupta - - Server certificate file (default: server.cert) - Certificado del servidor (Predeterminado: server.cert) + + Allow DNS lookups for addnode and connect + Permite búsqueda DNS para addnode y connect - - Server private key (default: server.pem) - Clave privada del servidor (Predeterminado: server.pem) - + + Error loading blkindex.dat + Error cargando blkindex.dat - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Error cargando wallet.dat: Billetera necesita una vercion reciente de Bitcoin + + + + Error loading wallet.dat + Error cargando wallet.dat + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) - - Error loading wallet.dat: Wallet corrupted - Error cargando wallet.dat: Billetera corrupta + + Bitcoin version + Versión Bitcoin - - Find peers using internet relay chat (default: 0) - Buscar pares usando 'internet relay chat (IRC)' (predeterminado: 0) + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. + - - Wallet needed to be rewritten: restart Bitcoin to complete - La billetera necesita ser reescrita: reinicie Bitcoin para completar + + Invalid amount for -paytxfee=<amount> + Cantidad inválida para -paytxfee=<amount> - - Output extra debugging information - Adjuntar informacion extra de depuracion + + beta + beta - - Error loading addr.dat - Error cargando addr.dat + + Specify connection timeout (in milliseconds) + Especifica tiempo de espera para conexion (en milisegundos) + - - Usage: - Uso: + + Warning: Disk space is low + Atención: Poco espacio en el disco duro - - Loading wallet... - Cargando cartera... + + Generate coins + Genera monedas + - - Done loading - Carga completa + + Error: CreateThread(StartNode) failed + Error: CreateThread(StartNode) fallido @@ -2005,14 +1976,31 @@ Dirección: %4 - - 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. + + Connect through socks4 proxy + Conecta mediante proxy socks4 + - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Precaución: Por favor revise que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal configurado Bitcoin no funcionará correctamente. + + Connect only to the specified node + Conecta solo al nodo especificado + + + + + Use Universal Plug and Play to map the listening port (default: 1) + Intenta usar UPnP para mapear el puerto de escucha (default: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Intenta usar UPnP para mapear el puerto de escucha (default: 0) + + + + Fee per KB to add to transactions you send + Comisión por kB para adicionarla a las transacciones enviadas @@ -2021,11 +2009,33 @@ Dirección: %4 - - Allow JSON-RPC connections from specified IP address - Permite conexiones JSON-RPC desde la dirección IP especificada + + Output extra debugging information + Adjuntar informacion extra de depuracion + + + + Username for JSON-RPC connections + Usuario para las conexiones JSON-RPC + + + + + Listen for JSON-RPC connections on <port> (default: 8332) + Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) + + + + + Send commands to node running on <ip> (default: 127.0.0.1) + Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) + + + Upgrade wallet to latest format + Actualizar billetera al formato actual + Set key pool size to <n> (default: 100) @@ -2039,10 +2049,15 @@ Dirección: %4 - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) + + Server certificate file (default: server.cert) + Certificado del servidor (Predeterminado: server.cert) + + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) @@ -2052,29 +2067,14 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - Error loading blkindex.dat - Error cargando blkindex.dat - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Error cargando wallet.dat: Billetera necesita una vercion reciente de Bitcoin - - - - Error loading wallet.dat - Error cargando wallet.dat - - - - Warning: Disk space is low - Atención: Poco espacio en el disco duro + + Error loading addr.dat + Error cargando addr.dat - - Upgrade wallet to latest format - Actualizar billetera al formato actual + + Wallet needed to be rewritten: restart Bitcoin to complete + La billetera necesita ser reescrita: reinicie Bitcoin para completar diff --git a/src/qt/locale/bitcoin_et.ts b/src/qt/locale/bitcoin_et.ts index 2405fb051b..d09a941326 100644 --- a/src/qt/locale/bitcoin_et.ts +++ b/src/qt/locale/bitcoin_et.ts @@ -492,6 +492,7 @@ Are you sure you wish to encrypt your wallet? %n active connection(s) to Bitcoin network + @@ -509,6 +510,7 @@ Are you sure you wish to encrypt your wallet? %n second(s) ago + @@ -516,6 +518,7 @@ Are you sure you wish to encrypt your wallet? %n minute(s) ago + @@ -523,6 +526,7 @@ Are you sure you wish to encrypt your wallet? %n hour(s) ago + @@ -530,6 +534,7 @@ Are you sure you wish to encrypt your wallet? %n day(s) ago + @@ -1360,6 +1365,7 @@ Address: %4 Open for %n block(s) + @@ -1387,6 +1393,7 @@ Address: %4 Mined balance will be available in %n more blocks + diff --git a/src/qt/locale/bitcoin_eu_ES.ts b/src/qt/locale/bitcoin_eu_ES.ts index 88848d5205..d997eb2c39 100644 --- a/src/qt/locale/bitcoin_eu_ES.ts +++ b/src/qt/locale/bitcoin_eu_ES.ts @@ -106,7 +106,7 @@ This product includes software developed by the OpenSSL Project for use in the O Delete - + Ezabatu diff --git a/src/qt/locale/bitcoin_fa.ts b/src/qt/locale/bitcoin_fa.ts index 5246bb8c15..a7ee30152f 100644 --- a/src/qt/locale/bitcoin_fa.ts +++ b/src/qt/locale/bitcoin_fa.ts @@ -42,8 +42,8 @@ This product includes software developed by the OpenSSL Project for use in the O These are your Bitcoin 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. - ااینجا آدرسهای بیتکویین هستند برای در یافت پر داختها. شما می توانید از مسیر های متفاوت پر داخت در بیابید بدین دلیل شما می توانید مسیر پر داخت کننده نگهداری کنید -ts060x/bitcoin_fa.ts-درس روی پنجره اصلی نمایش می شود + ااینجا آدرسهای بیتکویین هستند برای در یافت پر داختها. شما می توانید از مسیر های متفاوت پر داخت در بیابید بدین دلیل شما می توانید مسیر پر داخت کننده نگهداری کنید +درس روی پنجره اصلی نمایش می شود @@ -58,7 +58,7 @@ ts060x/bitcoin_fa.ts-درس روی پنجره اصلی نمایش می شود &New Address... - آدرس جدید + آدرس نو... @@ -68,13 +68,18 @@ ts060x/bitcoin_fa.ts-درس روی پنجره اصلی نمایش می شود &Copy to Clipboard - کپی در تخته رسم گیره دار + کپی در تخته رسم گیره دار Show &QR Code نمایش &کد QR + + + Sign a message to prove you own this address + یک پیام را امضا کنید تا ثابت کنید صاحب این نشانی هستید + &Sign Message @@ -90,30 +95,25 @@ ts060x/bitcoin_fa.ts-درس روی پنجره اصلی نمایش می شود&Delete حذف - - - Sign a message to prove you own this address - یک پیام را امضا کنید تا ثابت کنید صاحب این نشانی هستید - Copy address - کپی آدرس + کپی آدرس Copy label - کپی بر چسب + کپی بر چسب Edit - ویرایش + ویرایش Delete - حذف + حذف @@ -159,7 +159,7 @@ ts060x/bitcoin_fa.ts-درس روی پنجره اصلی نمایش می شود Dialog - تگفتگو + تگفتگو @@ -179,7 +179,7 @@ ts060x/bitcoin_fa.ts-درس روی پنجره اصلی نمایش می شود TextLabel - + بر چسب @@ -192,6 +192,11 @@ ts060x/bitcoin_fa.ts-درس روی پنجره اصلی نمایش می شودEncrypt wallet رمز بندی پنجره + + + Wallet decryption failed + ناموفق رمز بندی پنجره + This operation needs your wallet passphrase to unlock the wallet. @@ -231,7 +236,7 @@ ts060x/bitcoin_fa.ts-درس روی پنجره اصلی نمایش می شود WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? - هشدار: اگر wallet رمزگذاری شود و شما passphrase را گم کنید شما همه اطلاعات bitcoin را از دست خواهید داد. + هشدار اگر شما روی پنجره رمز بگذارید و عبارت عبور فراموش کنید همه بیتکویینس شما گم می کنید. متماینید کن که می خواهید رمز بگذارید @@ -275,35 +280,50 @@ Are you sure you wish to encrypt your wallet? The passphrase entered for the wallet decryption was incorrect. اموفق رمز بندی پنجر - - - Wallet decryption failed - ناموفق رمز بندی پنجره - Wallet passphrase was successfully changed. - wallet passphrase با موفقیت تغییر یافت + wallet passphrase با موفقیت تغییر یافت Warning: The Caps Lock key is on. - هشدار: Caps lock key روشن است + هشدار: کلید حروف بزرگ روشن است. BitcoinGUI + + + Edit the list of stored addresses and labels + ویرایش لیست آدرسها و بر چسب های ذخیره ای + + + + About &Qt + درباره &Qt + + + + &Export... + &;صادرات + Synchronizing with network... همگام سازی با شبکه ... + + + Bitcoin Wallet + پنجره بیتکویین + Block chain synchronization in progress - همگام زنجیر بلوک در حال پیشرفت + همگام زنجیر بلوک در حال پیشرفت @@ -316,9 +336,24 @@ Are you sure you wish to encrypt your wallet? نمای کلی پنجره نشان بده - - &Transactions - &amp;معاملات + + Show the list of addresses for receiving payments + نمایش لیست آدرس ها برای در یافت پر داخت ها + + + + Send coins to a bitcoin address + ارسال سکه به آدرس بیتکویین + + + + &Backup Wallet + پشتیبان گیری از wallet + + + + Downloaded %1 blocks of transaction history. + دانلود بلوکهای معملات %1 @@ -330,20 +365,12 @@ Are you sure you wish to encrypt your wallet? &Address Book دفتر آدرس - - - Edit the list of stored addresses and labels - ویرایش لیست آدرسها و بر چسب های ذخیره ای - - - - &Receive coins - در یافت سکه - - - - Show the list of addresses for receiving payments - نمایش لیست آدرس ها برای در یافت پر داخت ها + + + %n day(s) ago + + %n بعد از چند روزز + @@ -351,14 +378,14 @@ Are you sure you wish to encrypt your wallet? رسال سکه ها - - Bitcoin Wallet - پنجره بیتکویین + + Last received block was generated %1. + خرین بلوک در یافت شده تولید شده بود %1 - - E&xit - خروج + + 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% بفرستید که شامل گره معامله شما می باشد و به شبکه های اینترنتی کمک خواهد کردو آیا شما می خواهید این پول پر داخت%1 @@ -366,14 +393,14 @@ Are you sure you wish to encrypt your wallet? خروج از برنامه - - Show information about Bitcoin - نمایش اطلاعات در مورد بیتکویین + + Sent transaction + معامله ارسال شده - - About &Qt - درباره &Qt + + Incoming transaction + معامله در یافت شده @@ -381,74 +408,104 @@ Are you sure you wish to encrypt your wallet? نمایش اطلاعات درباره Qt - - &Options... - تنظیمات... + + Export the data in the current tab to a file + داده ها نوارِ جاری را به فایل انتقال دهید - - &Export... - &;صادرات + + Backup wallet to another location + نسخه پیشتیبان wallet را به محل دیگر انتقال دهید - - Send coins to a bitcoin address - ارسال سکه به آدرس بیتکویین + + Prove you control an address + اثبات کنید که روی یک نشانی کنترل دارید - - Encrypt or decrypt wallet - رمز بندی یا رمز گشایی پنجره + + &Transactions + &amp;معاملات - - Prove you control an address - اثبات کنید که روی یک نشانی کنترل دارید + + Up to date + تا تاریخ Sign &message - امضای &پیام + امضای &پیام + + + + &Receive coins + در یافت سکه + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + زمایش شبکهه + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + زمایش شبکه &About %1 - &حدود%1 + &حدود%1 Modify configuration options for bitcoin - انتخابهای پیکربندی را برای bitcoin اصلاح کن + صلاح تنظیمات برای بیتکویین Open &Bitcoin - باز کردن &بیتکویین + باز کردن &amp;بیتکویین Show the Bitcoin window - نمایش پنجره بیتکویین - - - - &Backup Wallet - پشتیبان گیری از wallet + نمایش پنجره بیتکویین &Change Passphrase - تغییر Passphrase + تغییر عبارت عبور - - Change the passphrase used for wallet encryption - عبارت عبور رمز گشایی پنجره تغییر کنید + + E&xit + خروج + + + + Show information about Bitcoin + نمایش اطلاعات در مورد بیتکویین + + + + &Options... + تنظیمات... + + + + Encrypt or decrypt wallet + رمز بندی یا رمز گشایی پنجره &File - فایل + فایل + + + + Change the passphrase used for wallet encryption + عبارت عبور رمز گشایی پنجره تغییر کنید @@ -482,11 +539,6 @@ Are you sure you wish to encrypt your wallet? در صد ارتباطات فعال بیتکویین با شبکه %n - - - Downloaded %1 blocks of transaction history. - دانلود بلوکهای معملات %1 - %n second(s) ago @@ -508,48 +560,6 @@ Are you sure you wish to encrypt your wallet? %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% بفرستید که شامل گره معامله شما می باشد و به شبکه های اینترنتی کمک خواهد کردو آیا شما می خواهید این پول پر داخت%1 - - - - &Encrypt Wallet - &رمز بندی پنجره - - - - Sent transaction - معامله ارسال شده - - - - Incoming transaction - معامله در یافت شده - Date: %1 @@ -563,24 +573,34 @@ Address: %4 آدرس %4 - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - زمایش شبکهه + + Backup Wallet + نسخه پیشتیبان از wallet - - Wallet is <b>encrypted</b> and currently <b>locked</b> - زمایش شبکه + + Wallet Data (*.dat) + داده wallet (*.DAT) - - Export the data in the current tab to a file - داده ها نوارِ جاری را به فایل انتقال دهید + + Backup Failed + عملیات پیشتیبان گیری انجام نشد - - Backup wallet to another location - نسخه پیشتیبان wallet را به محل دیگر انتقال دهید + + There was an error trying to save the wallet data to the new location. + در زمان انتقال داده wallet به محل جدید خطا روی داد + + + + Catching up... + ابتلا به بالا + + + + &Encrypt Wallet + &رمز بندی پنجره @@ -597,26 +617,6 @@ Address: %4 Sending... ارسال... - - - Backup Wallet - نسخه پیشتیبان از wallet - - - - Wallet Data (*.dat) - داده wallet (*.DAT) - - - - Backup Failed - عملیات پیشتیبان گیری انجام نشد - - - - There was an error trying to save the wallet data to the new location. - در زمان انتقال داده wallet به محل جدید خطا روی داد - A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -638,7 +638,7 @@ Address: %4 &Display addresses in transaction list - &نمایش آدرس ها در لیست معامله + نمایش آدرسها در فهرست تراکنش @@ -648,6 +648,11 @@ Address: %4 EditAddressDialog + + + New key generation failed. + کلید نسل جدید ناموفق است + Edit Address @@ -708,11 +713,6 @@ Address: %4 Could not unlock wallet. رمز گشایی پنجره امکان پذیر نیست - - - New key generation failed. - کلید نسل جدید ناموفق است - MainOptionsPage @@ -807,7 +807,7 @@ Address: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - شما می توانید پیامها را با آدرس خودتان امضا نمایید تا ثابت شود متعلق به شما هستند. مواظب باشید تا چیزی که بدان مطمئن نیستنید را امضا نکنید زیرا حملات فیشینگ در زمان ورود شما به سیستم فریبنده هستند. تنها مواردی را که حاوی اطلاعات دقیق و قابل قبول برای شما هستند را امضا کنید + شما می توانید پیامها را با آدرس خودتان امضا نمایید تا ثابت شود متعلق به شما هستند. مواظب باشید تا چیزی که بدان مطمئن نیستنید را امضا نکنید زیرا حملات فیشینگ در زمان ورود شما به سیستم فریبنده هستند. تنها مواردی را که حاوی اطلاعات دقیق و قابل قبول برای شما هستند را امضا کنید @@ -857,7 +857,7 @@ Address: %4 Copy the current signature to the system clipboard - این امضا را در system clipboard کپی کن + این امضا را در system clipboard کپی کن @@ -907,6 +907,11 @@ Address: %4 OverviewPage + + + Wallet + wallet + Form @@ -918,35 +923,25 @@ Address: %4 راز: - - Wallet - wallet - - - - Number of transactions: - تعداد معامله - - - - 0 - 0 + + Your current balance + تزار جاری شما Unconfirmed: تایید نشده - - - Your current balance - تزار جاری شما - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance تعداد معاملات که تایید شده ولی هنوز در تزار جاری شما بر شمار نرفته است + + + Number of transactions: + تعداد معامله + Total number of transactions in wallet @@ -957,9 +952,34 @@ Address: %4 <b>Recent transactions</b> اخرین معاملات&lt + + + 0 + 0 + QRCodeDialog + + + Message: + پیام + + + + Error encoding URI into QR Code. + خطا در زمان رمزدار کردن URI در کد QR + + + + PNG Images (*.png) + تصاویر با فرمت PNG (*.png) + + + + Save Image... + + Dialog @@ -980,41 +1000,21 @@ Address: %4 Amount: مقدار: - - - Label: - برچسب: - BTC BTC - - Message: - پیام + + Label: + برچسب: &Save As... &ذخیره به عنوان... - - - Error encoding URI into QR Code. - خطا در زمان رمزدار کردن URI در کد QR - - - - Save Image... - - - - - PNG Images (*.png) - تصاویر با فرمت PNG (*.png) - SendCoinsDialog @@ -1095,11 +1095,6 @@ Address: %4 The recipient address is not valid, please recheck. آدرس گیرنده نادرست است، لطفا دوباره بررسی کنید. - - - The amount to pay must be larger than 0. - مبلغ پر داخت باید از 0 بیشتر باشد - The amount exceeds your balance. @@ -1125,6 +1120,11 @@ Address: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 شما استفاده شده اند برای مثال اگر شما از WALLET.DAT استفاده کرده اید، ممکن است سکه ها استفاده شده باشند اما در اینجا نمایش داده نشوند + + + The amount to pay must be larger than 0. + مبلغ پر داخت باید از 0 بیشتر باشد + SendCoinsEntry @@ -1468,6 +1468,31 @@ Address: %4 TransactionView + + + Confirmed + تایید شده + + + + ID + آی دی + + + + Error exporting + خطای صادرت + + + + Could not write to file %1. + تا فایل %1 نمی شود نوشت + + + + Range: + >محدوده + @@ -1574,11 +1599,6 @@ Address: %4 Comma separated file (*.csv) Comma فایل جدا - - - Confirmed - تایید شده - Date @@ -1604,26 +1624,6 @@ Address: %4 Amount مبلغ - - - ID - آی دی - - - - Error exporting - خطای صادرت - - - - Could not write to file %1. - تا فایل %1 نمی شود نوشت - - - - Range: - >محدوده - to @@ -1640,6 +1640,156 @@ Address: %4 bitcoin-core + + + Generate coins + سکه های تولید شده + + + + Accept command line and JSON-RPC commands + JSON-RPC قابل فرمانها و + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + زمانی که بهترین بلاک تغییر کرد، دستور را اجرا کن (%s در cmd با block hash جایگزین شده است) + + + + Use the test network + استفاده شبکه آزمایش + + + + Prepend debug output with timestamp + به خروجی اشکال‌زدایی برچسب زمان بزنید + + + + Send trace/debug info to console instead of debug.log file + اطلاعات ردگیری/اشکال‌زدایی را به جای فایل لاگ اشکال‌زدایی به کنسول بفرستید + + + + Listen for JSON-RPC connections on <port> (default: 8332) + ( 8332پیش فرض :) &lt;poort&gt; JSON-RPC شنوایی برای ارتباطات + + + + Allow JSON-RPC connections from specified IP address + از آدرس آی پی خاص JSON-RPC قبول ارتباطات + + + + Server private key (default: server.pem) + (server.pemپیش فرض: ) کلید خصوصی سرور + + + + This help message + پیام کمکی + + + + Loading addresses... + بار گیری آدرس ها + + + + Add a node to connect to and attempt to keep the connection open + به اتصال یک گره اضافه کنید و اتصال را باز نگاه دارید + + + + Error loading blkindex.dat + خطا در بارگیری blkindex.dat + + + + Error loading wallet.dat: Wallet corrupted + خطا در بارگیری wallet.dat: کیف پول خراب شده است + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + خطا در بارگیری wallet.dat: کیف پول به ویرایش جدیدتری از Biticon نیاز دارد + + + + Wallet needed to be rewritten: restart Bitcoin to complete + سلام + + + + Error loading wallet.dat + خطا در بارگیری wallet.dat + + + + Cannot downgrade wallet + امکان تنزل نسخه در wallet وجود ندارد + + + + Cannot initialize keypool + امکان مقداردهی اولیه برای key pool وجود ندارد + + + + Cannot write default address + آدرس پیش فرض قابل ذخیره نیست + + + + Done loading + بار گیری انجام شده است + + + + Fee per KB to add to transactions you send + پر داجت برای هر کیلو بیت برای اضافه به معامله ارسال + + + + Find peers using internet relay chat (default: 0) + یافتنت قرینه با استفاده از internet relay chat (پیش فرض:0) + + + + How many blocks to check at startup (default: 2500, 0 = all) + چند بلاک برای بررسی در زمان startup (پیش فرض:2500 , 0=همه) + + + + How thorough the block verification is (0-6, default: 1) + چقد کامل بلوک تصدیق است (0-6, پیش فرض:1) + + + + Loading block index... + بار گیری شاخص بلوک + + + + Loading wallet... + بار گیری والت + + + + Rescanning... + اسکان مجدد + + + + Set database cache size in megabytes (default: 25) + سایز کَش بانک داده را بر حسب مگابایت تنظیم کنید (پیش فرض:25) + + + + Upgrade wallet to latest format + wallet را به جدیدترین فرمت روزآمد کنید + Bitcoin version @@ -1680,11 +1830,6 @@ Address: %4 Specify pid file (default: bitcoind.pid) (bitcoind.pidپیش فرض : ) فایل پید خاص - - - Generate coins - سکه های تولید شده - Don't generate coins @@ -1698,7 +1843,7 @@ Address: %4 Show splash screen on startup (default: 1) - نمایش صفحه splash در STARTUP (پیش فرض:1) + نمایش صفحه splash در STARTUP (پیش فرض:1) @@ -1728,12 +1873,12 @@ Address: %4 Accept connections from outside (default: 1) - + پذیرش اتصالات از بیرون (پیش فرض:1 بدون پراکسی یا اتصال) Set language, for example "de_DE" (default: system locale) - زبان را تنظیم کنید برای مثال "de_DE" (پیش فرض: system locale) + زبان را تنظیم کنید برای مثال "de_DE" (پیش فرض: system locale) @@ -1755,11 +1900,6 @@ Address: %4 Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) رمز های قابل قبول( TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - Warning: Disk space is low - هشدار: فضای دیسک محدود است! - Maintain at most <n> connections to peers (default: 125) @@ -1795,41 +1935,16 @@ Address: %4 Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) حداکثر بافر ارسالی در هر اتصال، 1000*<n> (پیش‌فرض: 10000) - - - Accept command line and JSON-RPC commands - JSON-RPC قابل فرمانها و - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - زمانی که بهترین بلاک تغییر کرد، دستور را اجرا کن (%s در cmd با block hash جایگزین شده است) - Run in the background as a daemon and accept commands اجرای در پس زمینه به عنوان شبح و قبول فرمان ها - - - Use the test network - استفاده شبکه آزمایش - Output extra debugging information اطلاعات اشکال‌زدایی اضافی خروجی - - - Prepend debug output with timestamp - به خروجی اشکال‌زدایی برچسب زمان بزنید - - - - Send trace/debug info to console instead of debug.log file - اطلاعات ردگیری/اشکال‌زدایی را به جای فایل لاگ اشکال‌زدایی به کنسول بفرستید - Send trace/debug info to debugger @@ -1845,16 +1960,6 @@ Address: %4 Password for JSON-RPC connections JSON-RPC عبارت عبور برای ارتباطات - - - Listen for JSON-RPC connections on <port> (default: 8332) - ( 8332پیش فرض :) &lt;poort&gt; JSON-RPC شنوایی برای ارتباطات - - - - Allow JSON-RPC connections from specified IP address - از آدرس آی پی خاص JSON-RPC قبول ارتباطات - Send commands to node running on <ip> (default: 127.0.0.1) @@ -1888,120 +1993,15 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) (server.certپیش فرض: )گواهی نامه سرور - - Server private key (default: server.pem) - (server.pemپیش فرض: ) کلید خصوصی سرور - - - - This help message - پیام کمکی - - - - Loading addresses... - بار گیری آدرس ها - - - - Add a node to connect to and attempt to keep the connection open - به اتصال یک گره اضافه کنید و اتصال را باز نگاه دارید + + Warning: Disk space is low + هشدار: فضای دیسک محدود است! Error loading addr.dat خطا در بارگیری addr.dat - - - Error loading blkindex.dat - خطا در بارگیری blkindex.dat - - - - Error loading wallet.dat: Wallet corrupted - خطا در بارگیری wallet.dat: کیف پول خراب شده است - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - خطا در بارگیری wallet.dat: کیف پول به ویرایش جدیدتری از Biticon نیاز دارد - - - - Wallet needed to be rewritten: restart Bitcoin to complete - سلام - - - - Error loading wallet.dat - خطا در بارگیری wallet.dat - - - - Cannot downgrade wallet - امکان تنزل نسخه در wallet وجود ندارد - - - - Cannot initialize keypool - امکان مقداردهی اولیه برای key pool وجود ندارد - - - - Cannot write default address - آدرس پیش فرض قابل ذخیره نیست - - - - Done loading - بار گیری انجام شده است - - - - Fee per KB to add to transactions you send - پر داجت برای هر کیلو بیت برای اضافه به معامله ارسال - - - - Find peers using internet relay chat (default: 0) - یافتنت قرینه با استفاده از internet relay chat (پیش فرض:0) - - - - How many blocks to check at startup (default: 2500, 0 = all) - چند بلاک برای بررسی در زمان startup (پیش فرض:2500 , 0=همه) - - - - How thorough the block verification is (0-6, default: 1) - چقد کامل بلوک تصدیق است (0-6, پیش فرض:1) - - - - Loading block index... - بار گیری شاخص بلوک - - - - Loading wallet... - بار گیری والت - - - - Rescanning... - اسکان مجدد - - - - Set database cache size in megabytes (default: 25) - سایز کَش بانک داده را بر حسب مگابایت تنظیم کنید (پیش فرض:25) - - - - Upgrade wallet to latest format - wallet را به جدیدترین فرمت روزآمد کنید - Invalid -proxy address @@ -2017,11 +2017,6 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. خطا : پر داخت خیلی بالا است. این پر داخت معامله است که شما هنگام ارسال معامله باید پر داخت کنید - - - Error: CreateThread(StartNode) failed - خطا :ایجاد موضوع(گره) اشتباه بود - Unable to bind to port %d on this computer. Bitcoin is probably already running. @@ -2037,5 +2032,10 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) beta بتا + + + Error: CreateThread(StartNode) failed + خطا :ایجاد موضوع(گره) اشتباه بود + diff --git a/src/qt/locale/bitcoin_fa_IR.ts b/src/qt/locale/bitcoin_fa_IR.ts index 9a678a4818..2e3691cb37 100644 --- a/src/qt/locale/bitcoin_fa_IR.ts +++ b/src/qt/locale/bitcoin_fa_IR.ts @@ -51,18 +51,18 @@ This product includes software developed by the OpenSSL Project for use in the O &New Address... - - - - - &Copy to Clipboard - + و آدرس جدید Copy the currently selected address to the system clipboard آدرس انتخاب شده را در کلیپ بوردِ سیستم کپی کنید + + + &Copy to Clipboard + + Show &QR Code @@ -91,12 +91,12 @@ This product includes software developed by the OpenSSL Project for use in the O Copy address - آدرس را کپی کنید + آدرس را کپی کنید Copy label - برچسب را کپی کنید + برچسب را کپی کنید @@ -106,7 +106,7 @@ This product includes software developed by the OpenSSL Project for use in the O Delete - + و حذف @@ -174,23 +174,6 @@ This product includes software developed by the OpenSSL Project for use in the O TextLabel - - - Wallet unlock failed - قفل wallet باز نشد - - - - - - The passphrase entered for the wallet decryption was incorrect. - رمزهای/پَس فرِیزهایِ وارد شده wallet برای کشف رمز اشتباه است. - - - - Wallet decryption failed - کشف رمز wallet انجام نشد - 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>. @@ -272,6 +255,23 @@ Are you sure you wish to encrypt your wallet? The supplied passphrases do not match. رمزهای/پَس فرِیزهایِ وارد شده با هم تطابق ندارند + + + Wallet unlock failed + قفل wallet باز نشد + + + + + + The passphrase entered for the wallet decryption was incorrect. + رمزهای/پَس فرِیزهایِ وارد شده wallet برای کشف رمز اشتباه است. + + + + Wallet decryption failed + کشف رمز wallet انجام نشد + Wallet passphrase was successfully changed. @@ -286,97 +286,16 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - - - %n active connection(s) to Bitcoin network - - %n ارتباط فعال به شبکه Bitcoin -%n ارتباط فعال به شبکه Bitcoin - - - - - %n second(s) ago - - %n ثانیه قبل -%n ثانیه قبل - - - - - %n minute(s) ago - - %n دقیقه قبل -%n دقیقه قبل - - - - - %n hour(s) ago - - %n ساعت قبل -%n ساعت قبل - - - - - %n day(s) ago - - %n روز قبل -%n روز قبل - - - Edit the list of stored addresses and labels فهرست آدرسها و برچسبهای ذخیره شده را ویرایش کن - - - Bitcoin Wallet - - - - - Block chain synchronization in progress - - - - - &Overview - - - - - Show general overview of wallet - - - - - &Transactions - - - - - Browse transaction history - - - - - &Address Book - - &Receive coins و دریافت سکه ها - - - Show the list of addresses for receiving payments - - &Send coins @@ -427,11 +346,6 @@ Are you sure you wish to encrypt your wallet? Encrypt or decrypt wallet رمزگذاری با رمزگشایی از wallet - - - Backup wallet to another location - گرفتن نسخه پیشتیبان در آدرسی دیگر - Change the passphrase used for wallet encryption @@ -473,6 +387,46 @@ Are you sure you wish to encrypt your wallet? Synchronizing with network... به روز رسانی با شبکه... + + + Bitcoin Wallet + + + + + Block chain synchronization in progress + + + + + &Overview + و بازبینی + + + + Show general overview of wallet + نمای کلی از wallet را نشان بده + + + + &Transactions + و تراکنش + + + + Browse transaction history + تاریخچه تراکنش را باز کن + + + + &Address Book + و دفترجه ادرس + + + + Show the list of addresses for receiving payments + فهرست آدرسها را برای دریافت وجه نشان بده + Send coins to a bitcoin address @@ -481,7 +435,7 @@ Are you sure you wish to encrypt your wallet? Sign &message - + امضا و پیام @@ -496,7 +450,7 @@ Are you sure you wish to encrypt your wallet? Modify configuration options for bitcoin - + اصلاح انتخابها برای پیکربندی Bitcoin @@ -511,33 +465,52 @@ Are you sure you wish to encrypt your wallet? &Encrypt Wallet - + و رمزگذاری wallet &Backup Wallet - + گرفتن نسخه پیشتیبان از Wallet + + + + Backup wallet to another location + گرفتن نسخه پیشتیبان در آدرسی دیگر &Change Passphrase - + تغییر رمز/پَس فرِیز bitcoin-qt + + + %n active connection(s) to Bitcoin network + + + + Downloaded %1 of %2 blocks of transaction history. - + دانلود %1 از %2 بلاک مربوط به تاریخچه تراکنش Downloaded %1 blocks of transaction history. دانلود %1 از بلاکها در تاریخچه تراکنش + + + %n day(s) ago + + + + Up to date @@ -561,7 +534,7 @@ Are you sure you wish to encrypt your wallet? Sending... - در حال ارسال... + در حال ارسال... @@ -614,6 +587,30 @@ Address: %4 There was an error trying to save the wallet data to the new location. در هنگام ذخیره داده های wallet به نسخه جدید خطایی ایجاد شده است + + + %n second(s) ago + + %n ثانیه قبل +%n ثانیه قبل + + + + + %n minute(s) ago + + %n دقیقه قبل +%n دقیقه قبل + + + + + %n hour(s) ago + + %n ساعت قبل +%n ساعت قبل + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -635,7 +632,7 @@ Address: %4 &Display addresses in transaction list - &نمایش آدرس ها در لیست معامله + و نمایش آدرسها در فهرست تراکنش @@ -698,7 +695,7 @@ Address: %4 The entered address "%1" is not a valid bitcoin address. - + آدرس وارد شده "%1" یک آدرس صحیح برای bitcoin نسشت @@ -799,7 +796,7 @@ Address: %4 Message - + پیام @@ -809,27 +806,27 @@ Address: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + یک آدرس bitcoin وارد کنید (مثال 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Choose adress from address book - + آدرس از فهرست آدرس انتخاب کنید Alt+A - Alt و A + Alt و A Paste address from clipboard - آدرس را بر کلیپ بورد کپی کنید + آدرس را بر کلیپ بورد کپی کنید Alt+P - Alt و P + Alt و P @@ -849,7 +846,7 @@ Address: %4 &Sign Message - و امضای پیام + و امضای پیام @@ -866,12 +863,12 @@ Address: %4 Error signing - + خطا %1 is not a valid address. - + آدرس وارد شده "%1" یک آدرس صحیح برای bitcoin نسشت @@ -919,11 +916,6 @@ Address: %4 Total of transactions that have yet to be confirmed, and do not yet count toward the current balance تعداد تراکنشهایی که نیاز به تایید دارند و هنوز در مانده حساب جاری شما به حساب نیامده اند - - - Wallet - کیف پول - Balance: @@ -949,6 +941,11 @@ Address: %4 0 + + + Wallet + کیف پول + <b>Recent transactions</b> @@ -1116,12 +1113,12 @@ Address: %4 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 شما خرج شده باشند مثلا اگر wallet.dat را مپی کرده باشید و سکه های شما در آن کپی استفاده شده باشند اما در اینجا نمایش داده نشده اند. @@ -1238,7 +1235,7 @@ Address: %4 <b>Date:</b> - + <b>تاریخ:</b> @@ -1311,7 +1308,7 @@ Address: %4 Message: - پیام: + پیام: @@ -1388,6 +1385,11 @@ Address: %4 Unconfirmed (%1 of %2 confirmations) تایید نشده (%1 از %2 تاییدها) + + + Confirmed (%1 confirmations) + تایید شده (%1 تاییدها) + Mined balance will be available in %n more blocks @@ -1395,11 +1397,6 @@ Address: %4 - - - Confirmed (%1 confirmations) - تایید شده (%1 تاییدها) - This block was not received by any other nodes and will probably not be accepted! @@ -1645,11 +1642,6 @@ Address: %4 Bitcoin version نسخه bitcoin - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - ciphers قابل قبول (پیش فرض: default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Don't generate coins @@ -1660,11 +1652,6 @@ Address: %4 Number of seconds to keep misbehaving peers from reconnecting (default: 86400) تعداد ثانیه ها برای اتصال دوباره قرینه های اشتباه (پیش فرض:86400) - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - قفل دایرکتوری داده ها %s قابل دریافت نیست. احتمال این وجود دارد که Bitcoin در حال اجرا باشد - Generate coins @@ -1705,31 +1692,16 @@ Address: %4 Accept command line and JSON-RPC commands command line و JSON-RPC commands را قبول کنید - - - Add a node to connect to and attempt to keep the connection open - یک گره برای اتصال اضافه کنید و تلاش کنید تا اتصال را باز نگاه دارید - Send command to -server or bitcoind ارسال دستور به سرور یا bitcoined - - - Allow JSON-RPC connections from specified IP address - ارتباطاتِ JSON-RPC را از آدرس آی.پی. مشخصی برقرار کنید. - Set database cache size in megabytes (default: 25) حافظه بانک داده را به مگابایت تنظیم کنید (پیش فرض: 25) - - - Specify configuration file (default: bitcoin.conf) - فایل پیکربندیِ را مشخص کنید (پیش فرض: bitcoin.conf) - Specify connection timeout (in milliseconds) @@ -1741,9 +1713,80 @@ Address: %4 دایرکتوری داده را مشخص کن - - Specify pid file (default: bitcoind.pid) - فایل pid را مشخص کنید (پیش فرض: bitcoind.pid) + + Start minimized + + + + + Show splash screen on startup (default: 1) + + + + + Connect through socks4 proxy + + + + + Allow DNS lookups for addnode and connect + + + + + Connect only to the specified node + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + + + + Use Universal Plug and Play to map the listening port (default: 1) + + + + + Use Universal Plug and Play to map the listening port (default: 0) + + + + + Output extra debugging information + + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + + + Error loading addr.dat + خطا در هنگام لود شدن addr.dat @@ -1760,6 +1803,46 @@ Address: %4 Cannot downgrade wallet قابلیت برگشت به نسخه قبلی برای wallet امکان پذیر نیست + + + Invalid -proxy address + + + + + Invalid amount for -paytxfee=<amount> + + + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + + + + + Error: CreateThread(StartNode) failed + + + + + Warning: Disk space is low + + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + + + + beta + + Error loading wallet.dat: Wallet corrupted @@ -1775,11 +1858,6 @@ Address: %4 Error loading wallet.dat: Wallet requires newer version of Bitcoin خطا در هنگام لود شدن wallet.dat. به نسخه جدید Bitocin برای wallet نیاز است. - - - Usage: - میزان استفاده: - Cannot write default address @@ -1891,79 +1969,34 @@ Address: %4 برای ارتباطاتِ JSON-RPC از OpenSSL (https) استفاده کنید - - Use the test network - از تستِ شبکه استفاده نمایید - - - - Start minimized - - - - - Show splash screen on startup (default: 1) - - - - - Connect through socks4 proxy - - - - - Allow DNS lookups for addnode and connect - - - - - Connect only to the specified node - - - - - Accept connections from outside (default: 1) - - - - - Set language, for example "de_DE" (default: system locale) - - - - - Find peers using DNS lookup (default: 1) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + + Allow JSON-RPC connections from specified IP address + ارتباطاتِ JSON-RPC را از آدرس آی.پی. مشخصی برقرار کنید. - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + ciphers قابل قبول (پیش فرض: default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Use Universal Plug and Play to map the listening port (default: 1) - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + قفل دایرکتوری داده ها %s قابل دریافت نیست. احتمال این وجود دارد که Bitcoin در حال اجرا باشد - - Use Universal Plug and Play to map the listening port (default: 0) - + + Add a node to connect to and attempt to keep the connection open + یک گره برای اتصال اضافه کنید و تلاش کنید تا اتصال را باز نگاه دارید - - Output extra debugging information - + + Use the test network + از تستِ شبکه استفاده نمایید - - Prepend debug output with timestamp - برونداد اشکال زدایی با timestamp + + Wallet needed to be rewritten: restart Bitcoin to complete + wallet نیاز به بازنویسی دارد. Bitcoin را برای تکمیل عملیات دوباره اجرا کنید. @@ -1981,60 +2014,24 @@ Address: %4 شناسه کاربری برای ارتباطاتِ JSON-RPC - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Error loading addr.dat - - - - - Wallet needed to be rewritten: restart Bitcoin to complete - wallet نیاز به بازنویسی دارد. Bitcoin را برای تکمیل عملیات دوباره اجرا کنید. - - - - Invalid -proxy address - - - - - Invalid amount for -paytxfee=<amount> - - - - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - - - - - Error: CreateThread(StartNode) failed - - - - - Warning: Disk space is low - + + Specify configuration file (default: bitcoin.conf) + فایل پیکربندیِ را مشخص کنید (پیش فرض: bitcoin.conf) - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - + + Specify pid file (default: bitcoind.pid) + فایل pid را مشخص کنید (پیش فرض: bitcoind.pid) - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + + Usage: + میزان استفاده: - - beta - + + Prepend debug output with timestamp + برونداد اشکال زدایی با timestamp diff --git a/src/qt/locale/bitcoin_fi.ts b/src/qt/locale/bitcoin_fi.ts index 7e9c47ca74..019c2269b2 100644 --- a/src/qt/locale/bitcoin_fi.ts +++ b/src/qt/locale/bitcoin_fi.ts @@ -77,7 +77,7 @@ This product includes software developed by the OpenSSL Project for use in the O Sign a message to prove you own this address - Allekirjoita viesti millä todistat omistavasi tämän osoitteen + Allekirjoita viesti millä todistat omistavasi tämän osoitteen @@ -102,12 +102,12 @@ This product includes software developed by the OpenSSL Project for use in the O Copy label - Kopioi nimi + Kopioi nimi Edit - Muokkaa + Muokkaa @@ -158,7 +158,7 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - Dialogi + Dialogi @@ -178,7 +178,7 @@ This product includes software developed by the OpenSSL Project for use in the O TextLabel - + TekstiMerkki @@ -200,6 +200,35 @@ This product includes software developed by the OpenSSL Project for use in the O Unlock wallet Avaa lompakko + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + VAROITUS: Mikäli salaat lompakkosi ja unohdat tunnuslauseen, <b>MENETÄT LOMPAKON KOKO SISÄLLÖN</b>! +Tahdotko varmasti salata lompakon? + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin sulkeutuu lopettaakseen salausprosessin. Muista, että salattu lompakko ei täysin suojaa sitä haittaohjelmien aiheuttamilta varkauksilta. + + + + 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. + This operation needs your wallet passphrase to decrypt the wallet. @@ -231,11 +260,6 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet encrypted Lompakko salattu - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin sulkeutuu lopettaakseen salausprosessin. Muista, että salattu lompakko ei täysin suojaa sitä haittaohjelmien aiheuttamilta varkauksilta. - Wallet passphrase was successfully changed. @@ -247,13 +271,6 @@ This product includes software developed by the OpenSSL Project for use in the O Warning: The Caps Lock key is on. Varoitus: Caps Lock on päällä. - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - VAROITUS: Mikäli salaat lompakkosi ja unohdat tunnuslauseen, <b>MENETÄT LOMPAKON KOKO SISÄLLÖN</b>! -Tahdotko varmasti salata lompakon? - @@ -273,23 +290,6 @@ Tahdotko varmasti salata lompakon? 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. - BitcoinGUI @@ -330,19 +330,19 @@ Tahdotko varmasti salata lompakon? Muokkaa tallennettujen nimien ja osoitteiden listaa - - &Receive coins - &Vastaanota Bitcoineja + + &Help + &Apua - - Show the list of addresses for receiving payments - Näytä Bitcoinien vastaanottamiseen käytetyt osoitteet + + Tabs toolbar + Välilehtipalkki - - &Send coins - &Lähetä Bitcoineja + + Actions toolbar + Toimintopalkki @@ -382,12 +382,12 @@ Tahdotko varmasti salata lompakon? Export the data in the current tab to a file - Vie auki olevan välilehden tiedot tiedostoon + Vie aukiolevan välilehden tiedot tiedostoon Encrypt or decrypt wallet - Salaa tai poista salaus lompakosta + Kryptaa tai dekryptaa lompakko @@ -405,24 +405,17 @@ Tahdotko varmasti salata lompakon? &Asetukset - - &Help - &Apua - - - - Tabs toolbar - Välilehtipalkki - - - - Actions toolbar - Toimintopalkki + + Bitcoin Wallet + Bitcoin-lompakko - - - [testnet] - [testnet] + + + %n hour(s) ago + + %n tunti sitten + %n tuntia sitten + @@ -432,40 +425,20 @@ Tahdotko varmasti salata lompakon? %n aktiivista yhteyttä Bitcoin-verkkoon - - - &Backup Wallet - &Varmuuskopioi lompakko - - - - Bitcoin Wallet - Bitcoin-lompakko - - - - Block chain synchronization in progress - Block chainin synkronointi kesken - - - - Send coins to a bitcoin address - Lähetä kolikoita Bitcoin-osoitteeseen - Sign &message Allekirjoita &viesti - - &About %1 - &Tietoja %1 + + Catching up... + Kurotaan kiinni... Modify configuration options for bitcoin - Muuta Bitcoinin konfiguraatioasetuksia + Muokkaa asetuksia @@ -498,15 +471,45 @@ Tahdotko varmasti salata lompakon? Vaihda lompakon salaukseen käytettävä tunnuslause - - Downloaded %1 of %2 blocks of transaction history. - Ladattu %1 of %2 rahansiirtohistorian lohkoa. + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Lompakko on <b>salattu</b> ja tällä hetkellä <b>lukittuna</b> Downloaded %1 blocks of transaction history. Ladattu %1 lohkoa rahansiirron historiasta. + + + Block chain synchronization in progress + Block chainin synkronointi kesken + + + + Send coins to a bitcoin address + Lähetä kolikoita Bitcoin-osoitteeseen + + + + &About %1 + &Tietoja %1 + + + + &Backup Wallet + &Varmuuskopioi lompakko + + + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + Ladattu %1 of %2 rahansiirtohistorian lohkoa. + %n second(s) ago @@ -523,31 +526,10 @@ Tahdotko varmasti salata lompakon? %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... - Kurotaan kiinni... + Ohjelmisto on ajan tasalla @@ -559,11 +541,6 @@ Tahdotko varmasti salata lompakon? 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ää kokorajoituksen. Voit siitä huolimatta lähettää sen %1 siirtopalkkion mikä menee solmuille jotka käsittelevät rahansiirtosi tämä auttaa myös verkostoa. Haluatko maksaa siirtopalkkion? - - - bitcoin-qt - bitcoin-qt - Sent transaction @@ -574,28 +551,11 @@ Tahdotko varmasti salata lompakon? Incoming transaction Saapuva rahansiirto - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Päivä: %1 -Määrä: %2 -Tyyppi: %3 -Osoite: %4 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> Lompakko on <b>salattu</b> ja tällä hetkellä <b>avoinna</b> - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Lompakko on <b>salattu</b> ja tällä hetkellä <b>lukittuna</b> - Backup Wallet @@ -621,6 +581,46 @@ Osoite: %4 Sending... Lähetetään... + + + &Receive coins + &Vastaanota Bitcoineja + + + + Show the list of addresses for receiving payments + Näytä Bitcoinien vastaanottamiseen käytetyt osoitteet + + + + &Send coins + &Lähetä Bitcoineja + + + + %n day(s) ago + + %n päivä sitten + %n päivää sitten + + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Päivä: %1 +Määrä: %2 +Tyyppi: %3 +Osoite: %4 + + + + [testnet] + [testnet] + A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -816,7 +816,7 @@ Osoite: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Anna Bitcoin-osoite (esim. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -861,7 +861,7 @@ Osoite: %4 Copy the current signature to the system clipboard - Kopioi tämänhetkinen allekirjoitus leikepöydälle + Kopioi tämänhetkinen allekirjoitus leikepöydälle @@ -911,6 +911,11 @@ Osoite: %4 OverviewPage + + + Unconfirmed: + Vahvistamatta: + Form @@ -931,11 +936,6 @@ Osoite: %4 0 0 - - - Unconfirmed: - Vahvistamatta: - <b>Recent transactions</b> @@ -964,6 +964,16 @@ Osoite: %4 QRCodeDialog + + + Error encoding URI into QR Code. + Virhe käännettäessä URI:a QR-koodiksi. + + + + PNG Images (*.png) + PNG kuvat (*png) + Dialog @@ -1004,21 +1014,11 @@ Osoite: %4 &Save As... &Tallenna nimellä... - - - Error encoding URI into QR Code. - Virhe käännettäessä URI:a QR-koodiksi. - Save Image... Tallenna kuva... - - - PNG Images (*.png) - PNG kuvat (*png) - SendCoinsDialog @@ -1039,16 +1039,16 @@ Osoite: %4 Send to multiple recipients at once Lähetä monelle vastaanottajalle + + + Remove all transaction fields + Poista kaikki rahansiirtokentät + &Add recipient... &Lisää vastaanottaja... - - - Remove all transaction fields - Poista kaikki rahansiiron kentät - Clear all @@ -1402,8 +1402,8 @@ Osoite: %4 Mined balance will be available in %n more blocks - Louhittu saldo tulee saataville %n lohkossa - Louhittu saldo tulee saataville %n lohkossa + + @@ -1474,6 +1474,11 @@ Osoite: %4 TransactionView + + + Date + Aika + @@ -1585,11 +1590,6 @@ Osoite: %4 Confirmed Vahvistettu - - - Date - Aika - Type @@ -1646,6 +1646,157 @@ Osoite: %4 bitcoin-core + + + 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 + + + + Server certificate file (default: server.cert) + Palvelimen sertifikaatti-tiedosto (oletus: server.cert) + + + + Server private key (default: server.pem) + Palvelimen yksityisavain (oletus: server.pem) + + + + This help message + Tämä ohjeviesti + + + + Use the test network + Käytä test -verkkoa + + + + Prepend debug output with timestamp + Lisää debuggaustiedon tulostukseen aikaleima + + + + 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ä jäljitys/debug-tieto debuggeriin + + + + Username for JSON-RPC connections + Käyttäjätunnus JSON-RPC-yhteyksille + + + + Password for JSON-RPC connections + Salasana JSON-RPC-yhteyksille + + + + Send commands to node running on <ip> (default: 127.0.0.1) + Lähetä käskyjä solmuun osoitteessa <ip> (oletus: 127.0.0.1) + + + + Set key pool size to <n> (default: 100) + Aseta avainpoolin koko arvoon <n> (oletus: 100) + + + + Rescan the block chain for missing wallet transactions + Skannaa uudelleen lohkoketju lompakon puuttuvien rahasiirtojen vuoksi + + + + Use OpenSSL (https) for JSON-RPC connections + Käytä OpenSSL:ää (https) JSON-RPC-yhteyksille + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Hyväksyttävä salaus (oletus: +TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Virhe ladattaessa wallet.dat-tiedostoa: Tarvitset uudemman version Bitcoinista + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Lompakko tarvitsee uudelleenkirjoittaa: käynnistä Bitcoin uudelleen + + + + Error loading wallet.dat + Virhe ladattaessa wallet.dat-tiedostoa + + + + Add a node to connect to and attempt to keep the connection open + Linää solmu mihin liittyä pitääksesi yhteyden auki + + + + Cannot downgrade wallet + Et voi päivittää lompakkoasi vanhempaan versioon + + + + Cannot initialize keypool + Avainvarastoa ei voi alustaa + + + + Cannot write default address + Oletusosoitetta ei voi kirjoittaa + + + + Done loading + Lataus on valmis + + + + Loading block index... + Ladataan lohkoindeksiä... + + + + Fee per KB to add to transactions you send + Rahansiirtopalkkio per KB lisätään lähettämääsi rahansiirtoon + + + + Find peers using internet relay chat (default: 0) + Etsi solmuja käyttäen internet relay chatia (oletus: 0) + + + + Loading wallet... + Ladataan lompakkoa... + + + + Rescanning... + Skannataan uudelleen... + + + + Upgrade wallet to latest format + Päivitä lompakko uusimpaan formaattiin + Bitcoin version @@ -1704,7 +1855,7 @@ Osoite: %4 Show splash screen on startup (default: 1) - Näytä aloitusruutu käynnistettäessä (oletus: 1) + Näytä aloitusruutu käynnistettäessä (oletus: 1) @@ -1741,6 +1892,16 @@ Osoite: %4 Connect only to the specified node Ota yhteys vain tiettyyn solmuun + + + Set language, for example "de_DE" (default: system locale) + Set language, for example "de_DE" (default: system locale) + + + + Find peers using DNS lookup (default: 1) + + Threshold for disconnecting misbehaving peers (default: 100) @@ -1761,51 +1922,11 @@ Osoite: %4 Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maksimi verkkoyhteyden lähetyspuskuri, <n>*1000 tavua (oletus: 10000) - - - 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 Tulosta ylimääräistä debuggaustietoa - - - Prepend debug output with timestamp - Lisää debuggaustiedon tulostukseen aikaleima - - - - 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ä jäljitys/debug-tieto debuggeriin - - - - 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: 8332) @@ -1816,53 +1937,12 @@ Osoite: %4 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) - - - - 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 - SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-asetukset: (lisätietoja Bitcoin-Wikistä) - - - 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äksyttävä salaus (oletus: -TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - This help message - Tämä ohjeviesti - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. @@ -1889,19 +1969,39 @@ TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Virhe ladattaessa wallet.dat-tiedostoa: Lompakko vioittunut - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Virhe ladattaessa wallet.dat-tiedostoa: Tarvitset uudemman version Bitcoinista + + Invalid -proxy address + Virheellinen proxy-osoite - - Wallet needed to be rewritten: restart Bitcoin to complete - Lompakko tarvitsee uudelleenkirjoittaa: käynnistä Bitcoin uudelleen + + Invalid amount for -paytxfee=<amount> + Virheellinen määrä -paytxfee=<amount> - - Error loading wallet.dat - Virhe ladattaessa wallet.dat-tiedostoa + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + Varoitus:-paytxfee on erittäin korkea. Tämä on palkkio siirrosta minkä suoritat rahansiirrosta. + + + + Error: CreateThread(StartNode) failed + Virhe: CreateThread(StartNode) epäonnistui + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + En pysty varaamaan porttia %d tähän koneeseen. Ehkä Bitcoin on jo käynnissä. + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Varoitus: Tarkista, ovatko tietokoneesi päivämäärä ja aika oikein. Mikäli aika on väärin, Bitcoin-ohjelma ei toimi oikein. + + + + beta + beta @@ -1913,31 +2013,11 @@ TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) 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) - - - Add a node to connect to and attempt to keep the connection open - Linää solmu mihin liittyä pitääksesi yhteyden auki - Set database cache size in megabytes (default: 25) Aseta tietokannan välimuistin koko megatavuina (oletus: 25) - - - Cannot downgrade wallet - Et voi päivittää lompakkoasi vanhempaan versioon - - - - Cannot initialize keypool - Avainvarastoa ei voi alustaa - - - - Cannot write default address - Oletusosoitetta ei voi kirjoittaa - How many blocks to check at startup (default: 2500, 0 = all) @@ -1948,41 +2028,11 @@ TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) How thorough the block verification is (0-6, default: 1) Kuinka tiukka lohkovarmistus on (0-6, oletus: 1) - - - Done loading - Lataus on valmis - - - - Loading block index... - Ladataan lohkoindeksiä... - - - - Fee per KB to add to transactions you send - Rahansiirtopalkkio per KB lisätään lähettämääsi rahansiirtoon - - - - Find peers using internet relay chat (default: 0) - Etsi solmuja käyttäen internet relay chatia (oletus: 0) - Accept connections from outside (default: 1) Älä hyväksy ulkopuolisia yhteyksiä - - - Set language, for example "de_DE" (default: system locale) - - - - - Find peers using DNS lookup (default: 1) - - Use Universal Plug and Play to map the listening port (default: 1) @@ -1993,55 +2043,5 @@ TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Use Universal Plug and Play to map the listening port (default: 0) Yritä käyttää UPnP toimintoa kartoittamaan avointa porttia (default: 0) - - - Loading wallet... - Ladataan lompakkoa... - - - - Rescanning... - Skannataan uudelleen... - - - - Upgrade wallet to latest format - Päivitä lompakko uusimpaan formaattiin - - - - Invalid -proxy address - Virheellinen proxy-osoite - - - - Invalid amount for -paytxfee=<amount> - Virheellinen määrä -paytxfee=<amount> - - - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - Varoitus:-paytxfee on erittäin korkea. Tämä on palkkio siirrosta minkä suoritat rahansiirrosta. - - - - Error: CreateThread(StartNode) failed - Virhe: CreateThread(StartNode) epäonnistui - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - En pysty varaamaan porttia %d tähän koneeseen. Ehkä Bitcoin on jo käynnissä. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Varoitus: Tarkista, ovatko tietokoneesi päivämäärä ja aika oikein. Mikäli aika on väärin, Bitcoin-ohjelma ei toimi oikein. - - - - beta - beta - diff --git a/src/qt/locale/bitcoin_fr_FR.ts b/src/qt/locale/bitcoin_fr_FR.ts index 4356b5c5b6..d1438d1628 100644 --- a/src/qt/locale/bitcoin_fr_FR.ts +++ b/src/qt/locale/bitcoin_fr_FR.ts @@ -243,6 +243,11 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin va à présent se fermer pour terminer la procédure de cryptage. N'oubliez pas que le chiffrement de votre porte-monnaie ne peut pas fournir une protection totale contre le vol par des logiciels malveillants qui infecteraient votre ordinateur. + + + Wallet decryption failed + Le décryptage du porte-monnaie a échoué + Wallet passphrase was successfully changed. @@ -285,11 +290,6 @@ Are you sure you wish to encrypt your wallet? The passphrase entered for the wallet decryption was incorrect. La phrase de passe entrée pour décrypter le porte-monnaie était incorrecte. - - - Wallet decryption failed - Le décryptage du porte-monnaie a échoué - BitcoinGUI @@ -817,7 +817,7 @@ Adresse : %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Entez une adresse Bitcoin (par ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1100,6 +1100,11 @@ Adresse : %4 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. @@ -1125,11 +1130,6 @@ Adresse : %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 arriver si certaines pièces de votre porte-monnaie ont déjà été dépensées, par exemple si vous avez utilisé une copie de wallet.dat et si des pièces ont été dépensées avec cette copie sans être marquées comme telles ici. - - - The amount to pay must be larger than 0. - Le montant à payer doit être supérieur à 0. - SendCoinsEntry @@ -1747,6 +1747,26 @@ Adresse : %4 Connect only to the specified node Ne se connecter qu'au nœud spécifié + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) + + Threshold for disconnecting misbehaving peers (default: 100) @@ -1929,56 +1949,11 @@ Options SSL : (cf. le wiki Bitcoin pour les réglages SSL) Error loading wallet.dat Erreur lors du chargement de wallet.dat - - - Warning: Disk space is low - Attention : l'espace disque est faible - 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 and attempt to keep the connection open - - - - Find peers using internet relay chat (default: 0) - - - - - Accept connections from outside (default: 1) - - - - - Set language, for example "de_DE" (default: system locale) - - - - - Find peers using DNS lookup (default: 1) - - - - - Use Universal Plug and Play to map the listening port (default: 1) - Essayer d'utiliser l'UPnP pour ouvrir le port d'écoute (default: 1) - - - - Use Universal Plug and Play to map the listening port (default: 0) - Essayer d'utiliser l'UPnP pour ouvrir le port d'écoute (default: 0) - - - - Fee per KB to add to transactions you send - Frais par ko à ajouter aux transactions que vous enverrez - Loading wallet... @@ -2044,5 +2019,30 @@ Options SSL : (cf. le wiki Bitcoin pour les réglages SSL) beta bêta + + + Warning: Disk space is low + Attention : l'espace disque est faible + + + + Add a node to connect to and attempt to keep the connection open + Ajouter un nœud auquel se connecter and attempt to keep the connection open + + + + Use Universal Plug and Play to map the listening port (default: 1) + Essayer d'utiliser l'UPnP pour ouvrir le port d'écoute (default: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Essayer d'utiliser l'UPnP pour ouvrir le port d'écoute (default: 0) + + + + Fee per KB to add to transactions you send + Frais par ko à ajouter aux transactions que vous enverrez + diff --git a/src/qt/locale/bitcoin_he.ts b/src/qt/locale/bitcoin_he.ts index 0d5ae91b6c..53c5b545af 100644 --- a/src/qt/locale/bitcoin_he.ts +++ b/src/qt/locale/bitcoin_he.ts @@ -57,7 +57,7 @@ This product includes software developed by the OpenSSL Project for use in the O &New Address... - כתובת &חדשה + כתובת &חדשה @@ -77,12 +77,12 @@ This product includes software developed by the OpenSSL Project for use in the O Sign a message to prove you own this address - חתום על הודעה כדי להוכיח שכתובת זו בבעלותך + חתום על הודעה כדי להוכיח שכתובת זו בבעלותך &Sign Message - חתום על הו&דעה + חתום על הו&דעה @@ -102,17 +102,17 @@ This product includes software developed by the OpenSSL Project for use in the O Copy label - העתק תוית + העתק תוית Edit - עריכה + ערוך Delete - מחיקה + מחק @@ -158,7 +158,7 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - שיח + שיח @@ -178,7 +178,19 @@ This product includes software developed by the OpenSSL Project for use in the O TextLabel - + טקסטתוית + + + + Wallet unlock failed + פתיחת הארנק נכשלה + + + + + + The passphrase entered for the wallet decryption was incorrect. + הסיסמה שהוכנסה לפענוח הארנק שגויה. @@ -195,6 +207,11 @@ This product includes software developed by the OpenSSL Project for use in the O This operation needs your wallet passphrase to unlock the wallet. הפעולה הזו דורשת את סיסמת הארנק שלך בשביל לפתוח את הארנק. + + + Wallet decryption failed + פענוח הארנק נכשל + Unlock wallet @@ -229,7 +246,7 @@ This product includes software developed by the OpenSSL Project for use in the O WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? - אזהרה: אם תצפין את הארנק שלך ותאבד את הסיסמה אתה <b>תאבד את כל הביטקוין שלך</b>! + אזהרה: אם תצפין את הארנק שלך ותאבד את הסיסמה אתה <b>תאבד את כל הביטקוין שלך</b>! אתה בטוח שברצונך להצפין את הארנק? @@ -243,14 +260,6 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. ביטקוין ייסגר עכשיו כדי להשלים את תהליך ההצפנה. זכור שהצפנת הארנק שלך אינו יכול להגן באופן מלא על הביטקוינים שלך מתוכנות זדוניות המושתלות על המחשב. - - - - - - Wallet encryption failed - הצפנת הארנק נכשלה - Wallet encryption failed due to an internal error. Your wallet was not encrypted. @@ -262,23 +271,6 @@ Are you sure you wish to encrypt your wallet? 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. @@ -288,11 +280,29 @@ Are you sure you wish to encrypt your wallet? Warning: The Caps Lock key is on. - אזהרה: מקש Caps Lock מופעל. + אזהרה: מקש Caps Lock מופעל. + + + + + + + Wallet encryption failed + הצפנת הארנק נכשלה BitcoinGUI + + + Show information about Bitcoin + הצג מידע על ביטקוין + + + + &Export... + י&צא לקובץ + @@ -330,14 +340,24 @@ Are you sure you wish to encrypt your wallet? ערוך את רשימת הכתובות והתויות - - &Receive coins - &קבלת מטבעות + + Show the Bitcoin window + הצג את חלון ביטקוין - - Show the list of addresses for receiving payments - הצג את רשימת הכתובות לקבלת תשלומים + + &Backup Wallet + &גיבוי ארנק + + + + Actions toolbar + סרגל כלים פעולות + + + + [testnet] + [רשת-בדיקה] @@ -354,21 +374,11 @@ Are you sure you wish to encrypt your wallet? Quit application סגור תוכנה - - - Show information about Bitcoin - הצג מידע על ביטקוין - About &Qt אודות Qt - - - Show information about Qt - הצג מידע על Qt - &Options... @@ -379,21 +389,11 @@ Are you sure you wish to encrypt your wallet? &About %1 &אודות %1 - - - &Export... - י&צא לקובץ - Export the data in the current tab to a file יצוא הנתונים בטאב הנוכחי לקובץ - - - Encrypt or decrypt wallet - הצפן או פענח ארנק - Backup wallet to another location @@ -415,14 +415,22 @@ Are you sure you wish to encrypt your wallet? &קובץ - - &Settings - ה&גדרות + + bitcoin-qt + bitcoin-qt + + + + %n day(s) ago + + לפני יום + לפני %n ימים + - - &Help - &עזרה + + Up to date + עדכני @@ -430,77 +438,107 @@ Are you sure you wish to encrypt your wallet? סרגל כלים טאבים - - Actions toolbar - סרגל כלים פעולות + + Sending... + שולח... - - [testnet] - [רשת-בדיקה] + + Incoming transaction + פעולה שהתקבלה - - - %n active connection(s) to Bitcoin network - - חיבור פעיל אחד לרשת הביטקוין - %n חיבורים פעילים לרשת הביטקוין - + + + Bitcoin Wallet + ארנק ביטקוין - - &Backup Wallet - &גיבוי ארנק + + Wallet is <b>encrypted</b> and currently <b>locked</b> + הארנק <b>מוצפן</b> וכרגע <b>נעול</b> - - Bitcoin Wallet - ארנק ביטקוין + + Backup Wallet + גיבוי ארנק + + + + &Settings + ה&גדרות + + + + &Help + &עזרה Block chain synchronization in progress - סנכרון עם שרשרת הבלוקים בעיצומו + סנכרון עם שרשרת הבלוקים בעיצומו Send coins to a bitcoin address - שלח מטבעות לכתובת ביטקוין + שלח מטבעות לכתובת ביטקוין Sign &message - חתום על הודעה + חתום על הו&דעה + + + + &Receive coins + &קבלת מטבעות Prove you control an address - הוכח שאתה שולט בכתובת + הוכח שאתה שולט בכתובת - - Modify configuration options for bitcoin - שנה אפשרויות תצורה עבור ביטקוין + + Show the list of addresses for receiving payments + הצג את רשימת הכתובות לקבלת תשלומים - - Show the Bitcoin window - הצג את חלון ביטקוין + + Modify configuration options for bitcoin + שנה הגדרות עבור ביטקוין &Encrypt Wallet - הצפן ארנק + הצ&פן ארנק &Change Passphrase - שנה סיסמא + שנה &סיסמה - - bitcoin-qt - + + Encrypt or decrypt wallet + הצפן או פענח ארנק + + + + Show information about Qt + הצג מידע על Qt + + + + %n active connection(s) to Bitcoin network + + חיבור פעיל אחד לרשת הביטקוין + %n חיבורים פעילים לרשת הביטקוין + + + + + Downloaded %1 of %2 blocks of transaction history. + הורדו %1 מתוך %2 בלוקים של היסטוריית פעולות. @@ -531,19 +569,6 @@ Are you sure you wish to encrypt your wallet? לפני %n שעות - - - %n day(s) ago - - לפני יום - לפני %n ימים - - - - - Up to date - עדכני - Catching up... @@ -564,11 +589,6 @@ Are you sure you wish to encrypt your wallet? Sent transaction פעולה שנשלחה - - - Incoming transaction - פעולה שהתקבלה - Date: %1 @@ -586,16 +606,6 @@ Address: %4 Wallet is <b>encrypted</b> and currently <b>unlocked</b> הארנק <b>מוצפן</b> וכרגע <b>פתוח</b> - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - הארנק <b>מוצפן</b> וכרגע <b>נעול</b> - - - - Backup Wallet - גיבוי ארנק - Wallet Data (*.dat) @@ -611,16 +621,6 @@ Address: %4 There was an error trying to save the wallet data to the new location. היתה שגיאה בניסיון לשמור את מידע הארנק למיקום החדש. - - - Downloaded %1 of %2 blocks of transaction history. - הורדו %1 מתוך %2 בלוקים של היסטוריית פעולות. - - - - Sending... - שולח... - A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -652,6 +652,11 @@ Address: %4 EditAddressDialog + + + New key generation failed. + יצירת מפתח חדש נכשלה. + Edit Address @@ -712,11 +717,6 @@ Address: %4 Could not unlock wallet. פתיחת הארנק נכשלה. - - - New key generation failed. - יצירת מפתח חדש נכשלה. - MainOptionsPage @@ -816,7 +816,7 @@ Address: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + הכנס כתובת ביטקוין (למשל 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -861,7 +861,7 @@ Address: %4 Copy the current signature to the system clipboard - העתק את החתימה הנוכחית ללוח המערכת + העתק את החתימה הנוכחית ללוח המערכת @@ -926,44 +926,54 @@ Address: %4 Wallet ארנק - - - Number of transactions: - מספר פעולות: - - - - 0 - 0 - - - - Unconfirmed: - ממתין לאישור: - Your current balance היתרה הנוכחית שלך - - <b>Recent transactions</b> - <b>פעולות אחרונות</b> + + Unconfirmed: + ממתין לאישור: Total of transactions that have yet to be confirmed, and do not yet count toward the current balance הסכום הכולל של פעולות שטרם אושרו, ועוד אינן נספרות בחישוב היתרה הנוכחית + + + Number of transactions: + מספר פעולות: + Total number of transactions in wallet המספר הכולל של פעולות בארנק + + + <b>Recent transactions</b> + <b>פעולות אחרונות</b> + + + + 0 + 0 + QRCodeDialog + + + &Save As... + &שמור בשם... + + + + PNG Images (*.png) + תמונות PNG (*.png) + Dialog @@ -989,20 +999,15 @@ Address: %4 Label: תוית: - - - BTC - ביטקוין - Message: הודעה: - - &Save As... - &שמור בשם... + + BTC + ביטקוין @@ -1014,11 +1019,6 @@ Address: %4 Save Image... שמור תמונה... - - - PNG Images (*.png) - תמונות PNG (*.png) - SendCoinsDialog @@ -1039,11 +1039,6 @@ Address: %4 Send to multiple recipients at once שלח למספר מקבלים בו-זמנית - - - &Add recipient... - &הוסף מקבל... - Remove all transaction fields @@ -1129,6 +1124,11 @@ Address: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 ומטבעות נוצלו בעותק אך לא סומנו כמנוצלות כאן. + + + &Add recipient... + &הוסף מקבל... + SendCoinsEntry @@ -1206,6 +1206,11 @@ Address: %4 Open until %1 פתוח עד %1 + + + %1/offline? + %1/לא מחובר? + %1/unconfirmed @@ -1216,21 +1221,11 @@ Address: %4 %1 confirmations %1 אישורים - - - %1/offline? - %1/לא מחובר? - <b>Status:</b> <b>מצב:</b> - - - , has not been successfully broadcast yet - , טרם שודר בהצלחה - , broadcast through %1 node @@ -1334,6 +1329,11 @@ Address: %4 Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. מטבעות שנוצרו חייבים לחכות 120 בלוקים לפני שניתן לנצל אותם. כשיצרת את הבלוק הזה, הוא שודר לרשת כדי להתווסף לשרשרת הבלוקים. אם הוא אינו מצליח להיכנס לשרשרת, הוא ישתנה ל"לא התקבל" ולא ניתן יהיה לנצל אותו. זה יכול לקרות מדי פעם אם צומת אחר מייצר בלוק בהפרש של מספר שניות מהבלוק שלך. + + + , has not been successfully broadcast yet + , טרם שודר בהצלחה + TransactionDescDialog @@ -1474,6 +1474,26 @@ Address: %4 TransactionView + + + Edit label + ערוך תוית + + + + Confirmed + מאושר + + + + Error exporting + שגיאה ביצוא + + + + Range: + טווח: + @@ -1560,11 +1580,6 @@ Address: %4 Copy amount העתק כמות - - - Edit label - ערוך תוית - Show details... @@ -1580,11 +1595,6 @@ Address: %4 Comma separated file (*.csv) קובץ מופרד בפסיקים (*.csv) - - - Confirmed - מאושר - Date @@ -1615,21 +1625,11 @@ Address: %4 ID מזהה - - - Error exporting - שגיאה ביצוא - Could not write to file %1. לא מסוגל לכתוב לקובץ %1. - - - Range: - טווח: - to @@ -1651,41 +1651,6 @@ Address: %4 Bitcoin version גרסת ביטקוין - - - Usage: - שימוש: - - - - Send command to -server or bitcoind - שלח פקודה ל -server או bitcoind - - - - List commands - רשימת פקודות - - - - Get help for a command - קבל עזרה עבור פקודה - - - - Options: - אפשרויות: - - - - Specify configuration file (default: bitcoin.conf) - ציין קובץ הגדרות (ברירת מחדל: bitcoin.conf) - - - - Show splash screen on startup (default: 1) - הצג מסך פתיחה בעת הפעלה (ברירת מחדל: 1) - Add a node to connect to and attempt to keep the connection open @@ -1696,46 +1661,11 @@ Address: %4 Specify pid file (default: bitcoind.pid) ציין קובץ pid (ברירת מחדל: bitcoind.pid) - - - Generate coins - צור מטבעות - - - - Allow JSON-RPC connections from specified IP address - אפשר חיבורי JSON-RPC מכתובת האינטרנט המצוינת - - - - Don't generate coins - אל תייצר מטבעות - - - - Start minimized - התחל ממוזער - - - - Specify data directory - ציין תיקיית נתונים - Specify connection timeout (in milliseconds) ציין הגבלת זמן לחיבור (במילישניות) - - - Connect through socks4 proxy - התחבר דרך פרוקסי socks4 - - - - Allow DNS lookups for addnode and connect - אפשר עיון ב-DNS להוספת צומת וחיבור - Cannot downgrade wallet @@ -1756,120 +1686,40 @@ Address: %4 Maintain at most <n> connections to peers (default: 125) החזק לכל היותר <n> חיבורים לעמיתים (ברירת מחדל: 125) - - - Connect only to the specified node - התחבר רק לצומת המצוין - - - - Cannot write default address - לא יכול לכתוב את כתובת ברירת המחדל - - - - Threshold for disconnecting misbehaving peers (default: 100) - סף להתנתקות מעמיתים הנוהגים שלא כהלכה (ברירת מחדל: 100) - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - מספר שניות למנוע מעמיתים הנוהגים שלא כהלכה מלהתחבר מחדש (ברירת מחדל: 86400) - Done loading טעינה הושלמה - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - חוצץ מירבי לקבלה לכל חיבור, <n>*1000 בתים (ברירת מחדל: 10000) - Error loading blkindex.dat שגיאה בטעינת הקובץ blkindex.dat - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - חוצץ מירבי לשליחה לכל חיבור, <n>*1000 בתים (ברירת מחדל: 10000) + + Password for JSON-RPC connections + סיסמה לחיבורי JSON-RPC - - Error loading wallet.dat - שגיאה בטעינת הקובץ wallet.dat + + Listen for JSON-RPC connections on <port> (default: 8332) + האזן לחיבורי JSON-RPC ב<פורט> (ברירת מחדל: 8332) - - Error loading wallet.dat: Wallet corrupted - שגיאה בטעינת הקובץ wallet.dat: הארנק מושחת + + How many blocks to check at startup (default: 2500, 0 = all) + מספר הבלוקים לבדוק בעת ההפעלה (ברירת מחדל: 2500, 0=כולם) - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - שגיאה בטעינת הקובץ wallet.dat: הארנק דורש גרסה חדשה יותר של ביטקוין + + How thorough the block verification is (0-6, default: 1) + מידת היסודיות של אימות הבלוקים (0-6, ברירת מחדל: 1) - - 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 - פלוט מידע דיבאג נוסף - - - - Prepend debug output with timestamp - הוסף חותמת זמן לפני פלט דיבאג - - - - Fee per KB to add to transactions you send - עמלה להוסיף לפעולות שאתה שולח עבור כל KB - - - - Send trace/debug info to console instead of debug.log file - שלח מידע דיבאג ועקבה לקונסולה במקום לקובץ debug.log - - - - Send trace/debug info to debugger - שלח מידע דיבאג ועקבה לכלי דיבאג - - - - Find peers using internet relay chat (default: 0) - מצא עמיתים תוך שימוש ב-IRC (ברירת מחדל: 0) - - - - Accept connections from outside (default: 1) - קבל חיבורים מבחוץ (ברירת מחדל: 1 ללא -proxy או -connect) - - - - Set language, for example "de_DE" (default: system locale) - קבע שפה, למשל "he_il" (ברירת מחדל: שפת המערכת) - - - - Find peers using DNS lookup (default: 1) - + + Send commands to node running on <ip> (default: 127.0.0.1) + שלח פקודות לצומת ב-<ip> (ברירת מחדל: 127.0.0.1) @@ -1881,41 +1731,6 @@ Address: %4 Use Universal Plug and Play to map the listening port (default: 0) השתמש ב-UPnP כדי למפות את הפורט להאזנה (ברירת מחדל: 0) - - - Username for JSON-RPC connections - שם משתמש לחיבורי JSON-RPC - - - - Password for JSON-RPC connections - סיסמה לחיבורי JSON-RPC - - - - Listen for JSON-RPC connections on <port> (default: 8332) - האזן לחיבורי JSON-RPC ב<פורט> (ברירת מחדל: 8332) - - - - 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) - - - - Warning: Disk space is low - אזהרה: מעט מקום בדיסק - - - - Send commands to node running on <ip> (default: 127.0.0.1) - שלח פקודות לצומת ב-<ip> (ברירת מחדל: 127.0.0.1) - Set key pool size to <n> (default: 100) @@ -1926,12 +1741,6 @@ Address: %4 Rescan the block chain for missing wallet transactions סרוק מחדש את שרשרת הבלוקים למציאת פעולות חסרות בארנק - - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - אפשרויות SSL: (ראה את הויקי של ביטקוין עבור הוראות להתקנת SSL) - Use OpenSSL (https) for JSON-RPC connections @@ -1977,11 +1786,6 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Cannot obtain a lock on data directory %s. Bitcoin is probably already running. אינו מסוגל לנעול את תיקיית הנתונים %s. כנראה שביטקוין כבר רץ. - - - Error loading addr.dat - שגיאה בטעינת הקובץ addr.dat - Rescanning... @@ -2002,6 +1806,202 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Set database cache size in megabytes (default: 25) קבע את גודל המטמון של מסד הנתונים במגהבייט (ברירת מחדל: 25) + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + בצע פקודה זו כשהבלוק הטוב ביותר משתנה (%s בפקודה יוחלף בגיבוב הבלוק) + + + + Error loading wallet.dat: Wallet corrupted + שגיאה בטעינת הקובץ wallet.dat: הארנק מושחת + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + שגיאה בטעינת הקובץ wallet.dat: הארנק דורש גרסה חדשה יותר של ביטקוין + + + + Error loading wallet.dat + שגיאה בטעינת הקובץ wallet.dat + + + + Usage: + שימוש: + + + + Send command to -server or bitcoind + שלח פקודה ל -server או bitcoind + + + + List commands + רשימת פקודות + + + + Get help for a command + קבל עזרה עבור פקודה + + + + Options: + אפשרויות: + + + + Specify configuration file (default: bitcoin.conf) + ציין קובץ הגדרות (ברירת מחדל: bitcoin.conf) + + + + Generate coins + צור מטבעות + + + + Don't generate coins + אל תייצר מטבעות + + + + Start minimized + התחל ממוזער + + + + Specify data directory + ציין תיקיית נתונים + + + + Connect through socks4 proxy + התחבר דרך פרוקסי socks4 + + + + Allow DNS lookups for addnode and connect + אפשר עיון ב-DNS להוספת צומת וחיבור + + + + Connect only to the specified node + התחבר רק לצומת המצוין + + + + Set language, for example "de_DE" (default: system locale) + קבע שפה, למשל "he_il" (ברירת מחדל: שפת המערכת) + + + + Find peers using DNS lookup (default: 1) + + + + + 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: 10000) + חוצץ מירבי לקבלה לכל חיבור, <n>*1000 בתים (ברירת מחדל: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + חוצץ מירבי לשליחה לכל חיבור, <n>*1000 בתים (ברירת מחדל: 10000) + + + + Show splash screen on startup (default: 1) + הצג מסך פתיחה בעת הפעלה (ברירת מחדל: 1) + + + + 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 + פלוט מידע דיבאג נוסף + + + + Prepend debug output with timestamp + הוסף חותמת זמן לפני פלט דיבאג + + + + 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 + + + + Allow JSON-RPC connections from specified IP address + אפשר חיבורי JSON-RPC מכתובת האינטרנט המצוינת + + + + Cannot write default address + לא יכול לכתוב את כתובת ברירת המחדל + + + + Fee per KB to add to transactions you send + עמלה להוסיף לפעולות שאתה שולח עבור כל KB + + + + Find peers using internet relay chat (default: 0) + מצא עמיתים תוך שימוש ב-IRC (ברירת מחדל: 0) + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + אפשרויות SSL: (ראה את הויקי של ביטקוין עבור הוראות להתקנת SSL) + + + + Error loading addr.dat + שגיאה בטעינת הקובץ addr.dat + + + + Accept connections from outside (default: 1) + קבל חיבורים מבחוץ (ברירת מחדל: 1 ללא -proxy או -connect) + Invalid -proxy address @@ -2038,9 +2038,9 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) בטא - - Execute command when the best block changes (%s in cmd is replaced by block hash) - בצע פקודה זו כשהבלוק הטוב ביותר משתנה (%s בפקודה יוחלף בגיבוב הבלוק) + + Warning: Disk space is low + אזהרה: מעט מקום בדיסק diff --git a/src/qt/locale/bitcoin_hr.ts b/src/qt/locale/bitcoin_hr.ts index 5a354b7ea4..ba37761fa4 100644 --- a/src/qt/locale/bitcoin_hr.ts +++ b/src/qt/locale/bitcoin_hr.ts @@ -66,7 +66,7 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code - + Prikaži &QR Kôd @@ -76,7 +76,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Sign Message - &Potpišite poruku + &Potpišite poruku @@ -91,12 +91,12 @@ This product includes software developed by the OpenSSL Project for use in the O Copy address - Kopirati adresu + Kopirati adresu Copy label - Kopirati oznaku + Kopirati oznaku @@ -152,7 +152,7 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - Dijalog + Dijalog @@ -172,7 +172,19 @@ This product includes software developed by the OpenSSL Project for use in the O TextLabel - + TekstualnaOznaka + + + + 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. @@ -209,6 +221,22 @@ This product includes software developed by the OpenSSL Project for use in the O Change passphrase Promjena lozinke + + + Wallet decryption failed + Dešifriranje novčanika nije uspjelo + + + + Wallet passphrase was successfully changed. + Lozinka novčanika je uspješno promijenjena. + + + + + Warning: The Caps Lock key is on. + + Enter the old and new passphrase to the wallet. @@ -223,7 +251,7 @@ This product includes software developed by the OpenSSL Project for use in the O WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? - UPOZORENJE: Ako šifrirate vaš novčanik i izgubite lozinku, <b>IZGUBIT ĆETE SVE SVOJE BITCOINSE!</b>; + UPOZORENJE: Ako šifrirate vaš novčanik i izgubite lozinku, <b>IZGUBIT ĆETE SVE SVOJE BITCOINSE!</b> Jeste li sigurni da želite šifrirati svoj novčanik? @@ -251,34 +279,6 @@ Jeste li sigurni da želite šifrirati svoj novčanik? 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. - - - - - Warning: The Caps Lock key is on. - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. @@ -287,62 +287,6 @@ Jeste li sigurni da želite šifrirati svoj novčanik? BitcoinGUI - - - - Synchronizing with network... - Usklađivanje s mrežom ... - - - - Bitcoin Wallet - Bitcoin novčanik - - - - &Overview - &Pregled - - - - Show general overview of wallet - Prikaži opći pregled novčanika - - - - &Transactions - &Transakcije - - - - Browse transaction history - Pretraži povijest transakcija - - - - &Address Book - &Adresar - - - - Edit the list of stored addresses and labels - Uređivanje popisa pohranjenih adresa i oznaka - - - - &Receive coins - &Primanje novca - - - - Show the list of addresses for receiving payments - Prikaži popis adresa za primanje isplate - - - - &Send coins - &Slanje novca - E&xit @@ -354,9 +298,9 @@ Jeste li sigurni da želite šifrirati svoj novčanik? Izlazak iz programa - - About &Qt - Više o &Qt + + Show information about Bitcoin + Prikaži informacije o Bitcoinu @@ -389,14 +333,24 @@ Jeste li sigurni da želite šifrirati svoj novčanik? Došlo je do pogreške kod spremanja podataka novčanika na novu lokaciju. - - Show information about Bitcoin - Prikaži informacije o Bitcoinu + + &Transactions + &Transakcije - - &About %1 - &Više o %1 + + Browse transaction history + Pretraži povijest transakcija + + + + &Address Book + &Adresar + + + + Edit the list of stored addresses and labels + Uređivanje popisa pohranjenih adresa i oznaka @@ -404,19 +358,24 @@ Jeste li sigurni da želite šifrirati svoj novčanik? &Izvoz... - - Modify configuration options for bitcoin - Promijeni postavke konfiguracije za bitcoin + + Show the list of addresses for receiving payments + Prikaži popis adresa za primanje isplate - - Encrypt or decrypt wallet - Šifriranje ili dešifriranje novčanika + + &Send coins + &Pošalji novac - - Show the Bitcoin window - Prikaži Bitcoin prozor + + &About %1 + &Više o %1 + + + + Modify configuration options for bitcoin + Promijeni postavke konfiguracije za bitcoin @@ -428,16 +387,6 @@ Jeste li sigurni da želite šifrirati svoj novčanik? Send coins to a bitcoin address Slanje novca na bitcoin adresu - - - Sign &message - - - - - Prove you control an address - - Open &Bitcoin @@ -449,9 +398,9 @@ Jeste li sigurni da želite šifrirati svoj novčanik? &Šifriraj novčanik - - &Backup Wallet - &Backup novčanika + + Show the Bitcoin window + Prikaži Bitcoin prozor @@ -484,19 +433,14 @@ Jeste li sigurni da želite šifrirati svoj novčanik? Traka kartica - - Actions toolbar - Traka akcija - - - - [testnet] - [testnet] + + Sent transaction + Poslana transakcija - - bitcoin-qt - + + Incoming transaction + Dolazna transakcija @@ -513,9 +457,9 @@ Jeste li sigurni da želite šifrirati svoj novčanik? Preuzeto %1 od %2 blokova povijesti transakcije. - - Downloaded %1 blocks of transaction history. - Preuzeto %1 blokova povijesti transakcije. + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b> @@ -526,6 +470,36 @@ Jeste li sigurni da želite šifrirati svoj novčanik? prije %n sekundi + + + Bitcoin Wallet + Bitcoin novčanik + + + + Sign &message + &Potpišite poruku + + + + Prove you control an address + + + + + About &Qt + Više o &Qt + + + + &Backup Wallet + &Backup novčanika + + + + bitcoin-qt + bitcoin-qt + %n minute(s) ago @@ -576,17 +550,7 @@ Jeste li sigurni da želite šifrirati svoj novčanik? Sending... - Slanje... - - - - Sent transaction - Poslana transakcija - - - - Incoming transaction - Dolazna transakcija + Slanje... @@ -607,20 +571,56 @@ Adresa:%4 Novčanik je <b>šifriran</b> i trenutno <b>otključan</b> - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b> + + + Synchronizing with network... + Usklađivanje s mrežom ... - - Export the data in the current tab to a file - Izvoz podataka iz trenutnog taba u datoteku + + &Overview + &Pregled + + + + Show general overview of wallet + Prikaži opći pregled novčanika + + + + &Receive coins + &Primanje novca + + + + Export the data in the current tab to a file + Izvoz podataka iz trenutnog taba u datoteku + + + + Encrypt or decrypt wallet + Šifriranje ili dešifriranje novčanika Backup wallet to another location Napravite sigurnosnu kopiju novčanika na drugoj lokaciji + + + Actions toolbar + Traka akcija + + + + [testnet] + [testnet] + + + + Downloaded %1 blocks of transaction history. + Preuzeto %1 blokova povijesti transakcije. + A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -793,7 +793,7 @@ Adresa:%4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Neobavezna naknada za transakciju po kB koja omogućuje da se vaša transakcija obavi brže. Većina transakcija ima 1 kB. Preporučena naknada je 0.01. + Neobavezna naknada za transakciju po kB koja omogućuje da se vaša transakcija obavi brže. Većina transakcija ima 1 kB. Preporučena naknada je 0.01. @@ -803,45 +803,45 @@ Adresa:%4 MessagePage + + + Choose adress from address book + Odaberite adresu iz adresara + + + + Alt+A + Alt+A + + + + Alt+P + Alt+P + Message - Poruka + Poruka 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. + 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - - - Choose adress from address book - Odaberite adresu iz adresara - - - - Alt+A - Alt+A + Unesite Bitcoin adresu (npr. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Paste address from clipboard Zalijepi adresu iz međuspremnika - - - Alt+P - Alt+P - Enter the message you want to sign here - Upišite poruku koju želite potpisati ovdje + Upišite poruku koju želite potpisati ovdje @@ -856,7 +856,7 @@ Adresa:%4 &Sign Message - &Potpišite poruku + &Potpišite poruku @@ -878,7 +878,7 @@ Adresa:%4 %1 is not a valid address. - + Upisana adresa "%1" nije valjana bitcoin adresa. @@ -911,41 +911,36 @@ Adresa:%4 OverviewPage - - - Form - Oblik - - - - Balance: - Stanje: - Number of transactions: Broj transakcija: - - - 0 - 0 - Unconfirmed: Nepotvrđene: - - - Wallet - Novčanik - <b>Recent transactions</b> <b>Nedavne transakcije</b> + + + Form + Oblik + + + + Balance: + Stanje: + + + + 0 + 0 + Your current balance @@ -961,6 +956,11 @@ Adresa:%4 Total number of transactions in wallet Ukupni broj tansakcija u lisnici + + + Wallet + Novčanik + QRCodeDialog @@ -992,7 +992,7 @@ Adresa:%4 BTC - + @@ -1022,38 +1022,16 @@ Adresa:%4 SendCoinsDialog - - - - - - - - - - Send Coins - Pošalji novac - Send to multiple recipients at once Pošalji k nekoliko primatelja odjednom - - - &Add recipient... - &Dodaj primatelja... - Remove all transaction fields Obriši sva polja transakcija - - - Clear all - Obriši sve - Balance: @@ -1069,6 +1047,28 @@ Adresa:%4 Confirm the send action Potvrdi akciju slanja + + + + + + + + + + Send Coins + Pošalji novac + + + + &Add recipient... + &Dodaj primatelja... + + + + Clear all + Obriši sve + &Send @@ -1206,11 +1206,6 @@ Adresa:%4 Open until %1 Otvoren do %1 - - - %1/unconfirmed - %1/nepotvrđeno - %1 confirmations @@ -1221,6 +1216,11 @@ Adresa:%4 %1/offline? %1 nije dostupan? + + + %1/unconfirmed + %1/nepotvrđeno + <b>Status:</b> @@ -1567,6 +1567,11 @@ Adresa:%4 Show details... Prikazati detalje... + + + to + za + Copy amount @@ -1632,11 +1637,6 @@ Adresa:%4 Range: Raspon: - - - to - za - WalletModel @@ -1649,73 +1649,208 @@ Adresa:%4 bitcoin-core - - Bitcoin version - Bitcoin verzija + + Password for JSON-RPC connections + Lozinka za JSON-RPC veze - - Usage: - Upotreba: + + Set key pool size to <n> (default: 100) + Podesi memorijski prostor za ključeve na <n> (ugrađeni izbor: 100) - - Send command to -server or bitcoind - Pošalji komandu usluzi -server ili bitcoind + + Rescan the block chain for missing wallet transactions + Ponovno pretraži lanac blokova za transakcije koje nedostaju - - List commands - Prikaži komande + + Use OpenSSL (https) for JSON-RPC connections + Koristi OpenSSL (https) za JSON-RPC povezivanje - - Get help for a command - Potraži pomoć za komandu + + Server certificate file (default: server.cert) + Uslužnikov SSL certifikat (ugrađeni izbor: server.cert) - - Options: - Postavke: + + Server private key (default: server.pem) + Uslužnikov privatni ključ (ugrađeni izbor: server.pem) - - Specify configuration file (default: bitcoin.conf) - Odredi konfiguracijsku datoteku (ugrađeni izbor: bitcoin.conf) + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Prihvaljivi načini šifriranja (ugrađeni izbor: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Specify pid file (default: bitcoind.pid) - Odredi proces ID datoteku (ugrađeni izbor: bitcoin.pid) + + This help message + Ova poruka za pomoć - - Generate coins - Generiraj novčiće + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Program ne može pristupiti direktoriju s datotekama %s. Bitcoin program je vjerojatno već pokrenut. - - Don't generate coins - Ne generiraj novčiće + + Loading addresses... + Učitavanje adresa... - - Start minimized - Pokreni minimiziran + + Loading block index... + Učitavanje indeksa blokova... - - Show splash screen on startup (default: 1) - + + Loading wallet... + Učitavanje novčanika... - - Specify data directory - Odredi direktorij za datoteke + + Rescanning... + Rescaniranje - - Set database cache size in megabytes (default: 25) + + Done loading + Učitavanje gotovo + + + + 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) + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Slušaj na <port>u (default: 8333 ili testnet: 18333) + + + + Maintain at most <n> connections to peers (default: 125) + Održavaj najviše <n> veza sa članovima (default: 125) + + + + Error loading blkindex.dat + Greška kod učitavanja blkindex.dat + + + + Fee per KB to add to transactions you send + Naknada posredniku po KB-u koja će biti dodana svakoj transakciji koju pošalješ + + + + Error loading wallet.dat + Greška kod učitavanja wallet.dat + + + + Error loading wallet.dat: Wallet corrupted + Greška kod učitavanja wallet.dat: Novčanik pokvaren + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Greška kod učitavanja wallet.dat: Novčanik zahtjeva noviju verziju Bitcoina + + + + Threshold for disconnecting misbehaving peers (default: 100) + Prag za odspajanje članova koji se čudno ponašaju (default: 100) + + + + Prepend debug output with timestamp + Dodaj izlaz debuga na početak sa vremenskom oznakom + + + + Send trace/debug info to console instead of debug.log file + Šalji trace/debug informacije na konzolu umjesto u debug.log datoteku + + + + Send trace/debug info to debugger + Pošalji trace/debug informacije u debugger + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Novčanik je trebao prepravak: ponovo pokrenite Bitcoin + + + + Bitcoin version + Bitcoin verzija + + + + Usage: + Upotreba: + + + + Send command to -server or bitcoind + Pošalji komandu usluzi -server ili bitcoind + + + + List commands + Prikaži komande + + + + Get help for a command + Potraži pomoć za komandu + + + + Options: + Postavke: + + + + Specify configuration file (default: bitcoin.conf) + Odredi konfiguracijsku datoteku (ugrađeni izbor: bitcoin.conf) + + + + Specify pid file (default: bitcoind.pid) + Odredi proces ID datoteku (ugrađeni izbor: bitcoin.pid) + + + + Generate coins + Generiraj novčiće + + + + Don't generate coins + Ne generiraj novčiće + + + + Start minimized + Pokreni minimiziran + + + + Show splash screen on startup (default: 1) + + + + + Specify data directory + Odredi direktorij za datoteke + + + + Set database cache size in megabytes (default: 25) @@ -1738,6 +1873,36 @@ Adresa:%4 Connect only to the specified node Poveži se samo sa određenim nodom + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + Accept command line and JSON-RPC commands @@ -1763,11 +1928,6 @@ Adresa:%4 Username for JSON-RPC connections Korisničko ime za JSON-RPC veze - - - Password for JSON-RPC connections - Lozinka za JSON-RPC veze - Listen for JSON-RPC connections on <port> (default: 8332) @@ -1793,16 +1953,6 @@ Adresa:%4 Upgrade wallet to latest 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 - How many blocks to check at startup (default: 2500, 0 = all) @@ -1819,55 +1969,10 @@ Adresa:%4 SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL postavke: (za detalje o podešavanju SSL opcija vidi Bitcoin Wiki) - - - 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) - Prihvaljivi načini šifriranja (ugrađeni izbor: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - This help message - Ova poruka za pomoć - - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Program ne može pristupiti direktoriju s datotekama %s. Bitcoin program je vjerojatno već pokrenut. - - - - Loading addresses... - Učitavanje adresa... - Error loading addr.dat - - - - - Loading block index... - Učitavanje indeksa blokova... - - - - Loading wallet... - Učitavanje novčanika... + Greška kod učitavanja addr.dat @@ -1884,16 +1989,6 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Cannot write default address - - - Rescanning... - Rescaniranje - - - - Done loading - Učitavanje gotovo - Invalid -proxy address @@ -1914,11 +2009,6 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Error: CreateThread(StartNode) failed Greška: CreateThread(StartNode) nije uspjela - - - Warning: Disk space is low - Upozorenje: Malo diskovnog prostora - Unable to bind to port %d on this computer. Bitcoin is probably already running. @@ -1935,65 +2025,15 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) beta - - 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) - - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Slušaj na <port>u (default: 8333 ili testnet: 18333) - - - - Maintain at most <n> connections to peers (default: 125) - Održavaj najviše <n> veza sa članovima (default: 125) - - - - Error loading blkindex.dat - Greška kod učitavanja blkindex.dat - - - - Fee per KB to add to transactions you send - Naknada posredniku po KB-u koja će biti dodana svakoj transakciji koju pošalješ + + Warning: Disk space is low + Upozorenje: Malo diskovnog prostora 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 - - - Find peers using internet relay chat (default: 0) - - - - - Accept connections from outside (default: 1) - - - - - Set language, for example "de_DE" (default: system locale) - - - - - Find peers using DNS lookup (default: 1) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - Use Universal Plug and Play to map the listening port (default: 1) @@ -2004,45 +2044,5 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Use Universal Plug and Play to map the listening port (default: 0) Pokušaj koristiti UPnP da otvoriš port za uslugu (default: 0) - - - Error loading wallet.dat - Greška kod učitavanja wallet.dat - - - - Error loading wallet.dat: Wallet corrupted - Greška kod učitavanja wallet.dat: Novčanik pokvaren - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Greška kod učitavanja wallet.dat: Novčanik zahtjeva noviju verziju Bitcoina - - - - Threshold for disconnecting misbehaving peers (default: 100) - Prag za odspajanje članova koji se čudno ponašaju (default: 100) - - - - Prepend debug output with timestamp - Dodaj izlaz debuga na početak sa vremenskom oznakom - - - - Send trace/debug info to console instead of debug.log file - Šalji trace/debug informacije na konzolu umjesto u debug.log datoteku - - - - Send trace/debug info to debugger - Pošalji trace/debug informacije u debugger - - - - Wallet needed to be rewritten: restart Bitcoin to complete - Novčanik je trebao prepravak: ponovo pokrenite Bitcoin - diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index 4e9989b3aa..1ee34652e6 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -155,9 +155,14 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt AskPassphraseDialog - - Dialog - Párbeszéd + + Unlock wallet + Tárca megnyitása + + + + Repeat new passphrase + Új jelszó újra @@ -165,9 +170,14 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt SzövegCímke - - Enter passphrase - Add meg a jelszót + + Enter the old and new passphrase to the wallet. + Írd be a tárca régi és új jelszavát. + + + + Dialog + Párbeszéd @@ -181,45 +191,28 @@ Biztosan kódolni akarod a tárcát? New passphrase Új jelszó - - - Repeat new passphrase - Új jelszó újra - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Írd be az új jelszót a tárcához.<br/>Használj legalább 10<br/>véletlenszerű karaktert</b> vagy <b>legalább nyolc szót</b>. - - - Wallet unlock failed - Tárca megnyitása sikertelen - Encrypt wallet Tárca kódolása - - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Tárca kódolása belső hiba miatt sikertelen. A tárcád nem lett kódolva. - This operation needs your wallet passphrase to unlock the wallet. A tárcád megnyitásához a műveletnek szüksége van a tárcád jelszavára. - - Unlock wallet - Tárca megnyitása - - - - This operation needs your wallet passphrase to decrypt the wallet. - A tárcád dekódolásához a műveletnek szüksége van a tárcád jelszavára. + + + + + Wallet encryption failed + Tárca kódolása sikertelen. @@ -227,38 +220,36 @@ Biztosan kódolni akarod a tárcát? Tárca dekódolása - - Change passphrase - Jelszó megváltoztatása - - - - Enter the old and new passphrase to the wallet. - Írd be a tárca régi és új jelszavát. + + + + The passphrase entered for the wallet decryption was incorrect. + Hibás jelszó. Confirm wallet encryption Biztosan kódolni akarod a tárcát? - - - - Wallet encrypted - Tárca kódolva - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. - - - - - Wallet encryption failed - Tárca kódolása sikertelen. + + This operation needs your wallet passphrase to decrypt the wallet. + A tárcád dekódolásához a műveletnek szüksége van a tárcád jelszavára. + + + + Change passphrase + Jelszó megváltoztatása + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Tárca kódolása belső hiba miatt sikertelen. A tárcád nem lett kódolva. @@ -267,11 +258,9 @@ Biztosan kódolni akarod a tárcát? A megadott jelszavak nem egyeznek. - - - - The passphrase entered for the wallet decryption was incorrect. - Hibás jelszó. + + Wallet unlock failed + Tárca megnyitása sikertelen @@ -289,29 +278,39 @@ Biztosan kódolni akarod a tárcát? Warning: The Caps Lock key is on. + + + Enter passphrase + Add meg a jelszót + + + + + Wallet encrypted + Tárca kódolva + BitcoinGUI - - &Change Passphrase - Jelszó &megváltoztatása + + &Send coins + Érmék &küldése - - Bitcoin Wallet - Bitcoin-tárca + + Quit application + Kilépés - - - Synchronizing with network... - Szinkronizálás a hálózattal... + + &Encrypt Wallet + Tárca &kódolása - - Block chain synchronization in progress - Blokklánc-szinkronizálás folyamatban + + &File + &Fájl @@ -324,9 +323,10 @@ Biztosan kódolni akarod a tárcát? Tárca általános áttekintése - - &Transactions - &Tranzakciók + + + Synchronizing with network... + Szinkronizálás a hálózattal... @@ -338,10 +338,12 @@ Biztosan kódolni akarod a tárcát? &Address Book Cím&jegyzék - - - Edit the list of stored addresses and labels - Tárolt címek és címkék listájának szerkesztése + + + %n minute(s) ago + + %n perccel ezelőtt + @@ -353,65 +355,40 @@ Biztosan kódolni akarod a tárcát? Show the list of addresses for receiving payments Kiizetést fogadó címek listája - - - &Send coins - Érmék &küldése - - - - Send coins to a bitcoin address - Érmék küldése megadott címre - - - - Sign &message - - - - - Prove you control an address - - E&xit &Kilépés - - Quit application - Kilépés + + Edit the list of stored addresses and labels + Tárolt címek és címkék listájának szerkesztése - - &About %1 - &A %1-ról + + Send coins to a bitcoin address + Érmék küldése megadott címre Show information about Bitcoin Információk a Bitcoinról - - - About &Qt - A &Qt-ról - - - - Show information about Qt - Információk a Qt ról - &Options... &Opciók... - - Modify configuration options for bitcoin - Bitcoin konfigurációs opciók + + &About %1 + &A %1-ról + + + + &Export... + &Exportálás... @@ -424,19 +401,9 @@ Biztosan kódolni akarod a tárcát? A Bitcoin-ablak mutatása - - &Export... - &Exportálás... - - - - Export the data in the current tab to a file - - - - - &Encrypt Wallet - Tárca &kódolása + + Modify configuration options for bitcoin + Bitcoin konfigurációs opciók @@ -444,14 +411,9 @@ Biztosan kódolni akarod a tárcát? Tárca kódolása vagy dekódolása - - &Backup Wallet - - - - - Backup wallet to another location - + + &Change Passphrase + Jelszó &megváltoztatása @@ -459,61 +421,74 @@ Biztosan kódolni akarod a tárcát? Tárcakódoló jelszó megváltoztatása - - &File - &Fájl + + About &Qt + A &Qt-ról - - &Settings - &Beállítások + + Bitcoin Wallet + Bitcoin-tárca - - &Help - &Súgó + + Block chain synchronization in progress + Blokklánc-szinkronizálás folyamatban - - Tabs toolbar - Fül eszköztár + + Sign &message + - - Actions toolbar - Parancsok eszköztár - + + Prove you control an address + + - - [testnet] - [teszthálózat] + + Show information about Qt + Információk a Qt ról - - - %n active connection(s) to Bitcoin network - - %n aktív kapcsolat a Bitcoin-hálózattal - + + + Export the data in the current tab to a file + Jelenlegi nézet exportálása fájlba - - Backup Wallet + + &Backup Wallet - - Wallet Data (*.dat) + + Backup wallet to another location - - Backup Failed - + + &Settings + &Beállítások - - There was an error trying to save the wallet data to the new location. - + + &Help + &Súgó + + + + Tabs toolbar + Fül eszköztár + + + + Actions toolbar + Parancsok eszköztár + + + + [testnet] + [teszthálózat] @@ -525,10 +500,12 @@ Biztosan kódolni akarod a tárcát? Downloaded %1 of %2 blocks of transaction history. %1 blokk letöltve a tranzakciótörténet %2 blokkjából. - - - Downloaded %1 blocks of transaction history. - %1 blokk letöltve a tranzakciótörténetből. + + + %n hour(s) ago + + %n órával ezelőtt + @@ -537,11 +514,31 @@ Biztosan kódolni akarod a tárcát? %n nappal ezelőtt + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to the new location. + + - - %n hour(s) ago + + %n active connection(s) to Bitcoin network - %n órával ezelőtt + %n aktív kapcsolat a Bitcoin-hálózattal @@ -554,6 +551,13 @@ Biztosan kódolni akarod a tárcát? Catching up... Frissítés... + + + %n second(s) ago + + %n másodperccel ezelőtt + + Last received block was generated %1. @@ -564,11 +568,6 @@ Biztosan kódolni akarod a tárcát? 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? Ez a tranzakció túllépi a mérethatárt, de %1 tranzakciós díj ellenében így is elküldheted. Ezt a plusz összeget a tranzakcióidat feldolgozó csomópontok kapják, így magát a hálózatot támogatod vele. Hajlandó vagy megfizetni a díjat? - - - Sending... - Küldés... - Sent transaction @@ -592,6 +591,11 @@ Típus: %3 Cím: %4 + + + Sending... + Küldés... + Wallet is <b>encrypted</b> and currently <b>unlocked</b> @@ -602,19 +606,15 @@ Cím: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> Tárca <b>kódolva</b> és jelenleg <b>zárva</b>. - - - %n second(s) ago - - %n másodperccel ezelőtt - + + + &Transactions + &Tranzakciók - - - %n minute(s) ago - - %n perccel ezelőtt - + + + Downloaded %1 blocks of transaction history. + %1 blokk letöltve a tranzakciótörténetből. @@ -652,11 +652,6 @@ Cím: %4 Edit Address Cím szerkesztése - - - &Label - Cím&ke - The label associated with this address book entry @@ -667,6 +662,11 @@ Cím: %4 &Address &Cím + + + &Label + Cím&ke + The address associated with this address book entry. This can only be modified for sending addresses. @@ -683,9 +683,9 @@ Cím: %4 Új küldő cím - - Edit receiving address - Fogadó cím szerkesztése + + Edit sending address + Küldő cím szerkesztése @@ -693,20 +693,20 @@ Cím: %4 A megadott "%1" cím már szerepel a címjegyzékben. - - Edit sending address - Küldő cím szerkesztése - - - - Could not unlock wallet. - Tárca feloldása sikertelen + + Edit receiving address + Fogadó cím szerkesztése The entered address "%1" is not a valid bitcoin address. A megadott "%1" cím nem egy érvényes Bitcoin-cím. + + + Could not unlock wallet. + Tárca feloldása sikertelen + New key generation failed. @@ -715,16 +715,6 @@ Cím: %4 MainOptionsPage - - - Map port using &UPnP - &UPnP port-feltérképezés - - - - &Connect through SOCKS4 proxy: - &Csatlakozás SOCKS4 proxyn keresztül: - &Start Bitcoin on window system startup @@ -745,6 +735,11 @@ Cím: %4 Show only a tray icon after minimizing the window Kicsinyítés után csak eszköztár-ikont mutass + + + Map port using &UPnP + &UPnP port-feltérképezés + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. @@ -760,21 +755,16 @@ Cím: %4 Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Az alkalmazásból való kilépés helyett az eszköztárba kicsinyíti az alkalmazást az ablak bezárásakor. Ez esetben az alkalmazás csak a Kilépés menüponttal zárható be. + + + &Connect through SOCKS4 proxy: + &Csatlakozás SOCKS4 proxyn keresztül: + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) SOCKS4 proxyn keresztüli csatlakozás a Bitcoin hálózatához (pl. Tor-on keresztüli csatlakozás esetén) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Opcionális, kB-onkénti tranzakciós díj a tranzakcióid minél gyorsabb feldolgozásának elősegítésére. A legtöbb tranzakció 1 kB-os. 0,01 BTC ajánlott. - - - - Pay transaction &fee - Tranzakciós &díj fizetése - Proxy &IP: @@ -795,9 +785,24 @@ Cím: %4 Port of the proxy (e.g. 1234) Proxy portja (pl.: 1234) + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Opcionális, kB-onkénti tranzakciós díj a tranzakcióid minél gyorsabb feldolgozásának elősegítésére. A legtöbb tranzakció 1 kB-os. 0,01 BTC ajánlott. + + + + Pay transaction &fee + Tranzakciós &díj fizetése + MessagePage + + + Alt+A + Alt+A + Message @@ -811,12 +816,17 @@ Cím: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Adj meg egy Bitcoin-címet (pl.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L ) - - Alt+A - Alt+A + + Choose adress from address book + Válassz egy címet a címjegyzékből + + + + Paste address from clipboard + Cím beillesztése a vágólapról @@ -848,16 +858,6 @@ Cím: %4 Copy the current signature to the system clipboard - - - Choose adress from address book - Válassz egy címet a címjegyzékből - - - - Paste address from clipboard - Cím beillesztése a vágólapról - &Copy to Clipboard @@ -873,7 +873,7 @@ Cím: %4 %1 is not a valid address. - + A megadott "%1" cím nem egy érvényes Bitcoin-cím. @@ -888,11 +888,6 @@ Cím: %4 OptionsDialog - - - Main - - Display @@ -903,6 +898,11 @@ Cím: %4 Options Opciók + + + Main + + OverviewPage @@ -959,6 +959,11 @@ Cím: %4 QRCodeDialog + + + Message: + Üzenet: + Dialog @@ -989,11 +994,6 @@ Cím: %4 Label: Címke: - - - Message: - Üzenet: - &Save As... @@ -1022,58 +1022,26 @@ Cím: %4 123.456 BTC 123.456 BTC + + + Confirm the send action + Küldés megerősítése + &Send &Küldés - - Confirm send coins - Küldés megerősítése - - - - &Add recipient... - &Címzett hozzáadása ... - - - - Remove all transaction fields - - - - - Balance: - Egyenleg: - - - - Send to multiple recipients at once - Küldés több címzettnek egyszerre + + <b>%1</b> to %2 (%3) + <b>%1</b> %2-re (%3) - - Confirm the send action + + Confirm send coins Küldés megerősítése - - - - - - - - - - Send Coins - Érmék küldése - - - - Clear all - Mindent töröl - Are you sure you want to send %1? @@ -1084,16 +1052,6 @@ Cím: %4 and és - - - 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. @@ -1117,12 +1075,54 @@ Cím: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból - például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. + Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. - - <b>%1</b> to %2 (%3) - <b>%1</b> %2-re (%3) + + + + + + + + + Send Coins + Érmék küldése + + + + Send to multiple recipients at once + Küldés több címzettnek egyszerre + + + + Remove all transaction fields + + + + + Clear all + Mindent töröl + + + + Balance: + Egyenleg: + + + + The amount to pay must be larger than 0. + A fizetendő összegnek nagyobbnak kell lennie 0-nál. + + + + &Add recipient... + &Címzett hozzáadása ... + + + + The recipient address is not valid, please recheck. + A címzett címe érvénytelen, kérlek, ellenőrizd. @@ -1132,43 +1132,26 @@ Cím: %4 Form Űrlap - - - 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: - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Címzett címe (pl.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L ) - - - Choose address from address book - Válassz egy címet a címjegyzékből - Alt+A Alt+A + + + Paste address from clipboard + Cím beillesztése a vágólapról + Alt+P @@ -1180,57 +1163,59 @@ Cím: %4 Címzett eltávolítása - - Paste address from clipboard - Cím beillesztése a vágólapról + + A&mount: + Összeg: Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adj meg egy Bitcoin-címet (pl.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L ) + Adj meg egy Bitcoin-címet (pl.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L ) - - - TransactionDesc - - , has not been successfully broadcast yet - , még nem sikerült elküldeni. + + + 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? + - - Open until %1 - Megnyitva %1-ig + + &Label: + &Címke: - - %1 confirmations - %1 megerősítés + + Choose address from address book + Válassz egy címet a címjegyzékből + + + TransactionDesc - - Open for %1 blocks - Megnyitva %1 blokkra + + (yours, label: + (tiéd, címke: - - %1/offline? - %1/offline? + + Message: + Üzenet: - - %1/unconfirmed - %1/megerősítetlen + + Comment: + Megjegyzés: - - <b>Status:</b> - <b>Állapot:</b> + + %1 confirmations + %1 megerősítés - - , broadcast through %1 node - , %1 csomóponton keresztül elküldve. + + , has not been successfully broadcast yet + , még nem sikerült elküldeni. @@ -1258,6 +1243,36 @@ Cím: %4 unknown ismeretlen + + + Open for %1 blocks + Megnyitva %1 blokkra + + + + %1/offline? + %1/offline? + + + + %1/unconfirmed + %1/megerősítetlen + + + + <b>Status:</b> + <b>Állapot:</b> + + + + , broadcast through %1 node + , %1 csomóponton keresztül elküldve. + + + + Open until %1 + Megnyitva %1-ig + @@ -1265,11 +1280,6 @@ Cím: %4 <b>To:</b> <b>Címzett:</b> - - - (yours, label: - (tiéd, címke: - (yours) @@ -1281,7 +1291,7 @@ Cím: %4 <b>Credit:</b> - <b>Jóváírás:</b> + <b>Jóváírás</b> @@ -1310,16 +1320,6 @@ Cím: %4 <b>Net amount:</b> <b>Nettó összeg:</b> - - - Message: - Üzenet: - - - - Comment: - Megjegyzés: - Transaction ID: @@ -1346,6 +1346,21 @@ Cím: %4 TransactionTableModel + + + Transaction status. Hover over this field to show number of confirmations. + Tranzakció állapota. Húzd ide a kurzort, hogy lásd a megerősítések számát. + + + + Date and time that the transaction was received. + Tranzakció fogadásának dátuma és időpontja. + + + + Destination address of transaction. + A tranzakció címzettjének címe. + Date @@ -1384,24 +1399,19 @@ Cím: %4 Offline (%1 megerősítés) - - Received with - Erre a címre - - - - Received from - Erről az + + Unconfirmed (%1 of %2 confirmations) + Megerősítetlen (%1 %2 megerősítésből) - - Sent to - Erre a címre + + Confirmed (%1 confirmations) + Megerősítve (%1 megerősítés) - - Payment to yourself - Magadnak kifizetve + + Received from + Erről az @@ -1413,11 +1423,6 @@ Cím: %4 (n/a) (nincs) - - - Amount removed from or added to balance. - Az egyenleghez jóváírt vagy ráterhelt összeg. - This block was not received by any other nodes and will probably not be accepted! @@ -1429,34 +1434,24 @@ Cím: %4 Legenerálva, de még el nem fogadva. - - Transaction status. Hover over this field to show number of confirmations. - Tranzakció állapota. Húzd ide a kurzort, hogy lásd a megerősítések számát. - - - - Date and time that the transaction was received. - Tranzakció fogadásának dátuma és időpontja. - - - - Type of transaction. - Tranzakció típusa. + + Received with + Erre a címre - - Destination address of transaction. - A tranzakció címzettjének címe. + + Sent to + Erre a címre - - Unconfirmed (%1 of %2 confirmations) - Megerősítetlen (%1 %2 megerősítésből) + + Payment to yourself + Magadnak kifizetve - - Confirmed (%1 confirmations) - Megerősítve (%1 megerősítés) + + Amount removed from or added to balance. + Az egyenleghez jóváírt vagy ráterhelt összeg. @@ -1465,29 +1460,49 @@ Cím: %4 %n blokk múlva lesz elérhető a bányászott egyenleg. + + + Type of transaction. + Tranzakció típusa. + TransactionView + + + Label + Címke + + + + Address + Cím + + + + Amount + Összeg + + + + ID + Azonosító + - Could not write to file %1. - %1 fájlba való kiírás sikertelen. + Error exporting + Hiba lépett fel exportálás közben - - Range: - Tartomány: + + Could not write to file %1. + %1 fájlba való kiírás sikertelen. to meddig - - - Show details... - Részletek... - @@ -1605,29 +1620,14 @@ Cím: %4 Típus - - Label - Címke - - - - Address - Cím - - - - Amount - Összeg - - - - ID - Azonosító + + Range: + Tartomány: - - Error exporting - Hiba lépett fel exportálás közben + + Show details... + Részletek... @@ -1640,16 +1640,120 @@ Cím: %4 bitcoin-core - - - Bitcoin version - Bitcoin verzió - Usage: Használat: + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Az %s adatkönyvtár nem zárható. A Bitcoin valószínűleg fut már. + + + + Loading addresses... + Címek betöltése... + + + + Loading wallet... + Tárca betöltése... + + + + Wallet needed to be rewritten: restart Bitcoin to complete + + + + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Figyelem: Ellenőrizd, hogy helyesen van-e beállítva a gépeden a dátum és az idő. A Bitcoin nem fog megfelelően működni, ha rosszul van beállítvaaz órád. + + + + Send command to -server or bitcoind + Parancs küldése a -serverhez vagy a bitcoindhez + + + + + List commands + Parancsok kilistázása + + + + + Get help for a command + Segítség egy parancsról + + + + + Options: + Opciók + + + + + Done loading + Betöltés befejezve. + + + + Specify data directory + Adatkönyvtár + + + + + Specify connection timeout (in milliseconds) + Csatlakozás időkerete (milliszekundumban) + + + + + Invalid amount for -paytxfee=<amount> + Étvénytelen -paytxfee=<összeg> összeg + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + A %d port nem elérhető ezen a gépen. A Bitcoin valószínűleg fut már. + + + + Start minimized + Indítás lekicsinyítve + + + + + Username for JSON-RPC connections + Felhasználói név JSON-RPC csatlakozásokhoz + + + + + Allow DNS lookups for addnode and connect + DNS-kikeresés engedélyezése az addnode-nál és a connect-nél + + Show splash screen on startup (default: 1) @@ -1663,18 +1767,13 @@ Cím: %4 Listen for connections on <port> (default: 8333 or testnet: 18333) - + Csatlakozásokhoz figyelendő <port> (alapértelmezett: 8333 or testnet: 18333) Maintain at most <n> connections to peers (default: 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 - Find peers using internet relay chat (default: 0) @@ -1716,24 +1815,9 @@ Cím: %4 - - Use Universal Plug and Play to map the listening port (default: 1) - UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 1) - - - - Use Universal Plug and Play to map the listening port (default: 0) - UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 0) - - - - Fee per KB to add to transactions you send - kB-onként felajánlandó díj az általad küldött tranzakciókhoz - - - - Output extra debugging information - + + Output extra debugging information + @@ -1750,6 +1834,30 @@ Cím: %4 Send trace/debug info to debugger + + + Password for JSON-RPC connections + Jelszó JSON-RPC csatlakozásokhoz + + + + + Listen for JSON-RPC connections on <port> (default: 8332) + JSON-RPC csatlakozásokhoz figyelendő <port> (alapértelmezett: 8332) + + + + + Allow JSON-RPC connections from specified IP address + JSON-RPC csatlakozások engedélyezése meghatározott IP-címről + + + + + Send commands to node running on <ip> (default: 127.0.0.1) + Parancsok küldése <ip> címen működő csomóponthoz (alapértelmezett: 127.0.0.1) + + Execute command when the best block changes (%s in cmd is replaced by block hash) @@ -1760,6 +1868,18 @@ Cím: %4 Upgrade wallet to latest format + + + Set key pool size to <n> (default: 100) + Kulcskarika mérete <n> (alapértelmezett: 100) + + + + + Rescan the block chain for missing wallet transactions + Blokklánc újraszkennelése hiányzó tárca-tranzakciók után + + How many blocks to check at startup (default: 2500, 0 = all) @@ -1771,85 +1891,54 @@ Cím: %4 - - Loading addresses... - Címek betöltése... - - - - Loading block index... - Blokkindex betöltése... + + Use OpenSSL (https) for JSON-RPC connections + OpenSSL (https) használata JSON-RPC csatalkozásokhoz + - - Loading wallet... - Tárca betöltése... + + Server certificate file (default: server.cert) + Szervertanúsítvány-fájl (alapértelmezett: server.cert) + - - Wallet needed to be rewritten: restart Bitcoin to complete - + + Server private key (default: server.pem) + Szerver titkos kulcsa (alapértelmezett: server.pem) + - - Cannot downgrade wallet - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Elfogadható rejtjelkulcsok (alapértelmezett: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH ) + - - Cannot initialize keypool - + + Bitcoin version + Bitcoin verzió - - Cannot write default address - + + Loading block index... + Blokkindex betöltése... Rescanning... Újraszkennelés... + + + 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. + Error: CreateThread(StartNode) failed Hiba: CreateThread(StartNode) sikertelen - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Figyelem: Ellenőrizd, hogy helyesen van-e beállítva a gépeden a dátum és az idő. A Bitcoin nem fog megfelelően működni, ha rosszul van beállítvaaz órád. - - - - Send command to -server or bitcoind - Parancs küldése a -serverhez vagy a bitcoindhez - - - - - List commands - Parancsok kilistázása - - - - - Get help for a command - Segítség egy parancsról - - - - - Options: - Opciók - - - - - Specify configuration file (default: bitcoin.conf) - Konfigurációs fájl (alapértelmezett: bitcoin.conf) - - Specify pid file (default: bitcoind.pid) @@ -1863,14 +1952,15 @@ Cím: %4 - - Done loading - Betöltés befejezve. + + Don't generate coins + Bitcoin-generálás leállítása + - - Specify connection timeout (in milliseconds) - Csatlakozás időkerete (milliszekundumban) + + Specify configuration file (default: bitcoin.conf) + Konfigurációs fájl (alapértelmezett: bitcoin.conf) @@ -1879,39 +1969,14 @@ Cím: %4 Érvénytelen -proxy cím - - Invalid amount for -paytxfee=<amount> - Étvénytelen -paytxfee=<összeg> összeg - - - - Accept command line and JSON-RPC commands - Parancssoros és JSON-RPC parancsok elfogadása - - - - - Use the test network - Teszthálózat használata - - - - - Username for JSON-RPC connections - Felhasználói név JSON-RPC csatlakozásokhoz - - - - - Password for JSON-RPC connections - Jelszó JSON-RPC csatlakozásokhoz - + + Warning: Disk space is low + Figyelem: kevés a hely a lemezen - - Listen for JSON-RPC connections on <port> (default: 8332) - JSON-RPC csatlakozásokhoz figyelendő <port> (alapértelmezett: 8332) - + + beta + béta @@ -1920,63 +1985,47 @@ Cím: %4 - - Allow JSON-RPC connections from specified IP address - JSON-RPC csatlakozások engedélyezése meghatározott IP-címről - - - - - Allow DNS lookups for addnode and connect - DNS-kikeresés engedélyezése az addnode-nál és a connect-né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) - + + 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 - - Set key pool size to <n> (default: 100) - Kulcskarika mérete <n> (alapértelmezett: 100) + + Connect only to the specified node + Csatlakozás csak a megadott csomóponthoz - - Rescan the block chain for missing wallet transactions - Blokklánc újraszkennelése hiányzó tárca-tranzakciók után - + + Use Universal Plug and Play to map the listening port (default: 1) + UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 1) - - Use OpenSSL (https) for JSON-RPC connections - OpenSSL (https) használata JSON-RPC csatalkozásokhoz - + + Use Universal Plug and Play to map the listening port (default: 0) + UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 0) - - Server certificate file (default: server.cert) - Szervertanúsítvány-fájl (alapértelmezett: server.cert) - + + Fee per KB to add to transactions you send + kB-onként felajánlandó díj az általad küldött tranzakciókhoz - - Server private key (default: server.pem) - Szerver titkos kulcsa (alapértelmezett: server.pem) + + Accept command line and JSON-RPC commands + Parancssoros és JSON-RPC parancsok elfogadása - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Elfogadható rejtjelkulcsok (alapértelmezett: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH ) + + Run in the background as a daemon and accept commands + Háttérben futtatás daemonként és parancsok elfogadása - - This help message - Ez a súgó-üzenet + + Use the test network + Teszthálózat használata @@ -1988,53 +2037,9 @@ SSL-opciók: (lásd a Bitcoin Wiki SSL-beállítási instrukcióit) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Az %s adatkönyvtár nem zárható. A Bitcoin valószínűleg fut már. - - - - 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. - - - - Don't generate coins - Bitcoin-generálás leállítása - - - - - Specify data directory - Adatkönyvtár - - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - A %d port nem elérhető ezen a gépen. A Bitcoin valószínűleg fut már. - - - - beta - béta - - - - Start minimized - Indítás lekicsinyítve - - - - - Connect only to the specified node - Csatlakozás csak a megadott csomóponthoz - - - - - Run in the background as a daemon and accept commands - Háttérben futtatás daemonként és parancsok elfogadása + + This help message + Ez a súgó-üzenet @@ -2062,10 +2067,5 @@ SSL-opciók: (lásd a Bitcoin Wiki SSL-beállítási instrukcióit) Error loading wallet.dat Hiba az wallet.dat betöltése közben - - - Warning: Disk space is low - Figyelem: kevés a hely a lemezen - diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts index 836806e20f..9b03c3e793 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -69,21 +69,11 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso &Copy to Clipboard &Copia nella clipboard - - - Show &QR Code - Mostra il codice &QR - Sign a message to prove you own this address Firma un messaggio per dimostrare di possedere questo indirizzo - - - &Sign Message - &Firma il messaggio - Delete the currently selected address from the list. Only sending addresses can be deleted. @@ -95,24 +85,14 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso &Cancella - - Copy address - Copia l'indirizzo - - - - Copy label - Copia l'etichetta - - - - Edit - Modifica + + &Sign Message + &Firma il messaggio - - Delete - Cancella + + Show &QR Code + Mostra il codice &QR @@ -126,13 +106,33 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso - Error exporting - Errore nell'esportazione + Could not write to file %1. + Impossibile scrivere sul file %1. + + + + Edit + Modifica + + + + Copy address + Copia l'indirizzo + + + + Copy label + Copia l'etichetta + + + + Delete + Cancella - Could not write to file %1. - Impossibile scrivere sul file %1. + Error exporting + Errore nell'esportazione @@ -156,24 +156,14 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso AskPassphraseDialog - - Decrypt wallet - Decifra il portamonete - - - - Dialog - Dialogo - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin verrà ora chiuso per finire il processo di crittazione. Ricorda che criptare il tuo portamonete non può fornire una protezione totale contro furti causati da malware che dovessero infettare il tuo computer. + + New passphrase + Nuova passphrase - - TextLabel - Etichetta + + Repeat new passphrase + Ripeti la passphrase @@ -181,22 +171,24 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Inserisci la passphrase - - New passphrase - Nuova passphrase + + Unlock wallet + Sblocca il portamonete - - Repeat new passphrase - Ripeti la passphrase + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Cifratura del portamonete fallita a causa di un errore interno. Il portamonete non è stato cifrato. - - - - - Wallet encryption failed - Cifratura del portamonete fallita + + Dialog + Dialogo + + + + TextLabel + Etichetta @@ -213,21 +205,11 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso This operation needs your wallet passphrase to unlock the wallet. Quest'operazione necessita della passphrase per sbloccare il portamonete. - - - Unlock wallet - Sblocca il portamonete - This operation needs your wallet passphrase to decrypt the wallet. Quest'operazione necessita della passphrase per decifrare il portamonete, - - - Change passphrase - Cambia la passphrase - Enter the old and new passphrase to the wallet. @@ -239,39 +221,44 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Conferma la cifratura del portamonete - - - Wallet encrypted - Portamonete cifrato + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ATTENZIONE: se si cifra il portamonete e si perde la frase d'ordine, <b>SI PERDERANNO TUTTI I PROPRI BITCOIN</b>! +Si è sicuri di voler cifrare il portamonete? Wallet passphrase was successfully changed. - Jelszó megváltoztatva. + Passphrase del portamonete modificata con successo. - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ATTENZIONE: se si cifra il portamonete e si perde la frase d'ordine, <b>SI PERDERANNO TUTTI I PROPRI BITCOIN</b>! -Si è sicuri di voler cifrare il portamonete? + + Change passphrase + Cambia la passphrase - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Cifratura del portamonete fallita a causa di un errore interno. Il portamonete non è stato cifrato. + + Decrypt wallet + Decifra il portamonete - - - The supplied passphrases do not match. - Le passphrase inserite non corrispondono. + + + Wallet encrypted + Portamonete cifrato Wallet unlock failed Sblocco del portamonete fallito + + + + The supplied passphrases do not match. + Le passphrase inserite non corrispondono. + @@ -284,31 +271,73 @@ Si è sicuri di voler cifrare il portamonete? Wallet decryption failed Decifrazione del portamonete fallita + + + + + + Wallet encryption failed + Cifratura del portamonete fallita + Warning: The Caps Lock key is on. Attenzione: tasto Blocco maiuscole attivo. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin verrà ora chiuso per finire il processo di crittazione. Ricorda che criptare il tuo portamonete non può fornire una protezione totale contro furti causati da malware che dovessero infettare il tuo computer. + BitcoinGUI - - Send coins to a bitcoin address - Invia monete ad un indirizzo bitcoin + + Show the list of addresses for receiving payments + Mostra la lista di indirizzi su cui ricevere pagamenti - - - Synchronizing with network... - Sto sincronizzando con la rete... + + Show information about Bitcoin + Mostra informazioni su Bitcoin + + + + Encrypt or decrypt wallet + Cifra o decifra il portamonete + + + + Modify configuration options for bitcoin + Modifica configurazione opzioni per bitcoin + + + + &Address Book + &Rubrica + + + + Edit the list of stored addresses and labels + Modifica la lista degli indirizzi salvati e delle etichette + + + + &Receive coins + &Ricevi monete Bitcoin Wallet Portamonete di bitcoin + + + &Send coins + &Invia monete + &Overview @@ -319,11 +348,6 @@ Si è sicuri di voler cifrare il portamonete? Show general overview of wallet Mostra lo stato generale del portamonete - - - Block chain synchronization in progress - sincronizzazione della catena di blocchi in corso - &Transactions @@ -335,34 +359,34 @@ Si è sicuri di voler cifrare il portamonete? Cerca nelle transazioni - - &Address Book - &Rubrica + + [testnet] + [testnet] - - Edit the list of stored addresses and labels - Modifica la lista degli indirizzi salvati e delle etichette + + E&xit + &Esci - - &Receive coins - &Ricevi monete + + Quit application + Chiudi applicazione - - Show the list of addresses for receiving payments - Mostra la lista di indirizzi su cui ricevere pagamenti + + About &Qt + Informazioni su &Qt - - E&xit - &Esci + + Show information about Qt + Mostra informazioni su Qt - - Export the data in the current tab to a file - Esporta i dati nella tabella corrente su un file + + &Options... + &Opzioni... @@ -370,10 +394,23 @@ Si è sicuri di voler cifrare il portamonete? Backup portamonete in un'altra locazione - - Backup Wallet - Backup Portamonete - + + Change the passphrase used for wallet encryption + Cambia la passphrase per la cifratura del portamonete + + + + %n minute(s) ago + + %n minuto fa + %n minuti fa + + + + + Backup Wallet + Backup Portamonete + Wallet Data (*.dat) @@ -390,14 +427,14 @@ Si è sicuri di voler cifrare il portamonete? C'è stato un errore tentanto di salvare i dati del portamonete in un'altra locazione - - &Send coins - &Invia monete + + Send coins to a bitcoin address + Invia monete ad un indirizzo bitcoin - - Quit application - Chiudi applicazione + + &Export... + &Esporta... @@ -410,75 +447,66 @@ Si è sicuri di voler cifrare il portamonete? Dimostra di controllare un indirizzo - - Show information about Bitcoin - Mostra informazioni su Bitcoin - - - - About &Qt - Informazioni su &Qt - - - - Show information about Qt - Mostra informazioni su Qt - - - - &Options... - &Opzioni... - - - - &Export... - &Esporta... + + Open &Bitcoin + Apri &Bitcoin - - Modify configuration options for bitcoin - Modifica configurazione opzioni per bitcoin + + &About %1 + &A %1-ról - - Open &Bitcoin - Apri &Bitcoin + + + Synchronizing with network... + Sto sincronizzando con la rete... Show the Bitcoin window Mostra la finestra Bitcoin + + + Export the data in the current tab to a file + Esporta i dati nella tabella corrente su un file + &Encrypt Wallet &Cifra il portamonete - - Encrypt or decrypt wallet - Cifra o decifra il portamonete - - - - Change the passphrase used for wallet encryption - Cambia la passphrase per la cifratura del portamonete + + &Backup Wallet + Backup Portamonete &Change Passphrase &Cambia la passphrase + + + &File + &File + + + + &Settings + &Impostazioni + + + + &Help + &Aiuto + Actions toolbar Barra degli strumenti "Azioni" - - - [testnet] - [testnet] - %n active connection(s) to Bitcoin network @@ -492,11 +520,6 @@ Si è sicuri di voler cifrare il portamonete? Downloaded %1 blocks of transaction history. Scaricati %1 blocchi dello storico transazioni. - - - Tabs toolbar - Barra degli strumenti "Tabs" - %n second(s) ago @@ -505,14 +528,6 @@ Si è sicuri di voler cifrare il portamonete? %n secondi fa - - - %n minute(s) ago - - %n minuto fa - %n minuti fa - - %n hour(s) ago @@ -521,26 +536,6 @@ Si è sicuri di voler cifrare il portamonete? %n ore fa - - - Downloaded %1 of %2 blocks of transaction history. - Scaricati %1 dei %2 blocchi dello storico transazioni. - - - - &About %1 - &A %1-ról - - - - &Backup Wallet - - - - - bitcoin-qt - - %n day(s) ago @@ -559,6 +554,11 @@ Si è sicuri di voler cifrare il portamonete? Catching up... In aggiornamento... + + + Block chain synchronization in progress + sincronizzazione della catena di blocchi in corso + Last received block was generated %1. @@ -569,11 +569,6 @@ Si è sicuri di voler cifrare il portamonete? 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? Questa transazione è superiore al limite di dimensione. È comunque possibile inviarla con una commissione di %1, che va ai nodi che processano la tua transazione e contribuisce a sostenere la rete. Vuoi pagare la commissione? - - - Sending... - Invio... - Sent transaction @@ -598,6 +593,16 @@ Indirizzo: %4 + + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + Scaricati %1 dei %2 blocchi dello storico transazioni. + Wallet is <b>encrypted</b> and currently <b>unlocked</b> @@ -609,19 +614,14 @@ Indirizzo: %4 Il portamonete è <b>cifrato</b> e attualmente <b>bloccato</b> - - &File - &File - - - - &Settings - &Impostazioni + + Sending... + Invio... - - &Help - &Aiuto + + Tabs toolbar + Barra degli strumenti "Tabs" @@ -654,6 +654,11 @@ Indirizzo: %4 EditAddressDialog + + + New receiving address + Nuovo indirizzo di ricezione + Edit Address @@ -679,11 +684,6 @@ Indirizzo: %4 The address associated with this address book entry. This can only be modified for sending addresses. L'indirizzo associato a questa voce della rubrica. Si può modificare solo negli indirizzi di spedizione. - - - New receiving address - Nuovo indirizzo di ricezione - New sending address @@ -699,6 +699,11 @@ Indirizzo: %4 Edit sending address Modifica indirizzo d'invio + + + The entered address "%1" is already in the address book. + L'indirizzo inserito "%1" è già in rubrica. + Could not unlock wallet. @@ -709,11 +714,6 @@ Indirizzo: %4 New key generation failed. Generazione della nuova chiave non riuscita. - - - The entered address "%1" is already in the address book. - L'indirizzo inserito "%1" è già in rubrica. - The entered address "%1" is not a valid bitcoin address. @@ -760,86 +760,51 @@ Indirizzo: %4 Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Riduci ad icona, invece di uscire dall'applicazione quando la finestra viene chiusa. Quando questa opzione è attivata, l'applicazione verrà chiusa solo dopo aver selezionato Esci nel menu. + Riduci ad icona, invece di uscire dall'applicazione quando la finestra viene chiusa. Quando questa opzione è attivata, l'applicazione verrà chiusa solo dopo aver selezionato Esci nel menu. &Connect through SOCKS4 proxy: - &Csatlakozás SOCKS4 proxyn keresztül: + &Collegati tramite SOCKS4 proxy: Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) SOCKS4 proxyn keresztüli csatlakozás a Bitcoin hálózatához (pl. Tor-on keresztüli csatlakozás esetén) + + + Proxy &IP: + &IP del proxy: + IP address of the proxy (e.g. 127.0.0.1) - Indirizzo IP del proxy (ad esempio 127.0.0.1) + Indirizzo IP del proxy (ad esempio 127.0.0.1) &Port: - - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. + &Porta: Port of the proxy (e.g. 1234) Porta del proxy (es. 1234) + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. + Pay transaction &fee Paga la &commissione - - - Proxy &IP: - &IP del proxy: - MessagePage - - - Message - Messaggio - - - - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Puoi firmare messeggi con i tuoi indirizzi per dimostrare che sono tuoi. Fai attenzione a non firmare niente di vago, visto che gli attacchi di phishing potrebbero cercare di spingerti a mettere la tua firma su di loro. Firma solo dichiarazioni completamente dettagliate con cui sei d'accordo. - - - - The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - - - Choose adress from address book - Scegli l'indirizzo dalla rubrica - - - - Alt+A - Alt+A - - - - Paste address from clipboard - Incollare l'indirizzo dagli appunti - - - - Copy the current signature to the system clipboard - - Private key for %1 is not available. @@ -850,16 +815,6 @@ Indirizzo: %4 Sign failed Firma non riuscita - - - Alt+P - Alt+P - - - - Enter the message you want to sign here - Inserisci qui il messaggio che vuoi firmare - Click "Sign Message" to get signature @@ -875,6 +830,11 @@ Indirizzo: %4 &Sign Message &Firma il messaggio + + + Copy the current signature to the system clipboard + + &Copy to Clipboard @@ -892,18 +852,58 @@ Indirizzo: %4 %1 is not a valid address. %1 non è un indirizzo valido. + + + Message + Messaggio + + + + You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + Puoi firmare messeggi con i tuoi indirizzi per dimostrare che sono tuoi. Fai attenzione a non firmare niente di vago, visto che gli attacchi di phishing potrebbero cercare di spingerti a mettere la tua firma su di loro. Firma solo dichiarazioni completamente dettagliate con cui sei d'accordo. + + + + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Inserisci un indirizzo Bitcoin (ad esempio 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Choose adress from address book + Scegli l'indirizzo dalla rubrica + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Incollare l'indirizzo dagli appunti + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Inserisci qui il messaggio che vuoi firmare + OptionsDialog Main - + Principale Display - Megjelenítés + Mostra @@ -913,31 +913,11 @@ Indirizzo: %4 OverviewPage - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Totale delle transazioni in corso di conferma, che non sono ancora incluse nel saldo attuale - Form Modulo - - - Wallet - Tárca - - - - <b>Recent transactions</b> - <b>Transazioni recenti</b> - - - - Your current balance - Saldo attuale - Balance: @@ -951,13 +931,33 @@ Indirizzo: %4 0 - + 0 Unconfirmed: Non confermato: + + + Wallet + Portamonete + + + + <b>Recent transactions</b> + <b>Transazioni recenti</b> + + + + Your current balance + Saldo attuale + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Totale delle transazioni in corso di conferma, che non sono ancora incluse nel saldo attuale + Total number of transactions in wallet @@ -966,21 +966,11 @@ Indirizzo: %4 QRCodeDialog - - - Label: - Etichetta: - Message: Messaggio: - - - &Save As... - &Salva come... - Error encoding URI into QR Code. @@ -996,6 +986,21 @@ Indirizzo: %4 Save Image... + + + &Save As... + &Salva come... + + + + Amount: + Importo: + + + + BTC + BTC + Dialog @@ -1012,23 +1017,13 @@ Indirizzo: %4 Richiedi pagamento - - Amount: - Importo: - - - - BTC - BTC + + Label: + Etichetta: SendCoinsDialog - - - Remove all transaction fields - Rimuovi tutti i campi della transazione - @@ -1046,6 +1041,16 @@ Indirizzo: %4 Send to multiple recipients at once Spedisci a diversi beneficiari in una volta sola + + + Remove all transaction fields + Rimuovi tutti i campi della transazione + + + + Clear all + Cancella tutto + Balance: @@ -1054,12 +1059,7 @@ Indirizzo: %4 123.456 BTC - - - - - Confirm the send action - Küldés megerősítése + 123,456 BTC @@ -1077,63 +1077,68 @@ Indirizzo: %4 Conferma la spedizione di bitcoin - - The recipient address is not valid, please recheck. - A címzett címe érvénytelen, kérlek, ellenőrizd. + + Are you sure you want to send %1? + Si è sicuri di voler spedire %1? - - The amount exceeds your balance. - Nincs ennyi bitcoin az egyenlegeden. + + The amount to pay must be larger than 0. + L'importo da pagare dev'essere maggiore di 0. 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. + Il totale è superiore al saldo attuale includendo la commissione %1. 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. - - - - Error: Transaction creation failed. - Hiba: nem sikerült létrehozni a tranzakciót. + Trovato un indirizzo doppio, si può spedire solo una volta a ciascun indirizzo in una singola operazione. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. + + Confirm the send action + Conferma la spedizione &Add recipient... &Aggiungi beneficiario... - - - Are you sure you want to send %1? - Si è sicuri di voler spedire %1? - and e - - Clear all - Cancella tutto + + 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. - L'importo da pagare dev'essere maggiore di 0. + + The amount exceeds your balance. + Nincs ennyi bitcoin az egyenlegeden. + + + + Error: Transaction creation failed. + Hiba: nem sikerült létrehozni a tranzakciót. + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. SendCoinsEntry + + + Paste address from clipboard + Incollare l'indirizzo dagli appunti + Form @@ -1155,6 +1160,11 @@ Indirizzo: %4 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 + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1165,11 +1175,6 @@ Indirizzo: %4 Alt+A Alt+A - - - Paste address from clipboard - Incollare l'indirizzo dagli appunti - Alt+P @@ -1180,11 +1185,6 @@ Indirizzo: %4 Remove this recipient Rimuovere questo beneficiario - - - &Label: - &Etichetta - Choose address from address book @@ -1198,36 +1198,46 @@ Indirizzo: %4 TransactionDesc + + + %1/unconfirmed + %1/non confermato + + + + %1 confirmations + %1 conferme + , has not been successfully broadcast yet , non è stato ancora trasmesso con successo - - - Open until %1 - Aperto fino a %1 - Open for %1 blocks Megnyitva %1 blokkra - - %1/offline? - + + Open until %1 + Aperto fino a %1 - - %1 confirmations - %1 megerősítés + + %1/offline? + %1/offline? <b>Status:</b> <b>Állapot:</b> + + + unknown + sconosciuto + , broadcast through %1 node @@ -1246,18 +1256,13 @@ Indirizzo: %4 <b>Source:</b> Generated<br> - <b>Forrás:</b> Generálva<br> + <b>Fonte:</b> Generato<br> <b>From:</b> - <b>Űrlap:</b> - - - - unknown - sconosciuto + <b>Da:</b> @@ -1269,7 +1274,7 @@ Indirizzo: %4 (yours, label: - (tiéd, címke: + (vostro, etichetta: @@ -1282,24 +1287,24 @@ Indirizzo: %4 <b>Credit:</b> - <b>Jóváírás:</b> + <b>Credito:</b> (%1 matures in %2 more blocks) - (%1, %2 múlva készül el) + (%1 matura in altri %2 blocchi) (not accepted) - (elutasítva) + (non accettate) <b>Debit:</b> - <b>Terhelés:</b> + <b>Debito:</b> @@ -1309,33 +1314,28 @@ Indirizzo: %4 <b>Net amount:</b> - <b>Nettó összeg:</b> + <b>Importo netto:</b> Message: - Messaggio: + Messaggio: Comment: - Megjegyzés: + Commento: Transaction ID: - + ID della transazione: Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. A frissen generált érméket csak 120 blokkal később tudod elkölteni. Ez a blokk nyomban szétküldésre került a hálózatba, amint legeneráltad, hogy hozzáadhassák a blokklánchoz. Ha nem kerül be a láncba, úgy az állapota "elutasítva"-ra módosul, és nem költheted el az érméket. Ez akkor következhet be időnként, ha egy másik csomópont mindössze néhány másodperc különbséggel generált le egy blokkot a tiédhez képest. - - - %1/unconfirmed - %1/non confermato - TransactionDescDialog @@ -1476,16 +1476,6 @@ Indirizzo: %4 TransactionView - - - Edit label - Modifica l'etichetta - - - - Export Transaction Data - Esporta i dati della transazione - Comma separated file (*.csv) @@ -1496,30 +1486,15 @@ Indirizzo: %4 Confirmed Confermato - - - Date - Data - Address Indirizzo - - ID - ID - - - - Show details... - Mostra i dettagli... - - - - Copy amount - Copia l'importo + + to + a @@ -1531,6 +1506,11 @@ Indirizzo: %4 Amount Importo + + + Label + Etichetta + Error exporting @@ -1546,6 +1526,37 @@ Indirizzo: %4 Range: Intervallo: + + + Show details... + Mostra i dettagli... + + + + + All + Tutti + + + + Today + Oggi + + + + This week + Questa settimana + + + + This month + Questo mese + + + + Last month + Il mese scorso + This year @@ -1602,40 +1613,29 @@ Indirizzo: %4 Copia l'etichetta - - This month - Questo mese - - - - - All - Tutti - - - - Today - Oggi + + Edit label + Modifica l'etichetta - - This week - Questa settimana + + Export Transaction Data + Esporta i dati della transazione - - Last month - Il mese scorso + + Date + Data - - to - a + + ID + ID - - Label - Etichetta + + Copy amount + Copia l'importo @@ -1649,45 +1649,109 @@ Indirizzo: %4 bitcoin-core - - Usage: - Utilizzo: + + Bitcoin version + Versione di Bitcoin + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + How thorough the block verification is (0-6, default: 1) + + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Non è possibile ottenere i dati sulla directory %s. Probabilmente Bitcoin è già in esecuzione. Loading addresses... Caricamento indirizzi... - - - Rescanning... - Ripetere la scansione... - Loading block index... Caricamento dell'indice del blocco... + + + Loading wallet... + Caricamento portamonete... + + + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Done loading + Caricamento completato + Invalid -proxy address Indirizzo -proxy non valido - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Attenzione: si prega di controllare che la data del computer e l'ora siano corrette. Se il vostro orologio è sbagliato Bitcoin non funziona correttamente. + + Invalid amount for -paytxfee=<amount> + Importo non valido per -paytxfee=<amount> - - List commands - Lista comandi - + + 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. - - Get help for a command - Aiuto su un comando + + Error: CreateThread(StartNode) failed + Errore: CreateThread(StartNode) non riuscito + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Impossibile collegarsi alla porta %d su questo computer. Probabilmente Bitcoin è già in esecuzione. + + + + Send command to -server or bitcoind + Manda il comando a -server o bitcoind @@ -1720,11 +1784,6 @@ Indirizzo: %4 Non generare Bitcoin - - - Show splash screen on startup (default: 1) - Mostra finestra di presentazione all'avvio (default: 1) - Specify data directory @@ -1738,113 +1797,124 @@ Indirizzo: %4 - - 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 + + Set database cache size in megabytes (default: 25) + Imposta la dimensione cache del database in megabyte (default: 25) - - Find peers using internet relay chat (default: 0) - + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Ascolta le connessioni JSON-RPC su <porta> (default: 8333 o testnet: 18333) - - Accept connections from outside (default: 1) - + + beta + beta - - Set language, for example "de_DE" (default: system locale) - + + Fee per KB to add to transactions you send + Commissione per KB da aggiungere alle transazioni in uscita - - Find peers using DNS lookup (default: 1) - + + Password for JSON-RPC connections + Password per connessioni JSON-RPC + - - Use Universal Plug and Play to map the listening port (default: 1) - UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 1) + + Set key pool size to <n> (default: 100) + Impostare la quantità di chiavi di riserva a <n> (default: 100) + - - Use Universal Plug and Play to map the listening port (default: 0) - UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 0) + + Server private key (default: server.pem) + Chiave privata del server (default: server.pem) + - - Execute command when the best block changes (%s in cmd is replaced by block hash) - + + Error loading wallet.dat: Wallet corrupted + Errore caricamento wallet.dat: Wallet corrotto - - How thorough the block verification is (0-6, default: 1) - + + Listen for JSON-RPC connections on <port> (default: 8332) + Attendi le connessioni JSON-RPC su <porta> (default: 8332) + - - Cannot downgrade wallet - + + Send commands to node running on <ip> (default: 127.0.0.1) + Inviare comandi al nodo in esecuzione su <ip> (default: 127.0.0.1) + - - Cannot initialize keypool - + + Rescan the block chain for missing wallet transactions + Ripeti analisi della catena dei blocchi per cercare le transazioni mancanti dal portamonete + - - Cannot write default address - + + Server certificate file (default: server.cert) + File certificato del server (default: server.cert) + - - beta - beta + + Upgrade wallet to latest format + Aggiorna il wallet all'ultimo formato - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Ascolta le connessioni JSON-RPC su <porta> (default: 8333 o testnet: 18333) + + Use OpenSSL (https) for JSON-RPC connections + Utilizzare OpenSSL (https) per le connessioni JSON-RPC + - - Maintain at most <n> connections to peers (default: 125) - Mantieni al massimo <n> connessioni ai peer (default: 125) + + How many blocks to check at startup (default: 2500, 0 = all) + Quanti blocchi da controllare all'avvio (default: 2500, 0 = tutti) - - Threshold for disconnecting misbehaving peers (default: 100) - Soglia di disconnessione dei peer di cattiva qualità (default: 100) + + This help message + Questo messaggio di aiuto + - - 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 (default: 86400) + + Error loading blkindex.dat + Errore caricamento blkindex.dat - - Start minimized - Parti in icona - + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Errore caricamento wallet.dat: il wallet richiede una versione nuova di Bitcoin - - Accept command line and JSON-RPC commands - Accetta da linea di comando e da comandi JSON-RPC - + + Error loading wallet.dat + Errore caricamento wallet.dat - - Connect through socks4 proxy - Connessione tramite socks4 proxy + + Connect only to the specified node + Connetti solo al nodo specificato - - Allow DNS lookups for addnode and connect - Consenti ricerche DNS per aggiungere nodi e collegare - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Buffer di ricezione massimo per connessione, <n>*1000 byte (default: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Buffer di invio massimo per connessione, <n>*1000 byte (default: 10000) @@ -1852,132 +1922,96 @@ Indirizzo: %4 Invia le informazioni di trace/debug al debugger - - Username for JSON-RPC connections - Nome utente per connessioni JSON-RPC - + + Usage: + Utilizzo: - - Password for JSON-RPC connections - Password per connessioni JSON-RPC - + + Rescanning... + Ripetere la scansione... - - Allow JSON-RPC connections from specified IP address - Consenti connessioni JSON-RPC dall'indirizzo IP specificato - + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Attenzione: si prega di controllare che la data del computer e l'ora siano corrette. Se il vostro orologio è sbagliato Bitcoin non funziona correttamente. - - Set key pool size to <n> (default: 100) - Impostare la quantità di chiavi di riserva a <n> (default: 100) - + + Warning: Disk space is low + Attenzione: lo spazio su disco è scarso - - Server certificate file (default: server.cert) - File certificato del server (default: server.cert) + + List commands + Lista comandi - - Server private key (default: server.pem) - Chiave privata del server (default: server.pem) + + Get help for a command + Aiuto su un comando - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Cifrari accettabili (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Start minimized + Parti in icona - - Error loading wallet.dat: Wallet corrupted - Errore caricamento wallet.dat: Wallet corrotto - - - - Wallet needed to be rewritten: restart Bitcoin to complete - Il portamonete deve essere riscritto: riavviare Bitcoin per completare + + Show splash screen on startup (default: 1) + Mostra finestra di presentazione all'avvio (default: 1) - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -Opzioni SSL: (vedi il wiki di Bitcoin per le istruzioni di configurazione SSL) + + Connect through socks4 proxy + Connessione tramite socks4 proxy - - Error loading addr.dat - Errore caricamento addr.dat - - - - Bitcoin version - Versione di Bitcoin - - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Non è possibile ottenere i dati sulla directory %s. Probabilmente Bitcoin è già in esecuzione. - - - - Send command to -server or bitcoind - Manda il comando a -server o bitcoind + + Allow DNS lookups for addnode and connect + Consenti ricerche DNS per aggiungere nodi e collegare - - Loading wallet... - Caricamento portamonete... + + Maintain at most <n> connections to peers (default: 125) + Mantieni al massimo <n> connessioni ai peer (default: 125) - - Done loading - Caricamento completato + + 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 - - Invalid amount for -paytxfee=<amount> - Importo non valido per -paytxfee=<amount> + + Threshold for disconnecting misbehaving peers (default: 100) + Soglia di disconnessione dei peer di cattiva qualità (default: 100) - - 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. + + 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 (default: 86400) - - Error: CreateThread(StartNode) failed - Errore: CreateThread(StartNode) non riuscito + + Use Universal Plug and Play to map the listening port (default: 1) + UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 1) - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Impossibile collegarsi alla porta %d su questo computer. Probabilmente Bitcoin è già in esecuzione. + + Use Universal Plug and Play to map the listening port (default: 0) + UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 0) - - Connect only to the specified node - Connetti solo al nodo specificato + + Accept command line and JSON-RPC commands + Accetta da linea di comando e da comandi JSON-RPC - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Buffer di ricezione massimo per connessione, <n>*1000 byte (default: 10000) - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Buffer di invio massimo per connessione, <n>*1000 byte (default: 10000) - Run in the background as a daemon and accept commands @@ -2006,74 +2040,40 @@ Opzioni SSL: (vedi il wiki di Bitcoin per le istruzioni di configurazione SSL) Invia le informazioni di trace/debug alla console invece che al file debug.log - - Listen for JSON-RPC connections on <port> (default: 8332) - Attendi le connessioni JSON-RPC su <porta> (default: 8332) - - - - - Send commands to node running on <ip> (default: 127.0.0.1) - Inviare comandi al nodo in esecuzione su <ip> (default: 127.0.0.1) + + Username for JSON-RPC connections + Nome utente per connessioni JSON-RPC - - Rescan the block chain for missing wallet transactions - Ripeti analisi della catena dei blocchi per cercare le transazioni mancanti dal portamonete + + Allow JSON-RPC connections from specified IP address + Consenti connessioni JSON-RPC dall'indirizzo IP specificato - - Use OpenSSL (https) for JSON-RPC connections - Utilizzare OpenSSL (https) per le connessioni JSON-RPC + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +Opzioni SSL: (vedi il wiki di Bitcoin per le istruzioni di configurazione SSL) - - This help message - Questo messaggio di aiuto + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Cifrari accettabili (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Error loading blkindex.dat - Errore caricamento blkindex.dat - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Errore caricamento wallet.dat: il wallet richiede una versione nuova di Bitcoin - - - - Error loading wallet.dat - Errore caricamento wallet.dat - - - - Warning: Disk space is low - Attenzione: lo spazio su disco è scarso - - - - Set database cache size in megabytes (default: 25) - Imposta la dimensione cache del database in megabyte (default: 25) - - - - Fee per KB to add to transactions you send - Commissione per KB da aggiungere alle transazioni in uscita - - - - How many blocks to check at startup (default: 2500, 0 = all) - Quanti blocchi da controllare all'avvio (default: 2500, 0 = tutti) + + Error loading addr.dat + Errore caricamento addr.dat - - Upgrade wallet to latest format - Aggiorna il wallet all'ultimo formato + + Wallet needed to be rewritten: restart Bitcoin to complete + Il portamonete deve essere riscritto: riavviare Bitcoin per completare diff --git a/src/qt/locale/bitcoin_lt.ts b/src/qt/locale/bitcoin_lt.ts index 43f169fddd..aadb35ad64 100644 --- a/src/qt/locale/bitcoin_lt.ts +++ b/src/qt/locale/bitcoin_lt.ts @@ -597,11 +597,6 @@ Suma: %2 Tipas: %3 Adresas: %4 - - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Piniginė <b>užšifruota</b> ir šiuo metu <b>atrakinta</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> @@ -627,6 +622,11 @@ Adresas: %4 There was an error trying to save the wallet data to the new location. + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Piniginė <b>užšifruota</b> ir šiuo metu <b>atrakinta</b> + A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -822,7 +822,7 @@ Adresas: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Įveskite bitkoinų adresą (pvz. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -899,6 +899,11 @@ Adresas: %4 OptionsDialog + + + Options + Opcijos + Main @@ -909,11 +914,6 @@ Adresas: %4 Display Ekranas - - - Options - Opcijos - OverviewPage @@ -937,6 +937,16 @@ Adresas: %4 0 0 + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Iš viso sandorių, įskaitant tuos kurie dar turi būti patvirtinti, ir jie dar nėra įskaičiuotii į einamosios sąskaitos balansą + + + + Total number of transactions in wallet + Bandras sandorių kiekis piniginėje + Unconfirmed: @@ -957,16 +967,6 @@ Adresas: %4 Your current balance Jūsų einamasis balansas - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Iš viso sandorių, įskaitant tuos kurie dar turi būti patvirtinti, ir jie dar nėra įskaičiuotii į einamosios sąskaitos balansą - - - - Total number of transactions in wallet - Bandras sandorių kiekis piniginėje - QRCodeDialog @@ -1028,6 +1028,31 @@ Adresas: %4 SendCoinsDialog + + + 123.456 BTC + 123.456 BTC + + + + Confirm the send action + Patvirtinti siuntimo veiksmą + + + + &Send + &Siųsti + + + + <b>%1</b> to %2 (%3) + <b>%1</b> to %2 (%3) + + + + Confirm send coins + Patvirtinti siuntimui monetas + @@ -1065,31 +1090,6 @@ Adresas: %4 Balance: Balansas: - - - 123.456 BTC - 123.456 BTC - - - - Confirm the send action - Patvirtinti siuntimo veiksmą - - - - &Send - &Siųsti - - - - <b>%1</b> to %2 (%3) - <b>%1</b> to %2 (%3) - - - - Confirm send coins - Patvirtinti siuntimui monetas - Are you sure you want to send %1? @@ -1409,9 +1409,9 @@ Adresas: %4 Mined balance will be available in %n more blocks - Išgautas balansas bus pasiekiamas po %n bloko - Išgautas balansas bus pasiekiamas po %n blokų - Išgautas balansas bus pasiekiamas po %n blokų + + + @@ -1654,6 +1654,101 @@ Adresas: %4 bitcoin-core + + + Specify pid file (default: bitcoind.pid) + Nurodyti pid failą (pagal nutylėjimą: bitcoind.pid) + + + + Generate coins + Sukurti monetas + + + + Don't generate coins + Neišgavinėti monetų + + + + Username for JSON-RPC connections + Vartotojo vardas JSON-RPC jungimuisi + + + + This help message + Pagelbos žinutė + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Negali gauti duomenų katalogo %s rakto. Bitcoin tikriausiai jau veikia. + + + + Loading addresses... + Užkraunami adresai... + + + + Error loading blkindex.dat + blkindex.dat pakrovimo klaida + + + + Error loading wallet.dat: Wallet corrupted + wallet.dat pakrovimo klaida, wallet.dat sugadintas + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + wallet.dat pakrovimo klaida, wallet.dat reikalauja naujasnės Bitcoin versijos + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Piniginė turi būti prrašyta: įvykdymui perkraukite Bitcoin + + + + Error loading wallet.dat + wallet.dat pakrovimo klaida + + + + Loading block index... + Užkraunami blokų indeksai... + + + + Loading wallet... + Užkraunama piniginė... + + + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Done loading + Pakrovimas baigtas + + + + Rescanning... + Peržiūra + Bitcoin version @@ -1689,21 +1784,6 @@ Adresas: %4 Specify configuration file (default: bitcoin.conf) Nurodyti konfigūracijos failą (pagal nutylėjimąt: bitcoin.conf) - - - Specify pid file (default: bitcoind.pid) - Nurodyti pid failą (pagal nutylėjimą: bitcoind.pid) - - - - Generate coins - Sukurti monetas - - - - Don't generate coins - Neišgavinėti monetų - Start minimized @@ -1749,36 +1829,16 @@ Adresas: %4 Maintain at most <n> connections to peers (default: 125) Palaikyti ne daugiau <n> jungčių kolegoms (pagal nutylėjimą: 125) - - - Connect only to the specified node - Prisijungti tik prie nurodyto mazgo - - - - Threshold for disconnecting misbehaving peers (default: 100) - Atjungimo dėl netinkamo kolegų elgesio riba (pagal nutylėjimą: 100) - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Sekundžių kiekis eikiamas palaikyti ryšį dėl lygiarangių nestabilumo (pagal nutylėjimą: 86.400) - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maksimalus buferis priėmimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 10000) - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maksimalus buferis siuntimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 10000) - 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 + + + Connect only to the specified node + Prisijungti tik prie nurodyto mazgo + Find peers using internet relay chat (default: 0) @@ -1799,6 +1859,26 @@ Adresas: %4 Find peers using DNS lookup (default: 1) + + + Threshold for disconnecting misbehaving peers (default: 100) + Atjungimo dėl netinkamo kolegų elgesio riba (pagal nutylėjimą: 100) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Sekundžių kiekis eikiamas palaikyti ryšį dėl lygiarangių nestabilumo (pagal nutylėjimą: 86.400) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maksimalus buferis priėmimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maksimalus buferis siuntimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 10000) + Use Universal Plug and Play to map the listening port (default: 1) @@ -1849,11 +1929,6 @@ Adresas: %4 Send trace/debug info to debugger Siųsti sekimo/derinimo info derintojui - - - Username for JSON-RPC connections - Vartotojo vardas JSON-RPC jungimuisi - Password for JSON-RPC connections @@ -1930,91 +2005,11 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Priimtini šifrai (pagal nutylėjimą: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - This help message - Pagelbos žinutė - - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Negali gauti duomenų katalogo %s rakto. Bitcoin tikriausiai jau veikia. - - - - Loading addresses... - Užkraunami adresai... - Error loading addr.dat addr.dat pakrovimo klaida - - - Error loading blkindex.dat - blkindex.dat pakrovimo klaida - - - - Error loading wallet.dat: Wallet corrupted - wallet.dat pakrovimo klaida, wallet.dat sugadintas - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - wallet.dat pakrovimo klaida, wallet.dat reikalauja naujasnės Bitcoin versijos - - - - Wallet needed to be rewritten: restart Bitcoin to complete - Piniginė turi būti prrašyta: įvykdymui perkraukite Bitcoin - - - - Error loading wallet.dat - wallet.dat pakrovimo klaida - - - - Warning: Disk space is low - Įspėjimas: nepakanka vietos diske - - - - Loading block index... - Užkraunami blokų indeksai... - - - - Loading wallet... - Užkraunama piniginė... - - - - Cannot downgrade wallet - - - - - Cannot initialize keypool - - - - - Cannot write default address - - - - - Done loading - Pakrovimas baigtas - - - - Rescanning... - Peržiūra - Invalid -proxy address @@ -2050,5 +2045,10 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) beta beta + + + Warning: Disk space is low + Įspėjimas: nepakanka vietos diske + diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index 5565860706..af25266604 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -67,17 +67,12 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &Copy to Clipboard - &Kopier til utklippstavle - - - - Show &QR Code - Vis &QR Kode + &Kopier til utklippstavle - - &Sign Message - &Signér Melding + + Sign a message to prove you own this address + Signér en melding for å bevise at du eier denne adressen @@ -90,30 +85,25 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &Slett - - Sign a message to prove you own this address - Signér en melding for å bevise at du eier denne adressen + + &Sign Message + &Signér Melding - - Export Address Book Data - Eksporter adressebok + + Show &QR Code + Vis &QR Kode - - Comma separated file (*.csv) - Kommaseparert fil (*.csv) + + Copy address + Kopier adresse Copy label Kopier merkelapp - - - Copy address - Kopier adresse - Edit @@ -124,11 +114,21 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Delete Slett + + + Export Address Book Data + Eksporter adressebok + Error exporting Feil ved eksportering + + + Comma separated file (*.csv) + Kommaseparert fil (*.csv) + Could not write to file %1. @@ -137,6 +137,11 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i AddressTableModel + + + Address + Adresse + (no label) @@ -147,26 +152,13 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Label Merkelapp - - - Address - Adresse - AskPassphraseDialog - - - - - - Wallet encryption failed - Kryptering av lommebok feilet - Dialog - Dialog + Dialog @@ -178,15 +170,25 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i New passphrase Ny adgangsfrase + + + Repeat new passphrase + Gjenta ny adgangsfrase + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Skriv inn den nye adgangsfrasen for lommeboken.<br/>Vennligst bruk en adgangsfrase med <b>10 eller flere tilfeldige tegn</b>, eller <b>åtte eller flere ord</b>. + Decrypt wallet Dekrypter lommebok - - Repeat new passphrase - Gjenta ny adgangsfrase + + TextLabel + Merkelapp @@ -194,14 +196,33 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Krypter lommebok - - Confirm wallet encryption - Bekreft kryptering av lommebok + + This operation needs your wallet passphrase to unlock the wallet. + Denne operasjonen krever adgangsfrasen til lommeboken for å låse den opp. - - TextLabel - Merkelapp + + This operation needs your wallet passphrase to decrypt the wallet. + Denne operasjonen krever adgangsfrasen til lommeboken for å dekryptere den. + + + + + Wallet encrypted + Lommebok kryptert + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. + + + + + + + Wallet encryption failed + Kryptering av lommebok feilet @@ -214,27 +235,17 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i The supplied passphrases do not match. De angitte adgangsfrasene er ulike. - - - Wallet unlock failed - Opplåsing av lommebok feilet - - - - - - The passphrase entered for the wallet decryption was incorrect. - Adgangsfrasen angitt for dekryptering av lommeboken var feil. - Wallet decryption failed Dekryptering av lommebok feilet - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ADVARSEL: Hvis du krypterer lommeboken og mister adgangsfrasen vil du <b>MISTE ALLE DINE BITCOINS</b>! +Er du sikker på at du vil kryptere lommeboken? @@ -252,51 +263,40 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Skriv inn gammel og ny adgangsfrase for lommeboken. - - - Warning: The Caps Lock key is on. - Advarsel: Caps lock tasten er på. - - - - This operation needs your wallet passphrase to unlock the wallet. - Denne operasjonen krever adgangsfrasen til lommeboken for å låse den opp. - - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Skriv inn den nye adgangsfrasen for lommeboken.<br/>Vennligst bruk en adgangsfrase med <b>10 eller flere tilfeldige tegn</b>, eller <b>åtte eller flere ord</b>. + + Wallet unlock failed + Opplåsing av lommebok feilet - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ADVARSEL: Hvis du krypterer lommeboken og mister adgangsfrasen vil du <b>MISTE ALLE DINE BITCOINS</b>! -Er du sikker på at du vil kryptere lommeboken? + + + + The passphrase entered for the wallet decryption was incorrect. + Adgangsfrasen angitt for dekryptering av lommeboken var feil. - - This operation needs your wallet passphrase to decrypt the wallet. - Denne operasjonen krever adgangsfrasen til lommeboken for å dekryptere den. + + Wallet passphrase was successfully changed. + Adgangsfrase for lommebok endret. - - - Wallet encrypted - Lommebok kryptert + + + Warning: The Caps Lock key is on. + Advarsel: Caps lock tasten er på. - - Wallet passphrase was successfully changed. - Adgangsfrase for lommebok endret. + + Confirm wallet encryption + Bekreft kryptering av lommebok BitcoinGUI - - Browse transaction history - Vis transaksjonshistorikk + + &Address Book + &Adressebok @@ -304,63 +304,60 @@ Er du sikker på at du vil kryptere lommeboken? Rediger listen over adresser og deres merkelapper - - Show the list of addresses for receiving payments - Vis listen over adresser for mottak av betalinger + + &Receive coins + &Motta bitcoins - - E&xit - &Avslutt + + Change the passphrase used for wallet encryption + Endre adgangsfrasen brukt for kryptering av lommebok - - Tabs toolbar - Verktøylinje for faner + + &Overview + &Oversikt - - - Synchronizing with network... - Synkroniserer med nettverk... + + &Send coins + &Send bitcoins - - Sign &message - Signér &melding + + Send coins to a bitcoin address + Send bitcoins til en adresse - - - %n day(s) ago - - for %n dag siden - for %n dager siden - + + + &Settings + &Innstillinger - - Encrypt or decrypt wallet - Krypter eller dekrypter lommebok + + + Synchronizing with network... + Synkroniserer med nettverk... - - &Receive coins - &Motta bitcoins + + Show general overview of wallet + Vis generell oversikt over lommeboken - - &Send coins - &Send bitcoins + + Browse transaction history + Vis transaksjonshistorikk - - Quit application - Avslutt applikasjonen + + Show the list of addresses for receiving payments + Vis listen over adresser for mottak av betalinger - - Show information about Bitcoin - Vis informasjon om Bitcoin + + About &Qt + Om &Qt @@ -372,15 +369,13 @@ Er du sikker på at du vil kryptere lommeboken? Block chain synchronization in progress Synkronisering av blokk-kjede igang - - - &Overview - &Oversikt - - - - Show general overview of wallet - Vis generell oversikt over lommeboken + + + %n hour(s) ago + + for %n time siden + for %n timer siden + @@ -388,14 +383,29 @@ Er du sikker på at du vil kryptere lommeboken? &Transaksjoner - - &Address Book - &Adressebok + + E&xit + &Avslutt - - Send coins to a bitcoin address - Send bitcoins til en adresse + + &About %1 + &Om %1 + + + + &Export... + &Eksporter... + + + + Quit application + Avslutt applikasjonen + + + + Sign &message + Signér &melding @@ -403,19 +413,19 @@ Er du sikker på at du vil kryptere lommeboken? Bevis at du kontrollerer en adresse - - &About %1 - &Om %1 + + Show information about Bitcoin + Vis informasjon om Bitcoin - - About &Qt - Om &Qt + + Show information about Qt + Vis informasjon om Qt - - Modify configuration options for bitcoin - Endre oppsett for Bitcoin + + &Options... + &Innstillinger... @@ -423,14 +433,9 @@ Er du sikker på at du vil kryptere lommeboken? Lag &Sikkerhetskopi av Lommebok - - &Settings - &Innstillinger - - - - &Help - &Hjelp + + Tabs toolbar + Verktøylinje for faner @@ -442,41 +447,45 @@ Er du sikker på at du vil kryptere lommeboken? [testnet] [testnett] - - - %n active connection(s) to Bitcoin network - - %n aktiv forbindelse til Bitcoin-nettverket - %n aktive forbindelser til Bitcoin-nettverket - + + + Encrypt or decrypt wallet + Krypter eller dekrypter lommebok + + + + &File + &Fil Downloaded %1 blocks of transaction history. Lastet ned %1 blokker med transaksjonshistorikk. - - - %n second(s) ago - - for %n sekund siden - for %n sekunder siden - + + + &Encrypt Wallet + &Krypter Lommebok - - %n minute(s) ago + + %n active connection(s) to Bitcoin network - for %n minutt siden - for %n minutter siden + %n aktiv forbindelse til Bitcoin-nettverket + %n aktive forbindelser til Bitcoin-nettverket + + + Catching up... + Kommer ajour... + - - %n hour(s) ago + + %n day(s) ago - for %n time siden - for %n timer siden + for %n dag siden + for %n dager siden @@ -484,31 +493,21 @@ Er du sikker på at du vil kryptere lommeboken? Up to date Ajour - - - Catching up... - Kommer ajour... - - - - Last received block was generated %1. - Siste mottatte blokk ble generert %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 transaksjonen overstiger størrelsesbegrensningen. Du kan likevel sende den med et gebyr på %1, som går til nodene som prosesserer transaksjonen din og støtter nettverket. Vil du betale gebyret? - - - Sending... - Sender... - Sent transaction Sendt transaksjon + + + Incoming transaction + Innkommende transaksjon + Date: %1 @@ -532,6 +531,11 @@ Adresse: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> Lommeboken er <b>kryptert</b> og for tiden <b>låst</b> + + + Modify configuration options for bitcoin + Endre innstillinger for bitcoin + Open &Bitcoin @@ -542,56 +546,36 @@ Adresse: %4 Show the Bitcoin window Vis Bitcoin-vinduet - - - &Export... - &Eksporter... - - - - &Encrypt Wallet - &Krypter Lommebok - &Change Passphrase &Endre Adgangsfrase - - - Change the passphrase used for wallet encryption - Endre adgangsfrasen brukt for kryptering av lommebok - - - - Show information about Qt - Vis informasjon om Qt - - - - &Options... - &Innstillinger... - Export the data in the current tab to a file Eksporter data fra nåværende fane til fil - - - &File - &Fil - Backup wallet to another location Sikkerhetskopiér lommebok til annet sted + + + &Help + &Hjelp + bitcoin-qt bitcoin-qt + + + Downloaded %1 of %2 blocks of transaction history. + Lastet ned %1 av %2 blokker med transaksjonshistorikk. + Backup Wallet @@ -612,15 +596,31 @@ Adresse: %4 There was an error trying to save the wallet data to the new location. En feil oppstod ved lagring av lommebok til nytt sted + + + %n minute(s) ago + + for %n minutt siden + for %n minutter siden + + - - Incoming transaction - Innkommende transaksjon + + Last received block was generated %1. + Siste mottatte blokk ble generert %1. + + + + %n second(s) ago + + for %n sekund siden + for %n sekunder siden + - - Downloaded %1 of %2 blocks of transaction history. - Lastet ned %1 av %2 blokker med transaksjonshistorikk. + + Sending... + Sender... @@ -643,12 +643,12 @@ Adresse: %4 &Display addresses in transaction list - &Vis adresser i transaksjonslisten + &Vis adresser i transaksjonslisten Whether to show Bitcoin addresses in the transaction list - + Om Bitcoin-adresser skal vises i transaksjonslisten eller ikke @@ -771,21 +771,6 @@ Adresse: %4 Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Koble til Bitcoin nettverket gjennom en SOCKS4 mellomtjener (f.eks. for tilkobling gjennom Tor) - - - Port of the proxy (e.g. 1234) - Port for mellomtjener (f.eks. 1234) - - - - Pay transaction &fee - Betal transaksjons&gebyr - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. - Proxy &IP: @@ -801,6 +786,21 @@ Adresse: %4 &Port: &Port: + + + Port of the proxy (e.g. 1234) + Port for mellomtjener (f.eks. 1234) + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. + + + + Pay transaction &fee + Betal transaksjons&gebyr + MessagePage @@ -810,49 +810,14 @@ Adresse: %4 Melding - - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Du kan signere meldinger med dine adresser for å bevise at du eier dem. Ikke signér vage meldinger da phishing-angrep kan prøve å lure deg til å signere din identitet over til andre. Signér kun fullt detaljerte utsagn som du er enig i. + + Enter the message you want to sign here + Skriv inn meldingen du vil signere her - - The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adressen for signering av meldingen (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - - Choose adress from address book - Velg adresse fra adresseboken - - - - Alt+A - Alt+A - - - - Paste address from clipboard - Lim inn adresse fra utklippstavlen - - - - Alt+P - Alt+P - - - - Enter the message you want to sign here - Skriv inn meldingen du vil signere her - - - - Click "Sign Message" to get signature - Klikk "Signér Melding" for signatur - - - - Copy the current signature to the system clipboard - Kopier valgt signatur til utklippstavle + + Click "Sign Message" to get signature + Klikk "Signér Melding" for signatur @@ -891,6 +856,41 @@ Adresse: %4 Sign failed Signering feilet + + + You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + Du kan signere meldinger med dine adresser for å bevise at du eier dem. Ikke signér vage meldinger da phishing-angrep kan prøve å lure deg til å signere din identitet over til andre. Signér kun fullt detaljerte utsagn som du er enig i. + + + + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adressen for signering av meldingen (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Choose adress from address book + Velg adresse fra adresseboken + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Lim inn adresse fra utklippstavlen + + + + Alt+P + Alt+P + + + + Copy the current signature to the system clipboard + Kopier valgt signatur til utklippstavle + OptionsDialog @@ -899,64 +899,64 @@ Adresse: %4 Main Hoved - - - Options - Innstillinger - Display Visning + + + Options + Innstillinger + OverviewPage - - Balance: - Saldo: + + <b>Recent transactions</b> + <b>Siste transaksjoner</b> - - Number of transactions: - Antall transaksjoner: + + Your current balance + Din nåværende saldo + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Totalt antall ubekreftede transaksjoner som ikke telles med i saldo enda Unconfirmed: Ubekreftet - - - Wallet - Lommebok - Form Skjema - - Your current balance - Din nåværende saldo + + Wallet + Lommebok - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Totalt antall ubekreftede transaksjoner som ikke telles med i saldo enda + + Balance: + Saldo: + + + + Number of transactions: + Antall transaksjoner: Total number of transactions in wallet Totalt antall transaksjoner i lommeboken - - - <b>Recent transactions</b> - <b>Siste transaksjoner</b> - 0 @@ -981,9 +981,14 @@ Adresse: %4 Merkelapp: - - Message: - Melding: + + Error encoding URI into QR Code. + Feil ved koding av URI i QR kode. + + + + Save Image... + @@ -1006,14 +1011,9 @@ Adresse: %4 BTC - - Error encoding URI into QR Code. - Feil ved koding av URI i QR kode. - - - - Save Image... - + + Message: + Melding: @@ -1023,11 +1023,31 @@ Adresse: %4 SendCoinsDialog + + + Confirm the send action + Bekreft sending + + + + Balance: + Saldo: + + + + Send to multiple recipients at once + Send til flere enn én mottaker + &Add recipient... &Legg til mottaker... + + + Remove all transaction fields + Fjern alle transaksjonsfelter + Clear all @@ -1038,31 +1058,48 @@ Adresse: %4 123.456 BTC 123.456 BTC - - - Confirm the send action - Bekreft sending - &Send &Send - - - <b>%1</b> to %2 (%3) - <b>%1</b> til %2 (%3) - Confirm send coins Bekreft sending av bitcoins + + + Are you sure you want to send %1? + Er du sikker på at du vil sende %1? + and og + + + + + + + + + + Send Coins + Send Bitcoins + + + + <b>%1</b> to %2 (%3) + <b>%1</b> til %2 (%3) + + + + The recipient address is not valid, please recheck. + Adresse for mottaker er ugyldig. + The amount to pay must be larger than 0. @@ -1091,63 +1128,41 @@ Adresse: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Feil: Transaksjonen ble avvist. Dette kan skje hvis noen av myntene i lommeboken allerede var brukt, f.eks. hvis du kopierte wallet.dat og mynter ble brukt i kopien uten å bli markert brukt her. - - - - - - - - - - - Send Coins - Send Bitcoins - - - - Send to multiple recipients at once - Send til flere enn én mottaker + Feil: Transaksjonen ble avvist. Dette kan skje om noe av beløpet allerede var brukt, f.eks. hvis du kopierte wallet.dat og noen bitcoins ble brukt i kopien men ikke ble markert som brukt her. + + + SendCoinsEntry - - Remove all transaction fields - Fjern alle transaksjonsfelter + + Form + Skjema - - Balance: - Saldo: + + Pay &To: + Betal &Til: - - Are you sure you want to send %1? - Er du sikker på at du vil sende %1? + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adressen betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - The recipient address is not valid, please recheck. - Adresse for mottaker er ugyldig. + + Alt+A + Alt+A - - - SendCoinsEntry - - Form - Skjema + + Remove this recipient + Fjern denne mottakeren A&mount: &Beløp: - - - Pay &To: - Betal &Til: - @@ -1174,21 +1189,6 @@ Adresse: %4 Alt+P Alt+P - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adressen betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - - Alt+A - Alt+A - - - - Remove this recipient - Fjern denne mottakeren - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1197,6 +1197,11 @@ Adresse: %4 TransactionDesc + + + %1 confirmations + %1 bekreftelser + Open for %1 blocks @@ -1207,26 +1212,6 @@ Adresse: %4 Open until %1 Åpen til %1 - - - %1/unconfirmed - %1/ubekreftet - - - - %1 confirmations - %1 bekreftelser - - - - , has not been successfully broadcast yet - , har ikke blitt kringkastet uten problemer enda. - - - - unknown - ukjent - %1/offline? @@ -1235,27 +1220,12 @@ Adresse: %4 <b>Status:</b> - - - - - , broadcast through %1 node - , kringkast gjennom %1 node - - - - , broadcast through %1 nodes - , kringkast gjennom %1 noder - - - - <b>Date:</b> - <b>Dato:</b> + <b>Status:</b> - - <b>Source:</b> Generated<br> - <b>Kilde:</b> Generert<br> + + , has not been successfully broadcast yet + , har ikke blitt kringkastet uten problemer enda. @@ -1293,6 +1263,36 @@ Adresse: %4 (%1 matures in %2 more blocks) (%1 modnes om %2 flere blokker) + + + %1/unconfirmed + %1/ubekreftet + + + + , broadcast through %1 node + , kringkast gjennom %1 node + + + + , broadcast through %1 nodes + , kringkast gjennom %1 noder + + + + <b>Date:</b> + <b>Dato:</b> + + + + <b>Source:</b> Generated<br> + <b>Kilde:</b> Generert<br> + + + + unknown + ukjent + (not accepted) @@ -1318,7 +1318,7 @@ Adresse: %4 Message: - Melding: + Melding: @@ -1351,6 +1351,34 @@ Adresse: %4 TransactionTableModel + + + Date + Dato + + + + Type + Type + + + + Address + Adresse + + + + Amount + Beløp + + + + Open for %n block(s) + + Åpen for %n blokk + Åpen for %n blokker + + Open until %1 @@ -1436,34 +1464,6 @@ Adresse: %4 Amount removed from or added to balance. Beløp fjernet eller lagt til saldo. - - - Amount - Beløp - - - - Date - Dato - - - - Type - Type - - - - Address - Adresse - - - - Open for %n block(s) - - Åpen for %n blokk - Åpen for %n blokker - - Mined balance will be available in %n more blocks @@ -1475,11 +1475,6 @@ Adresse: %4 TransactionView - - - This year - Dette året - Range... @@ -1490,51 +1485,6 @@ Adresse: %4 Received with Mottatt med - - - Copy amount - Kopiér beløp - - - - Amount - Beløp - - - - ID - ID - - - - Error exporting - Feil ved eksport - - - - Could not write to file %1. - Kunne ikke skrive til filen %1. - - - - Range: - Intervall: - - - - This week - Denne uken - - - - This month - Denne måneden - - - - Last month - Forrige måned - Sent to @@ -1575,50 +1525,40 @@ Adresse: %4 Copy label Kopier merkelapp - - - Edit label - Rediger merkelapp - Export Transaction Data Eksporter transaksjonsdata - - - Comma separated file (*.csv) - Kommaseparert fil (*.csv) - Confirmed Bekreftet - - Date - Dato + + Copy amount + Kopiér beløp - - Type - Type + + Amount + Beløp - - Label - Merkelapp + + ID + ID - - Address - Adresse + + Error exporting + Feil ved eksport - - to - til + + Could not write to file %1. + Kunne ikke skrive til filen %1. @@ -1626,106 +1566,101 @@ Adresse: %4 All Alle + + + Range: + Intervall: + Today I dag - - Show details... - Vis detaljer... + + to + til - - - WalletModel - - Sending... - Sender... - - - - bitcoin-core - - - Bitcoin version - Bitcoin versjon + + This week + Denne uken - - Get help for a command - Vis hjelpetekst for en kommando - - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kunne ikke låse datamappen %s. Bitcoin kjører sannsynligvis allerede. + + This month + Denne måneden - - Loading addresses... - Laster adresser... + + Last month + Forrige måned - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Lytt etter tilkoblinger på <port> (standardverdi: 8333 eller testnet: 18333) + + This year + Dette året - - Rescanning... - Leser gjennom... + + Edit label + Rediger merkelapp - - Options: - Innstillinger: + + Comma separated file (*.csv) + Kommaseparert fil (*.csv) - - Send command to -server or bitcoind - Send kommando til -server eller bitcoind + + Date + Dato - - Set database cache size in megabytes (default: 25) - Sett størrelse på mellomlager for database i megabytes (standardverdi: 25) + + Type + Type - - Specify configuration file (default: bitcoin.conf) - Angi konfigurasjonsfil (standardverdi: bitcoin.conf) + + Label + Merkelapp - - Threshold for disconnecting misbehaving peers (default: 100) - Grenseverdi for å koble fra noder med dårlig oppførsel (standardverdi: 100) + + Address + Adresse - - Usage: - Bruk: + + Show details... + Vis detaljer... + + + WalletModel - - Specify pid file (default: bitcoind.pid) - Angi pid-fil (standardverdi: bitcoind.pid) + + Sending... + Sender... + + + bitcoin-core - - Generate coins - Generér bitcoins + + Loading wallet... + Laster lommebok... - - Don't generate coins - Ikke generér bitcoins + + Set database cache size in megabytes (default: 25) + Sett størrelse på mellomlager for database i megabytes (standardverdi: 25) - - Show splash screen on startup (default: 1) - Vis splashskjerm ved oppstart (standardverdi: 1) + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Lytt etter tilkoblinger på <port> (standardverdi: 8333 eller testnet: 18333) @@ -1733,34 +1668,29 @@ Adresse: %4 Angi tidsavbrudd for forbindelse (i millisekunder) - - Maintain at most <n> connections to peers (default: 125) - Hold maks <n> koblinger åpne til andre noder (standardverdi: 125) - - - - Accept connections from outside (default: 1) - Ta imot tilkoblinger fra utsiden (standardverdi: 1) + + Add a node to connect to and attempt to keep the connection open + Legg til node for tilkobling og hold forbindelsen åpen - - Set language, for example "de_DE" (default: system locale) - Sett språk, for eksempel "nb_NO" (standardverdi: fra operativsystem) + + Find peers using internet relay chat (default: 0) + Finn andre noder via internet relay chat (standardverdi: 0) - - Find peers using DNS lookup (default: 1) - Finn andre noder gjennom DNS-oppslag (standardverdi: 1) + + Invalid amount for -paytxfee=<amount> + Ugyldig gebyrbeløp for -paytxfee=<beløp> - - Use Universal Plug and Play to map the listening port (default: 1) - Bruk UPnP for lytteport (standardverdi: 1) + + 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) - - Use Universal Plug and Play to map the listening port (default: 0) - Bruk UPnP for lytteport (standardverdi: 0) + + Error: CreateThread(StartNode) failed + Feil: CreateThread(StartNode) feilet @@ -1822,71 +1752,45 @@ Adresse: %4 This help message Denne hjelpemeldingen + + + Fee per KB to add to transactions you send + Gebyr per KB for transaksjoner du sender + Error loading blkindex.dat Feil ved lasting av blkindex.dat - - - Error loading wallet.dat: Wallet corrupted - Feil ved lasting av wallet.dat: Lommeboken er skadet - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Feil ved lasting av wallet.dat: Lommeboken krever en nyere versjon av Bitcoin - - - - Wallet needed to be rewritten: restart Bitcoin to complete - Lommeboken måtte skrives om: start Bitcoin på nytt for å fullføre - Error loading wallet.dat Feil ved lasting av wallet.dat - - 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 en transaksjon. - - - - Error: CreateThread(StartNode) failed - Feil: CreateThread(StartNode) feilet - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Klarer ikke binde til port %d på denne datamaskinen. Bitcoin kjører sannsynligvis allerede. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Advarsel: Vennligst sjekk at dato og klokke er riktig innstilt på datamaskinen. Hvis klokken er feil vil ikke Bitcoin fungere ordentlig. + + 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) - - beta - beta + + Upgrade wallet to latest format + Oppgradér lommebok til nyeste format - - Start minimized - Start minimert - + + How many blocks to check at startup (default: 2500, 0 = all) + Hvor mange blokker som skal sjekkes ved oppstart (standardverdi: 2500, 0 = alle) - - Specify data directory - Angi mappe for datafiler + + How thorough the block verification is (0-6, default: 1) + Hvor grundig verifisering av blokker gjøres (0-6, standardverdi: 1) - - Connect through socks4 proxy - Koble til gjennom socks4 proxy + + Cannot downgrade wallet + Kan ikke nedgradere lommebok @@ -1898,47 +1802,65 @@ Adresse: %4 Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maksimum sendebuffer per tilkobling, <n>*1000 bytes (standardverdi: 10000) + + + Bitcoin version + Bitcoin versjon + + + + Maintain at most <n> connections to peers (default: 125) + Hold maks <n> koblinger åpne til andre noder (standardverdi: 125) + + + + Options: + Innstillinger: + 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 + + Send command to -server or bitcoind + Send kommando til -server eller bitcoind - - Output extra debugging information - Gi ut ekstra debuginformasjon + + Specify configuration file (default: bitcoin.conf) + Angi konfigurasjonsfil (standardverdi: bitcoin.conf) - - Prepend debug output with timestamp - Sett tidsstempel på debugmeldinger + + Specify data directory + Angi mappe for datafiler - - Send trace/debug info to console instead of debug.log file - Send spor/debug informasjon til konsollet istedenfor debug.log filen + + Specify pid file (default: bitcoind.pid) + Angi pid-fil (standardverdi: bitcoind.pid) - - Send trace/debug info to debugger - Send spor/debug informasjon til debugger + + Threshold for disconnecting misbehaving peers (default: 100) + Grenseverdi for å koble fra noder med dårlig oppførsel (standardverdi: 100) - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL innstillinger: (se Bitcoin Wiki for instruksjoner om SSL oppsett) + + Usage: + Bruk: - - Error loading addr.dat - Feil ved lasting av addr.dat + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kunne ikke låse datamappen %s. Bitcoin kjører sannsynligvis allerede. + + + + Loading addresses... + Laster adresser... @@ -1946,9 +1868,9 @@ SSL innstillinger: (se Bitcoin Wiki for instruksjoner om SSL oppsett)Laster blokkindeks... - - Loading wallet... - Laster lommebok... + + Rescanning... + Leser gjennom... @@ -1956,20 +1878,71 @@ SSL innstillinger: (se Bitcoin Wiki for instruksjoner om SSL oppsett)Ferdig med lasting - - Invalid -proxy address - Ugyldig -proxy adresse for mellomtjener + + 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 en transaksjon. - - Invalid amount for -paytxfee=<amount> - Ugyldig gebyrbeløp for -paytxfee=<beløp> + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Klarer ikke binde til port %d på denne datamaskinen. Bitcoin kjører sannsynligvis allerede. + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Advarsel: Vennligst sjekk at dato og klokke er riktig innstilt på datamaskinen. Hvis klokken er feil vil ikke Bitcoin fungere ordentlig. List commands List opp kommandoer + + + beta + beta + + + + Invalid -proxy address + Ugyldig -proxy adresse for mellomtjener + + + + Generate coins + Generér bitcoins + + + + Get help for a command + Vis hjelpetekst for en kommando + + + + Warning: Disk space is low + Advarsel: Lite ledig diskplass + + + + Don't generate coins + Ikke generér bitcoins + + + + Start minimized + Start minimert + + + + + Show splash screen on startup (default: 1) + Vis splashskjerm ved oppstart (standardverdi: 1) + + + + Connect through socks4 proxy + Koble til gjennom socks4 proxy + Allow DNS lookups for addnode and connect @@ -1981,14 +1954,29 @@ SSL innstillinger: (se Bitcoin Wiki for instruksjoner om SSL oppsett)Koble kun til angitt node - - 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) + + Accept connections from outside (default: 1) + Ta imot tilkoblinger fra utsiden (standardverdi: 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) + + Set language, for example "de_DE" (default: system locale) + Sett språk, for eksempel "nb_NO" (standardverdi: fra operativsystem) + + + + Find peers using DNS lookup (default: 1) + Finn andre noder gjennom DNS-oppslag (standardverdi: 1) + + + + Use Universal Plug and Play to map the listening port (default: 1) + Bruk UPnP for lytteport (standardverdi: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Bruk UPnP for lytteport (standardverdi: 0) @@ -1996,14 +1984,36 @@ SSL innstillinger: (se Bitcoin Wiki for instruksjoner om SSL oppsett)Ta imot kommandolinje- og JSON-RPC-kommandoer - - Add a node to connect to and attempt to keep the connection open - Legg til node for tilkobling og hold forbindelsen åpen + + Use the test network + Bruk testnettverket - - Cannot downgrade wallet - Kan ikke nedgradere lommebok + + Output extra debugging information + Gi ut ekstra debuginformasjon + + + + Prepend debug output with timestamp + Sett tidsstempel på debugmeldinger + + + + 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 + Send spor/debug informasjon til debugger + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL innstillinger: (se Bitcoin Wiki for instruksjoner om SSL oppsett) @@ -2016,34 +2026,24 @@ SSL innstillinger: (se Bitcoin Wiki for instruksjoner om SSL oppsett)Kan ikke skrive standardadresse - - Warning: Disk space is low - Advarsel: Lite ledig diskplass - - - - Fee per KB to add to transactions you send - Gebyr per KB for transaksjoner du sender - - - - Find peers using internet relay chat (default: 0) - Finn andre noder via internet relay chat (standardverdi: 0) + + Error loading addr.dat + Feil ved lasting av addr.dat - - How many blocks to check at startup (default: 2500, 0 = all) - Hvor mange blokker som skal sjekkes ved oppstart (standardverdi: 2500, 0 = alle) + + Error loading wallet.dat: Wallet corrupted + Feil ved lasting av wallet.dat: Lommeboken er skadet - - How thorough the block verification is (0-6, default: 1) - Hvor grundig verifisering av blokker gjøres (0-6, standardverdi: 1) + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Feil ved lasting av wallet.dat: Lommeboken krever en nyere versjon av Bitcoin - - Upgrade wallet to latest format - Oppgradér lommebok til nyeste format + + Wallet needed to be rewritten: restart Bitcoin to complete + Lommeboken måtte skrives om: start Bitcoin på nytt for å fullføre diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index 34b302aa31..52862ab041 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -43,7 +43,7 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d These are your Bitcoin 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 uw Bitcoinadressen om betalingen mee te ontvangen. U kunt er voor kiezen om een uniek adres aan te maken voor elke afzender. Op deze manier kunt u bijhouden wie al aan u betaald heeft. + Dit zijn uw Bitcoin-adressen om betalingen te ontvangen. U kunt er voor kiezen om een adres aan te maken voor elke afzender. Op deze manier kunt u bijhouden wie al aan u betaald heeft. @@ -68,17 +68,7 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d &Copy to Clipboard - &Kopieer naar Klembord - - - - Show &QR Code - Toon &QR-Code - - - - &Sign Message - &Onderteken Bericht + &Kopieer naar Klembord @@ -90,31 +80,31 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d &Delete &Verwijder + + + &Sign Message + &Onderteken Bericht + + + + Show &QR Code + Toon &QR-Code + Sign a message to prove you own this address Onderteken een bericht om te bewijzen dat u dit adres bezit - - Export Address Book Data - Exporteer Gegevens van het Adresboek - - - - Comma separated file (*.csv) - Kommagescheiden bestand (*.csv) + + Copy address + Kopieer adres Copy label Kopieer label - - - Copy address - Kopieer adres - Edit @@ -126,23 +116,28 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Verwijder - - Error exporting - Fout bij exporteren + + Export Address Book Data + Exporteer Gegevens van het Adresboek + + + + Comma separated file (*.csv) + Kommagescheiden bestand (*.csv) Could not write to file %1. Kon niet schrijven naar bestand %1. + + + Error exporting + Fout bij exporteren + AddressTableModel - - - (no label) - (geen label) - Label @@ -153,36 +148,33 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Address Adres + + + (no label) + (geen label) + AskPassphraseDialog - - - - - - Wallet encryption failed - Portemonneeversleuteling mislukt - - - - Dialog - Dialoog - Enter passphrase Huidig wachtwoord + + + Unlock wallet + Open portemonnee + New passphrase Nieuwe wachtwoord - - Decrypt wallet - Ontsleutel portemonnee + + Change passphrase + Wijzig wachtwoord @@ -190,9 +182,9 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Herhaal wachtwoord - - Encrypt wallet - Versleutel portemonnee + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Vul een nieuw wachtwoord in voor uw portemonnee. <br/> Gebruik een wachtwoord van <b>10 of meer lukrake karakters</b>, of <b> acht of meer woorden</b> . @@ -200,32 +192,14 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d TekstLabel - - 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. + + Encrypt wallet + Versleutel portemonnee - - Wallet decryption failed - Portemonnee-ontsleuteling mislukt + + Dialog + Dialoog @@ -233,36 +207,35 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Wallet encrypted Portemonnee versleuteld - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. - Enter the old and new passphrase to the wallet. Vul uw oude en nieuwe portemonneewachtwoord in. - - Wallet passphrase was successfully changed. - Portemonneewachtwoord is met succes gewijzigd. + + Confirm wallet encryption + Bevestig versleuteling van de portemonnee - - - Warning: The Caps Lock key is on. - Waarschuwing: De Caps-Lock-toets staat aan. + + + + + Wallet encryption failed + Portemonneeversleuteling mislukt - - This operation needs your wallet passphrase to decrypt the wallet. - Deze operatie vereist uw portemonneewachtwoord om de portemonnee te ontsleutelen + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Portemonneeversleuteling mislukt door een interne fout, Uw portemonnee is niet versleuteld. - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Vul een nieuw wachtwoord in voor uw portemonnee. <br/> Gebruik een wachtwoord van <b>10 of meer lukrake karakters</b>, of <b> acht of meer woorden</b> . + + + + The passphrase entered for the wallet decryption was incorrect. + Het opgegeven wachtwoord voor de portemonnee-ontsleuteling is niet correct. @@ -270,19 +243,14 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Deze operatie vereist uw portemonneewachtwoord om de portemonnee te openen. - - Unlock wallet - Open portemonnee - - - - Change passphrase - Wijzig wachtwoord + + This operation needs your wallet passphrase to decrypt the wallet. + Deze operatie vereist uw portemonneewachtwoord om de portemonnee te ontsleutelen - - Confirm wallet encryption - Bevestig versleuteling van de portemonnee + + Decrypt wallet + Ontsleutel portemonnee @@ -291,18 +259,55 @@ Are you sure you wish to encrypt your wallet? WAARSCHUWING: Wanneer uw portemonnee wordt versleuteld en u verliest uw wachtwoord, dan verliest u<b>AL UW BITCOINS</b>! Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. + + + + + The supplied passphrases do not match. + De opgegeven wachtwoorden komen niet overeen + + + + Wallet unlock failed + Portemonnee openen mislukt + + + + Wallet decryption failed + Portemonnee-ontsleuteling mislukt + + + + Wallet passphrase was successfully changed. + Portemonneewachtwoord is met succes gewijzigd. + + + + + Warning: The Caps Lock key is on. + Waarschuwing: De Caps-Lock-toets staat aan. + BitcoinGUI - - Edit the list of stored addresses and labels - Bewerk de lijst van opgeslagen adressen en labels + + &Overview + &Overzicht - - Show the list of addresses for receiving payments - Toon lijst van adressen om betalingen mee te ontvangen + + Show general overview of wallet + Toon algemeen overzicht van de portemonnee + + + + &Transactions + &Transacties @@ -310,9 +315,14 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? &Verstuur munten - - Send coins to a bitcoin address - Verstuur munten naar een bitcoin-adres + + Change the passphrase used for wallet encryption + wijzig het wachtwoord voor uw portemonneversleuteling + + + + Bitcoin Wallet + Bitcoin-portemonnee @@ -320,14 +330,14 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Toon informatie over Qt - - Change the passphrase used for wallet encryption - wijzig het wachtwoord voor uw portemonneversleuteling + + &Change Passphrase + &Wijzig Wachtwoord - - Bitcoin Wallet - Bitcoin-portemonnee + + Sending... + Versturen... @@ -341,50 +351,55 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Bezig met blokkenketen-synchronisatie - - Export the data in the current tab to a file - Exporteer de data in de huidige tab naar een bestand - - - - Show general overview of wallet - Toon algemeen overzicht van de portemonnee - - - - &Transactions - &Transacties - - - - Browse transaction history - Blader door transactieverleden + + Browse transaction history + Blader door transactieverleden &Address Book &Adresboek + + + Edit the list of stored addresses and labels + Bewerk de lijst van opgeslagen adressen en labels + &Receive coins &Ontvang munten - - &Overview - &Overzicht + + Show the list of addresses for receiving payments + Toon lijst van adressen om betalingen mee te ontvangen Prove you control an address - + Bewijs dat u een adres bezit + + + + E&xit + &Afsluiten Quit application Programma afsluiten + + + &About %1 + &Over %1 + + + + &Options... + &Opties... + Show information about Bitcoin @@ -395,25 +410,30 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? About &Qt Over &Qt - - - &Options... - &Opties... - Show the Bitcoin window Toon Bitcoin-venster + + + &Export... + &Exporteer... + + + + Export the data in the current tab to a file + Exporteer de data in de huidige tab naar een bestand + &Encrypt Wallet &Versleutel Portemonnee - - &Change Passphrase - &Wijzig Wachtwoord + + Encrypt or decrypt wallet + Versleutel of ontsleutel portemonnee @@ -425,21 +445,26 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? &Help &Hulp + + + Backup wallet to another location + &Backup portemonnee naar een andere locatie + Tabs toolbar Tab-werkbalk + + + &File + &Bestand + Actions toolbar Actie-werkbalk - - - Backup wallet to another location - &Backup portemonnee naar een andere locatie - %n active connection(s) to Bitcoin network @@ -448,11 +473,6 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? %n actieve connecties naar Bitcoinnetwerk - - - [testnet] - [testnetwerk] - Downloaded %1 blocks of transaction history. @@ -466,11 +486,6 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? %n seconden geleden - - - Sign &message - &Onderteken Bericht - %n minute(s) ago @@ -487,6 +502,24 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? %n uur geleden + + + %n day(s) ago + + %n dag geleden + %n dagen geleden + + + + + Send coins to a bitcoin address + Verstuur munten naar een bitcoin-adres + + + + Sign &message + &Onderteken Bericht + Up to date @@ -497,11 +530,6 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Catching up... Aan het bijwerken... - - - &About %1 - &Over %1 - Last received block was generated %1. @@ -512,21 +540,6 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? 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? Deze transactie overschrijdt de groottelimiet. Om de transactie alsnog te versturen kunt u transactiekosten betalen van %1. Deze transactiekosten gaan naar de nodes die uw transactie verwerken en het helpt op deze manier bij het ondersteunen van het netwerk. Wilt u de transactiekosten betalen? - - - Modify configuration options for bitcoin - Wijzig instellingen van Bitcoin - - - - Open &Bitcoin - Open &Bitcoin - - - - bitcoin-qt - - Sent transaction @@ -551,9 +564,19 @@ Adres: %4 - - &Backup Wallet - Backup &Portemonnee + + Modify configuration options for bitcoin + Wijzig instellingen van Bitcoin + + + + Open &Bitcoin + Open &Bitcoin + + + + bitcoin-qt + bitcoin-qt @@ -565,11 +588,6 @@ Adres: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> Portemonnee is <b>versleuteld</b> en momenteel <b>gesloten</b> - - - E&xit - &Afsluiten - Backup Wallet @@ -580,6 +598,11 @@ Adres: %4 Wallet Data (*.dat) Portemonnee-data (*.dat) + + + &Backup Wallet + Backup &Portemonnee + Backup Failed @@ -591,32 +614,9 @@ Adres: %4 Er is een fout opgetreden bij het wegschrijven van de portemonnee-data naar de nieuwe locatie. - - &Export... - &Exporteer... - - - - Encrypt or decrypt wallet - Versleutel of ontsleutel portemonnee - - - - &File - &Bestand - - - - %n day(s) ago - - %n dag geleden - %n dagen geleden - - - - - Sending... - Versturen... + + [testnet] + [testnetwerk] @@ -649,7 +649,7 @@ Adres: %4 Whether to show Bitcoin addresses in the transaction list - Of Bitcoinadressen getoond worden in de transactielijst + Of Bitcoinadressen getoond worden in de transactielijst @@ -780,7 +780,7 @@ Adres: %4 IP address of the proxy (e.g. 127.0.0.1) - IP-adres van de proxy (bijv. 127.0.0.1) + IP-adres van de proxy (bijv. 127.0.0.1) @@ -792,16 +792,16 @@ Adres: %4 Port of the proxy (e.g. 1234) Poort waarop de proxy luistert (bijv. 1234) - - - Pay transaction &fee - Betaal &transactiekosten - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Optionele transactiekosten per kB die helpen om uw transacties snel te verwerken. De meeste transacties zijn 1 kB. Transactiekosten van 0,01 wordt aangeraden + + + Pay transaction &fee + Betaal &transactiekosten + MessagePage @@ -815,6 +815,38 @@ Adres: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. 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 voor de gek kunnen houden om zo uw identiteit te stelen. Onderteken alleen berichten waarmee u het volledig eens bent. + + + Sign a message to prove you own this address + Onderteken een bericht om te bewijzen dat u dit adres bezit + + + + &Sign Message + &Onderteken Bericht + + + + + + Error signing + Fout bij het ondertekenen + + + + %1 is not a valid address. + %1 is geen geldig adres. + + + + Private key for %1 is not available. + Geheime sleutel voor %1 is niet beschikbaar. + + + + Sign failed + Ondertekenen mislukt + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -845,61 +877,24 @@ Adres: %4 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 - Click "Sign Message" to get signature Klik "Onderteken Bericht" om de handtekening te verkrijgen - - Sign a message to prove you own this address - Onderteken een bericht om te bewijzen dat u dit adres bezit - - - - &Sign Message - &Onderteken Bericht + + Copy the current signature to the system clipboard + Kopieer de huidige handtekening naar het systeemklembord &Copy to Clipboard &Kopieer naar Klembord - - - - - Error signing - Fout bij het ondertekenen - - - - %1 is not a valid address. - %1 is geen geldig adres. - - - - Private key for %1 is not available. - Geheime sleutel voor %1 is niet beschikbaar. - - - - Sign failed - Ondertekenen mislukt - OptionsDialog - - - Options - Opties - Main @@ -910,6 +905,11 @@ Adres: %4 Display Beeldscherm + + + Options + Opties + OverviewPage @@ -929,9 +929,9 @@ Adres: %4 Aantal transacties: - - 0 - + + Unconfirmed: + Onbevestigd: @@ -939,19 +939,19 @@ Adres: %4 Portemonnee - - Unconfirmed: - Onbevestigd: + + Your current balance + Uw huidige saldo - - 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 zijn meegeteld in uw huidige saldo + + 0 + 0 - - Total number of transactions in wallet - Totaal aantal transacties in uw portemonnee + + 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 zijn meegeteld in uw huidige saldo @@ -959,9 +959,9 @@ Adres: %4 <b>Recente transacties</b> - - Your current balance - Uw huidige saldo + + Total number of transactions in wallet + Totaal aantal transacties in uw portemonnee @@ -971,30 +971,30 @@ Adres: %4 Request Payment Vraag betaling aan - - - &Save As... - &Opslaan Als... - PNG Images (*.png) PNG-Afbeeldingen (*.png) - - Dialog - Dialoog + + Amount: + Bedrag: - - QR Code - QR-code + + Message: + Bericht: - - Amount: - Bedrag: + + Error encoding URI into QR Code. + Fout tijdens encoderen URI in QR-code + + + + &Save As... + &Opslaan Als... @@ -1007,14 +1007,14 @@ Adres: %4 Label: - - Message: - Bericht: + + Dialog + Dialoog - - Error encoding URI into QR Code. - Fout tijdens encoderen URI in QR-code + + QR Code + QR-code @@ -1024,6 +1024,23 @@ Adres: %4 SendCoinsDialog + + + + + + + + + + Send Coins + Verstuur munten + + + + &Add recipient... + Voeg &ontvanger toe... + Clear all @@ -1044,68 +1061,51 @@ Adres: %4 Confirm the send action Bevestig de verstuuractie - - - &Send - &Verstuur - <b>%1</b> to %2 (%3) <b>%1</b> aan %2 (%3) + + + Confirm send coins + Bevestig versturen munten + Are you sure you want to send %1? Weet u zeker dat u %1 wil versturen? - - - - - - - - - Send Coins - Verstuur munten + + and + en + + + + The amount to pay must be larger than 0. + Het ingevoerde bedrag moet groter zijn dan 0. Send to multiple recipients at once Verstuur aan verschillende ontvangers ineens - - - &Add recipient... - Voeg &ontvanger toe... - Remove all transaction fields Verwijder alle transactievelden - - Confirm send coins - Bevestig versturen munten - - - - and - en + + &Send + &Verstuur 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. @@ -1170,11 +1170,6 @@ Adres: %4 Choose address from address book Kies adres uit adresboek - - - Alt+A - Alt+A - Paste address from clipboard @@ -1190,6 +1185,11 @@ Adres: %4 Remove this recipient Verwijder deze ontvanger + + + Alt+A + Alt+A + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1198,6 +1198,27 @@ Adres: %4 TransactionDesc + + + + <b>From:</b> + <b>Van:</b> + + + + Open until %1 + Openen totdat %1 + + + + %1/offline? + %1/niet verbonden? + + + + %1/unconfirmed + %1/onbevestigd + %1 confirmations @@ -1209,14 +1230,9 @@ Adres: %4 , is nog niet met succes uitgezonden - - <b>Status:</b> - <b>Status:</b> - - - - %1/offline? - %1/niet verbonden? + + unknown + onbekend @@ -1224,14 +1240,9 @@ Adres: %4 Openen voor %1 blokken - - Open until %1 - Open tot %1 - - - - %1/unconfirmed - %1/onbevestigd + + <b>Status:</b> + <b>Status:</b> @@ -1246,23 +1257,12 @@ Adres: %4 <b>Date:</b> - <b>Datum:</b> + <b>Datum:</b> <b>Source:</b> Generated<br> - <b>Bron:</b> Gegenereerd<br> - - - - - <b>From:</b> - <b>Van:</b> - - - - unknown - onbekend + <b>Bron:</b>Gegenereerd<br> @@ -1274,7 +1274,7 @@ Adres: %4 (yours, label: - (Uw adres, label: + (Uw adres, label: @@ -1314,12 +1314,12 @@ Adres: %4 <b>Net amount:</b> - <b>Netto bedrag:</b> + <b>Netto bedrag:</b> Message: - Bericht: + Bericht: @@ -1352,6 +1352,41 @@ Adres: %4 TransactionTableModel + + + Date + Datum + + + + Address + Adres + + + + Unconfirmed (%1 of %2 confirmations) + Onbevestigd (%1 van %2 bevestigd) + + + + 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 @@ -1397,11 +1432,6 @@ Adres: %4 Amount removed from or added to balance. Bedrag verwijderd van of toegevoegd aan saldo - - - Amount - Bedrag - Type @@ -1409,8 +1439,8 @@ Adres: %4 - Address - Adres + Amount + Bedrag @@ -1430,11 +1460,6 @@ Adres: %4 Offline (%1 confirmations) Niet verbonden (%1 bevestigingen) - - - Unconfirmed (%1 of %2 confirmations) - Onbevestigd (%1 van %2 bevestigd) - Confirmed (%1 confirmations) @@ -1448,48 +1473,28 @@ Adres: %4 Ontgonnen saldo komt beschikbaar na %n blokken + + + TransactionView - - 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! - - - - Received with - Ontvangen met - - - - Received from - Ontvangen van - - - - Date - Datum - - - - Generated but not accepted - Gegenereerd maar niet geaccepteerd + + This week + Deze week - - - TransactionView - - Could not write to file %1. - Kon niet schrijven naar bestand %1. + + This year + Dit jaar - - Range: - Bereik: + + Range... + Bereik... - - to - naar + + Received with + Ontvangen met @@ -1501,6 +1506,11 @@ Adres: %4 Edit label Bewerk label + + + Export Transaction Data + Exporteer transactiegegevens + Comma separated file (*.csv) @@ -1526,41 +1536,46 @@ Adres: %4 Label Label - - - Address - Adres - Amount Bedrag + + + + All + Alles + ID ID + + + Today + Vandaag + Error exporting Fout bij exporteren - - - All - Alles + + Could not write to file %1. + Kon niet schrijven naar bestand %1. - - Today - Vandaag + + Range: + Bereik: - - This week - Deze week + + to + naar @@ -1572,21 +1587,6 @@ Adres: %4 Last month Vorige maand - - - This year - Dit jaar - - - - Range... - Bereik... - - - - Received with - Ontvangen met - Sent to @@ -1633,9 +1633,9 @@ Adres: %4 Toon details... - - Export Transaction Data - Exporteer transactiegegevens + + Address + Adres @@ -1654,93 +1654,41 @@ Adres: %4 Bitcoinversie - - Usage: - Gebruik: - - - - Loading addresses... - Adressen aan het laden... - - - - Loading block index... - Blokindex aan het laden... - - - - Loading wallet... - Portemonnee aan het laden... - - - - Send command to -server or bitcoind - Stuur commando naar -server of bitcoind - - - - - List commands - List van commando's - - - - - Get help for a command - Toon hulp voor een commando - + + Cannot initialize keypool + Kan sleutel-pool niet initialiseren - - Options: - Opties: - + + Cannot write default address + Kan standaard adres niet schrijven - - Prepend debug output with timestamp - Voorzie de debuggingsuitvoer van een tijdsaanduiding + + Wallet needed to be rewritten: restart Bitcoin to complete + Portemonnee moest herschreven worden: Herstart Bitcoin om te voltooien - - Set database cache size in megabytes (default: 25) - Stel databankcachegrootte in in megabytes (standaard: 25) + + Cannot downgrade wallet + Kan portemonnee niet downgraden - - Specify configuration file (default: bitcoin.conf) - Specifieer configuratiebestand (standaard: bitcoin.conf) + + Specify data directory + Stel datamap in Specify pid file (default: bitcoind.pid) Specifieer pid-bestand (standaard: bitcoind.pid) - - - - - Generate coins - Genereer munten - - - - - Don't generate coins - Genereer geen munten Specify connection timeout (in milliseconds) Specificeer de time-out tijd (in milliseconden) - - - - - Specify data directory - Stel datamap in @@ -1749,9 +1697,9 @@ Adres: %4 Luister voor verbindingen op <poort> (standaard: 8333 of testnet: 18333) - - Maintain at most <n> connections to peers (default: 125) - Onderhoud maximaal <n> verbindingen naar peers (standaard: 125) + + Prepend debug output with timestamp + Voorzie de debuggingsuitvoer van een tijdsaanduiding @@ -1769,22 +1717,27 @@ Adres: %4 Aanvaard commandoregel en JSON-RPC commando's + + + Add a node to connect to and attempt to keep the connection open + Voeg een knooppunt om te verbinden toe en probeer de verbinding open te houden + 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 + + + Find peers using internet relay chat (default: 0) + Vind anderen door middel van Internet Relay Chat (standaard: 0) + Username for JSON-RPC connections Gebruikersnaam voor JSON-RPC verbindingen - - - Send trace/debug info to debugger - Stuur trace/debug-info naar debugger - Password for JSON-RPC connections @@ -1798,40 +1751,20 @@ Adres: %4 - - Use the test network - Gebruik het testnetwerk + + Run in the background as a daemon and accept commands + Draai in de achtergrond als daemon en aanvaard commando's - - Show splash screen on startup (default: 1) - Laat laadscherm zien bij het opstarten. (standaard: 1) - - - - Accept connections from outside (default: 1) - Accepteer verbindingen van buitenaf (standaard: 1) - - - - Set language, for example "de_DE" (default: system locale) - Stel taal in, bijvoorbeeld ''de_DE" (standaard: systeeminstellingen) - - - - Find peers using DNS lookup (default: 1) - Vind andere nodes d.m.v. DNS-naslag (standaard: 1) - - - - Use Universal Plug and Play to map the listening port (default: 1) - Gebruik UPnP om de luisterende poort te mappen (standaard: 1) + + Fee per KB to add to transactions you send + Kosten per KB om aan transacties toe te voegen die u verstuurt - - Use Universal Plug and Play to map the listening port (default: 0) - Gebruik UPnP om de luisterende poort te mappen (standaard: 0) + + Done loading + Klaar met laden @@ -1845,6 +1778,11 @@ Adres: %4 Verstuur commando's naar proces dat op <ip> draait (standaard: 127.0.0.1) + + + beta + beta + Set key pool size to <n> (default: 100) @@ -1881,84 +1819,64 @@ Adres: %4 - - Error loading blkindex.dat - Fout bij laden blkindex.dat + + 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) - - Error loading wallet.dat: Wallet corrupted - Fout bij laden wallet.dat: Portemonnee corrupt - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Fout bij laden wallet.dat: Portemonnee vereist een nieuwere versie van Bitcoin - - - - Wallet needed to be rewritten: restart Bitcoin to complete - Portemonnee moest herschreven worden: Herstart Bitcoin om te voltooien + + Rescan the block chain for missing wallet transactions + Doorzoek de blokkenketen op ontbrekende portemonnee-transacties - - Error loading wallet.dat - Fout bij laden wallet.dat + + Upgrade wallet to latest format + Vernieuw portemonnee naar nieuwste versie - - Start minimized - Geminimaliseerd starten - + + How many blocks to check at startup (default: 2500, 0 = all) + Het aantal blokken na te kijken bij opstarten (standaard: 2500, 0=alle) - - Connect through socks4 proxy - Verbind via socks4 proxy - + + How thorough the block verification is (0-6, default: 1) + De grondigheid van de blokverificatie (0-6, standaard: 1) - - Allow DNS lookups for addnode and connect - Sta DNS-naslag toe voor addnode en connect + + Specify configuration file (default: bitcoin.conf) + Specifieer configuratiebestand (standaard: bitcoin.conf) - - Connect only to the specified node - Verbind alleen met deze node + + Don't generate coins + Genereer geen munten - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maximale ontvangstbuffer per connectie, <n>*1000 bytes (standaard: 10000) - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maximale zendbuffer per connectie, <n>*1000 bytes (standaard: 10000) + + Send trace/debug info to debugger + Stuur trace/debug-info naar debugger - - Run in the background as a daemon and accept commands - Draai in de achtergrond als daemon en aanvaard commando's + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL opties: (zie de Bitcoin wiki voor SSL instructies) - - Output extra debugging information - Toon extra debuggingsinformatie - - - - Error loading addr.dat - Fout bij laden addr.dat + + Usage: + Gebruik: Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kan geen lock op de gegevensdirectory %s verkrijgen. Bitcoin draait vermoedelijk reeds. + Kan geen lock op de datamap %s verkrijgen. Bitcoin draait vermoedelijk reeds. @@ -1966,9 +1884,9 @@ Adres: %4 Opnieuw aan het scannen ... - - Done loading - Klaar met laden + + Loading addresses... + Adressen aan het laden... @@ -1981,9 +1899,9 @@ Adres: %4 Ongeldig bedrag voor -paytxfee=<bedrag> - - 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. + + Loading block index... + Blokindex aan het laden... @@ -1991,87 +1909,169 @@ Adres: %4 Fout: CreateThread(StartNode) is mislukt - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Kan niet binden aan poort %d op deze computer. Bitcoin draait vermoedelijk reeds. + + Loading wallet... + Portemonnee aan het laden... Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Waarschuwing: Controleer dat de datum en tijd op uw computer correct zijn ingesteld. Als uw klok fout staat zal Bitcoin niet correct werken. - - - beta - beta - Warning: Disk space is low Waarschuwing: Weinig schijfruimte over - - 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) + + 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. - - Rescan the block chain for missing wallet transactions - Doorzoek de blokkenketen op ontbrekende portemonnee-transacties + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Kan niet binden aan poort %d op deze computer. Bitcoin draait vermoedelijk reeds. - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL opties: (zie de Bitcoin wiki voor SSL instructies) + + Error loading addr.dat + Fout bij laden addr.dat + + + + Error loading blkindex.dat + Fout bij laden blkindex.dat + + + + Error loading wallet.dat: Wallet corrupted + Fout bij laden wallet.dat: Portemonnee corrupt + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Fout bij laden wallet.dat: Portemonnee vereist een nieuwere versie van Bitcoin + + + + Error loading wallet.dat + Fout bij laden wallet.dat + + + + Send command to -server or bitcoind + Stuur commando naar -server of bitcoind - - Add a node to connect to and attempt to keep the connection open - Voeg een knooppunt om te verbinden toe en probeer de verbinding open te houden + + List commands + List van commando's + - - Cannot downgrade wallet - Kan portemonnee niet downgraden + + Get help for a command + Toon hulp voor een commando + - - Cannot initialize keypool - Kan sleutel-pool niet initialiseren + + Options: + Opties: + - - Cannot write default address - Kan standaard adres niet schrijven + + Generate coins + Genereer munten + - - Fee per KB to add to transactions you send - Kosten per KB om aan transacties toe te voegen die u verstuurt + + Start minimized + Geminimaliseerd starten + - - Find peers using internet relay chat (default: 0) - Vind anderen door middel van Internet Relay Chat (standaard: 0) + + Show splash screen on startup (default: 1) + Laat laadscherm zien bij het opstarten. (standaard: 1) - - How many blocks to check at startup (default: 2500, 0 = all) - Het aantal blokken na te kijken bij opstarten (standaard: 2500, 0=alle) + + Set database cache size in megabytes (default: 25) + Stel databankcachegrootte in in megabytes (standaard: 25) - - How thorough the block verification is (0-6, default: 1) - De grondigheid van de blokverificatie (0-6, standaard: 1) + + Connect through socks4 proxy + Verbind via socks4 proxy + - - Upgrade wallet to latest format - Vernieuw portemonnee naar nieuwste versie + + Allow DNS lookups for addnode and connect + Sta DNS-naslag toe voor addnode en connect + + + + + Maintain at most <n> connections to peers (default: 125) + Onderhoud maximaal <n> verbindingen naar peers (standaard: 125) + + + + Connect only to the specified node + Verbind alleen met deze node + + + + + Accept connections from outside (default: 1) + Accepteer verbindingen van buitenaf (standaard: 1) + + + + Set language, for example "de_DE" (default: system locale) + Stel taal in, bijvoorbeeld ''de_DE" (standaard: systeeminstellingen) + + + + Find peers using DNS lookup (default: 1) + Vind andere nodes d.m.v. DNS-naslag (standaard: 1) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maximale ontvangstbuffer per connectie, <n>*1000 bytes (standaard: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maximale zendbuffer per connectie, <n>*1000 bytes (standaard: 10000) + + + + Use Universal Plug and Play to map the listening port (default: 1) + Gebruik UPnP om de luisterende poort te mappen (standaard: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Gebruik UPnP om de luisterende poort te mappen (standaard: 0) + + + + Use the test network + Gebruik het testnetwerk + + + + + Output extra debugging information + Toon extra debuggingsinformatie diff --git a/src/qt/locale/bitcoin_pl.ts b/src/qt/locale/bitcoin_pl.ts index a9c4a70274..ba1b99a450 100644 --- a/src/qt/locale/bitcoin_pl.ts +++ b/src/qt/locale/bitcoin_pl.ts @@ -82,7 +82,7 @@ www.transifex.net/projects/p/bitcoin/ Sign a message to prove you own this address - Podpisz wiadomość aby dowieść, że ten adres jest twój + Podpisz wiadomość aby dowieść, że ten adres jest twój @@ -163,7 +163,7 @@ www.transifex.net/projects/p/bitcoin/ Dialog - Dialog + Dialog @@ -183,7 +183,7 @@ www.transifex.net/projects/p/bitcoin/ TextLabel - + TekstEtykiety @@ -205,6 +205,11 @@ www.transifex.net/projects/p/bitcoin/ Unlock wallet Odblokuj portfel + + + Wallet decryption failed + Odszyfrowywanie portfela nie powiodło się + This operation needs your wallet passphrase to decrypt the wallet. @@ -243,6 +248,11 @@ Czy na pewno chcesz zaszyfrować swój portfel? Wallet encrypted Portfel zaszyfrowany + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Program Bitcoin zamknie się aby dokończyć proces szyfrowania. Pamiętaj, że szyfrowanie portfela nie zabezpiecza w pełni Twoich bitcoinów przed kradzieżą przez wirusy lub trojany mogące zainfekować Twój komputer. + @@ -274,11 +284,6 @@ Czy na pewno chcesz zaszyfrować swój portfel? The passphrase entered for the wallet decryption was incorrect. Wprowadzone hasło do odszyfrowania portfela jest niepoprawne. - - - Wallet decryption failed - Odszyfrowywanie portfela nie powiodło się - Wallet passphrase was successfully changed. @@ -288,16 +293,31 @@ Czy na pewno chcesz zaszyfrować swój portfel? Warning: The Caps Lock key is on. - Uwaga: Klawisz Caps Lock jest włączony. - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Program Bitcoin zamknie się aby dokończyć proces szyfrowania. Pamiętaj, że szyfrowanie portfela nie zabezpiecza w pełni Twoich bitcoinów przed kradzieżą przez wirusy lub trojany mogące zainfekować Twój komputer. + Ostrzeżenie: Caps Lock jest włączony. BitcoinGUI + + + Edit the list of stored addresses and labels + Edytuj listę zapisanych adresów i i etykiet + + + + Show information about Bitcoin + Pokaż informację o Bitcoin + + + + About &Qt + O &Qt + + + + &Help + Pomo&c + @@ -305,9 +325,9 @@ Czy na pewno chcesz zaszyfrować swój portfel? Synchronizacja z siecią... - - &Overview - P&odsumowanie + + [testnet] + [testnet] @@ -329,25 +349,15 @@ Czy na pewno chcesz zaszyfrować swój portfel? &Address Book Książka &adresowa - - - Edit the list of stored addresses and labels - Edytuj listę zapisanych adresów i i etykiet - &Receive coins Odbie&rz monety - - Show the list of addresses for receiving payments - Pokaż listę adresów do otrzymywania płatności - - - - &Send coins - Wy&syłka monet + + Show information about Qt + Pokazuje informacje o Qt @@ -355,9 +365,9 @@ Czy na pewno chcesz zaszyfrować swój portfel? Synchronizacja bloku łańcucha w toku. - - E&xit - &Zakończ + + Downloaded %1 blocks of transaction history. + Pobrano %1 bloków z historią transakcji. @@ -365,24 +375,28 @@ Czy na pewno chcesz zaszyfrować swój portfel? Zamknij program - - Show information about Bitcoin - Pokaż informację o Bitcoin + + Up to date + Aktualny - - About &Qt - O &Qt + + Catching up... + Łapanie bloków... - - - Show information about Qt - Pokazuje informacje o Qt + + + %n active connection(s) to Bitcoin network + + %n aktywne połączenie do sieci Bitcoin + %n aktywne połączenia do sieci Bitcoin + %n aktywnych połączeń do sieci Bitcoin + - - &Options... - &Opcje... + + &Send coins + Wy&syłka monet @@ -400,74 +414,68 @@ Czy na pewno chcesz zaszyfrować swój portfel? Udowodnij, że kontrolujesz adres - - &Export... - &Eksportuj... + + &About %1 + &O %1 - - Encrypt or decrypt wallet - Zaszyfruj lub odszyfruj portfel + + &Backup Wallet + &Backup portfel - - &About %1 - &O %1 + + bitcoin-qt + bitcoin-qt - - Change the passphrase used for wallet encryption - Zmień hasło użyte do szyfrowania portfela + + Sent transaction + Transakcja wysłana - - &File - &Plik + + Incoming transaction + Transakcja przychodząca - - &Settings - P&referencje + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1 +Kwota: %2 +Typ: %3 +Adres: %4 + - - &Help - Pomo&c + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Portfel jest <b>zaszyfrowany</b> i obecnie <b>niezablokowany</b> - - Tabs toolbar - Pasek zakładek + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Portfel jest <b>zaszyfrowany</b> i obecnie <b>zablokowany</b> - - Actions toolbar - Pasek akcji + + &Settings + P&referencje - - [testnet] - [testnet] + + 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? + Transakcja przekracza limit. Możesz wysłać ją płacąc prowizję %1, która zostaje przekazana do węzłów, które ją prześlą i pomoże wspierać sieć Bitcoin. Czy chcesz zapłacić prowizję? &Encrypt Wallet Zaszyfruj portf&el - - - %n active connection(s) to Bitcoin network - - %n aktywne połączenie do sieci Bitcoin - %n aktywne połączenia do sieci Bitcoin - %n aktywnych połączeń do sieci Bitcoin - - - - - &Backup Wallet - &Backup portfel - Bitcoin Wallet @@ -488,20 +496,70 @@ Czy na pewno chcesz zaszyfrować swój portfel? Show the Bitcoin window Pokaż okno Bitcoin + + + &Overview + P&odsumowanie + + + + Show the list of addresses for receiving payments + Pokaż listę adresów do otrzymywania płatności + + + + Export the data in the current tab to a file + Eksportuj dane z aktywnej karty do pliku + + + + Encrypt or decrypt wallet + Zaszyfruj lub odszyfruj portfel + 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 + &Change Passphrase Zmień h&asło - - Downloaded %1 blocks of transaction history. - Pobrano %1 bloków z historią transakcji. + + E&xit + &Zakończ + + + + &File + &Plik + + + + &Options... + &Opcje... + + + + &Export... + &Eksportuj... + + + + Tabs toolbar + Pasek zakładek + + + + Actions toolbar + Pasek akcji @@ -539,99 +597,41 @@ Czy na pewno chcesz zaszyfrować swój portfel? %n dni temu - - - Up to date - Aktualny - - - - Catching up... - Łapanie bloków... - Last received block was generated %1. Ostatnio otrzymany blok została wygenerowany %1. - - Export the data in the current tab to a file - Eksportuj dane z aktywnej karty do pliku + + Backup Wallet + Kopia Zapasowa Portfela - - 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 Data (*.dat) + Dane Portfela (*.dat) - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Portfel jest <b>zaszyfrowany</b> i obecnie <b>zablokowany</b> + + Backup Failed + Kopia Zapasowa Nie Została Wykonana - - bitcoin-qt - bitcoin-qt + + There was an error trying to save the wallet data to the new location. + Wystąpił błąd podczas próby zapisu portfela do nowej lokalizacji. Downloaded %1 of %2 blocks of transaction history. Pobrano %1 z %2 bloków z historią transakcji. - - - 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? - Transakcja przekracza limit. Możesz wysłać ją płacąc prowizję %1, która zostaje przekazana do węzłów, które ją prześlą i pomoże wspierać sieć Bitcoin. Czy chcesz zapłacić prowizję? - Sending... Wysyłanie... - - - Backup Wallet - Kopia Zapasowa Portfela - - - - Wallet Data (*.dat) - Dane Portfela (*.dat) - - - - Backup Failed - Kopia Zapasowa Nie Została Wykonana - - - - There was an error trying to save the wallet data to the new location. - Wystąpił błąd podczas próby zapisu portfela do nowej lokalizacji. - A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -663,6 +663,11 @@ Adres: %4 EditAddressDialog + + + New key generation failed. + Tworzenie nowego klucza nie powiodło się. + Edit Address @@ -723,11 +728,6 @@ Adres: %4 Could not unlock wallet. Nie można było odblokować portfela. - - - New key generation failed. - Tworzenie nowego klucza nie powiodło się. - MainOptionsPage @@ -822,12 +822,12 @@ Adres: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Możesz podpisywać wiadomości swoimi adresami aby udowodnić, że jesteś ich właścicielem. Uważaj, aby nie podpisywać niczego co wzbudza Twoje podejrzenia, ponieważ ktoś może stosować phishing próbując nakłonić Cię do ich podpisania. Akceptuj i podpisuj tylko w pełni zrozumiałe komunikaty i wiadomości. + Możesz podpisywać wiadomości swoimi adresami aby udowodnić, że jesteś ich właścicielem. Uważaj, aby nie podpisywać niczego co wzbudza Twoje podejrzenia, ponieważ ktoś może stosować phishing próbując nakłonić Cię do ich podpisania. Akceptuj i podpisuj tylko w pełni zrozumiałe komunikaty i wiadomości. The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Wprowadź adres Bitcoin (np. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -872,7 +872,7 @@ Adres: %4 Copy the current signature to the system clipboard - Kopiuje aktualny podpis do schowka systemowego + Kopiuje aktualny podpis do schowka systemowego @@ -922,6 +922,11 @@ Adres: %4 OverviewPage + + + Unconfirmed: + Niepotwierdzony: + Form @@ -942,11 +947,6 @@ Adres: %4 0 0 - - - Unconfirmed: - Niepotwierdzony: - <b>Recent transactions</b> @@ -975,6 +975,31 @@ Adres: %4 QRCodeDialog + + + Message: + Wiadomość: + + + + &Save As... + Zapi&sz jako... + + + + Error encoding URI into QR Code. + Błąd kodowania URI w Kodzie QR. + + + + Save Image... + + + + + PNG Images (*.png) + Obraz PNG (*.png) + Dialog @@ -1005,31 +1030,6 @@ Adres: %4 BTC BTC - - - Message: - Wiadomość: - - - - &Save As... - Zapi&sz jako... - - - - Error encoding URI into QR Code. - Błąd kodowania URI w Kodzie QR. - - - - Save Image... - - - - - PNG Images (*.png) - Obraz PNG (*.png) - SendCoinsDialog @@ -1050,11 +1050,6 @@ Adres: %4 Send to multiple recipients at once Wyślij do wielu odbiorców na raz - - - &Add recipient... - Dod&aj odbiorcę... - Remove all transaction fields @@ -1105,16 +1100,6 @@ Adres: %4 and i - - - The total exceeds your balance when the %1 transaction fee is included. - Suma przekracza twoje saldo, gdy doliczymy %1 prowizji transakcyjnej. - - - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Błąd: transakcja została odrzucona. Może się to zdarzyć, gdy monety z Twojego portfela zostały już wydane, na przykład gdy używałeś kopii wallet.dat i bitcoiny które tam wydałeś nie zostały jeszcze odjęte z portfela z którego teraz korzystasz. - The recipient address is not valid, please recheck. @@ -1123,13 +1108,18 @@ Adres: %4 The amount to pay must be larger than 0. - Kwota do zapłacenie 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. + + + 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. @@ -1140,6 +1130,16 @@ Adres: %4 Error: Transaction creation failed. Błąd: Tworzenie transakcji nie powiodło się. + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Błąd: transakcja została odrzucona. Może się to zdarzyć, gdy monety z Twojego portfela zostały już wydane, na przykład gdy używałeś kopii wallet.dat i bitcoiny które tam wydałeś nie zostały jeszcze odjęte z portfela z którego teraz korzystasz. + + + + &Add recipient... + Dod&aj odbiorcę... + SendCoinsEntry @@ -1207,36 +1207,36 @@ Adres: %4 TransactionDesc + + + %1 confirmations + %1 potwierdzeń + unknown nieznany - - - Open for %1 blocks - Otwórz dla %1 bloków - Open until %1 Otwórz do %1 - - %1/unconfirmed - %1/niezatwierdzone - - - - %1 confirmations - %1 potwierdzeń + + Open for %1 blocks + Otwórz dla %1 bloków %1/offline? %1/offline? + + + %1/unconfirmed + %1/niezatwierdzone + <b>Status:</b> @@ -1487,6 +1487,16 @@ Adres: %4 TransactionView + + + Min amount + Min suma + + + + Type + Typ + @@ -1553,11 +1563,6 @@ Adres: %4 Enter address or label to search Wprowadź adres albo etykietę żeby wyszukać - - - Min amount - Min suma - Copy address @@ -1603,11 +1608,6 @@ Adres: %4 Date Data - - - Type - Typ - Label @@ -1659,50 +1659,171 @@ Adres: %4 bitcoin-core - - - Bitcoin version - Wersja Bitcoin - Usage: Użycie: - - Allow JSON-RPC connections from specified IP address - Przyjmuj połączenia JSON-RPC ze wskazanego adresu IP + + Run in the background as a daemon and accept commands + Uruchom w tle jako daemon i przyjmuj polecenia - - Send command to -server or bitcoind - Wyślij polecenie do -server lub bitcoind + + Use the test network + Użyj sieci testowej - - List commands - Lista poleceń + + Username for JSON-RPC connections + Nazwa użytkownika dla połączeń JSON-RPC - - Get help for a command - Uzyskaj pomoc do polecenia + + Password for JSON-RPC connections + Hasło do połączeń JSON-RPC - - Options: - Opcje: + + Listen for JSON-RPC connections on <port> (default: 8332) + Nasłuchuj połączeń JSON-RPC na <port> (domyślnie: 8332) - - Specify configuration file (default: bitcoin.conf) - Wskaż plik konfiguracyjny (domyślnie: bitcoin.conf) + + 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) - - Specify pid file (default: bitcoind.pid) - Wskaż plik pid (domyślnie: bitcoin.pid) + + Set key pool size to <n> (default: 100) + Ustaw rozmiar puli kluczy na <n> (domyślnie: 100) + + + + Rescan the block chain for missing wallet transactions + Przeskanuj blok łańcuchów żeby znaleźć zaginione transakcje portfela + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Nie można zablokować folderu danych %s. Bitcoin prawdopodobnie już działa. + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Błąd ładowania wallet.dat: Portfel wymaga nowszej wersji Bitcoin + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Portfel wymaga przepisania: zrestartuj Bitcoina żeby ukończyć + + + + Send trace/debug info to console instead of debug.log file + Wyślij informację/raport do konsoli zamiast do pliku debug.log. + + + + Error loading wallet.dat + Błąd ładowania wallet.dat + + + + Send trace/debug info to debugger + Wyślij informację/raport do debuggera. + + + + How many blocks to check at startup (default: 2500, 0 = all) + Ile bloków sprawdzać przy uruchomieniu (domyślnie: 2500, 0 = wszystkie) + + + + Set database cache size in megabytes (default: 25) + Ustaw rozmiar w megabajtach cache-u bazy danych (domyślnie: 25) + + + + Loading block index... + Ładowanie indeksu bloku... + + + + Cannot downgrade wallet + Nie można dezaktualizować portfela + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Done loading + Wczytywanie zakończone + + + + Fee per KB to add to transactions you send + + + + + + Find peers using internet relay chat (default: 0) + Znajdź peery używające IRC (domyślnie: 0) + + + + Loading wallet... + Wczytywanie portfela... + + + + Rescanning... + Ponowne skanowanie... + + + + Bitcoin version + Wersja Bitcoin + + + + Send command to -server or bitcoind + Wyślij polecenie do -server lub bitcoind + + + + List commands + Lista poleceń + + + + Get help for a command + Uzyskaj pomoc do polecenia + + + + Options: + Opcje: + + + + Specify configuration file (default: bitcoin.conf) + Wskaż plik konfiguracyjny (domyślnie: bitcoin.conf) + + + + Specify pid file (default: bitcoind.pid) + Wskaż plik pid (domyślnie: bitcoin.pid) @@ -1722,7 +1843,7 @@ Adres: %4 Show splash screen on startup (default: 1) - Pokazuj okno powitalne przy starcie (domyślnie: 1) + Pokazuj okno powitalne przy starcie (domyślnie: 1) @@ -1760,59 +1881,49 @@ Adres: %4 Łącz tylko do wskazanego węzła - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maksymalny bufor odbioru na połączenie, <n>*1000 bajtów (domyślnie: 10000) - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maksymalny bufor wysyłu na połączenie, <n>*1000 bajtów (domyślnie: 10000) - - - - Run in the background as a daemon and accept commands - Uruchom w tle jako daemon i przyjmuj polecenia + + Find peers using DNS lookup (default: 1) + - - Use the test network - Użyj sieci testowej + + Threshold for disconnecting misbehaving peers (default: 100) + - - Accept command line and JSON-RPC commands - Akceptuj linię poleceń oraz polecenia JSON-RPC + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Username for JSON-RPC connections - Nazwa użytkownika dla połączeń JSON-RPC + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maksymalny bufor odbioru na połączenie, <n>*1000 bajtów (domyślnie: 10000) - - Password for JSON-RPC connections - Hasło do połączeń JSON-RPC + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maksymalny bufor wysyłu na połączenie, <n>*1000 bajtów (domyślnie: 10000) - - Listen for JSON-RPC connections on <port> (default: 8332) - Nasłuchuj połączeń JSON-RPC na <port> (domyślnie: 8332) + + Output extra debugging information + - - 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) + + Prepend debug output with timestamp + - - Set key pool size to <n> (default: 100) - Ustaw rozmiar puli kluczy na <n> (domyślnie: 100) + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Rescan the block chain for missing wallet transactions - Przeskanuj blok łańcuchów żeby znaleźć zaginione transakcje portfela + + How thorough the block verification is (0-6, default: 1) + @@ -1831,11 +1942,6 @@ opcje SSL: (sprawdź Bitcoin Wiki dla instrukcje konfiguracji SSL) Use OpenSSL (https) for JSON-RPC connections Użyj OpenSSL (https) do połączeń JSON-RPC - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Nie można zablokować folderu danych %s. Bitcoin prawdopodobnie już działa. - Server certificate file (default: server.cert) @@ -1872,39 +1978,39 @@ opcje SSL: (sprawdź Bitcoin Wiki dla instrukcje konfiguracji SSL) Błąd ładowania wallet.dat: Uszkodzony portfel - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Błąd ładowania wallet.dat: Portfel wymaga nowszej wersji Bitcoin + + Invalid -proxy address + Nieprawidłowy adres -proxy - - Wallet needed to be rewritten: restart Bitcoin to complete - Portfel wymaga przepisania: zrestartuj Bitcoina żeby ukończyć + + Invalid amount for -paytxfee=<amount> + Nieprawidłowa kwota dla -paytxfee=<amount> - - Send trace/debug info to console instead of debug.log file - Wyślij informację/raport do konsoli zamiast do pliku debug.log. + + 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. - - Error loading wallet.dat - Błąd ładowania wallet.dat + + Error: CreateThread(StartNode) failed + Błąd: CreateThread(StartNode) nie powiodło się - - Send trace/debug info to debugger - Wyślij informację/raport do debuggera. + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Nie można przywiązać portu %d na tym komputerze. Bitcoin prawdopodobnie już działa. - - How many blocks to check at startup (default: 2500, 0 = all) - Ile bloków sprawdzać przy uruchomieniu (domyślnie: 2500, 0 = wszystkie) + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Ostrzeżenie: Proszę sprawdzić poprawność czasu i daty na tym komputerze. Jeśli czas jest zły Bitcoin może nie działać prawidłowo. - - Set database cache size in megabytes (default: 25) - Ustaw rozmiar w megabajtach cache-u bazy danych (domyślnie: 25) + + beta + beta @@ -1912,36 +2018,15 @@ opcje SSL: (sprawdź Bitcoin Wiki dla instrukcje konfiguracji SSL) Zaktualizuj portfel do najnowszego formatu. - - Loading block index... - Ładowanie indeksu bloku... - - - - Cannot downgrade wallet - Nie można dezaktualizować portfela - - - - Done loading - Wczytywanie zakończone - - - - Fee per KB to add to transactions you send - - + + Allow JSON-RPC connections from specified IP address + Przyjmuj połączenia JSON-RPC ze wskazanego adresu IP 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 - - - Find peers using internet relay chat (default: 0) - Znajdź peery używające IRC (domyślnie: 0) - Accept connections from outside (default: 1) @@ -1950,22 +2035,12 @@ opcje SSL: (sprawdź Bitcoin Wiki dla instrukcje konfiguracji SSL) Set language, for example "de_DE" (default: system locale) - Ustaw Język, na przykład "pl_PL" (domyślnie: systemowy) + Ustaw Język, na przykład "pl_PL" (domyślnie: systemowy) - - Find peers using DNS lookup (default: 1) - - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + + Accept command line and JSON-RPC commands + Akceptuj linię poleceń oraz polecenia JSON-RPC @@ -1977,85 +2052,10 @@ opcje SSL: (sprawdź Bitcoin Wiki dla instrukcje konfiguracji SSL) Use Universal Plug and Play to map the listening port (default: 0) Używaj UPnP do mapowania portu nasłuchu (domyślnie: 0) - - - Output extra debugging information - - - - - Prepend debug output with timestamp - - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Loading wallet... - Wczytywanie portfela... - - - - Cannot initialize keypool - - - - - Cannot write default address - - - - - Rescanning... - Ponowne skanowanie... - Warning: Disk space is low Uwaga: Mało miejsca na dysku - - - Invalid -proxy address - Nieprawidłowy adres -proxy - - - - Invalid amount for -paytxfee=<amount> - Nieprawidłowa kwota dla -paytxfee=<amount> - - - - 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. - - - - Error: CreateThread(StartNode) failed - Błąd: CreateThread(StartNode) nie powiodło się - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Nie można przywiązać portu %d na tym komputerze. Bitcoin prawdopodobnie już działa. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Ostrzeżenie: Proszę sprawdzić poprawność czasu i daty na tym komputerze. Jeśli czas jest zły Bitcoin może nie działać prawidłowo. - - - - beta - beta - diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index e545be975b..b91479cae3 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -73,16 +73,16 @@ This product includes software developed by the OpenSSL Project for use in the O Sign a message to prove you own this address - - - &Sign Message - &Assinar Mensagem - Delete the currently selected address from the list. Only sending addresses can be deleted. Excluir o endereço selecionado da lista. Apenas endereços de envio podem ser excluídos. + + + &Sign Message + &Assinar Mensagem + &Delete @@ -96,7 +96,7 @@ This product includes software developed by the OpenSSL Project for use in the O Copy label - Copiar rótulo + Copy label @@ -149,20 +149,25 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - - - Dialog - Diálogo - Repeat new passphrase Repita a nova frase de segurança - - TextLabel - TextoDoRótulo + + This operation needs your wallet passphrase to unlock the wallet. + Esta operação precisa de sua frase de segurança para desbloquear a carteira. + + + + Unlock wallet + Desbloquear carteira + + + + Dialog + Diálogo @@ -175,22 +180,9 @@ This product includes software developed by the OpenSSL Project for use in the O Nova frase de segurança - - - - - Wallet encryption failed - A criptografia da carteira falhou - - - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - A criptografia da carteira falhou devido a um erro interno. Sua carteira não estava criptografada. - - - - Encrypt wallet - Criptografar carteira + + Change passphrase + Alterar frase de segurança @@ -198,19 +190,14 @@ This product includes software developed by the OpenSSL Project for use in the O Digite a nova frase de seguraça da sua carteira. <br/> Por favor, use uma frase de <b>10 ou mais caracteres aleatórios,</b> ou <b>oito ou mais palavras.</b> - - Unlock wallet - Desbloquear carteira - - - - This operation needs your wallet passphrase to unlock the wallet. - Esta operação precisa de sua frase de segurança para desbloquear a carteira. + + TextLabel + TextoDoRótulo - - This operation needs your wallet passphrase to decrypt the wallet. - Esta operação precisa de sua frase de segurança para descriptografar a carteira. + + Encrypt wallet + Criptografar carteira @@ -218,9 +205,15 @@ This product includes software developed by the OpenSSL Project for use in the O Descriptografar carteira - - Change passphrase - Alterar frase de segurança + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + AVISO: Se você criptografar sua carteira e perder sua senha, você vai <b>perder todos os seus BITCOINS!</b> Tem certeza de que deseja criptografar sua carteira? + + + + This operation needs your wallet passphrase to decrypt the wallet. + Esta operação precisa de sua frase de segurança para descriptografar a carteira. @@ -232,12 +225,6 @@ This product includes software developed by the OpenSSL Project for use in the O Confirm wallet encryption Confirmar criptografia da carteira - - - - The supplied passphrases do not match. - A frase de segurança fornecida não confere. - @@ -250,34 +237,47 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet decryption failed A descriptografia da carteira falhou - - - Wallet passphrase was successfully changed. - A frase de segurança da carteira foi alterada com êxito. - Warning: The Caps Lock key is on. - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - AVISO: Se você criptografar sua carteira e perder sua senha, você vai <b>perder todos os seus BITCOINS!</b> Tem certeza de que deseja criptografar sua carteira? - Wallet encrypted Carteira criptografada + + + + + + Wallet encryption failed + A criptografia da carteira falhou + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + A criptografia da carteira falhou devido a um erro interno. Sua carteira não estava criptografada. + Wallet unlock failed A abertura da carteira falhou + + + + The supplied passphrases do not match. + A frase de segurança fornecida não confere. + + + + Wallet passphrase was successfully changed. + A frase de segurança da carteira foi alterada com êxito. + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. @@ -286,62 +286,6 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - - - Show information about Bitcoin - Mostrar informação sobre Bitcoin - - - - Open &Bitcoin - Abrir &Bitcoin - - - - - Synchronizing with network... - Sincronizando com a rede... - - - - &Overview - &Visão geral - - - - Show general overview of wallet - Mostrar visão geral da carteira - - - - Bitcoin Wallet - Carteira Bitcoin - - - - &Transactions - &Transações - - - - Browse transaction history - Navegar pelo histórico de transações - - - - Block chain synchronization in progress - Sincronização da corrente de blocos em andamento - - - - &Address Book - &Catálogo de endereços - - - - Edit the list of stored addresses and labels - Editar a lista de endereços e rótulos - &Receive coins @@ -357,6 +301,11 @@ Are you sure you wish to encrypt your wallet? &Export... &Exportar... + + + E&xit + E&xit + Export the data in the current tab to a file @@ -383,79 +332,206 @@ Are you sure you wish to encrypt your wallet? Mostrar informações sobre o Qt - - Backup Wallet - Fazer cópia de segurança da Carteira + + &Options... + &Opções... - - - Wallet Data (*.dat) - Dados da Carteira (*.dat) + + + %n minute(s) ago + + %n minutos atrás + %n minutos atrás + - - - Backup Failed - Cópia de segurança Falhou + + + %n day(s) ago + + %n dia atrás + %n dias atrás + - - There was an error trying to save the wallet data to the new location. - Houve um erro ao tentar salvar os dados da carteira para uma nova localização. + + Up to date + Atualizado - - &Send coins - &Enviar moedas + + Last received block was generated %1. + Last received block was generated %1. - - E&xit - E&xit + + + Synchronizing with network... + Sincronizando com a rede... - - Quit application - Sair da aplicação + + Sign &message + &Assinar Mensagem - - &Options... - &Opções... + + Prove you control an address + - - Send coins to a bitcoin address - Enviar moedas para um endereço bitcoin + + Modify configuration options for bitcoin + Modificar opções de configuração para bitcoin - - &About %1 - &About %1 + + Open &Bitcoin + Abrir &Bitcoin - - Change the passphrase used for wallet encryption - Mudar a frase de segurança utilizada na criptografia da carteira + + &Backup Wallet + &Backup Carteira - - &File - &Arquivo + + 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 + Fazer cópia de segurança da Carteira + + + + Wallet Data (*.dat) + Dados da Carteira (*.dat) + + + + Backup Failed + Cópia de segurança Falhou + + + + There was an error trying to save the wallet data to the new location. + Houve um erro ao tentar salvar os dados da carteira para uma nova localização. Show the Bitcoin window Mostrar a janela Bitcoin + + + Block chain synchronization in progress + Sincronização da corrente de blocos em andamento + + + + Show general overview of wallet + Mostrar visão geral da carteira + + + + %n active connection(s) to Bitcoin network + + %n conexão ativa na rede Bitcoin + %n conexões ativas na rede Bitcoin + + + + + Sent transaction + Sent transaction + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1 +Quantidade: %2 +Tipo: %3 +Endereço: %4 + + + + &Address Book + &Catálogo de endereços + + + + Bitcoin Wallet + Carteira Bitcoin + + + + &Overview + &Visão geral + + + + &Transactions + &Transações + + + + Edit the list of stored addresses and labels + Editar a lista de endereços e rótulos + + + + Send coins to a bitcoin address + Enviar moedas para um endereço bitcoin + + + + &Send coins + &Enviar moedas + + + + Show information about Bitcoin + Mostrar informação sobre Bitcoin + + + + Quit application + Sair da aplicação + + + + Change the passphrase used for wallet encryption + Mudar a frase de segurança utilizada na criptografia da carteira + + + + &File + &Arquivo + &Settings E configurações - - &Encrypt Wallet - &Criptografar Carteira + + Sending... + Sending... + + + + &Help + &Ajuda @@ -463,32 +539,19 @@ Are you sure you wish to encrypt your wallet? Barra de ferramentas - - Actions toolbar - Barra de ações + + Browse transaction history + Navegar pelo histórico de transações [testnet] [testnet] - - - %n active connection(s) to Bitcoin network - - %n conexão ativa na rede Bitcoin - %n conexões ativas na rede Bitcoin - - - - - &Change Passphrase - &Mudar frase de segurança - - - Downloaded %1 blocks of transaction history. - Carregados %1 blocos do histórico de transações. + + &About %1 + &About %1 @@ -498,19 +561,6 @@ Are you sure you wish to encrypt your wallet? %n segundos atrás - - - %n minute(s) ago - - %n minutos atrás - %n minutos atrás - - - - - &Help - &amp; Ajuda - %n hour(s) ago @@ -519,85 +569,40 @@ Are you sure you wish to encrypt your wallet? %n horas atrás - - - %n day(s) ago - - %n dia atrás - %n dias atrás - - - - - Up to date - Atualizado - - - bitcoin-qt - bitcoin-qt - - - - Sign &message - - - - - Prove you control an address - - - - - Modify configuration options for bitcoin - Modificar opções de configuração para bitcoin + + &Encrypt Wallet + &Criptografar Carteira - - &Backup Wallet - &Backup Carteira + + &Change Passphrase + &Mudar frase de segurança Catching up... Recuperando o atraso ... - - - 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? 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? - - - Sending... - Enviando... - - - - Sent transaction - Sent transaction - Incoming transaction Incoming transaction - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Data: %1 -Quantidade: %2 -Tipo: %3 -Endereço: %4 + + Actions toolbar + Barra de ações + + + + bitcoin-qt + bitcoin-qt @@ -605,14 +610,9 @@ Endereço: %4 Carregados %1 de %2 blocos do histórico de transações. - - 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> + + Downloaded %1 blocks of transaction history. + Carregados %1 blocos do histórico de transações. @@ -622,15 +622,10 @@ Endereço: %4 DisplayOptionsPage - - - &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 @@ -642,9 +637,24 @@ Endereço: %4 Whether to show Bitcoin addresses in the transaction list + + + &Unit to show amounts in: + &Unit to show amounts in: + EditAddressDialog + + + &Address + &Address + + + + New sending address + New sending address + Edit Address @@ -660,26 +670,11 @@ Endereço: %4 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 @@ -690,11 +685,6 @@ Endereço: %4 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. - Could not unlock wallet. @@ -705,6 +695,16 @@ Endereço: %4 New key generation failed. New key generation failed. + + + New receiving address + New receiving 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 bitcoin address. @@ -713,20 +713,20 @@ Endereço: %4 MainOptionsPage - - - Automatically start Bitcoin after the computer is turned on - Automatically start Bitcoin after the computer is turned on - &Start Bitcoin on window system startup &Start Bitcoin on window system startup + + + Automatically start Bitcoin after the computer is turned on + Automatically start Bitcoin after the computer is turned on + &Minimize to the tray instead of the taskbar - + &Minimize to the tray instead of the taskbar @@ -736,22 +736,37 @@ Endereço: %4 Map port using &UPnP - + Map port using &UPnP Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. M&inimize on close - + M&inimize on close 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. + + + + Proxy &IP: + Proxy &IP: + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Taxa opcional de transações por kB que ajuda a garantir que suas transações serão processadas rapidamente. A maior parte das transações é de 1 kB. Taxa de 0.01 recomendada. + + + + Pay transaction &fee + Pay transaction &fee @@ -761,12 +776,7 @@ Endereço: %4 Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) - - - - - Proxy &IP: - + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) @@ -783,16 +793,6 @@ Endereço: %4 Port of the proxy (e.g. 1234) Port of the proxy (e.g. 1234) - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Taxa opcional de transações por kB que ajuda a garantir que suas transações serão processadas rapidamente. A maior parte das transações é de 1 kB. Taxa de 0.01 recomendada. - - - - Pay transaction &fee - - MessagePage @@ -801,11 +801,6 @@ Endereço: %4 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. - Você pode assinar mensagens com seus endereços para provar que você é o dono deles. Seja cuidadoso para não assinar algo vago, pois ataques de pishing podem tentar te enganar para dar sua assinatura de identidade para eles. Apenas assine afirmações completamente detalhadas com as quais você concorda. - The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -831,11 +826,6 @@ Endereço: %4 Alt+P Alt+P - - - Enter the message you want to sign here - Entre a mensagem que você quer assinar aqui - Click "Sign Message" to get signature @@ -846,11 +836,6 @@ Endereço: %4 Sign a message to prove you own this address - - - &Sign Message - &Assinar Mensagem - Copy the current signature to the system clipboard @@ -861,6 +846,21 @@ Endereço: %4 &Copy to Clipboard &amp; Copie para a área de transferência do sistema + + + You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + Você pode assinar mensagens com seus endereços para provar que você é o dono deles. Seja cuidadoso para não assinar algo vago, pois ataques de pishing podem tentar te enganar para dar sua assinatura de identidade para eles. Apenas assine afirmações completamente detalhadas com as quais você concorda. + + + + Enter the message you want to sign here + Entre a mensagem que você quer assinar aqui + + + + &Sign Message + &Assinar Mensagem + @@ -889,12 +889,12 @@ Endereço: %4 Main - + Main Display - + Display @@ -910,35 +910,25 @@ Endereço: %4 Form - - Unconfirmed: - Unconfirmed: + + Number of transactions: + Number of transactions: - - Total number of transactions in wallet - Total number of transactions in wallet + + 0 + 0 - - 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 + + Unconfirmed: + Unconfirmed: Balance: Balance: - - - Number of transactions: - Number of transactions: - - - - 0 - - Wallet @@ -954,9 +944,34 @@ Endereço: %4 Your current balance Your current balance + + + 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 number of transactions in wallet + Total number of transactions in wallet + QRCodeDialog + + + Error encoding URI into QR Code. + + + + + PNG Images (*.png) + Imagens PNG (*.png) + + + + Save Image... + + Message: @@ -989,58 +1004,36 @@ Endereço: %4 - Label: - Etiqueta: - - - - &Save As... - &Salvar como... - - - - Error encoding URI into QR Code. - - - - - PNG Images (*.png) - Imagens PNG (*.png) - - - - Save Image... - - - - - SendCoinsDialog - - - - - - - - - - Send Coins - Send Coins + Label: + Etiqueta: + + + + &Save As... + &Salvar como... + + + SendCoinsDialog Send to multiple recipients at once Send to multiple recipients at once - - Remove all transaction fields - Remover todos os campos da transação + + The amount to pay must be larger than 0. + The amount to pay must be larger than 0. - - Balance: - Balance: + + &Add recipient... + &Add recipient... + + + + Clear all + Clear all @@ -1062,6 +1055,16 @@ Endereço: %4 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 amount exceeds your balance. @@ -1093,38 +1096,45 @@ Endereço: %4 123.456 BTC - - &Add recipient... - &Add recipient... + + + + + + + + + Send Coins + Send Coins - - Clear all - Clear all + + Remove all transaction fields + Remover todos os campos da transação + + + + Balance: + Balance: &Send &Send + + + SendCoinsEntry - - and - and - - - - The recipient address is not valid, please recheck. - + + Form + Form - - The amount to pay must be larger than 0. - The amount to pay must be larger than 0. + + A&mount: + A&mount: - - - SendCoinsEntry @@ -1146,6 +1156,11 @@ Endereço: %4 Choose address from address book Choose address from address book + + + Pay &To: + Pay &To: + Alt+A @@ -1166,21 +1181,6 @@ Endereço: %4 Remove this recipient Remove this recipient - - - A&mount: - A&mount: - - - - Form - - - - - Pay &To: - Pay &To: - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1190,9 +1190,34 @@ Endereço: %4 TransactionDesc - - (yours, label: - (yours, label: + + <b>Net amount:</b> + <b>Net amount:</b> + + + + Message: + Message: + + + + Open until %1 + Open until %1 + + + + Open for %1 blocks + Open for %1 blocks + + + + %1/offline? + %1/offline? + + + + <b>Status:</b> + <b>Status:</b> @@ -1214,17 +1239,17 @@ Endereço: %4 <b>Date:</b> <b>Date:</b> + + + <b>Source:</b> Generated<br> + <b>Source:</b> Generated<br> + <b>From:</b> <b>From:</b> - - - unknown - unknown - @@ -1232,58 +1257,43 @@ Endereço: %4 <b>To:</b> <b>To:</b> + + + (yours, label: + (yours, label: + (yours) (yours) - - Open until %1 - Open until %1 - - - - Open for %1 blocks - + + + + + <b>Credit:</b> + <b>Credit:</b> - - %1/offline? - + + (%1 matures in %2 more blocks) + (%1 matures in %2 more blocks) %1/unconfirmed - + %1/unconfirmed %1 confirmations - - - - - <b>Status:</b> - - - - - <b>Source:</b> Generated<br> - - - - - - - - <b>Credit:</b> - + %1 confirmations - - (%1 matures in %2 more blocks) - (%1 matures in %2 more blocks) + + unknown + unknown @@ -1302,16 +1312,6 @@ Endereço: %4 <b>Transaction fee:</b> <b>Transaction fee:</b> - - - <b>Net amount:</b> - <b>Net amount:</b> - - - - Message: - Message: - Comment: @@ -1407,9 +1407,9 @@ Endereço: %4 Received with - - Received from - + + Sent to + Sent to @@ -1441,16 +1441,16 @@ Endereço: %4 Type of transaction. Type of transaction. - - - Amount removed from or added to balance. - Amount removed from or added to balance. - Destination address of transaction. Destination address of transaction. + + + Amount removed from or added to balance. + Amount removed from or added to balance. + Mined balance will be available in %n more blocks @@ -1460,78 +1460,68 @@ Endereço: %4 - - Sent to - Sent to + + Received from + Recebido de TransactionView - - Other - Other - - - - Comma separated file (*.csv) - Comma separated file (*.csv) + + Copy address + Copy address - - Confirmed - Confirmed + + Copy label + Copy label - - Date - Date + + Edit label + Edit label - - Type - Type + + Export Transaction Data + Export Transaction Data - - Address - Address + + Comma separated file (*.csv) + Comma separated file (*.csv) Amount Amount - - - ID - ID - Error exporting Error exporting - - - Could not write to file %1. - Could not write to file %1. - Range: Range: - - to - to + + Copy amount + Copiar quantia Show details... Show details... + + + to + to + @@ -1578,20 +1568,15 @@ Endereço: %4 Sent to Sent to - - - To yourself - To yourself - Mined Mined - - Enter address or label to search - Enter address or label to search + + Other + Other @@ -1599,34 +1584,49 @@ Endereço: %4 Min amount - - Copy address - Copy address + + Confirmed + Confirmed - - Copy label - Copy label + + Date + Date - - Edit label - Edit label + + Type + Type - - Export Transaction Data - Export Transaction Data + + Label + Label - - Copy amount - Copiar quantia + + ID + ID - - Label - Label + + To yourself + To yourself + + + + Could not write to file %1. + Could not write to file %1. + + + + Enter address or label to search + Enter address or label to search + + + + Address + Address @@ -1640,9 +1640,43 @@ Endereço: %4 bitcoin-core - - Loading wallet... - Loading wallet... + + Bitcoin version + Bitcoin version + + + + List commands + List commands + + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + + + + Accept command line and JSON-RPC commands + Accept command line and JSON-RPC commands + + + + + Specify configuration file (default: bitcoin.conf) + Specify configuration file (default: bitcoin.conf) + + + + + Specify data directory + Specify data directory + + + + + Usage: + Usage: @@ -1655,14 +1689,9 @@ Endereço: %4 Loading block index... - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - - - - beta - beta + + Rescanning... + Rescanning... @@ -1671,27 +1700,19 @@ Endereço: %4 - - List commands - List commands - - - - - Rescanning... - Rescanning... + + Invalid -proxy address + Invalid -proxy address - - Options: - Options: - + + Invalid amount for -paytxfee=<amount> + Invalid amount for -paytxfee=<amount> - - Specify configuration file (default: bitcoin.conf) - Specify configuration file (default: bitcoin.conf) - + + Error: CreateThread(StartNode) failed + Error: CreateThread(StartNode) failed @@ -1703,12 +1724,6 @@ Endereço: %4 Generate coins Generate coins - - - - - Specify data directory - Specify data directory @@ -1718,14 +1733,54 @@ Endereço: %4 - - 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. + + Set database cache size in megabytes (default: 25) + Definir o tamanho do cache do banco de dados em megabytes (padrão: 25) - - 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 + + + + + Username for JSON-RPC connections + Username for JSON-RPC connections + + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Procurar por conexões em <port> (padrão: 8333 ou testnet:18333) + + + + Listen for JSON-RPC connections on <port> (default: 8332) + Listen for JSON-RPC connections on <port> (default: 8332) + + + + + Maintain at most <n> connections to peers (default: 125) + Manter no máximo <n> conexões aos peers (padrão: 125) + + + + Send commands to node running on <ip> (default: 127.0.0.1) + Send commands to node running on <ip> (default: 127.0.0.1) + + + + + Rescan the block chain for missing wallet transactions + Rescan the block chain for missing wallet transactions + + + + + Set key pool size to <n> (default: 100) + Set key pool size to <n> (default: 100) @@ -1779,16 +1834,9 @@ Endereço: %4 - - 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 - + + Fee per KB to add to transactions you send + Fee per KB to add to transactions you send @@ -1796,67 +1844,87 @@ Endereço: %4 - - Username for JSON-RPC connections - Username for JSON-RPC connections + + Prepend debug output with timestamp + Pré anexar a saída de debug com estampa de tempo + + + + 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 + Mandar informação de trace/debug para o debugger + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + How thorough the block verification is (0-6, default: 1) + + + + + Server certificate file (default: server.cert) + Server certificate file (default: server.cert) - - Password for JSON-RPC connections - Password for JSON-RPC connections + + Server private key (default: server.pem) + Server private key (default: server.pem) - - Listen for JSON-RPC connections on <port> (default: 8332) - Listen for JSON-RPC connections on <port> (default: 8332) + + This help message + This help message - - Allow JSON-RPC connections from specified IP address - Allow JSON-RPC connections from specified IP address - + + Upgrade wallet to latest format + Atualizar carteira para o formato mais recente - - Send commands to node running on <ip> (default: 127.0.0.1) - Send commands to node running on <ip> (default: 127.0.0.1) - + + How many blocks to check at startup (default: 2500, 0 = all) + Quantos blocos verificar ao iniciar (padrão: 2500, 0 = todos) - - Execute command when the best block changes (%s in cmd is replaced by block hash) - + + 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. - - Set key pool size to <n> (default: 100) - Set key pool size to <n> (default: 100) - + + Error loading blkindex.dat + Erro ao carregar blkindex.dat - - Start minimized - Start minimized - + + Error loading wallet.dat + Erro ao carregar wallet.dat - - Connect through socks4 proxy - Connect through socks4 proxy - + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Erro ao carregar wallet.dat: Carteira requer uma versão mais nova do Bitcoin - - Done loading - Done loading + + Wallet needed to be rewritten: restart Bitcoin to complete + A Carteira precisou ser reescrita: reinicie o Bitcoin para completar - - Connect only to the specified node - Connect only to the specified node + + Connect through socks4 proxy + Connect through socks4 proxy @@ -1867,37 +1935,16 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - Get help for a command - Get help for a command - - - - - Bitcoin version - Bitcoin version - - - - Usage: - Usage: - - - - How thorough the block verification is (0-6, default: 1) - - - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Error loading addr.dat + + + Loading wallet... + Loading wallet... + Cannot downgrade wallet @@ -1914,19 +1961,9 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - Invalid -proxy address - Invalid -proxy address - - - - Invalid amount for -paytxfee=<amount> - Invalid amount for -paytxfee=<amount> - - - - Error: CreateThread(StartNode) failed - Error: CreateThread(StartNode) failed + + Done loading + Done loading @@ -1934,112 +1971,90 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Unable to bind to port %d on this computer. Bitcoin is probably already running. - - - - Don't generate coins - Don't generate coins - + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - - Allow DNS lookups for addnode and connect - Allow DNS lookups for addnode and connect - + + beta + beta - - Rescan the block chain for missing wallet transactions - Rescan the block chain for missing wallet transactions + + Get help for a command + Get help for a command - - Use OpenSSL (https) for JSON-RPC connections - Use OpenSSL (https) for JSON-RPC connections + + Options: + Options: - - Server certificate file (default: server.cert) - Server certificate file (default: server.cert) + + Don't generate coins + Don't generate coins - - Server private key (default: server.pem) - Server private key (default: server.pem) + + Start minimized + Start minimized - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Allow DNS lookups for addnode and connect + Allow DNS lookups for addnode and connect - - This help message - This help message + + Connect only to the specified node + Connect only to the specified node - - - 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) - - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Procurar por conexões em <port> (padrão: 8333 ou testnet:18333) - - - - Maintain at most <n> connections to peers (default: 125) - Manter no máximo <n> conexões aos peers (padrão: 125) - - - - Set database cache size in megabytes (default: 25) - Definir o tamanho do cache do banco de dados em megabytes (padrão: 25) - Threshold for disconnecting misbehaving peers (default: 100) Limite para desconectar peers mal comportados (padrão: 100) - - Prepend debug output with timestamp - Pré anexar a saída de debug com estampa de tempo + + 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) - - 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 + + Use the test network + Use the test network + - - Send trace/debug info to debugger - Mandar informação de trace/debug para o debugger + + Password for JSON-RPC connections + Password for JSON-RPC connections + - - Fee per KB to add to transactions you send - Fee per KB to add to transactions you send + + Allow JSON-RPC connections from specified IP address + Allow JSON-RPC connections from specified IP address + - - Error loading blkindex.dat - Erro ao carregar blkindex.dat + + Use OpenSSL (https) for JSON-RPC connections + Use OpenSSL (https) for JSON-RPC connections + - - Error loading wallet.dat - Erro ao carregar wallet.dat + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + @@ -2047,24 +2062,9 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Erro ao carregar wallet.dat: Carteira corrompida - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Erro ao carregar wallet.dat: Carteira requer uma versão mais nova do Bitcoin - - - - How many blocks to check at startup (default: 2500, 0 = all) - Quantos blocos verificar ao iniciar (padrão: 2500, 0 = todos) - - - - Upgrade wallet to latest format - Atualizar carteira para o formato mais recente - - - - Wallet needed to be rewritten: restart Bitcoin to complete - A Carteira precisou ser reescrita: reinicie o Bitcoin para completar + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Unable to bind to port %d on this computer. Bitcoin is probably already running. diff --git a/src/qt/locale/bitcoin_ro_RO.ts b/src/qt/locale/bitcoin_ro_RO.ts index 538b9ae16c..ace886707f 100644 --- a/src/qt/locale/bitcoin_ro_RO.ts +++ b/src/qt/locale/bitcoin_ro_RO.ts @@ -391,7 +391,7 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? Show information about Qt - + Informaţii despre Qt @@ -802,7 +802,7 @@ Address: %4 Message - + Mesaj @@ -812,7 +812,7 @@ Address: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Introduceţi o adresă Bitcoin (de exemplu: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -874,7 +874,7 @@ Address: %4 %1 is not a valid address. - + Adresa introdusă "%1" nu este o adresă bitcoin valabilă. @@ -983,7 +983,7 @@ Address: %4 BTC - + @@ -1018,6 +1018,56 @@ Address: %4 SendCoinsDialog + + + Confirm the send action + Confirmă operaţiunea de trimitere + + + + &Send + &S Trimite + + + + <b>%1</b> to %2 (%3) + <b>%1</b> la %2 (%3) + + + + Confirm send coins + Confirmaţi trimiterea de bitcoin + + + + Are you sure you want to send %1? + Sunteţi sigur că doriţi să trimiteţi %1? + + + + The amount exceeds your balance. + Suma depăşeşte soldul contului. + + + + The total exceeds your balance when the %1 transaction fee is included. + Total depăşeşte soldul contului in cazul plăţii 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: Tranyacţia nu a putut fi iniţiată. + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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: Tranyacţia a fost respinsă. Acesta poate fi rezultatul cheltuirii prealabile a unei sume de bitcoin din portofelul electronic, ca în cazul folosirii unei copii a fisierului wallet.dat, în care s-au efectuat tranzacţii neînregistrate în fisierul curent. + @@ -1050,40 +1100,15 @@ Address: %4 Balance: Balanţă: - - - Clear all - Şterge tot - 123.456 BTC 123.456 BTC - - Confirm the send action - Confirmă operaţiunea de trimitere - - - - &Send - &S Trimite - - - - <b>%1</b> to %2 (%3) - <b>%1</b> la %2 (%3) - - - - Confirm send coins - Confirmaţi trimiterea de bitcoin - - - - Are you sure you want to send %1? - Sunteţi sigur că doriţi să trimiteţi %1? + + Clear all + Şterge tot @@ -1100,31 +1125,6 @@ Address: %4 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. - Total depăşeşte soldul contului in cazul plăţii 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: Tranyacţia nu a putut fi iniţiată. - - - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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: Tranyacţia a fost respinsă. Acesta poate fi rezultatul cheltuirii prealabile a unei sume de bitcoin din portofelul electronic, ca în cazul folosirii unei copii a fisierului wallet.dat, în care s-au efectuat tranzacţii neînregistrate în fisierul curent. - SendCoinsEntry @@ -1162,7 +1162,7 @@ Address: %4 Choose address from address book - + Alegeţi adresa din Listă @@ -1399,9 +1399,9 @@ Address: %4 Mined balance will be available in %n more blocks - Soldul de bitcoin produs va fi disponibil după încă %n bloc - Soldul de bitcoin produs va fi disponibil după încă %n blocuri - Soldul de bitcoin produs va fi disponibil după încă %n blocuri + + + @@ -1472,6 +1472,21 @@ Address: %4 TransactionView + + + This week + Săptămâna aceasta + + + + Range: + Interval: + + + + to + către + @@ -1483,11 +1498,6 @@ Address: %4 Today Astăzi - - - This week - Săptămâna aceasta - This month @@ -1623,16 +1633,6 @@ Address: %4 Could not write to file %1. Fisierul %1 nu a putut fi accesat pentru scriere. - - - Range: - Interval: - - - - to - către - WalletModel @@ -1782,7 +1782,7 @@ Address: %4 Connect through socks4 proxy - + Conectează prin proxy SOCKS4 diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts index be3e6261b6..74aacae7bf 100644 --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -67,17 +67,12 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - &Kопировать - - - - Show &QR Code - Показать &QR код + &Kопировать - - &Sign Message - &Подписать сообщение + + Sign a message to prove you own this address + Подпишите сообщение для доказательства @@ -90,39 +85,34 @@ This product includes software developed by the OpenSSL Project for use in the O &Удалить - - Sign a message to prove you own this address - Подпишите сообщение для доказательства + + &Sign Message + &Подписать сообщение - - Export Address Book Data - Экспортировать адресную книгу + + Show &QR Code + Показать &QR код - - Comma separated file (*.csv) - Текст, разделённый запятыми (*.csv) + + Copy address + Копировать адрес Copy label Копировать метку - - - Copy address - Копировать адрес - Edit Правка - - Delete - Удалить + + Could not write to file %1. + Невозможно записать в файл %1. @@ -130,18 +120,23 @@ This product includes software developed by the OpenSSL Project for use in the O Ошибка экспорта - - Could not write to file %1. - Невозможно записать в файл %1. + + Delete + Удалить + + + + Export Address Book Data + Экспортировать адресную книгу + + + + Comma separated file (*.csv) + Текст, разделённый запятыми (*.csv) AddressTableModel - - - (no label) - [нет метки] - Label @@ -152,17 +147,14 @@ This product includes software developed by the OpenSSL Project for use in the O Address Адрес + + + (no label) + [нет метки] + AskPassphraseDialog - - - - - - Wallet encryption failed - Не удалось зашифровать бумажник - Enter passphrase @@ -173,10 +165,25 @@ This product includes software developed by the OpenSSL Project for use in the O New passphrase Новый пароль + + + Repeat new passphrase + Повторите новый пароль + TextLabel - + TextLabel + + + + This operation needs your wallet passphrase to unlock the wallet. + Для выполнения операции требуется пароль вашего бумажника. + + + + Wallet passphrase was successfully changed. + Пароль бумажника успешно изменён. @@ -184,9 +191,9 @@ This product includes software developed by the OpenSSL Project for use in the O Расшифровать бумажник - - Repeat new passphrase - Повторите новый пароль + + Dialog + Dialog @@ -194,19 +201,9 @@ This product includes software developed by the OpenSSL Project for use in the O Зашифровать бумажник - - This operation needs your wallet passphrase to decrypt the wallet. - Для выполнения операции требуется пароль вашего бумажника. - - - - Change passphrase - Сменить пароль - - - - Confirm wallet encryption - Подтвердите шифрование бумажника + + Enter the old and new passphrase to the wallet. + Введите старый и новый пароль для бумажника. @@ -219,41 +216,34 @@ 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. Шифрование бумажника не удалось из-за внутренней ошибки. Ваш бумажник не был зашифрован. + + + + The supplied passphrases do not match. + Введённые пароли не совпадают. + Wallet unlock failed Разблокировка бумажника не удалась - - Dialog - Dialog + + + + The passphrase entered for the wallet decryption was incorrect. + Указанный пароль не подходит. + + + + Wallet decryption failed + Расшифрование бумажника не удалось Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши биткоины от кражи с помощью инфицирования вашего компьютера вредоносным ПО. - - - This operation needs your wallet passphrase to unlock the wallet. - Для выполнения операции требуется пароль вашего бумажника. - - - - 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> - - - - Unlock wallet - Разблокировать бумажник - - - - Enter the old and new passphrase to the wallet. - Введите старый и новый пароль для бумажника. - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! @@ -262,27 +252,12 @@ Are you sure you wish to encrypt your wallet? Вы действительно хотите зашифровать ваш бумажник? - - Wallet decryption failed - Расшифрование бумажника не удалось - - - - - - The passphrase entered for the wallet decryption was incorrect. - Указанный пароль не подходит. - - - - - The supplied passphrases do not match. - Введённые пароли не совпадают. - - - - Wallet passphrase was successfully changed. - Пароль бумажника успешно изменён. + + + + + Wallet encryption failed + Не удалось зашифровать бумажник @@ -290,39 +265,34 @@ Are you sure you wish to encrypt your wallet? Warning: The Caps Lock key is on. Внимание: Caps Lock включен. - - - BitcoinGUI - - - &Address Book - &Адресная книга - - - &Send coins - Отп&равка монет + + 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> - - &Export... - &Экспорт... + + Unlock wallet + Разблокировать бумажник - - About &Qt - О &Qt + + This operation needs your wallet passphrase to decrypt the wallet. + Для выполнения операции требуется пароль вашего бумажника. - - &Settings - &Настройки + + Change passphrase + Сменить пароль - - Tabs toolbar - Панель вкладок + + Confirm wallet encryption + Подтвердите шифрование бумажника + + + BitcoinGUI &Transactions @@ -334,15 +304,24 @@ Are you sure you wish to encrypt your wallet? Показать историю транзакций - - - Synchronizing with network... - Синхронизация с сетью... + + &Address Book + &Адресная книга - - &Overview - О&бзор + + &Receive coins + &Получение монет + + + + Block chain synchronization in progress + Идёт синхронизация цепочки блоков + + + + &File + &Файл @@ -350,9 +329,15 @@ Are you sure you wish to encrypt your wallet? Изменить список сохранённых адресов и меток к ним - - &Receive coins - &Получение монет + + + Synchronizing with network... + Синхронизация с сетью... + + + + Show general overview of wallet + Показать общий обзор действий с бумажником @@ -360,39 +345,59 @@ Are you sure you wish to encrypt your wallet? Показать список адресов для получения платежей - - Modify configuration options for bitcoin - Изменить настройки - - + + &Send coins + Отп&равка монет + + + + E&xit + В&ыход + + Quit application Закрыть приложение - - &Options... - Оп&ции... + + Show information about Bitcoin + Показать информацию о Bitcoin'е - - Block chain synchronization in progress - Идёт синхронизация цепочки блоков + + About &Qt + О &Qt - - Show general overview of wallet - Показать общий обзор действий с бумажником + + Show information about Qt + Показать информацию о Qt - - Send coins to a bitcoin address - Отправить монеты на указанный адрес Bitcoin + + Open &Bitcoin + &Показать бумажник - - Prove you control an address - Доказать, что вы владеете адресом + + Show the Bitcoin window + Показать окно бумажника + + + + &Export... + &Экспорт... + + + + Export the data in the current tab to a file + Экспортировать данные из вкладки в файл + + + + &Encrypt Wallet + &Зашифровать бумажник @@ -404,31 +409,71 @@ Are you sure you wish to encrypt your wallet? &Backup Wallet &Сделать резервную копию бумажника + + + &Change Passphrase + &Изменить пароль + Change the passphrase used for wallet encryption Изменить пароль шифрования бумажника - - &File - &Файл + + &Settings + &Настройки + + + + &Overview + О&бзор &Help &Помощь + + + Tabs toolbar + Панель вкладок + Actions toolbar Панель действий + + + Bitcoin Wallet + Bitcoin-бумажник + [testnet] [тестовая сеть] + + + Send coins to a bitcoin address + Отправить монеты на указанный адрес + + + + Sign &message + Подписать &сообщение + + + + Prove you control an address + Доказать, что вы владеете адресом + + + + &About %1 + &О %1 + %n active connection(s) to Bitcoin network @@ -470,6 +515,15 @@ Are you sure you wish to encrypt your wallet? %n часов назад + + + %n day(s) ago + + %n день назад + %n дня назад + %n дней назад + + Up to date @@ -480,11 +534,21 @@ Are you sure you wish to encrypt your wallet? 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, которая отправится тем узлам, которые обработают Вашу транзакцию, и поможет поддержать сеть. Вы хотите добавить комиссию? + + + &Options... + Оп&ции... + Sent transaction @@ -508,65 +572,30 @@ Address: %4 Адрес: %4 + + + Backup wallet to another location + Сделать резервную копию бумажника в другом месте + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Бумажник <b>зашифрован</b> и в настоящее время <b>разблокирован</b> - - There was an error trying to save the wallet data to the new location. - При попытке сохранения данных бумажника в новое место произошла ошибка. - - - - E&xit - В&ыход - - - - &About %1 - &О %1 - - - - Show information about Qt - Показать информацию о Qt - - - - Open &Bitcoin - &Показать бумажник - - - - Show the Bitcoin window - Показать окно бумажника - - - - &Encrypt Wallet - &Зашифровать бумажник - - - - &Change Passphrase - &Изменить пароль - - - - Show information about Bitcoin - Показать информацию о Bitcoin'е + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> - - Export the data in the current tab to a file - Экспортировать данные из вкладки в файл + + Wallet Data (*.dat) + Данные бумажника (*.dat) - - Backup wallet to another location - Сделать резервную копию бумажника в другом месте + + Modify configuration options for bitcoin + Изменить настройки @@ -578,14 +607,10 @@ Address: %4 Downloaded %1 of %2 blocks of transaction history. Загружено %1 из %2 блоков истории транзакций. - - - %n day(s) ago - - %n день назад - %n дня назад - %n дней назад - + + + Sending... + Отправка... @@ -598,34 +623,9 @@ Address: %4 Резервное копирование не удалось - - Wallet Data (*.dat) - Данные Кошелька (*.dat) - - - - Sign &message - Подписать &сообщение - - - - Bitcoin Wallet - Bitcoin-бумажник - - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> - - - - Sending... - Отправка... - - - - Last received block was generated %1. - Последний полученный блок был сгенерирован %1. + + There was an error trying to save the wallet data to the new location. + При попытке сохранения данных бумажника в новое место произошла ошибка. @@ -648,7 +648,7 @@ Address: %4 &Display addresses in transaction list - &Показывать адреса в списке транзакций + &Показывать адреса в списке транзакций @@ -658,16 +658,16 @@ Address: %4 EditAddressDialog - - - &Label - &Метка - Edit Address Изменить адрес + + + &Label + &Метка + The label associated with this address book entry @@ -764,7 +764,7 @@ Address: %4 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. - Сворачивать вместо закрытия. Если данная опция будет выбрана — приложение закроется только после выбора соответствующего пункта в меню. + Сворачивать вместо закрытия. Если данная опция будет выбрана — приложение закроется только после выбора соответствующего пункта в меню. @@ -772,25 +772,15 @@ Address: %4 &Подключаться через SOCKS4 прокси: - - Port of the proxy (e.g. 1234) - Порт прокси-сервера (например, 9050) {1234)?} - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработано быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Подключаться к сети Bitcoin через SOCKS4 прокси (например, при использовании Tor) Proxy &IP: &IP Прокси: - - - Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) - Подключаться к сети Bitcoin через SOCKS4 прокси (например, при использовании Tor) - IP address of the proxy (e.g. 127.0.0.1) @@ -801,6 +791,16 @@ Address: %4 &Port: По&рт: + + + Port of the proxy (e.g. 1234) + Порт прокси-сервера (например 1234) + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработано быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. + Pay transaction &fee @@ -814,51 +814,11 @@ Address: %4 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Адрес, которым вы хотите подписать сообщение (напр. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - - Choose adress from 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 - Скопировать текущую подпись в системный буфер обмена - - - - Click "Sign Message" to get signature - Для создания подписи нажмите на "Подписать сообщение" - Sign a message to prove you own this address @@ -896,6 +856,46 @@ Address: %4 Sign failed Подписание не удалось. + + + 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Адрес, которым вы хотите подписать сообщение (напр. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Choose adress from address book + Выбрать адрес из адресной книги + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Вставить адрес из буфера обмена + + + + Alt+P + Alt+P + + + + Click "Sign Message" to get signature + Для создания подписи нажмите на "Подписать сообщение" + + + + Copy the current signature to the system clipboard + Скопировать текущую подпись в системный буфер обмена + OptionsDialog @@ -918,14 +918,24 @@ Address: %4 OverviewPage - - Form - Форма + + <b>Recent transactions</b> + <b>Последние транзакции</b> - - Wallet - Бумажник + + Your current balance + Ваш текущий баланс + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Общая сумма всех транзакций, которые до сих пор не подтверждены, и до сих пор не учитываются в текущем балансе + + + + Total number of transactions in wallet + Общее количество транзакций в Вашем бумажнике @@ -933,19 +943,19 @@ Address: %4 Не подтверждено: - - Balance: - Баланс: + + Form + Форма - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Общая сумма всех транзакций, которые до сих пор не подтверждены, и до сих пор не учитываются в текущем балансе + + Wallet + Бумажник - - Total number of transactions in wallet - Общее количество транзакций в Вашем бумажнике + + Balance: + Баланс: @@ -957,23 +967,18 @@ Address: %4 0 0 - - - Your current balance - Ваш текущий баланс - - - - <b>Recent transactions</b> - <b>Последние транзакции</b> - QRCodeDialog - - Request Payment - Запросить платёж + + Label: + Метка: + + + + &Save As... + &Сохранить как... @@ -981,14 +986,14 @@ Address: %4 Количество: - - Label: - Метка: + + BTC + BTC - - &Save As... - &Сохранить как... + + Message: + Сообщение: @@ -1001,14 +1006,9 @@ Address: %4 QR код - - BTC - BTC - - - - Message: - Сообщение: + + Request Payment + Запросить платёж @@ -1028,21 +1028,48 @@ Address: %4 SendCoinsDialog + + + + + + + + + + Send Coins + Отправка + + + + &Add recipient... + &Добавить получателя... + + + + Balance: + Баланс: + + + + 123.456 BTC + 123.456 BTC + Confirm the send action Подтвердить отправку - - - &Send - &Отправить - <b>%1</b> to %2 (%3) <b>%1</b> адресату %2 (%3) + + + Confirm send coins + Подтвердите отправку монет + Are you sure you want to send %1? @@ -1053,142 +1080,115 @@ Address: %4 and и - - - The recipient address is not valid, please recheck. - Адрес получателя неверный, пожалуйста, перепроверьте. - The amount to pay must be larger than 0. Количество монет для отправки должно быть больше 0. - - - The total exceeds your balance when the %1 transaction fee is included. - Сумма превысит Ваш баланс, если комиссия в размере %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, а монеты были потрачены из другой копии, но не были отмечены как потраченные в этой. - - - - - - - - - - - Send Coins - Отправка - Send to multiple recipients at once Отправить нескольким получателям одновременно - - - &Add recipient... - &Добавить получателя... - - - - Remove all transaction fields - Удалить все поля транзакции - Clear all Очистить всё - - Balance: - Баланс: + + Remove all transaction fields + Удалить все поля транзакции - - 123.456 BTC - 123.456 BTC + + &Send + &Отправить - - Confirm send coins - Подтвердите отправку монет + + The recipient address is not valid, please recheck. + Адрес получателя неверный, пожалуйста, перепроверьте. 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, а монеты были потрачены из другой копии, но не были отмечены как потраченные в этой. + SendCoinsEntry - - Form - Форма + + Remove this recipient + Удалить этого получателя A&mount: Ко&личество: + + + Form + Форма + Pay &To: Полу&чатель: - - - &Label: - &Метка: - - - - Choose address from address book - Выберите адрес из адресной книги - - - - Paste address from clipboard - Вставить адрес из буфера обмена - - - - Remove this recipient - Удалить этого получателя - Enter a label for this address to add it to your address book Введите метку для данного адреса (для добавления в адресную книгу) + + + &Label: + &Метка: + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Адрес получателя платежа (например 1LA5FtQhnnWnkK6zjFfutR7Stiit4wKd63) + + + Choose address from address book + Выберите адрес из адресной книги + Alt+A Alt+A + + + Paste address from clipboard + Вставить адрес из буфера обмена + Alt+P @@ -1208,14 +1208,9 @@ Address: %4 Открыто до %1 - - %1/unconfirmed - %1/не подтверждено - - - - , has not been successfully broadcast yet - , ещё не было успешно разослано + + %1 confirmations + %1 подтверждений @@ -1227,11 +1222,6 @@ Address: %4 %1/offline? %1/оффлайн? - - - %1 confirmations - %1 подтверждений - <b>Status:</b> @@ -1263,11 +1253,6 @@ Address: %4 <b>From:</b> <b>Отправитель:</b> - - - unknown - неизвестно - @@ -1320,10 +1305,30 @@ Address: %4 <b>Net amount:</b> <b>Общая сумма:</b> + + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Сгенерированные монеты должны подождать 120 блоков прежде, чем они смогут быть отправлены. Когда Вы сгенерировали этот блок он был отправлен в сеть, чтобы он был добавлен к цепочке блоков. Если данная процедура не удастся, статус изменится на «не подтверждено» и монеты будут непередаваемыми. Такое может случайно происходить в случае, если другой узел сгенерирует блок на несколько секунд раньше. + + + + %1/unconfirmed + %1/не подтверждено + + + + , has not been successfully broadcast yet + , ещё не было успешно разослано + + + + unknown + неизвестно + Message: - Сообщение: + Сообщение: @@ -1335,11 +1340,6 @@ Address: %4 Transaction ID: Идентификатор транзакции: - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Сгенерированные монеты должны подождать 120 блоков прежде, чем они смогут быть отправлены. Когда Вы сгенерировали этот блок он был отправлен в сеть, чтобы он был добавлен к цепочке блоков. Если данная процедура не удастся, статус изменится на «не подтверждено» и монеты будут непередаваемыми. Такое может случайно происходить в случае, если другой узел сгенерирует блок на несколько секунд раньше. - TransactionDescDialog @@ -1356,6 +1356,21 @@ Address: %4 TransactionTableModel + + + Type + Тип + + + + Address + Адрес + + + + Amount + Количество + Open for %n block(s) @@ -1455,21 +1470,6 @@ Address: %4 Date Дата - - - Address - Адрес - - - - Amount - Количество - - - - Type - Тип - Mined balance will be available in %n more blocks @@ -1482,16 +1482,6 @@ Address: %4 TransactionView - - - ID - ID - - - - Could not write to file %1. - Невозможно записать в файл %1. - This year @@ -1507,6 +1497,51 @@ Address: %4 Received with Получено на + + + Sent to + Отправлено на + + + + To yourself + Отправленные себе + + + + Mined + Добытые + + + + Other + Другое + + + + Enter address or label to search + Введите адрес или метку для поиска + + + + Copy label + Копировать метку + + + + Edit label + Изменить метку + + + + Export Transaction Data + Экспортировать данные транзакций + + + + Confirmed + Подтверждено + Copy amount @@ -1522,11 +1557,21 @@ Address: %4 Amount Количество + + + ID + ID + Error exporting Ошибка экспорта + + + Could not write to file %1. + Невозможно записать в файл %1. + @@ -1539,14 +1584,9 @@ Address: %4 Промежуток от: - - Today - Сегодня - - - - This week - На этой неделе + + to + до @@ -1558,31 +1598,6 @@ Address: %4 Last month За последний месяц - - - Sent to - Отправлено на - - - - To yourself - Отправленные себе - - - - Mined - Добытые - - - - Other - Другое - - - - Enter address or label to search - Введите адрес или метку для поиска - Min amount @@ -1594,39 +1609,19 @@ Address: %4 Копировать адрес - - Copy label - Копировать метку + + Comma separated file (*.csv) + Текст, разделённый запятыми (*.csv) - - Edit label - Изменить метку + + Date + Дата - - Export Transaction Data - Экспортировать данные транзакций - - - - Comma separated file (*.csv) - Текст, разделённый запятыми (*.csv) - - - - Confirmed - Подтверждено - - - - Date - Дата - - - - Type - Тип + + Type + Тип @@ -1634,9 +1629,14 @@ Address: %4 Метка - - to - до + + Today + Сегодня + + + + This week + На этой неделе @@ -1655,39 +1655,34 @@ Address: %4 bitcoin-core - - Usage: - Использование: - - - - Loading addresses... - Загрузка адресов... + + Loading block index... + Загрузка индекса блоков... - - Rescanning... - Сканирование... + + Cannot initialize keypool + Не удаётся инициализировать массив ключей - - Loading block index... - Загрузка индекса блоков... + + Cannot write default address + Не удаётся записать адрес по умолчанию - - Show splash screen on startup (default: 1) - Показывать сплэш при запуске (по умолчанию: 1) + + Done loading + Загрузка завершена - - Specify data directory - Укажите каталог данных + + Specify pid file (default: bitcoind.pid) + Указать pid-файл (по умолчанию: bitcoin.pid) - - Specify connection timeout (in milliseconds) - Укажите таймаут соединения (в миллисекундах) + + Generate coins + Генерировать монеты @@ -1695,154 +1690,154 @@ Address: %4 Принимать входящие подключения на <port> (по умолчанию: 8333 или 18333 в тестовой сети) - - Maintain at most <n> connections to peers (default: 125) - Поддерживать не более <n> подключений к узлам (по умолчанию: 125) + + Set database cache size in megabytes (default: 25) + Установить размер кэша базы данных в мегабайтах (по умолчанию: 25) - - Accept connections from outside (default: 1) - Принимать подключения извне (по умолчанию: 1) + + Add a node to connect to and attempt to keep the connection open + Добавить узел для подключения и пытаться поддерживать соединение открытым - - Set language, for example "de_DE" (default: system locale) - Выберите язык, например "de_DE" (по умолчанию: как в системе) + + Accept command line and JSON-RPC commands + Принимать командную строку и команды JSON-RPC - - Find peers using DNS lookup (default: 1) - Искать узлы с помощью DNS (по умолчанию: 1) + + Find peers using internet relay chat (default: 0) + Найти участников через IRC (по умолчанию: 0) - - Threshold for disconnecting misbehaving peers (default: 100) - Порог для отключения неправильно ведущих себя узлов (по умолчанию: 100) + + Run in the background as a daemon and accept commands + Запускаться в фоне как демон и принимать команды - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Число секунд блокирования неправильно ведущих себя узлов (по умолчанию: 86400) + + Error: CreateThread(StartNode) failed + Ошибка: Созданиние потока (запуск узла) не удался - - Use Universal Plug and Play to map the listening port (default: 1) - Использовать UPnP для проброса порта (по умолчанию: 1) + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Невозможно забиндить порт %d на данном компьютере. Возможно, бумажник ужк запущен. - - Use Universal Plug and Play to map the listening port (default: 0) - Использовать UPnP для проброса порта (по умолчанию: 0) + + Send trace/debug info to debugger + Отправлять информацию трассировки/отладки в отладчик - - Invalid -proxy address - Ошибка в адресе прокси + + beta + бета - - Invalid amount for -paytxfee=<amount> - Ошибка в сумме комиссии + + 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=). Данный параметр отвечает за комиссию, которую Вы будете добавлять к сумме при осуществлении транзакций. + + Server private key (default: server.pem) + Приватный ключ сервера (по умолчанию: server.pem) - - Error: CreateThread(StartNode) failed - Ошибка: Созданиние потока (запуск узла) не удался + + Error loading wallet.dat: Wallet corrupted + Ошибка загрузки wallet.dat: Бумажник поврежден - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Невозможно забиндить порт %d на данном компьютере. Возможно, бумажник ужк запущен. + + Wallet needed to be rewritten: restart Bitcoin to complete + Необходимо перезаписать бумажник, перезапустите Bitcoin для завершения операции. - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - ВНИМАНИЕ: Проверьте дату и время, установленные на Вашем компьютере. Если Ваши часы идут не правильно Bitcoin может наботать не корректно. + + Error loading wallet.dat + Ошибка при загрузке wallet.dat - - beta - бета + + Fee per KB to add to transactions you send + Комиссия на килобайт, добавляемая к вашим транзакциям - - Accept command line and JSON-RPC commands - Принимать командную строку и команды JSON-RPC + + Prepend debug output with timestamp + Дописывать отметки времени к отладочному выводу - - Run in the background as a daemon and accept commands - Запускаться в фоне как демон и принимать команды + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Выполнить команду, когда появляется новый блок (%s в команде заменяется на хэш блока) - - Use the test network - Использовать тестовую сеть + + Username for JSON-RPC connections + Имя для подключений JSON-RPC - - Send trace/debug info to debugger - Отправлять информацию трассировки/отладки в отладчик + + Password for JSON-RPC connections + Пароль для подключений JSON-RPC - - Allow JSON-RPC connections from specified IP address - Разрешить подключения JSON-RPC с указанного IP + + Listen for JSON-RPC connections on <port> (default: 8332) + Ожидать подключения JSON-RPC на <порт> (по умолчанию: 8332) - - Send commands to node running on <ip> (default: 127.0.0.1) - Посылать команды узлу, запущенному на <ip> (по умолчанию: 127.0.0.1) + + Set key pool size to <n> (default: 100) + Установить размер запаса ключей в <n> (по умолчанию: 100) - - Server certificate file (default: server.cert) - Файл серверного сертификата (по умолчанию: server.cert) + + Rescan the block chain for missing wallet transactions + Перепроверить цепь блоков на предмет отсутствующих в бумажнике транзакций - - Server private key (default: server.pem) - Приватный ключ сервера (по умолчанию: server.pem) + + Use OpenSSL (https) for JSON-RPC connections + Использовать OpenSSL (https) для подключений JSON-RPC - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Разрешённые алгоритмы (по умолчанию: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Upgrade wallet to latest format + Обновить бумажник до последнего формата - - This help message - Эта справка + + How many blocks to check at startup (default: 2500, 0 = all) + Сколько блоков проверять при запуске (по умолчанию: 2500, 0 = все) - - Error loading wallet.dat: Wallet corrupted - Ошибка загрузки wallet.dat: Бумажник поврежден + + How thorough the block verification is (0-6, default: 1) + Насколько тщательно проверять блоки (0-6, по умолчанию: 1) - - Wallet needed to be rewritten: restart Bitcoin to complete - Необходимо перезаписать бумажник, перезапустите Bitcoin для завершения операции. + + Error loading blkindex.dat + Ошибка чтения blkindex.dat - - Error loading wallet.dat - Ошибка при загрузке wallet.dat + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Ошибка загрузки wallet.dat: бумажник требует более новую версию Bitcoin - - Connect through socks4 proxy - Подключаться через socks4 прокси + + Cannot downgrade wallet + Не удаётся понизить версию бумажника - - Allow DNS lookups for addnode and connect - Разрешить обращения к DNS для addnode и подключения + + Start minimized + Запускать свёрнутым @@ -1854,30 +1849,32 @@ Address: %4 Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) Максимальный размер буфера приёма на соединение, <n>*1000 байт (по умолчанию: 10000) - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Максимальный размер буфера отправки на соединение, <n>*1000 байт (по умолчанию: 10000) - Error loading addr.dat Ошибка загрузки addr.dat + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +Параметры SSL: (см. Bitcoin Wiki для инструкций по настройке SSL) + Bitcoin version Версия - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Невозможно установить блокировку на рабочую директорию %s. Возможно, бумажник уже запущен. + + Maintain at most <n> connections to peers (default: 125) + Поддерживать не более <n> подключений к узлам (по умолчанию: 125) - - Loading wallet... - Загрузка бумажника... + + Options: + Опции: @@ -1885,172 +1882,175 @@ Address: %4 Отправить команду на -server или bitcoind - - List commands - Список команд - + + Specify configuration file (default: bitcoin.conf) + Указать конфигурационный файл (по умолчанию: bitcoin.conf) - - Get help for a command - Получить помощь по команде + + Specify connection timeout (in milliseconds) + Укажите таймаут соединения (в миллисекундах) - - Options: - Опции: + + Specify data directory + Укажите каталог данных - - Specify configuration file (default: bitcoin.conf) - Указать конфигурационный файл (по умолчанию: bitcoin.conf) + + Threshold for disconnecting misbehaving peers (default: 100) + Порог для отключения неправильно ведущих себя узлов (по умолчанию: 100) - - Specify pid file (default: bitcoind.pid) - Указать pid-файл (по умолчанию: bitcoin.pid) + + Usage: + Использование: - - Generate coins - Генерировать монеты + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Невозможно установить блокировку на рабочую директорию %s. Возможно, бумажник уже запущен. - - Don't generate coins - Не генерировать монеты + + Loading addresses... + Загрузка адресов... - - Start minimized - Запускать свёрнутым + + Loading wallet... + Загрузка бумажника... - - Execute command when the best block changes (%s in cmd is replaced by block hash) - Выполнить команду, когда появляется новый блок (%s в команде заменяется на хэш блока) + + Rescanning... + Сканирование... - - Output extra debugging information - Выводить дополнительную отладочную информацию + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + ВНИМАНИЕ: Проверьте дату и время, установленные на Вашем компьютере. Если Ваши часы идут не правильно Bitcoin может наботать не корректно. - - Prepend debug output with timestamp - Дописывать отметки времени к отладочному выводу + + List commands + Список команд + - - Send trace/debug info to console instead of debug.log file - Выводить информацию трассировки/отладки на консоль вместо файла debug.log + + Get help for a command + Получить помощь по команде - - Username for JSON-RPC connections - Имя для подключений JSON-RPC + + Warning: Disk space is low + ВНИМАНИЕ: На диске заканчивается свободное пространство - - Password for JSON-RPC connections - Пароль для подключений JSON-RPC + + Invalid amount for -paytxfee=<amount> + Ошибка в сумме комиссии - - Listen for JSON-RPC connections on <port> (default: 8332) - Ожидать подключения JSON-RPC на <порт> (по умолчанию: 8332) + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + ВНИМАНИЕ: Установлена слишком большая комиссия (-paytxfee=). Данный параметр отвечает за комиссию, которую Вы будете добавлять к сумме при осуществлении транзакций. - - Set key pool size to <n> (default: 100) - Установить размер запаса ключей в <n> (по умолчанию: 100) + + Don't generate coins + Не генерировать монеты - - Rescan the block chain for missing wallet transactions - Перепроверить цепь блоков на предмет отсутствующих в кошельке транзакций + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Разрешённые алгоритмы (по умолчанию: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -Параметры SSL: (см. Bitcoin Wiki для инструкций по настройке SSL) + + Show splash screen on startup (default: 1) + Показывать сплэш при запуске (по умолчанию: 1) - - Use OpenSSL (https) for JSON-RPC connections - Использовать OpenSSL (https) для подключений JSON-RPC + + Connect through socks4 proxy + Подключаться через socks4 прокси - - Add a node to connect to and attempt to keep the connection open - Добавить узел для подключения и пытаться поддерживать соединение открытым + + Allow DNS lookups for addnode and connect + Разрешить обращения к DNS для addnode и подключения - - Error loading blkindex.dat - Ошибка чтения blkindex.dat + + Accept connections from outside (default: 1) + Принимать подключения извне (по умолчанию: 1) - - Cannot downgrade wallet - Не удаётся понизить версию бумажника + + Set language, for example "de_DE" (default: system locale) + Выберите язык, например "de_DE" (по умолчанию: как в системе) - - Cannot initialize keypool - Не удаётся инициализировать массив ключей + + Find peers using DNS lookup (default: 1) + Искать узлы с помощью DNS (по умолчанию: 1) - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Ошибка загрузки wallet.dat: бумажник требует более новую версию Bitcoin + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Число секунд блокирования неправильно ведущих себя узлов (по умолчанию: 86400) - - Cannot write default address - Не удаётся записать адрес по умолчанию + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Максимальный размер буфера отправки на соединение, <n>*1000 байт (по умолчанию: 10000) - - Done loading - Загрузка завершена + + Use Universal Plug and Play to map the listening port (default: 1) + Использовать UPnP для проброса порта (по умолчанию: 1) - - Warning: Disk space is low - ВНИМАНИЕ: На диске заканчивается свободное пространство + + Use Universal Plug and Play to map the listening port (default: 0) + Использовать UPnP для проброса порта (по умолчанию: 0) - - Fee per KB to add to transactions you send - Комиссия на килобайт, добавляемая к вашим транзакциям + + Use the test network + Использовать тестовую сеть - - Find peers using internet relay chat (default: 0) - Найти участников через IRC (по умолчанию: 0) + + Output extra debugging information + Выводить дополнительную отладочную информацию - - How many blocks to check at startup (default: 2500, 0 = all) - Сколько блоков проверять при запуске (по умолчанию: 2500, 0 = все) + + Send trace/debug info to console instead of debug.log file + Выводить информацию трассировки/отладки на консоль вместо файла debug.log - - How thorough the block verification is (0-6, default: 1) - Насколько тщательно проверять блоки (0-6, по умолчанию: 1) + + Allow JSON-RPC connections from specified IP address + Разрешить подключения JSON-RPC с указанного IP - - Set database cache size in megabytes (default: 25) - Установить размер кэша базы данных в мегабайтах (по умолчанию: 25) + + Server certificate file (default: server.cert) + Файл серверного сертификата (по умолчанию: server.cert) - - Upgrade wallet to latest format - Обновить бумажник до последнего формата + + This help message + Эта справка + + + + Invalid -proxy address + Ошибка в адресе прокси diff --git a/src/qt/locale/bitcoin_sk.ts b/src/qt/locale/bitcoin_sk.ts index 1cc927be26..48d839767a 100644 --- a/src/qt/locale/bitcoin_sk.ts +++ b/src/qt/locale/bitcoin_sk.ts @@ -316,7 +316,7 @@ Ste si istí, že si želáte zašifrovať peňaženku? &Transactions - &Transakcie + &Preklady @@ -490,7 +490,7 @@ Ste si istí, že si želáte zašifrovať peňaženku? Downloaded %1 of %2 blocks of transaction history. - + Stiahnutých %1 (of %2) blokov transakčnej histórie @@ -533,25 +533,15 @@ Ste si istí, že si želáte zašifrovať peňaženku? Up to date Aktualizovaný - - - Catching up... - Sťahujem... - Last received block was generated %1. Posledný prijatý blok bol generovaný %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? - Veľkosť tejto transakcie prekračuje limit. Stále ju však môžete odoslať za poplatok %1 ktorý bude pripísaný uzlu spracúvajúcemu vašu transakciu. Chcete zaplatiť poplatok? - Sending... - Odosielanie... + Odosielanie... @@ -590,16 +580,6 @@ Adresa: %4 Backup Wallet Zálohovať peňaženku - - - Wallet Data (*.dat) - - - - - There was an error trying to save the wallet data to the new location. - Nastala chyba pri pokuse uložiť peňaženku na nové miesto. - Backup Failed @@ -615,6 +595,26 @@ Adresa: %4 Backup wallet to another location Zálohovať peňaženku na iné miesto + + + Catching up... + Sťahujem... + + + + 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? + Veľkosť tejto transakcie prekračuje limit. Stále ju však môžete odoslať za poplatok %1 ktorý bude pripísaný uzlu spracúvajúcemu vašu transakciu. Chcete zaplatiť poplatok? + + + + Wallet Data (*.dat) + + + + + There was an error trying to save the wallet data to the new location. + Nastala chyba pri pokuse uložiť peňaženku na nové miesto. + Downloaded %1 blocks of transaction history. @@ -656,11 +656,6 @@ Adresa: %4 Edit Address Upraviť adresu - - - &Label - &Popis - The label associated with this address book entry @@ -676,6 +671,11 @@ Adresa: %4 The address associated with this address book entry. This can only be modified for sending addresses. Adresa spojená s týmto záznamom v adresári. Možno upravovať len pre odosielajúce adresy. + + + &Label + &Popis + New receiving address @@ -732,7 +732,7 @@ Adresa: %4 &Minimize to the tray instead of the taskbar - Zobraziť len ikonu na lište po minimalizovaní okna. + Zobraziť len ikonu na lište po minimalizovaní okna. @@ -810,12 +810,12 @@ Adresa: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Môžete podpísať správy svojou adresou a dokázať, že ju vlastníte. Buďte opatrní a podpíšte len prehlásenia s ktorými plne súhlasíte, nakoľko útoky typu "phishing" Vás môžu lákať k ich podpísaniu. + Môžete podpísať správy svojou adresou a dokázať, že ju vlastníte. Buďte opatrní a podpíšte len prehlásenia s ktorými plne súhlasíte, nakoľko útoky typu "phishing" Vás môžu lákať k ich podpísaniu. The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Zadajte Bitcoin adresu (napr. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -892,6 +892,11 @@ Adresa: %4 OptionsDialog + + + Options + Možnosti + Main @@ -902,11 +907,6 @@ Adresa: %4 Display Displej - - - Options - Možnosti - OverviewPage @@ -1021,6 +1021,36 @@ Adresa: %4 SendCoinsDialog + + + Balance: + Zostatok: + + + + Confirm the send action + Potvrďte odoslanie + + + + &Send + &Odoslať + + + + <b>%1</b> to %2 (%3) + <b>%1</b> do %2 (%3) + + + + Confirm send coins + Potvrdiť odoslanie bitcoins + + + + Are you sure you want to send %1? + Ste si istí, že chcete odoslať %1? + @@ -1053,41 +1083,11 @@ Adresa: %4 Clear all Zmazať všetko - - - Balance: - Zostatok: - 123.456 BTC 123.456 BTC - - - Confirm the send action - Potvrďte odoslanie - - - - &Send - &Odoslať - - - - <b>%1</b> to %2 (%3) - <b>%1</b> do %2 (%3) - - - - Confirm send coins - Potvrdiť odoslanie bitcoins - - - - Are you sure you want to send %1? - Ste si istí, že chcete odoslať %1? - and @@ -1369,16 +1369,6 @@ Adresa: %4 Amount Hodnota - - - Open until %1 - Otvorené do %1 - - - - Offline (%1 confirmations) - - Unconfirmed (%1 of %2 confirmations) @@ -1404,6 +1394,8 @@ Adresa: %4 Open for %n block(s) + + @@ -1431,8 +1423,20 @@ Adresa: %4 Mined balance will be available in %n more blocks + + + + + Open until %1 + Otvorené do %1 + + + + Offline (%1 confirmations) + Offline (%1 potvrdení) + Mined @@ -1643,6 +1647,86 @@ Adresa: %4 bitcoin-core + + + Password for JSON-RPC connections + Heslo pre JSON-rPC spojenia + + + + Listen for JSON-RPC connections on <port> (default: 8332) + Počúvať JSON-RPC spojeniam na <port> (predvolené: 8332) + + + + This help message + Táto pomocná správa + + + + Loading addresses... + Načítavanie adries... + + + + Error loading blkindex.dat + Chyba načítania 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 Bitcoin + Chyba načítania wallet.dat: Peňaženka vyžaduje novšiu verziu Bitcoin + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Bolo potrebné prepísať peňaženku: dokončite reštartovaním Bitcoin + + + + Error loading wallet.dat + Chyba načítania wallet.dat + + + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Rescanning... + + + + + Done loading + Dokončené načítavanie + + + + Loading block index... + Načítavanie zoznamu blokov... + + + + Loading wallet... + Načítavam peňaženku... + Bitcoin version @@ -1738,11 +1822,71 @@ Adresa: %4 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ódu a pripojiť sa and attempt to keep the connection open + Connect only to the specified node Pripojiť sa len k určenej nóde + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) + + + + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + + + + Use Universal Plug and Play to map the listening port (default: 1) + Skúsiť použiť UPnP pre mapovanie počúvajúceho portu (default: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Skúsiť použiť UPnP pre mapovanie počúvajúceho portu (default: 0) + + + + Fee per KB to add to transactions you send + Poplatok za kB ktorý treba pridať k odoslanej transakcii + Accept command line and JSON-RPC commands @@ -1783,16 +1927,6 @@ Adresa: %4 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: 8332) - Počúvať JSON-RPC spojeniam na <port> (predvolené: 8332) - Allow JSON-RPC connections from specified IP address @@ -1854,166 +1988,16 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Prijateľné šifry (predvolené: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - This help message - Táto pomocná správa - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - - - Loading addresses... - Načítavanie adries... - Error loading addr.dat Chyba načítania addr.dat - - - Error loading blkindex.dat - Chyba načítania 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 Bitcoin - Chyba načítania wallet.dat: Peňaženka vyžaduje novšiu verziu Bitcoin - - - - Wallet needed to be rewritten: restart Bitcoin to complete - Bolo potrebné prepísať peňaženku: dokončite reštartovaním Bitcoin - - - - Error loading wallet.dat - Chyba načítania wallet.dat - - - - Warning: Disk space is low - Varovanie: Málo voľného miesta na disku - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - - - - - Rescan the block chain for missing wallet transactions - Znovu skenovať reťaz blokov pre chýbajúce transakcie - - - - Add a node to connect to and attempt to keep the connection open - - - - - Find peers using internet relay chat (default: 0) - - - - - Accept connections from outside (default: 1) - - - - - Set language, for example "de_DE" (default: system locale) - - - - - Find peers using DNS lookup (default: 1) - - - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - - - - Use Universal Plug and Play to map the listening port (default: 1) - - - - - Use Universal Plug and Play to map the listening port (default: 0) - - - - - Fee per KB to add to transactions you send - - - - - Cannot downgrade wallet - - - - - Cannot initialize keypool - - - - - Cannot write default address - - - - - Rescanning... - - - - - Done loading - Dokončené načítavanie - - - - Loading block index... - Načítavanie zoznamu blokov... - - - - Loading wallet... - Načítavam peňaženku... - Invalid -proxy address @@ -2034,10 +2018,30 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Error: CreateThread(StartNode) failed Chyba: zlyhalo CreateThread(StartNode) + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + beta beta + + + Warning: Disk space is low + Varovanie: Málo voľného miesta na disku + + + + Rescan the block chain for missing wallet transactions + Znovu skenovať reťaz blokov pre chýbajúce transakcie + diff --git a/src/qt/locale/bitcoin_sr.ts b/src/qt/locale/bitcoin_sr.ts index 7c8a0f1eb1..2beff7ea83 100644 --- a/src/qt/locale/bitcoin_sr.ts +++ b/src/qt/locale/bitcoin_sr.ts @@ -106,7 +106,7 @@ This product includes software developed by the OpenSSL Project for use in the O Delete - + Избриши @@ -276,7 +276,7 @@ Are you sure you wish to encrypt your wallet? Wallet passphrase was successfully changed. - + Лозинка за приступ новчанику је успешно промењена. @@ -376,7 +376,7 @@ Are you sure you wish to encrypt your wallet? &About %1 - + &О %1-у @@ -386,12 +386,12 @@ Are you sure you wish to encrypt your wallet? About &Qt - + О &Qt-у Show information about Qt - + Прегледајте информације о Qt-у @@ -600,7 +600,7 @@ Address: %4 Backup Wallet - + Backup новчаника @@ -696,7 +696,7 @@ Address: %4 &Label - + &Етикета @@ -706,7 +706,7 @@ Address: %4 &Address - + &Адреса @@ -902,7 +902,7 @@ Address: %4 Options - + Поставке @@ -950,7 +950,7 @@ Address: %4 Wallet - + новчаник @@ -988,7 +988,7 @@ Address: %4 Label: - + &Етикета @@ -1028,7 +1028,7 @@ Address: %4 Send Coins - + Слање новца @@ -1152,7 +1152,7 @@ Address: %4 &Label: - + &Етикета @@ -1647,7 +1647,7 @@ Address: %4 Bitcoin version - + Bitcoin верзија @@ -1672,7 +1672,7 @@ Address: %4 Options: - + Поставке diff --git a/src/qt/locale/bitcoin_sv.ts b/src/qt/locale/bitcoin_sv.ts index 023de06206..aef5c4f3f8 100644 --- a/src/qt/locale/bitcoin_sv.ts +++ b/src/qt/locale/bitcoin_sv.ts @@ -72,7 +72,7 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni Sign a message to prove you own this address - + Signera ett meddelande för att bevisa att du äger denna adress @@ -94,20 +94,15 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni Show &QR Code Visa &QR-kod - - - Copy address - Kopiera adress - Copy label - Kopiera etikett + Kopiera etikett Edit - Editera + Editera @@ -129,6 +124,11 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni Could not write to file %1. Kunde inte skriva till filen %1. + + + Copy address + Kopiera adress + Delete @@ -158,7 +158,7 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni Dialog - Dialog + Dialog @@ -178,7 +178,7 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni TextLabel - + TextLabel @@ -190,10 +190,26 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni Encrypt wallet Kryptera plånbok + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + VARNING: Om du krypterar din plånbok och glömmer din lösenfras, kommer du att <b>förlora alla dina BITCOINS!</b> Är du säker på att du vill kryptera din plånbok? + + + + Wallet decryption failed + Dekryptering av plånbok misslyckades + + + + Wallet passphrase was successfully changed. + Plånbokens lösenord har ändrats. + 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. + Denna operation behöver din plånboks lösenfras för att låsa upp plånboken. @@ -225,6 +241,12 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni Confirm wallet encryption Bekräfta kryptering av plånbok + + + + Warning: The Caps Lock key is on. + Varning: Caps Lock är påslaget. + @@ -253,7 +275,7 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni The supplied passphrases do not match. - De angivna lösenorden överensstämmer inte. + De angivna lösenfraserna överensstämmer inte. @@ -267,46 +289,44 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni The passphrase entered for the wallet decryption was incorrect. Lösenordet för dekryptering av plånbok var felaktig. + + + BitcoinGUI - - Wallet decryption failed - Dekryptering av plånbok misslyckades + + &Options... + &Alternativ... - - Wallet passphrase was successfully changed. - Plånbokens lösenfras har ändrats. + + &Export... + &Exportera... - - - Warning: The Caps Lock key is on. - Varning: Caps Lock är påslaget. + + Encrypt or decrypt wallet + Kryptera eller dekryptera plånbok - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - VARNING: Om du krypterar din plånbok och glömmer din lösenfras, kommer du att <b>förlora alla dina BITCOINS!</b> Är du säker på att du vill kryptera din plånbok? + + &Settings + &Inställningar - - - BitcoinGUI Synchronizing with network... - Synkroniserar med nätverk... + Synkroniserar med nätverk ... Block chain synchronization in progress - Synkronisering av blockkedja pågår + Synkronisering av blockkedja pågår &Overview - &Översikt + &amp; Översikt @@ -314,19 +334,25 @@ Are you sure you wish to encrypt your wallet? Visa översiktsvy av plånbok - - &Transactions - &Transaktioner + + Downloaded %1 blocks of transaction history. + Laddat ner %1 block från transaktionshistoriken. - - - Browse transaction history - Bläddra i transaktionshistorik + + + %n second(s) ago + + %n sekund sedan + %n sekunder sedan + - - - &Address Book - &Adressbok + + + %n minute(s) ago + + %n minut sedan + %n minuter sedan + @@ -334,24 +360,67 @@ Are you sure you wish to encrypt your wallet? Redigera listan med lagrade adresser och etiketter - - &Receive coins - &Ta emot bitcoins + + Catching up... + Hämtar senaste... + + + + Last received block was generated %1. + Senast mottagna block genererades %1. Show the list of addresses for receiving payments Visa listan med adresser för att ta emot betalningar + + + Browse transaction history + Bläddra i transaktionshistorik + &Send coins - &Skicka bitcoins + &amp; Skicka bitcoins - - Prove you control an address - + + Up to date + Uppdaterad + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum: %1 +Belopp: %2 +Typ: %3 +Adress: %4 + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Denna plånbok är <b>krypterad</b> och för närvarande <b>olåst</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Denna plånbok är <b>krypterad</b> och för närvarande <b>låst</b> + + + + Export the data in the current tab to a file + Exportera informationen i den nuvarande fliken till en fil + + + + Backup wallet to another location + Säkerhetskopiera plånboken till en annan plats @@ -363,11 +432,6 @@ Are you sure you wish to encrypt your wallet? Quit application Avsluta programmet - - - &About %1 - - Show information about Bitcoin @@ -384,34 +448,24 @@ Are you sure you wish to encrypt your wallet? Visa information om Qt - - &Options... - &Alternativ... + + 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? + Transaktionen överskrider storleksgränsen. Du kan dock fortfarande skicka den mot en kostnad av %1. Denna avgift går till noderna som behandlar din transaktion och bidrar till nätverket. Vill du betala denna avgift? Modify configuration options for bitcoin - Ändra konfigurationsalternativ för Bitcoin + Ändra konfigurationsalternativ för bitcoin Show the Bitcoin window Visa Bitcoin-fönster - - - &Export... - &Exportera... - &Encrypt Wallet - &Kryptera plånbok - - - - Encrypt or decrypt wallet - Kryptera eller dekryptera plånbok + &amp;Kryptera plånbok @@ -423,11 +477,41 @@ Are you sure you wish to encrypt your wallet? Bitcoin Wallet Bitcoin-plånbok + + + &Transactions + &Transaktioner + + + + &Address Book + &Adressbok + + + + &Receive coins + &Ta emot bitcoins + Sign &message Signera &meddelande + + + Prove you control an address + + + + + &About %1 + &Om %1 + + + + Open &Bitcoin + Öppna &amp;Bitcoin + &Backup Wallet @@ -436,23 +520,18 @@ Are you sure you wish to encrypt your wallet? &Change Passphrase - &Byt Lösenord... + &amp;Byt lösenfras Change the passphrase used for wallet encryption - Byt lösenord för kryptering av plånbok + Byt lösenfras för kryptering av plånbok &File &Arkiv - - - &Settings - &Inställningar - &Help @@ -463,11 +542,6 @@ Are you sure you wish to encrypt your wallet? Tabs toolbar Verktygsfält för Tabbar - - - Actions toolbar - Verktygsfältet för Handlingar - [testnet] @@ -477,35 +551,14 @@ Are you sure you wish to encrypt your wallet? %n active connection(s) to Bitcoin network - %n aktiv anslutning till Bitcoin-nätverket - %n aktiva anslutningar till Bitcoin-nätverket + %n aktiv anslutning till Bitcoin-nätverket. + %n aktiva anslutningar till Bitcoin-nätverket. - - Open &Bitcoin - Öppna &amp;Bitcoin - - - - Downloaded %1 blocks of transaction history. - Laddat ner %1 block från transaktionshistoriken. - - - - %n second(s) ago - - %n sekund sedan - %n sekunder sedan - - - - - %n minute(s) ago - - %n minut sedan - %n minuter sedan - + + Actions toolbar + Verktygsfältet för Handlingar @@ -524,24 +577,24 @@ Are you sure you wish to encrypt your wallet? - - Up to date - Uppdaterad + + Backup Wallet + Säkerhetskopiera Plånbok - - Catching up... - Hämtar senaste... + + Wallet Data (*.dat) + Plånboks-data (*.dat) - - Last received block was generated %1. - Senast mottagna block genererades %1. + + Backup Failed + Säkerhetskopiering misslyckades - - 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? - Transaktionen överskrider storleksgränsen. Du kan dock fortfarande skicka den mot en kostnad av %1. Denna avgift går till noderna som behandlar din transaktion och bidrar till nätverket. Vill du betala denna avgift? + + There was an error trying to save the wallet data to the new location. + Det inträffade ett fel när plånboken skulle sparas till den nya platsen. @@ -553,39 +606,6 @@ Are you sure you wish to encrypt your wallet? Incoming transaction Inkommande transaktion - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Datum: %1 -Belopp: %2 -Typ: %3 -Adress: %4 - - - - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Denna plånbok är <b>krypterad</b> och för närvarande <b>olåst</b> - - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Denna plånbok är <b>krypterad</b> och för närvarande <b>låst</b> - - - - Export the data in the current tab to a file - Exportera informationen i den nuvarande fliken till en fil - - - - Backup wallet to another location - Säkerhetskopiera plånboken till en annan plats - bitcoin-qt @@ -601,26 +621,6 @@ Adress: %4 Sending... Skickar... - - - Backup Wallet - Säkerhetskopiera Plånbok - - - - Wallet Data (*.dat) - Plånboks-data (*.dat) - - - - Backup Failed - Säkerhetskopiering misslyckades - - - - There was an error trying to save the wallet data to the new location. - Det inträffade ett fel när plånboken skulle sparas till den nya platsen. - A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -793,7 +793,7 @@ Adress: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Valfri transaktionsavgift per kB som ser till att dina transaktioner behandlas snabbt. De flesta transaktioner är 1 kB. Avgift 0.01 rekommenderas. + Valfri transaktionsavgift per kB som ser till att dina transaktioner behandlas snabbt. De flesta transaktioner är 1 kB. Avgift 0.01 rekommenderas. @@ -806,12 +806,12 @@ Adress: %4 Message - Meddelande + 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. + 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. @@ -841,7 +841,7 @@ Adress: %4 Enter the message you want to sign here - Skriv in meddelandet du vill signera här + Skriv in meddelandet du vill signera här @@ -851,7 +851,7 @@ Adress: %4 Sign a message to prove you own this address - + Signera ett meddelande för att bevisa att du äger denna adress @@ -861,34 +861,34 @@ Adress: %4 Copy the current signature to the system clipboard - Kopiera signaturen till systemets Urklipp + Kopiera signaturen till systemets Urklipp &Copy to Clipboard - &amp; Kopiera till Urklipp + &Kopiera till Urklipp Error signing - + Fel %1 is not a valid address. - + Den angivna adressen "%1" är inte en giltig Bitcoin-adress. Private key for %1 is not available. - + Privata nyckel för den angivna adressen är inte tillgänglig. %1 Sign failed - + Signeringen av meddelandet misslyckades. @@ -916,6 +916,11 @@ Adress: %4 Form Formulär + + + Your current balance + Ditt nuvarande saldo + Balance: @@ -941,16 +946,6 @@ Adress: %4 Unconfirmed: Obekräftade: - - - Your current balance - Ditt nuvarande 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 @@ -961,18 +956,18 @@ Adress: %4 Total number of transactions in wallet Totalt antal transaktioner i plånboken + + + <b>Recent transactions</b> + <b>Nyligen genomförda transaktioner</b> + QRCodeDialog - - Dialog - Dialog - - - - Amount: - Belopp: + + QR Code + QR-kod @@ -980,9 +975,9 @@ Adress: %4 Begär Betalning - - Label: - Etikett: + + Amount: + Belopp: @@ -990,9 +985,9 @@ Adress: %4 BTC - - QR Code - QR-kod + + Label: + Etikett: @@ -1011,13 +1006,18 @@ Adress: %4 - Save Image... - + PNG Images (*.png) + PNG-bilder (*.png) - PNG Images (*.png) - PNG-bilder (*.png) + Save Image... + Spara QR-kod + + + + Dialog + Dialog @@ -1044,36 +1044,36 @@ Adress: %4 &Add recipient... &Lägg till mottagare... - - - Clear all - Rensa alla - Remove all transaction fields Ta bort alla transaktions-fält + + + Confirm the send action + Bekräfta sändordern + + + + &Send + &Skicka + Balance: Balans: + + + Clear all + Rensa alla + 123.456 BTC 123,456 BTC - - - Confirm the send action - Bekräfta sänd ordern - - - - &Send - &Skicka - <b>%1</b> to %2 (%3) @@ -1140,12 +1140,12 @@ Adress: %4 A&mount: - &Belopp + &Belopp: Pay &To: - Betala & Till: + Betala &Till: @@ -1161,7 +1161,7 @@ Adress: %4 The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adressen som betalningen skall skickas till (t.ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adressen som betalningen skall skickas till (t.ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1191,7 +1191,7 @@ Adress: %4 Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Ange en Bitcoin adress (t.ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Ange en Bitcoin-adress (t.ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1234,7 +1234,7 @@ Adress: %4 Transaction ID: - + Transaktions-ID: @@ -1350,6 +1350,11 @@ Adress: %4 TransactionTableModel + + + (n/a) + (n/a) + Date @@ -1403,6 +1408,7 @@ Adress: %4 Mined balance will be available in %n more blocks + @@ -1440,11 +1446,6 @@ Adress: %4 Received from Mottaget från - - - (n/a) - (n/a) - Transaction status. Hover over this field to show number of confirmations. @@ -1453,7 +1454,7 @@ Adress: %4 Date and time that the transaction was received. - Tidpunkt då transaktionen mottogs + Tidpunkt då transaktionen mottogs. @@ -1473,6 +1474,46 @@ Adress: %4 TransactionView + + + Confirmed + Bekräftad + + + + Address + Adress + + + + Amount + Mängd + + + + ID + ID + + + + Error exporting + Fel vid export + + + + Could not write to file %1. + Kunde inte skriva till filen %1. + + + + Range: + Intervall: + + + + to + till + @@ -1579,11 +1620,6 @@ Adress: %4 Comma separated file (*.csv) Kommaseparerad fil (*. csv) - - - Confirmed - Bekräftad - Date @@ -1599,41 +1635,6 @@ Adress: %4 Label Etikett - - - Address - Adress - - - - Amount - Mängd - - - - ID - ID - - - - Error exporting - Fel vid export - - - - Could not write to file %1. - Kunde inte skriva till filen %1. - - - - Range: - Intervall: - - - - to - till - WalletModel @@ -1655,11 +1656,6 @@ Adress: %4 Bitcoin version Bitcoin version - - - Usage: - Användning: - Send command to -server or bitcoind @@ -1670,122 +1666,15 @@ Adress: %4 List commands Lista kommandon - - - Get help for a command - Få hjälp med ett kommando - Options: Inställningar: - - Specify configuration file (default: bitcoin.conf) - Ange konfigurationsfil (standard:bitcoin.conf) - - - - Specify pid file (default: bitcoind.pid) - Ange pid fil (standard:bitcoind.pid) - - - - Generate coins - Generera mynt - - - - Don't generate coins - Generera ej mynt - - - - Start minimized - Starta som minimerad - - - - Show splash screen on startup (default: 1) - Visa startbilden vid uppstart (standard: 1) - - - - Specify data directory - Ange katalog för data - - - - Specify connection timeout (in milliseconds) - Ange timeout för uppkoppling (i millisekunder) - - - - Connect through socks4 proxy - Koppla upp genom socks4 proxy - - - - Allow DNS lookups for addnode and connect - - - - - Accept connections from outside (default: 1) - Acceptera anslutningar utifrån (standard: 1) - - - - Set language, for example "de_DE" (default: system locale) - Ändra språk, till exempel "de_DE" (standard: systemets språk) - - - - Find peers using DNS lookup (default: 1) - Söl efter klienter med DNS sökningen (standard: 1) - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maximal buffert för mottagning per anslutning, <n>*1000 byte (förval: 5000) {1000 ?} {10000)?} - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maximal buffert för sändning per anslutning, <n>*1000 byte (förval: 5000) {1000 ?} {10000)?} - - - - Use Universal Plug and Play to map the listening port (default: 1) - Use UPnP to map the listening port (default: 1) - - - - Use Universal Plug and Play to map the listening port (default: 0) - Use UPnP to map the listening port (default: 0) - - - - Output extra debugging information - Skriv ut extra felsökningsinformation - - - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Accepterade krypteringsalgoritmer (förval: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - Connect only to the specified node - Koppla enbart upp till den specifierade noden + + Generate coins + Generera mynt @@ -1800,12 +1689,7 @@ SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner) Use the test network - Använd test nätverket - - - - 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örval: 86400) + Använd testnätverket @@ -1837,25 +1721,30 @@ SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner)Allow JSON-RPC connections from specified IP address Tillåt JSON-RPC-anslutningar från specifika IP-adresser + + + Error loading addr.dat + Fel vid inläsning av plånboksfilen addr.dat + Error loading wallet.dat: Wallet corrupted - Fel vid inläsningen av wallet.dat: Kontofilen verkar skadad + Fel vid inläsningen av wallet.dat: Plånboken är skadad Error loading wallet.dat: Wallet requires newer version of Bitcoin - Fel vid inläsningen av wallet.dat: Kontofilen kräver en senare version av Bitcoin + Fel vid inläsningen av wallet.dat: Plånboken kräver en senare version av Bitcoin Wallet needed to be rewritten: restart Bitcoin to complete - Kontot behöver sparas om: Starta om Programmet + Plånboken behöver skrivas om: Starta om Bitcoin för att färdigställa Error loading wallet.dat - Fel vid inläsning av kontofilen wallet.dat + Fel vid inläsning av plånboksfilen wallet.dat @@ -1867,16 +1756,6 @@ SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner)Cannot initialize keypool Kan inte initiera keypool - - - Cannot write default address - Kan inte skriva standardadress - - - - Error loading blkindex.dat - Fel vid inläsning av blkindex.dat - Fee per KB to add to transactions you send @@ -1887,11 +1766,6 @@ SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner)Find peers using internet relay chat (default: 0) Sök efter klienter med internet relay chat (standard: 0) - - - How many blocks to check at startup (default: 2500, 0 = all) - Hur många block att kontrollera vid uppstart (standardvärde: 2500, 0 = alla) - How thorough the block verification is (0-6, default: 1) @@ -1907,11 +1781,6 @@ SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner)Listen for connections on <port> (default: 8333 or testnet: 18333) Lyssna efter anslutningar på <port> (förval: 8333 eller testnet: 18333) - - - Error loading addr.dat - - Loading block index... @@ -2002,6 +1871,138 @@ SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner)Username for JSON-RPC connections Användarnamn för JSON-RPC-anslutningar + + + Usage: + Användning: + + + + Get help for a command + Få hjälp med ett kommando + + + + Specify configuration file (default: bitcoin.conf) + Ange konfigurationsfil (standard:bitcoin.conf) + + + + Specify pid file (default: bitcoind.pid) + Ange pid fil (standard:bitcoind.pid) + + + + Don't generate coins + Generera ej mynt + + + + Start minimized + Starta som minimerad + + + + Specify data directory + Ange katalog för data + + + + Specify connection timeout (in milliseconds) + Ange timeout för uppkoppling (i millisekunder) + + + + Connect through socks4 proxy + Koppla upp genom socks4 proxy + + + + Allow DNS lookups for addnode and connect + Tillåt DNS-sökningar för -addnode och -connect + + + + Connect only to the specified node + Koppla enbart upp till den specifierade noden + + + + Show splash screen on startup (default: 1) + Visa startbilden vid uppstart (standard: 1) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Accepterade krypteringsalgoritmer (förval: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Accept connections from outside (default: 1) + Acceptera anslutningar utifrån (standard: 1) + + + + Set language, for example "de_DE" (default: system locale) + Ändra språk, till exempel "de_DE" (standard: systemets språk) + + + + Find peers using DNS lookup (default: 1) + Söl efter klienter med DNS sökningen (standard: 1) + + + + 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örval: 86400) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maximal buffert för mottagning per anslutning, <n>*1000 byte (förval: 5000) {1000 ?} {10000)?} + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maximal buffert för sändning per anslutning, <n>*1000 byte (förval: 5000) {1000 ?} {10000)?} + + + + Use Universal Plug and Play to map the listening port (default: 1) + Use UPnP to map the listening port (default: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Use UPnP to map the listening port (default: 0) + + + + Output extra debugging information + Skriv ut extra felsökningsinformation + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner) + + + + Cannot write default address + Kan inte skriva standardadress + + + + Error loading blkindex.dat + Fel vid inläsning av blkindex.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) + Hur många block att kontrollera vid uppstart (standardvärde: 2500, 0 = alla) + Invalid -proxy address @@ -2015,32 +2016,32 @@ SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner) 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. Error: CreateThread(StartNode) failed + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Det går inte att binda till %s på den här datorn. Bitcoin är förmodligen redan igång. + + + + beta + beta + Warning: Disk space is low Varning: Hårddiskutrymme är lågt - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Varning: Vänligen kolla så att din dators datum och tid är korrekt! Om din klocka går fel kommer Bitcoin inte fungera korrekt. - - - beta - beta - diff --git a/src/qt/locale/bitcoin_tr.ts b/src/qt/locale/bitcoin_tr.ts index c10f29f351..b6059ce82c 100644 --- a/src/qt/locale/bitcoin_tr.ts +++ b/src/qt/locale/bitcoin_tr.ts @@ -67,13 +67,18 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) &Copy to Clipboard - Panoya &kopyala + Panoya &kopyala Show &QR Code &QR kodunu göster + + + Sign a message to prove you own this address + Bu adresin sizin olduğunu ispatlamak için mesaj imzalayın + &Sign Message @@ -89,20 +94,15 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) &Delete &Sil - - - Sign a message to prove you own this address - Bu adresin sizin olduğunu ispatlamak için mesaj imzalayın - Copy address - Adresi kopyala + Adresi kopyala Copy label - Etiketi kopyala + Etiketi kopyala @@ -158,7 +158,7 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) Dialog - Diyalog + Diyalog @@ -178,7 +178,7 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) TextLabel - + Metin Etiketi @@ -190,6 +190,11 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) Encrypt wallet Cüzdanı şifrele + + + Wallet decryption failed + Cüzdan şifresinin açılması başarısız oldu + This operation needs your wallet passphrase to unlock the wallet. @@ -274,11 +279,6 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? 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. @@ -288,17 +288,42 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? Warning: The Caps Lock key is on. - Uyarı: Caps Lock tuşu faal durumda. + Uyarı: Caps Lock tuşu etkin durumda. BitcoinGUI + + + Edit the list of stored addresses and labels + Saklanan adres ve etiket listesini düzenle + + + + Show information about Qt + Qt hakkında bilgi görüntü + + + + Tabs toolbar + Sekme araç çubuğu + + + + Actions toolbar + Faaliyet araç çubuğu + Synchronizing with network... Şebeke ile senkronizasyon... + + + Bitcoin Wallet + Bitcoin cüzdanı + &Overview @@ -307,7 +332,7 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? Show general overview of wallet - Cüzdana genel bakışı göster + Cüzdana genel bakışı gösterir @@ -324,30 +349,42 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? &Address Book &Adres defteri - - - Edit the list of stored addresses and labels - Saklanan adres ve etiket listesini düzenle - &Receive coins - Bitcoin &al + Para &al - - Show the list of addresses for receiving payments - Ödeme alma adreslerinin listesini göster + + &About %1 + %1 &hakkında + + + + &Backup Wallet + Cüzdanı &yedekle + + + + Downloaded %1 of %2 blocks of transaction history. + Muamele tarihçesinin %2 sayıda blokundan %1 adet blok indirildi. + + + + %n minute(s) ago + + %n dakika önce + &Send coins - Bitcoin &yolla + Para &yolla - - Bitcoin Wallet - Bitcoin cüzdanı + + [testnet] + [testnet] @@ -355,39 +392,37 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? &Çık - - Quit application - Uygulamadan çık + + Catching up... + Aralık kapatılıyor... - - Show information about Bitcoin - Bitcoin hakkında bilgi göster + + Last received block was generated %1. + Son alınan blok şu vakit oluşturulmuştu: %1. About &Qt &Qt hakkında - - - Show information about Qt - Qt hakkında bilgi görüntü - &Options... &Seçenekler... - - &Export... - &Dışa aktar... - - - - Export the data in the current tab to a file - Güncel sekmedeki verileri bir dosyaya aktar + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Tarih: %1 +Miktar: %2 +Tür: %3 +Adres: %4 + @@ -397,7 +432,7 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? Encrypt or decrypt wallet - Cüzdanı şifrele ya da şifreyi aç + Cüzdanı şifreler ya da şifreyi açar @@ -405,14 +440,14 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? Cüzdanı diğer bir konumda yedekle - - Change the passphrase used for wallet encryption - Cüzdan şifrelemesi için kullanılan parolayı değiştir + + Wallet Data (*.dat) + Cüzdan verileri (*.dat) - - &File - &Dosya + + Backup Failed + Yedekleme başarısız oldu @@ -425,24 +460,9 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? &Yardım - - Tabs toolbar - Sekme araç çubuğu - - - - Actions toolbar - Faaliyet araç çubuğu - - - - [testnet] - [testnet] - - - - &About %1 - %1 &hakkında + + 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> @@ -452,17 +472,22 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? Send coins to a bitcoin address - Bir Bitcoin adresine Bitcoin yolla + Bir bitcoin adresine para (bitcoin) yollar Prove you control an address Bu adresin kontrolünüz altında olduğunu ispatlayın + + + Show the list of addresses for receiving payments + Ödeme alma adreslerinin listesini göster + Modify configuration options for bitcoin - Bitcoin seçeneklerinin yapılandırmasını değiştir + Bitcoin seçeneklerinin yapılandırmasını değiştirir @@ -484,11 +509,41 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? &Change Passphrase &Parolayı değiştir + + + Quit application + Uygulamadan çık + + + + Show information about Bitcoin + Bitcoin hakkında bilgi göster + + + + &Export... + &Dışa aktar... + + + + Export the data in the current tab to a file + Güncel sekmedeki verileri bir dosyaya aktar + + + + Change the passphrase used for wallet encryption + Cüzdan şifrelemesi için kullanılan parolayı değiştir + + + + &File + &Dosya + %n active connection(s) to Bitcoin network - Bitcoin şebekesine %n faal bağlantı + Bitcoin şebekesine %n etkin bağlantı @@ -503,13 +558,6 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? %n saniye önce - - - %n minute(s) ago - - %n dakika önce - - %n hour(s) ago @@ -517,38 +565,31 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? %n saat önce - - - %n day(s) ago - - %n gün önce - + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilitlidir</b> - - Up to date - Güncel + + Backup Wallet + Cüzdanı yedekle - - Catching up... - Aralık kapatılıyor... + + There was an error trying to save the wallet data to the new location. + Cüzdan verilerinin başka bir konumda kaydedilmesi sırasında bir hata meydana geldi. - - Last received block was generated %1. - Son alınan blok şu vakit oluşturulmuştu: %1. + + Up to date + Güncel 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 muamele boyut sınırlarını aşmıştır. Gene de %1 ücret ödeyerek gönderebilirsiniz, ki bu ücret muamelenizi işleyen ve şebekeye yardım eden düğümlere ödenecektir. Ücreti ödemek istiyor musunuz? - - - &Backup Wallet - Cüzdanı &yedekle - Sent transaction @@ -559,63 +600,22 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? Incoming transaction Gelen muamele + + + %n day(s) ago + + %n gün önce + + - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Tarih: %1 -Miktar: %2 -Tür: %3 -Adres: %4 - + + bitcoin-qt + bitcoin-qt - - 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 verileri (*.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 verilerinin başka bir konumda kaydedilmesi sırasında bir hata meydana geldi. - - - - bitcoin-qt - bitcoin-qt - - - - Downloaded %1 of %2 blocks of transaction history. - Muamele tarihçesinin %2 sayıda blokundan %1 adet blok indirildi. - - - - Sending... - Yollanıyor... + + Sending... + Yollanıyor... @@ -638,7 +638,7 @@ Adres: %4 &Display addresses in transaction list - &Muamele listesinde adresleri göster + Muamele listesinde adresleri &göster @@ -648,6 +648,11 @@ Adres: %4 EditAddressDialog + + + New key generation failed. + Yeni anahtar oluşturulması başarısız oldu. + Edit Address @@ -708,11 +713,6 @@ Adres: %4 Could not unlock wallet. Cüzdan kilidi açılamadı. - - - New key generation failed. - Yeni anahtar oluşturulması başarısız oldu. - MainOptionsPage @@ -857,7 +857,7 @@ Adres: %4 Copy the current signature to the system clipboard - Güncel imzayı sistem panosuna kopyala + Güncel imzayı sistem panosuna kopyala @@ -923,30 +923,25 @@ Adres: %4 Cüzdan - - Number of transactions: - Muamele sayısı: - - - - 0 - 0 + + Your current balance + Güncel bakiyeniz Unconfirmed: Doğrulanmamış: - - - Your current balance - Güncel bakiyeniz - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance Doğrulanması beklenen ve henüz güncel bakiyeye ilâve edilmemiş muamelelerin toplamı + + + Number of transactions: + Muamele sayısı: + Total number of transactions in wallet @@ -957,14 +952,39 @@ Adres: %4 <b>Recent transactions</b> <b>Son muameleler</b> + + + 0 + 0 + QRCodeDialog + + + &Save As... + &Farklı kaydet... + + + + PNG Images (*.png) + PNG resimleri (*.png) + Dialog Diyalog + + + Message: + Mesaj: + + + + BTC + BTC + QR Code @@ -973,7 +993,7 @@ Adres: %4 Request Payment - Ödeme isteği + Ödeme talebi @@ -985,21 +1005,6 @@ Adres: %4 Label: Etiket: - - - BTC - BTC - - - - Message: - Mesaj: - - - - &Save As... - &Farklı kaydet... - Error encoding URI into QR Code. @@ -1010,11 +1015,6 @@ Adres: %4 Save Image... Resmi kaydet... - - - PNG Images (*.png) - PNG resimleri (*.png) - SendCoinsDialog @@ -1028,7 +1028,7 @@ Adres: %4 Send Coins - Para (coin) yolla + Bitcoin yolla @@ -1082,24 +1082,19 @@ Adres: %4 - Are you sure you want to send %1? - %1 tutarını göndermek istediğinizden emin misiniz? + and + ve - and - ve + Are you sure you want to send %1? + %1 tutarını göndermek istediğinizden emin misiniz? 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. @@ -1125,6 +1120,11 @@ Adres: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Hata: Muamele reddedildi. Cüzdanınızdaki madenî paraların bazıları zaten harcanmış olduğunda bu meydana gelebilir. Örneğin wallet.dat dosyasının bir kopyasını kullandıysanız ve kopyada para harcandığında ancak burada harcandığı işaretlenmediğinde. + + + The amount to pay must be larger than 0. + Ödeyeceğiniz tutarın sıfırdan yüksek olması gerekir. + SendCoinsEntry @@ -1147,7 +1147,7 @@ Adres: %4 Enter a label for this address to add it to your address book - Adres defterinize eklemek için bu adres için bir etiket giriniz + Adres defterinize eklemek için bu adrese ilişik bir etiket giriniz @@ -1468,6 +1468,36 @@ Adres: %4 TransactionView + + + Confirmed + Doğrulandı + + + + ID + Tanımlayıcı + + + + Error exporting + Dışa aktarımda hata oluştu + + + + Could not write to file %1. + %1 dosyasına yazılamadı. + + + + Range: + Aralık: + + + + to + ilâ + @@ -1574,11 +1604,6 @@ Adres: %4 Comma separated file (*.csv) Virgülle ayrılmış değerler dosyası (*.csv) - - - Confirmed - Doğrulandı - Date @@ -1604,31 +1629,6 @@ Adres: %4 Amount Miktar - - - ID - Kimlik - - - - Error exporting - Dışa aktarımda hata oluştu - - - - Could not write to file %1. - %1 dosyasına yazılamadı. - - - - Range: - Aralık: - - - - to - ilâ - WalletModel @@ -1645,6 +1645,156 @@ Adres: %4 Bitcoin version Bitcoin sürümü + + + Don't generate coins + Bitcoin oluşturmasını devre dışı bırak + + + + Accept command line and JSON-RPC commands + Konut satırı ve JSON-RPC komutlarını kabul et + + + + 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) + + + + Use the test network + Deneme şebekesini kullan + + + + Prepend debug output with timestamp + Hata ayıklama çıktısına tarih ön ekleri ilâve et + + + + Send trace/debug info to console instead of debug.log file + Trace/hata ayıklama verilerini debug.log dosyası yerine konsola gönder + + + + Listen for JSON-RPC connections on <port> (default: 8332) + JSON-RPC bağlantıları için dinlenecek <port> (varsayılan: 8332) + + + + Allow JSON-RPC connections from specified IP address + Belirtilen İP adresinden JSON-RPC bağlantılarını kabul et + + + + Server private key (default: server.pem) + Sunucu özel anahtarı (varsayılan: server.pem) + + + + This help message + Bu yardım mesajı + + + + Loading addresses... + Adresler 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ış + + + + Error loading blkindex.dat + blkindex.dat dosyasının yüklenmesinde hata oluştu + + + + Error loading wallet.dat: Wallet corrupted + wallet.dat dosyasının yüklenmesinde hata oluştu: bozuk cüzdan + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + wallet.dat dosyasının yüklenmesinde hata oluştu: cüzdanın daha yeni bir Bitcoin sürümüne ihtiyacı var + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Cüzdanın tekrar yazılması gerekiyordu: işlemi tamamlamak için Bitcoin'i yeniden başlatınız + + + + 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 + Keypool başlatılamadı + + + + Cannot write default address + Varsayılan adres yazılamadı + + + + Done loading + Yükleme tamamlandı + + + + Fee per KB to add to transactions you send + Yolladığınız muameleler için eklenecek KB başı ücret + + + + Find peers using internet relay chat (default: 0) + Eşleri Internet Relay Chat vasıtasıyla bul (varsayılan: 0) + + + + How many blocks to check at startup (default: 2500, 0 = all) + Başlangıçta ne kadar blokun denetleneceği (varsayılan: 2500, 0 = tümü) + + + + How thorough the block verification is (0-6, default: 1) + Blok kontrolünün derinliği (0 ilâ 6, varsayılan: 1) + + + + Loading block index... + Blok indeksi yükleniyor... + + + + Loading wallet... + Cüzdan yükleniyor... + + + + Rescanning... + Yeniden tarama... + + + + Set database cache size in megabytes (default: 25) + Veritabanı önbellek boyutunu megabayt olarak belirt (varsayılan: 25) + + + + Upgrade wallet to latest format + Cüzdanı en yeni biçime güncelle + Usage: @@ -1685,11 +1835,6 @@ Adres: %4 Generate coins Madenî para (coin) oluştur - - - Don't generate coins - Para oluşturma - Start minimized @@ -1698,7 +1843,7 @@ Adres: %4 Show splash screen on startup (default: 1) - Başlatıldığında başlangıç ekranını göster (varsayılan: 1) + Başlatıldığında başlangıç ekranını göster (varsayılan: 1) @@ -1733,7 +1878,7 @@ Adres: %4 Set language, for example "de_DE" (default: system locale) - Lisan belirt, mesela "de_De" (varsayılan: sistem dili) + Lisan belirt, mesela "de_De" (varsayılan: sistem dili) @@ -1755,11 +1900,6 @@ Adres: %4 Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Kabul edilebilir şifreler (varsayılan: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - Warning: Disk space is low - Uyarı: Disk alanı düşük - Maintain at most <n> connections to peers (default: 125) @@ -1795,41 +1935,16 @@ Adres: %4 Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Her bağlantı için yollama tamponu, <n>*1000 bayt (varsayılan: 10000) - - - Accept command line and JSON-RPC commands - Konut satırı ve JSON-RPC komutlarını kabul et - - - - 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) - 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 İlâve hata ayıklama verisi çıkar - - - Prepend debug output with timestamp - Hata ayıklama çıktısına tarih ön ekleri ilâve et - - - - 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 @@ -1845,16 +1960,6 @@ Adres: %4 Password for JSON-RPC connections JSON-RPC bağlantıları için parola - - - Listen for JSON-RPC connections on <port> (default: 8332) - JSON-RPC bağlantıları için dinlenecek <port> (varsayılan: 8332) - - - - 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) @@ -1888,120 +1993,15 @@ SSL seçenekleri: (SSL kurulum bilgisi için Bitcoin vikisine bakınız)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ı - - - - Loading addresses... - Adresler 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ış + + Warning: Disk space is low + Uyarı: Disk alanı düşük Error loading addr.dat addr.dat dosyasının yüklenmesinde hata oluştu - - - Error loading blkindex.dat - blkindex.dat dosyasının yüklenmesinde hata oluştu - - - - Error loading wallet.dat: Wallet corrupted - wallet.dat dosyasının yüklenmesinde hata oluştu: bozuk cüzdan - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - wallet.dat dosyasının yüklenmesinde hata oluştu: cüzdanın daha yeni bir Bitcoin sürümüne ihtiyacı var - - - - Wallet needed to be rewritten: restart Bitcoin to complete - Cüzdanın tekrar yazılması gerekiyordu: işlemi tamamlamak için Bitcoin'i yeniden başlatınız - - - - 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 - Keypool başlatılamadı - - - - Cannot write default address - Varsayılan adres yazılamadı - - - - Done loading - Yükleme tamamlandı - - - - Fee per KB to add to transactions you send - Yolladığınız muameleler için eklenecek KB başı ücret - - - - Find peers using internet relay chat (default: 0) - Eşleri Internet Relay Chat vasıtasıyla bul (varsayılan: 0) - - - - How many blocks to check at startup (default: 2500, 0 = all) - Başlangıçta ne kadar blokun denetleneceği (varsayılan: 2500, 0 = tümü) - - - - How thorough the block verification is (0-6, default: 1) - Blok kontrolünün derinliği (0 ilâ 6, varsayılan: 1) - - - - Loading block index... - Blok indeksi yükleniyor... - - - - Loading wallet... - Cüzdan yükleniyor... - - - - Rescanning... - Yeniden tarama... - - - - Set database cache size in megabytes (default: 25) - Veritabanı önbellek boyutunu megabayt olarak belirt (varsayılan: 25) - - - - Upgrade wallet to latest format - Cüzdanı en yeni biçime güncelle - Invalid -proxy address @@ -2017,11 +2017,6 @@ SSL seçenekleri: (SSL kurulum bilgisi için Bitcoin vikisine bakınız)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. - - - Error: CreateThread(StartNode) failed - Hata: CreateThread(StartNode) başarısız oldu - Unable to bind to port %d on this computer. Bitcoin is probably already running. @@ -2037,5 +2032,10 @@ SSL seçenekleri: (SSL kurulum bilgisi için Bitcoin vikisine bakınız)beta beta + + + Error: CreateThread(StartNode) failed + Hata: CreateThread(StartNode) başarısız oldu + diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts index 29a67a7e19..6bee88d5bc 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -69,21 +69,11 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &Копіювати - - - Show &QR Code - Показати QR-&Код - Sign a message to prove you own this address Підпишіть повідомлення щоб довести, що ви є власником цієї адреси - - - &Sign Message - &Підписати повідомлення - Delete the currently selected address from the list. Only sending addresses can be deleted. @@ -95,24 +85,14 @@ This product includes software developed by the OpenSSL Project for use in the O &Видалити - - Copy address - Скопіювати адресу - - - - Copy label - Скопіювати мітку - - - - Edit - Редагувати + + &Sign Message + &Підписати повідомлення - - Delete - Видалити + + Show &QR Code + Показати QR-&Код @@ -126,13 +106,33 @@ This product includes software developed by the OpenSSL Project for use in the O - Error exporting - Помилка при експортуванні + Could not write to file %1. + Неможливо записати у файл %1. + + + + Edit + Редагувати + + + + Copy address + Скопіювати адресу + + + + Copy label + Скопіювати мітку + + + + Delete + Видалити - Could not write to file %1. - Неможливо записати у файл %1. + Error exporting + Помилка при експортуванні @@ -156,24 +156,14 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - - Decrypt wallet - Дешифрувати гаманець - - - - Dialog - Діалог - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. + + New passphrase + Новий пароль - - TextLabel - Текстова мітка + + Repeat new passphrase + Повторіть пароль @@ -181,22 +171,24 @@ This product includes software developed by the OpenSSL Project for use in the O Введіть пароль - - New passphrase - Новий пароль + + Unlock wallet + Розблокувати гаманець - - Repeat new passphrase - Повторіть пароль + + Dialog + Діалог - - - - - Wallet encryption failed - Не вдалося зашифрувати гаманець + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Виникла помилка під час шифрування гаманця. Ваш гаманець не було зашифровано. + + + + TextLabel + Текстова мітка @@ -214,19 +206,9 @@ This product includes software developed by the OpenSSL Project for use in the O Ця операція потребує пароль для розблокування гаманця. - - Unlock wallet - Розблокувати гаманець - - - - This operation needs your wallet passphrase to decrypt the wallet. - Ця операція потребує пароль для дешифрування гаманця. - - - - Change passphrase - Змінити пароль + + Decrypt wallet + Дешифрувати гаманець @@ -238,17 +220,6 @@ This product includes software developed by the OpenSSL Project for use in the O Confirm wallet encryption Підтвердити шифрування гаманця - - - - Wallet encrypted - Гаманець зашифровано - - - - Wallet passphrase was successfully changed. - Пароль було успішно змінено. - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! @@ -257,15 +228,33 @@ Are you sure you wish to encrypt your wallet? Ви дійсно хочете зашифрувати свій гаманець? - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Виникла помилка під час шифрування гаманця. Ваш гаманець не було зашифровано. + + Change passphrase + Змінити пароль - - - The supplied passphrases do not match. - Введені паролі не співпадають. + + This operation needs your wallet passphrase to decrypt the wallet. + Ця операція потребує пароль для дешифрування гаманця. + + + + + Wallet encrypted + Гаманець зашифровано + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. + + + + + + + Wallet encryption failed + Не вдалося зашифрувати гаманець @@ -284,6 +273,17 @@ Are you sure you wish to encrypt your wallet? Wallet decryption failed Не вдалося розшифрувати гаманець + + + + The supplied passphrases do not match. + Введені паролі не співпадають. + + + + Wallet passphrase was successfully changed. + Пароль було успішно змінено. + @@ -294,30 +294,49 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - - Send coins to a bitcoin address - Відправити монети на вказану адресу + + &Send coins + В&ідправити - - Bitcoin Wallet - Гаманець + + &Export... + &Експорт... - - - Synchronizing with network... - Синхронізація з мережею... + + Show the Bitcoin window + Показати вікно гаманця - - Block chain synchronization in progress - Відбувається синхронізація ланцюжка блоків... + + Export the data in the current tab to a file + Експортувати дані з поточної вкладки в файл - - &Overview - &Огляд + + Backup wallet to another location + Резервне копіювання гаманця в інше місце + + + + &Settings + &Налаштування + + + + &Help + &Довідка + + + + Tabs toolbar + Панель вкладок + + + + Bitcoin Wallet + Гаманець @@ -355,14 +374,9 @@ Are you sure you wish to encrypt your wallet? Показати список адрес для отримання платежів - - &Send coins - В&ідправити - - - - Sign &message - &Підписати повідомлення + + Send coins to a bitcoin address + Відправити монети на вказану адресу @@ -374,11 +388,6 @@ Are you sure you wish to encrypt your wallet? Quit application Вийти - - - &About %1 - П&ро %1 - Show information about Bitcoin @@ -399,16 +408,6 @@ Are you sure you wish to encrypt your wallet? Open &Bitcoin Показати &гаманець - - - Show the Bitcoin window - Показати вікно гаманця - - - - &Export... - &Експорт... - &Encrypt Wallet @@ -420,30 +419,26 @@ Are you sure you wish to encrypt your wallet? Зашифрувати чи розшифрувати гаманець - - &Backup Wallet - &Резервне копіювання гаманця + + + Synchronizing with network... + Синхронізація з мережею... - - &Change Passphrase - Змінити парол&ь + + Block chain synchronization in progress + Відбувається синхронізація ланцюжка блоків... - - Change the passphrase used for wallet encryption - Змінити пароль, який використовується для шифрування гаманця + + &Overview + &Огляд About &Qt &Про Qt - - - Prove you control an address - Доведіть, що це ваша адреса - Show information about Qt @@ -470,9 +465,19 @@ Are you sure you wish to encrypt your wallet? Виникла помилка при спробі зберегти гаманець в новому місці - - &File - &Файл + + Sign &message + &Підписати повідомлення + + + + Prove you control an address + Доведіть, що це ваша адреса + + + + &About %1 + П&ро %1 @@ -484,6 +489,16 @@ Are you sure you wish to encrypt your wallet? [testnet] [тестова мережа] + + + &Change Passphrase + Змінити парол&ь + + + + Change the passphrase used for wallet encryption + Змінити пароль, який використовується для шифрування гаманця + %n active connection(s) to Bitcoin network @@ -494,20 +509,15 @@ Are you sure you wish to encrypt your wallet? - - bitcoin-qt - bitcoin-qt + + &File + &Файл Downloaded %1 blocks of transaction history. Завантажено %1 блоків історії транзакцій. - - - Downloaded %1 of %2 blocks of transaction history. - Завантажено %1 з %2 блоків історії переказів. - %n second(s) ago @@ -544,6 +554,21 @@ Are you sure you wish to encrypt your wallet? %n днів тому + + + bitcoin-qt + bitcoin-qt + + + + &Backup Wallet + &Резервне копіювання гаманця + + + + Downloaded %1 of %2 blocks of transaction history. + Завантажено %1 з %2 блоків історії переказів. + Up to date @@ -564,11 +589,6 @@ Are you sure you wish to encrypt your wallet? 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, яка відправиться тим вузлам що оброблять ваш переказ, та допоможе підтримати мережу. Ви хочете додати комісію? - - - Sending... - Відправлення... - Sent transaction @@ -603,29 +623,9 @@ Address: %4 <b>Зашифрований</b> гаманець <b>заблоковано</b> - - Export the data in the current tab to a file - Експортувати дані з поточної вкладки в файл - - - - Backup wallet to another location - Резервне копіювання гаманця в інше місце - - - - &Settings - &Налаштування - - - - &Help - &Довідка - - - - Tabs toolbar - Панель вкладок + + Sending... + Відправлення... @@ -693,16 +693,6 @@ Address: %4 New sending address Нова адреса для відправлення - - - Edit receiving address - Редагувати адресу для отримання - - - - Edit sending address - Редагувати адресу для відправлення - Could not unlock wallet. @@ -713,6 +703,16 @@ Address: %4 New key generation failed. Не вдалося згенерувати нові ключі. + + + Edit receiving address + Редагувати адресу для отримання + + + + Edit sending address + Редагувати адресу для відправлення + The entered address "%1" is already in the address book. @@ -781,11 +781,6 @@ Address: %4 Proxy &IP: &IP проксі: - - - IP address of the proxy (e.g. 127.0.0.1) - IP-адреса проксі-сервера (наприклад 127.0.0.1) - &Port: @@ -796,19 +791,44 @@ Address: %4 Port of the proxy (e.g. 1234) Порт проксі-сервера (наприклад 1234) + + + Pay transaction &fee + Заплатити комісі&ю + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Добровільна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. + Добровільна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. - - Pay transaction &fee - Заплатити комісі&ю + + IP address of the proxy (e.g. 127.0.0.1) + IP-адреса проксі-сервера (наприклад 127.0.0.1) MessagePage + + + Sign a message to prove you own this address + Підпишіть повідомлення щоб довести, що ви є власником цієї адреси + + + + Copy the current signature to the system clipboard + + + + + &Copy to Clipboard + &Копіювати + + + + %1 is not a valid address. + "%1" не є коректною адресою в мережі Bitcoin. + Message @@ -822,23 +842,23 @@ Address: %4 The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Введіть адресу Bitcoin (наприклад 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Choose adress from address book Вибрати адресу з адресної книги - - - Paste address from clipboard - Вставити адресу - Alt+A Alt+A + + + Paste address from clipboard + Вставити адресу + Alt+P @@ -854,26 +874,11 @@ Address: %4 Click "Sign Message" to get signature Натисніть кнопку "Підписати повідомлення", для отриманя підпису - - - Sign a message to prove you own this address - Підпишіть повідомлення щоб довести, що ви є власником цієї адреси - &Sign Message &Підписати повідомлення - - - Copy the current signature to the system clipboard - - - - - &Copy to Clipboard - &Копіювати - @@ -881,11 +886,6 @@ Address: %4 Error signing Помилка при підписуванні - - - %1 is not a valid address. - "%1" не є коректною адресою в мережі Bitcoin. - Private key for %1 is not available. @@ -917,16 +917,6 @@ Address: %4 OverviewPage - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Загальна сума всіх переказів, які ще не підтверджені, та до сих пір не враховуються в загальному балансі - - - - <b>Recent transactions</b> - <b>Недавні перекази</b> - Form @@ -937,16 +927,6 @@ Address: %4 Your current balance Ваш поточний баланс - - - Total number of transactions in wallet - Загальна кількість переказів в гаманці - - - - 0 - 0 - Balance: @@ -957,6 +937,11 @@ Address: %4 Number of transactions: Кількість переказів: + + + 0 + 0 + Unconfirmed: @@ -967,6 +952,21 @@ Address: %4 Wallet Гаманець + + + <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 number of transactions in wallet + Загальна кількість переказів в гаманці + QRCodeDialog @@ -985,6 +985,31 @@ Address: %4 &Save As... &Зберегти як... + + + Error encoding URI into QR Code. + + + + + PNG Images (*.png) + PNG-зображення (*.png) + + + + Save Image... + + + + + Message: + Повідомлення: + + + + BTC + BTC + Dialog @@ -1000,34 +1025,9 @@ Address: %4 Request Payment Запросити Платіж - - - BTC - BTC - - - - Message: - Повідомлення: - - - - Error encoding URI into QR Code. - - - - - Save Image... - - - - - PNG Images (*.png) - - - - - SendCoinsDialog + + + SendCoinsDialog @@ -1046,14 +1046,9 @@ Address: %4 Відправити на декілька адрес - - &Add recipient... - Дод&ати одержувача... - - - - Balance: - Баланс: + + Remove all transaction fields + Видалити всі поля транзакції @@ -1070,21 +1065,11 @@ Address: %4 &Send &Відправити - - - Remove all transaction fields - Видалити всі поля транзакції - <b>%1</b> to %2 (%3) <b>%1</b> адресату %2 (%3) - - - Clear all - Очистити все - Confirm send coins @@ -1100,16 +1085,6 @@ Address: %4 and і - - - The recipient address is not valid, please recheck. - Адреса отримувача невірна, будьласка перепровірте. - - - - The amount to pay must be larger than 0. - Кількість монет для відправлення повинна бути більшою 0. - The amount exceeds your balance. @@ -1135,49 +1110,79 @@ Address: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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), а монети були використані з іншої копії, але не позначені як використані в цій. - - - SendCoinsEntry - - Pay &To: - &Отримувач: + + &Add recipient... + Дод&ати одержувача... - - Form - Форма + + The amount to pay must be larger than 0. + Кількість монет для відправлення повинна бути більшою 0. + + + + Clear all + Очистити все + + + + Balance: + Баланс: + + + + The recipient address is not valid, please recheck. + Адреса отримувача невірна, будьласка перепровірте. + + + SendCoinsEntry A&mount: &Кількість: - - - Enter a label for this address to add it to your address book - Введіть мітку для цієї адреси для додавання її в адресну книгу + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Адреса для отримувача платежу (наприклад, 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Alt+A + Alt+A + + + + Form + Форма &Label: &Мітка: - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Адреса для отримувача платежу (наприклад, 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose address from address book Вибрати адресу з адресної книги - - Alt+A - Alt+A + + Remove this recipient + Видалити цього отримувача + + + + Pay &To: + &Отримувач: + + + + + Enter a label for this address to add it to your address book + Введіть мітку для цієї адреси для додавання її в адресну книгу @@ -1189,11 +1194,6 @@ Address: %4 Alt+P Alt+P - - - Remove this recipient - Видалити цього отримувача - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1202,6 +1202,11 @@ Address: %4 TransactionDesc + + + Open until %1 + Відкрити до %1 + %1 confirmations @@ -1212,16 +1217,26 @@ Address: %4 Open for %1 blocks Відкрити для %1 блоків - - - %1/offline? - %1/поза інтернетом? - %1/unconfirmed %1/не підтверджено + + + , has not been successfully broadcast yet + , ще не було успішно розіслано + + + + unknown + невідомий + + + + %1/offline? + %1/поза інтернетом? + <b>Status:</b> @@ -1253,11 +1268,6 @@ Address: %4 <b>From:</b> <b>Відправник:</b> - - - unknown - невідомий - @@ -1266,20 +1276,27 @@ Address: %4 <b>Одержувач:</b> - - (yours, label: - (Ваша, мітка: + + (yours) + (ваша) + + + + (%1 matures in %2 more blocks) + (%1 «дозріє» через %2 блоків) + + + + + + <b>Debit:</b> + <b>Дебет:</b> <b>Net amount:</b> <b>Загальна сума:</b> - - - Message: - Повідомлення: - Comment: @@ -1296,19 +1313,9 @@ Address: %4 Після генерації монет, потрібно зачекати 120 блоків, перш ніж їх можна буде використати. Коли ви згенерували цей блок, його було відправлено в мережу для того, щоб він був доданий до ланцюжка блоків. Якщо ця процедура не вдасться, статус буде змінено на «не підтверджено» і ви не зможете потратити згенеровані монету. Таке може статись, якщо хтось інший згенерував блок на декілька секунд раніше. - - Open until %1 - Відкрити до %1 - - - - , has not been successfully broadcast yet - , ще не було успішно розіслано - - - - (yours) - (ваша) + + (yours, label: + (Ваша, мітка: @@ -1318,28 +1325,21 @@ Address: %4 <b>Credit:</b> <b>Кредит:</b> - - - (%1 matures in %2 more blocks) - (%1 «дозріє» через %2 блоків) - (not accepted) (не прийнято) - - - - - <b>Debit:</b> - <b>Дебет:</b> - <b>Transaction fee:</b> <b>Комісія за переказ:</b> + + + Message: + Повідомлення: + TransactionDescDialog @@ -1368,13 +1368,13 @@ Address: %4 - Address - Адреса + Amount + Кількість - Amount - Кількість + Address + Адреса @@ -1483,49 +1483,24 @@ Address: %4 TransactionView - - Mined - Добуті + + Edit label + Редагувати мітку - - Other - Інше + + Comma separated file (*.csv) + Файли, розділені комою (*.csv) - - Enter address or label to search - Введіть адресу чи мітку для пошуку + + Label + Мітка - - Min amount - Мінімальна сума - - - - Copy address - Скопіювати адресу - - - - Copy label - Скопіювати мітку - - - - Edit label - Редагувати мітку - - - - Export Transaction Data - Експортувати дані переказів - - - - Comma separated file (*.csv) - Файли, розділені комою (*.csv) + + Export Transaction Data + Експортувати дані переказів @@ -1533,24 +1508,15 @@ Address: %4 Підтверджені - - Date - Дата - - - - to - до - - - - Label - Мітка + + Type + Тип - - Address - Адреса + + + All + Всі @@ -1582,6 +1548,21 @@ Address: %4 Range... Проміжок + + + ID + Ідентифікатор + + + + Could not write to file %1. + Неможливо записати у файл %1 + + + + Range: + Діапазон від: + Received with @@ -1598,40 +1579,39 @@ Address: %4 Відправлені собі - - - All - Всі + + Mined + Добуті - - Copy amount - Копіювати кількість + + Other + Інше - - Amount - Кількість + + Enter address or label to search + Введіть адресу чи мітку для пошуку - - ID - Ідентифікатор + + Min amount + Мінімальна сума - - Error exporting - Помилка експорту + + Copy address + Скопіювати адресу - - Could not write to file %1. - Неможливо записати у файл %1 + + Copy label + Скопіювати мітку - - Range: - Діапазон від: + + Copy amount + Копіювати кількість @@ -1639,9 +1619,29 @@ Address: %4 Показати деталі... - - Type - Тип + + Date + Дата + + + + Address + Адреса + + + + Amount + Кількість + + + + Error exporting + Помилка експорту + + + + to + до @@ -1659,81 +1659,11 @@ Address: %4 Usage: Вкористання: - - - Show splash screen on startup (default: 1) - - - - - Set database cache size in megabytes (default: 25) - - - - - Add a node to connect to and attempt to keep the connection open - Додати вузол для підключення and attempt to keep the connection open - - - - Find peers using internet relay chat (default: 0) - - - - - Accept connections from outside (default: 1) - - - - - Set language, for example "de_DE" (default: system locale) - - - - - Find peers using DNS lookup (default: 1) - - - - - Use Universal Plug and Play to map the listening port (default: 1) - Намагатись використовувати UPnP для відображення порту що прослуховується на роутері (default: 1) - - - - Use Universal Plug and Play to map the listening port (default: 0) - Намагатись використовувати UPnP для відображення порту що прослуховується на роутері (default: 0) - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - - - - - Upgrade wallet to latest format - - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Неможливо встановити блокування на робочий каталог %s. Можливо, гаманець вже запущено. - - - Loading addresses... - Завантаження адрес... - Loading block index... @@ -1744,57 +1674,26 @@ Address: %4 Loading wallet... Завантаження гаманця... - - - Cannot downgrade wallet - - - - - Cannot initialize keypool - - - - - Cannot write default address - - Rescanning... Сканування... - - Done loading - Завантаження завершене - - - - Error: CreateThread(StartNode) failed - Помилка: CreateThread(StartNode) дала збій + + Invalid amount for -paytxfee=<amount> + Помилка у величині комісії Unable to bind to port %d on this computer. Bitcoin is probably already running. Неможливо прив’язати до порту %d на цьому комп’ютері. Молживо гаманець вже запущено. - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Увага: будь ласка, перевірте дату і час на свому комп’ютері. Якщо ваш годинник йде неправильно, Bitcoin може працювати некоректно. - beta бета - - - Send command to -server or bitcoind - Відправити команду серверу -server чи демону - - Get help for a command @@ -1825,29 +1724,94 @@ Address: %4 Генерувати монети - - - Invalid -proxy address - Помилка в адресі проксі-сервера - Don't generate coins Не генерувати монети + + + Show splash screen on startup (default: 1) + + Specify data directory Вкажіть робочий каталог + + + Set database cache size in megabytes (default: 25) + + Specify connection timeout (in milliseconds) Вкажіть таймаут з’єднання (в мілісекундах) + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Invalid -proxy address + Помилка в адресі проксі-сервера + Listen for connections on <port> (default: 8333 or testnet: 18333) @@ -1858,23 +1822,16 @@ Address: %4 Maintain at most <n> connections to peers (default: 125) Підтримувати не більше <n> зв'язків з колегами (за замовчуванням: 125) - - - Accept command line and JSON-RPC commands - Приймати команди із командного рядка та команди JSON-RPC - - - - - Run in the background as a daemon and accept commands - Запустити в фоновому режимі (як демон) та приймати команди - - Threshold for disconnecting misbehaving peers (default: 100) Поріг відключення неправильно підєднаних пірів (за замовчуванням: 100) + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Максимальній розмір вхідного буферу на одне з'єднання (за замовчуванням 86400) + Start minimized @@ -1882,9 +1839,10 @@ Address: %4 - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Максимальній розмір вхідного буферу на одне з'єднання (за замовчуванням 86400) + + Accept command line and JSON-RPC commands + Приймати команди із командного рядка та команди JSON-RPC + @@ -1899,52 +1857,26 @@ Address: %4 - - Prepend debug output with timestamp - Доповнювати налагоджувальний вивід відміткою часу + + Fee per KB to add to transactions you send + Комісія за Кб + 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-з’єднань - - - Listen for JSON-RPC connections on <port> (default: 8332) - Прослуховувати <port> для JSON-RPC-з’єднань (за промовчуванням: 8332) - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Максимальоий буфер , <n> * 1000 байт (за умовчанням: 10000) - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Максимальній розмір виіхідного буферу на одне з'єднання (за замовчуванням 10000) - Use OpenSSL (https) for JSON-RPC connections Використовувати OpenSSL (https) для JSON-RPC-з’єднань - - - - - Server certificate file (default: server.cert) - Сертифікату сервера (за промовчуванням: server.cert) @@ -1957,6 +1889,12 @@ Address: %4 Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Допустимі шифри (за промовчуванням: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + + Connect only to the specified node + Підключитись лише до вказаного вузла @@ -1970,19 +1908,36 @@ Address: %4 Потрібно перезаписати гаманець: перезапустіть Біткоін-клієнт для завершення - - Output extra debugging information - Виводити більше налагоджувальної інформації + + This help message + Дана довідка + - - Error loading addr.dat - Помилка при завантаженні addr.dat + + Done loading + Завантаження завершене - - Invalid amount for -paytxfee=<amount> - Помилка у величині комісії + + Error: CreateThread(StartNode) failed + Помилка: CreateThread(StartNode) дала збій + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Увага: будь ласка, перевірте дату і час на свому комп’ютері. Якщо ваш годинник йде неправильно, Bitcoin може працювати некоректно. + + + + Bitcoin version + Версія + + + + Send command to -server or bitcoind + Відправити команду серверу -server чи демону + @@ -1991,9 +1946,9 @@ Address: %4 - - Bitcoin version - Версія + + Loading addresses... + Завантаження адрес... @@ -2001,9 +1956,39 @@ Address: %4 Увага: встановлено занадто велику комісію (-paytxfee). Комісія зніматиметься кожен раз коли ви проводитимете перекази. - - Connect only to the specified node - Підключитись лише до вказаного вузла + + Warning: Disk space is low + Увага: На диску мало вільного місця + + + + Add a node to connect to and attempt to keep the connection open + Додати вузол для підключення and attempt to keep the connection open + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Максимальоий буфер , <n> * 1000 байт (за умовчанням: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Максимальній розмір виіхідного буферу на одне з'єднання (за замовчуванням 10000) + + + + Use Universal Plug and Play to map the listening port (default: 1) + Намагатись використовувати UPnP для відображення порту що прослуховується на роутері (default: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Намагатись використовувати UPnP для відображення порту що прослуховується на роутері (default: 0) + + + + Run in the background as a daemon and accept commands + Запустити в фоновому режимі (як демон) та приймати команди @@ -2012,10 +1997,31 @@ Address: %4 Використовувати тестову мережу + + + Output extra debugging information + Виводити більше налагоджувальної інформації + + + + Prepend debug output with timestamp + Доповнювати налагоджувальний вивід відміткою часу + + + + Send trace/debug info to debugger + Відсилаті налагоджувальну інформацію до налагоджувача + Password for JSON-RPC connections Пароль для JSON-RPC-з’єднань + + + + + Listen for JSON-RPC connections on <port> (default: 8332) + Прослуховувати <port> для JSON-RPC-з’єднань (за промовчуванням: 8332) @@ -2051,11 +2057,16 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - This help message - Дана довідка + + Server certificate file (default: server.cert) + Сертифікату сервера (за промовчуванням: server.cert) + + + Error loading addr.dat + Помилка при завантаженні addr.dat + Error loading blkindex.dat @@ -2071,16 +2082,5 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Error loading wallet.dat Помилка при завантаженні wallet.dat - - - Warning: Disk space is low - Увага: На диску мало вільного місця - - - - Fee per KB to add to transactions you send - Комісія за Кб - - diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index a9875e5205..bd9a12c0ca 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -69,20 +69,10 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &复制到剪贴板 - - - Show &QR Code - 显示二维码 - Sign a message to prove you own this address - 发送签名消息以证明您是该比特币地址的拥有者 - - - - &Sign Message - &发送签名消息 + 发送签名消息以证明您是该比特币地址的拥有者 @@ -94,6 +84,16 @@ This product includes software developed by the OpenSSL Project for use in the O &Delete &删除 + + + &Sign Message + &发送签名消息 + + + + Show &QR Code + 显示二维码 + Copy address @@ -107,12 +107,7 @@ This product includes software developed by the OpenSSL Project for use in the O Edit - 编辑 - - - - Export Address Book Data - 导出地址簿数据 + 编辑 @@ -134,14 +129,14 @@ This product includes software developed by the OpenSSL Project for use in the O Could not write to file %1. 无法写入文件 %1。 + + + Export Address Book Data + 导出地址薄数据 + AddressTableModel - - - (no label) - (没有标签) - Label @@ -152,91 +147,58 @@ This product includes software developed by the OpenSSL Project for use in the O Address 地址 + + + (no label) + (没有标签) + AskPassphraseDialog - - - Decrypt wallet - 解密钱包 - - - - This operation needs your wallet passphrase to decrypt the wallet. - 该操作需要您首先使用口令解密钱包。 - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的比特币还是有可能丢失。 - - - - Dialog - 会话 - - - - Enter passphrase - 输入口令 - New passphrase 新口令 - - - - - Wallet encryption failed - 钱包加密失败 - - - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - 由于一个本地错误,加密钱包操作已经失败。您的钱包没有被加密。 - - - - TextLabel - 文本标签 + + 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 加密钱包 - - - Repeat new passphrase - 重复新口令 - This operation needs your wallet passphrase to unlock the wallet. 该操作需要您首先使用口令解锁钱包。 - - Unlock wallet - 解锁钱包 + + TextLabel + 文本标签 - - 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>。 + + Repeat new passphrase + 重复新口令 - - Change passphrase - 修改口令 + + Enter the old and new passphrase to the wallet. + 请输入钱包的旧口令与新口令。 - - Confirm wallet encryption - 确认加密钱包 + + Enter passphrase + 输入口令 + + + + Dialog + 会话 @@ -244,17 +206,25 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet encrypted 钱包已加密 + + + + + + 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 - 钱包解锁失败 - @@ -267,6 +237,13 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet decryption failed 钱包解密失败。 + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + 警告:如果您加密了您的钱包之后忘记了口令,您将会<b>失去所有的比特币</b>! +确定要加密钱包吗? + Wallet passphrase was successfully changed. @@ -279,50 +256,67 @@ This product includes software developed by the OpenSSL Project for use in the O 警告:大写锁定键CapsLock开启 - - 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 BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - 警告:如果您加密了您的钱包之后忘记了口令,您将会<b>失去所有的比特币</b>! -确定要加密钱包吗? + + Wallet unlock failed + 钱包解锁失败 + + + + Unlock wallet + 解锁钱包 + + + + This operation needs your wallet passphrase to decrypt the wallet. + 该操作需要您首先使用口令解密钱包。 + + + + Decrypt wallet + 解密钱包 + + + + Change passphrase + 修改口令 + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的比特币还是有可能丢失。 BitcoinGUI - - Backup Wallet - 备份钱包 - - - - Wallet Data (*.dat) - 钱包文件(*.dat) + + Browse transaction history + 查看交易历史 - - Backup Failed - 备份失败 + + &Address Book + &地址簿 - - Send coins to a bitcoin address - 将货币发送到一个比特币地址 + + &Receive coins + &收款地址 - - - Synchronizing with network... - 正在与网络同步... + + &Settings + &设置 - - Block chain synchronization in progress - 正在同步区域锁链 + + Sign &message + 发送签名 &消息 @@ -339,41 +333,11 @@ Are you sure you wish to encrypt your 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 &发送货币 - - - Prove you control an address - 证明您拥有某个比特币地址 - E&xit @@ -384,6 +348,11 @@ Are you sure you wish to encrypt your wallet? Quit application 退出程序 + + + Block chain synchronization in progress + 正在同步区域锁链 + Show information about Bitcoin @@ -405,14 +374,25 @@ Are you sure you wish to encrypt your wallet? &选项... - - Sign &message - 发送签名 &消息 + + Edit the list of stored addresses and labels + 修改存储的地址和标签列表 - - Export the data in the current tab to a file - 导出当前数据到文件 + + Send coins to a bitcoin address + 将货币发送到一个比特币地址 + + + + Show the list of addresses for receiving payments + 显示接收支付的地址列表 + + + + + Synchronizing with network... + 正在与网络同步... @@ -420,15 +400,40 @@ Are you sure you wish to encrypt your wallet? &关于 %1 - - Open &Bitcoin - 打开 &比特币 + + Modify configuration options for bitcoin + 修改比特币配置选项 Show the Bitcoin window 显示比特币窗口 + + + &Export... + &导出... + + + + Export the data in the current tab to a file + 导出当前数据到文件 + + + + Open &Bitcoin + 打开 &比特币 + + + + Bitcoin Wallet + 比特币钱包 + + + + Prove you control an address + 证明您拥有某个比特币地址 + Encrypt or decrypt wallet @@ -454,11 +459,6 @@ Are you sure you wish to encrypt your wallet? &File &文件 - - - &Settings - &设置 - &Help @@ -486,21 +486,6 @@ Are you sure you wish to encrypt your wallet? 您连接到比特币网络的连接数量共有%n条 - - - Modify configuration options for bitcoin - 修改比特币配置选项 - - - - bitcoin-qt - - - - - Downloaded %1 of %2 blocks of transaction history. - %1 / %2 个交易历史的区块已下载 - Downloaded %1 blocks of transaction history. @@ -549,6 +534,11 @@ Are you sure you wish to encrypt your wallet? Last received block was generated %1. 最新收到的区块产生于 %1。 + + + &Encrypt Wallet + &加密钱包 + 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? @@ -559,6 +549,16 @@ Are you sure you wish to encrypt your wallet? &Change Passphrase &修改口令 + + + Backup Failed + 备份失败 + + + + There was an error trying to save the wallet data to the new location. + 备份钱包到其它文件夹失败. + Sent transaction @@ -593,29 +593,29 @@ Address: %4 钱包已被<b>加密</b>,当前为<b>锁定</b>状态 - - &Export... - &导出... + + Backup Wallet + 备份钱包 - - There was an error trying to save the wallet data to the new location. - 备份钱包到其它文件夹失败. + + Wallet Data (*.dat) + 钱包文件(*.dat) - - Sending... - 发送中 + + bitcoin-qt + bitcoin-qt - - &Encrypt Wallet - &加密钱包 + + Downloaded %1 of %2 blocks of transaction history. + %1 / %2 个交易历史的区块已下载 - - Bitcoin Wallet - 比特币钱包 + + Sending... + 发送中 @@ -648,11 +648,6 @@ Address: %4 EditAddressDialog - - - The label associated with this address book entry - 与此地址条目关联的标签 - Edit Address @@ -663,6 +658,11 @@ Address: %4 &Label &标签 + + + The label associated with this address book entry + 与此地址条目关联的标签 + &Address @@ -673,16 +673,6 @@ Address: %4 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 @@ -708,6 +698,16 @@ Address: %4 New key generation failed. 密钥创建失败. + + + New receiving address + 新接收地址 + + + + New sending address + 新发送地址 + The entered address "%1" is not a valid bitcoin address. @@ -766,6 +766,11 @@ Address: %4 Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) 通过一个SOCKS4代理连接到比特币网络 (如使用Tor连接时) + + + Pay transaction &fee + 支付交易 &费用 + Proxy &IP: @@ -774,27 +779,22 @@ Address: %4 IP address of the proxy (e.g. 127.0.0.1) - 代理服务器IP (如 127.0.0.1) + 代理服务器IP (如 127.0.0.1) &Port: - &端口: + &端口: Port of the proxy (e.g. 1234) - 代理端口(例如 9050) {1234)?} + 代理端口 (比如 1234) Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - 建议支付交易费用,有助于您的交易得到尽快处理. 绝大多数交易的字节数为 1 kB. 建议支付0.01个比特币. - - - - Pay transaction &fee - 支付交易 &费用 + 建议支付交易费用,有助于您的交易得到尽快处理. 绝大多数交易的字节数为 1 kB. 建议支付0.01个比特币. @@ -804,46 +804,11 @@ Address: %4 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - Choose adress from 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 - 复制当前签名至剪切板 - Click "Sign Message" to get signature @@ -859,11 +824,6 @@ Address: %4 &Sign Message &发送签名消息 - - - &Copy to Clipboard - &复制到剪贴板 - @@ -886,6 +846,46 @@ Address: %4 Sign failed 签名失败 + + + 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. + 您可以用你的地址对消息进行签名,以证明您是该地址的所有人。注意不要对模棱两可的消息签名,以免遭受钓鱼式攻击。请确保消息真实明确的表达了您的意愿。 + + + + Choose adress from 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 + 复制当前签名至剪切板 + + + + &Copy to Clipboard + &复制到剪贴板 + OptionsDialog @@ -915,23 +915,28 @@ Address: %4 Balance: - 余额 - - - - Wallet - 钱包 + 余额: Number of transactions: - 交易笔数 + 交易笔数: + + + + 0 + 0 Unconfirmed: 未确认: + + + Wallet + 钱包 + Your current balance @@ -952,11 +957,6 @@ Address: %4 <b>Recent transactions</b> <b>最近交易记录</b> - - - 0 - 0 - QRCodeDialog @@ -991,12 +991,22 @@ Address: %4 PNG图像文件(*.png) - - Dialog - 会话 + + Error encoding URI into QR Code. + 将 URI 转换成二维码失败. - + + Save Image... + 保存图像... + + + + Dialog + 会话 + + + QR Code 二维码 @@ -1005,16 +1015,6 @@ Address: %4 BTC BTC - - - Error encoding URI into QR Code. - 将 URI 转换成二维码失败. - - - - Save Image... - 保存图像... - SendCoinsDialog @@ -1040,11 +1040,21 @@ Address: %4 Remove all transaction fields 移除所有交易项 + + + Clear all + 清除全部 + Balance: 余额: + + + 123.456 BTC + 123.456 BTC + Confirm the send action @@ -1075,11 +1085,6 @@ Address: %4 and - - - The recipient address is not valid, please recheck. - 接收者地址不合法,请检查。 - The amount to pay must be larger than 0. @@ -1091,24 +1096,9 @@ Address: %4 &添加接收者... - - Clear all - 清除全部 - - - - 123.456 BTC - 123.456 BTC - - - - The amount exceeds your balance. - 金额超出您的账上余额。 - - - - The total exceeds your balance when the %1 transaction fee is included. - 计入 %1 交易费后的金额超出您的账上余额。 + + The recipient address is not valid, please recheck. + 接收者地址不合法,请检查。 @@ -1118,26 +1108,46 @@ Address: %4 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. 错误: 交易被拒绝. 如果您使用的是备份钱包,可能存在两个钱包不同步的情况,另一个钱包中的比特币已经被使用,但本地的这个钱包尚没有记录。 + + + The amount exceeds your balance. + 金额超出您的账上余额。 + + + + The total exceeds your balance when the %1 transaction fee is included. + 计入 %1 交易费后的金额超出您的账上余额。 + SendCoinsEntry - - - Alt+A - Alt+A - Form 表单 + + + Remove this recipient + 移除此接收者 + + + + Choose address from address book + 从地址簿选择地址 + + + + Paste address from clipboard + 从剪贴板粘贴地址 + A&mount: @@ -1148,42 +1158,32 @@ Address: %4 Pay &To: 付款&给: + + + &Label: + &标签: + Enter a label for this address to add it to your address book 为这个地址输入一个标签,以便将它添加到您的地址簿 - - - &Label: - &标签: - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) 付款地址 (例如: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - Choose address from address book - 从地址簿选择地址 - - - - Paste address from clipboard - 从剪贴板粘贴地址 + + Alt+A + Alt+A Alt+P Alt+P - - - Remove this recipient - 移除此接收者 - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1193,15 +1193,34 @@ Address: %4 TransactionDesc - - - <b>From:</b> - <b>从:</b> + + Message: + 消息: - - %1/offline? - %1/离线? + + Comment: + 备注 + + + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + 新生产的比特币必须等待120个数据块之后才能被使用. 当您生产出此数据块,它将被广播至比特币网络并添加至数据链. 如果添加到数据链失败, 它的状态将变成"不被接受",生产的比特币将不能使用. 在您生产新数据块的几秒钟内, 如果其它节点也生产出同样的数据块,有可能会发生这种情况. + + + + , has not been successfully broadcast yet + , 未被成功广播 + + + + , broadcast through %1 nodes + ,同过 %1 节点组广播 + + + + unknown + 未知 @@ -1213,6 +1232,11 @@ Address: %4 Open until %1 至 %1 个数据块时开启 + + + %1/offline? + %1/离线? + %1/unconfirmed @@ -1228,20 +1252,10 @@ Address: %4 <b>Status:</b> <b>状态:</b> - - - , has not been successfully broadcast yet - , 未被成功广播 - , broadcast through %1 node - ,同过 %1 节点组广播 - - - - , broadcast through %1 nodes - ,同过 %1 节点组广播 + ,同过 %1 节点广播 @@ -1254,9 +1268,10 @@ Address: %4 <b>来源:</b> 生成<br> + - unknown - 未知 + <b>From:</b> + <b>从:</b> @@ -1310,26 +1325,11 @@ Address: %4 <b>Net amount:</b> <b>网络金额:</b> - - - Message: - 消息: - - - - Comment: - 备注 - Transaction ID: 交易ID: - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - 新生产的比特币必须等待120个数据块之后才能被使用. 当您生产出此数据块,它将被广播至比特币网络并添加至数据链. 如果添加到数据链失败, 它的状态将变成"不被接受",生产的比特币将不能使用. 在您生产新数据块的几秒钟内, 如果其它节点也生产出同样的数据块,有可能会发生这种情况. - TransactionDescDialog @@ -1469,34 +1469,14 @@ Address: %4 TransactionView - - This week - 本周 - - - - Last month - 上月 - - - - This year - 今年 - - - - Received with - 接收于 - - - - To yourself - 到自己 + + Range... + 范围... - - Enter address or label to search - 输入地址或标签进行搜索 + + Min amount + 最小金额 @@ -1509,14 +1489,19 @@ Address: %4 复制标签 - - to - + + Edit label + 编辑标签 - - Copy amount - 复制金额 + + Export Transaction Data + 导出交易数据 + + + + Comma separated file (*.csv) + 逗号分隔文件(*.csv) @@ -1530,27 +1515,57 @@ Address: %4 今天 - - Edit label - 编辑标签 + + This week + 本周 - - Export Transaction Data - 导出交易数据 + + This month + 本月 - - Comma separated file (*.csv) - 逗号分隔文件(*.csv) + + Last month + 上月 - - Confirmed - 已确认 + + This year + 今年 - + + Received with + 接收于 + + + + Sent to + 发送到 + + + + To yourself + 到自己 + + + + Mined + 挖矿所得 + + + + Other + 其他 + + + + Confirmed + 已确认 + + + Date 日期 @@ -1595,34 +1610,19 @@ Address: %4 范围: - - This month - 本月 - - - - Range... - 范围... - - - - Sent to - 发送到 - - - - Mined - 挖矿所得 + + Enter address or label to search + 输入地址或标签进行搜索 - - Other - 其他 + + to + - - Min amount - 最小金额 + + Copy amount + 复制金额 @@ -1646,14 +1646,19 @@ Address: %4 比特币版本 - - Upgrade wallet to latest format - 将钱包升级到最新的格式 + + Listen for connections on <port> (default: 8333 or testnet: 18333) + 监听端口连接 <port> (缺省: 8333 or testnet: 18333) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - 无法给数据目录 %s 加锁。比特币进程可能已在运行。 + + Maintain at most <n> connections to peers (default: 125) + 最大连接数 <n> (缺省: 125) + + + + Loading addresses... + 正在加载地址... @@ -1661,39 +1666,36 @@ Address: %4 加载区块索引... - - Rescanning... - 正在重新扫描... - - - - Run in the background as a daemon and accept commands - 在后台运行并接受命令 - - + + Loading wallet... + 正在加载钱包... - - Set database cache size in megabytes (default: 25) - 设置数据库缓冲区大小 (缺省: 25MB) + + Cannot initialize keypool + 无法初始化 keypool - - Specify connection timeout (in milliseconds) - 指定连接超时时间 (微秒) - + + Done loading + 加载完成 - - Specify pid file (default: bitcoind.pid) - 指定 pid 文件 (默认为 bitcoind.pid) - + + Threshold for disconnecting misbehaving peers (default: 100) + Threshold for disconnecting misbehaving peers (缺省: 100) Usage: 使用: + + + Options: + 选项: + + Send command to -server or bitcoind @@ -1701,29 +1703,33 @@ Address: %4 - - List commands - 列出命令 + + Specify configuration file (default: bitcoin.conf) + 指定配置文件 (默认为 bitcoin.conf) - - Get help for a command - 获得某条命令的帮助 - + + Set database cache size in megabytes (default: 25) + 设置数据库缓冲区大小 (缺省: 25MB) - - Options: - 选项: + + Generate coins + 生成货币 - - Specify configuration file (default: bitcoin.conf) - 指定配置文件 (默认为 bitcoin.conf) + + Don't generate coins + 不要生成货币 + + + Upgrade wallet to latest format + 将钱包升级到最新的格式 + Invalid -proxy address @@ -1734,6 +1740,11 @@ Address: %4 Invalid amount for -paytxfee=<amount> 不合适的交易费 -paytxfee=<amount> + + + Add a node to connect to and attempt to keep the connection open + 添加节点并与其保持连接 + Error: CreateThread(StartNode) failed @@ -1755,83 +1766,19 @@ Address: %4 测试 - - Specify data directory - 指定数据目录 - - - - - Show splash screen on startup (default: 1) - 启动时显示版权页 (缺省: 1) - - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - 监听端口连接 <port> (缺省: 8333 or testnet: 18333) - - - - Accept connections from outside (default: 1) - 接受来自外部的连接 (缺省: 1) - - - - Set language, for example "de_DE" (default: system locale) - 设置语言, 例如 "de_DE" (缺省: 系统语言) - - - - Find peers using DNS lookup (default: 1) - - - - - Threshold for disconnecting misbehaving peers (default: 100) - Threshold for disconnecting misbehaving peers (缺省: 100) - - - - Use Universal Plug and Play to map the listening port (default: 1) - 使用UPnp映射监听端口(缺省: 1) - - - - Use Universal Plug and Play to map the listening port (default: 0) - 使用UPnp映射监听端口(缺省: 0) - - - - Accept command line and JSON-RPC commands - 接受命令行和 JSON-RPC 命令 - - - - - Use the test network - 使用测试网络 - + + Find peers using internet relay chat (default: 0) + 通过IRC聊天室查找网络上的比特币节点 (缺省: 0) Prepend debug output with timestamp 为调试输出信息添加时间戳 - - - Send trace/debug info to console instead of debug.log file - 跟踪/调试信息输出到控制台,不输出到debug.log文件 - Username for JSON-RPC connections JSON-RPC连接用户名 - - - - - Password for JSON-RPC connections - JSON-RPC连接密码 @@ -1841,10 +1788,14 @@ Address: %4 - - Set key pool size to <n> (default: 100) - 设置密钥池大小为 <n> (缺省: 100) - + + Fee per KB to add to transactions you send + 每发送1KB交易所需的费用 + + + + Find peers using DNS lookup (default: 1) + @@ -1900,6 +1851,33 @@ Address: %4 Error loading wallet.dat wallet.dat钱包文件加载错误 + + + Listen for JSON-RPC connections on <port> (default: 8332) + JSON-RPC连接监听<端口> (默认为 8332) + + + + + Send commands to node running on <ip> (default: 127.0.0.1) + 向IP地址为 <ip> 的节点发送指令 (缺省: 127.0.0.1) + + + + + 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个) + + + + Cannot downgrade wallet + 无法降级钱包格式 + Allow DNS lookups for addnode and connect @@ -1913,21 +1891,9 @@ Address: %4 - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maximum per-connection receive buffer, <n>*1000 bytes (缺省: 10000) - - - - Send trace/debug info to debugger - 跟踪/调试信息输出到 调试器debugger - - - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL 选项: (SSL 安装教程具体见比特币维基百科) + + Set key pool size to <n> (default: 100) + 设置密钥池大小为 <n> (缺省: 100) @@ -1936,19 +1902,25 @@ SSL 选项: (SSL 安装教程具体见比特币维基百科) addr.dat文件加载错误 - - Loading addresses... - 正在加载地址... + + Rescan the block chain for missing wallet transactions + 重新扫描数据链以查找遗漏的交易 + - - Loading wallet... - 正在加载钱包... + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + 无法给数据目录 %s 加锁。比特币进程可能已在运行。 - - Done loading - 加载完成 + + Cannot write default address + 无法写入缺省地址 + + + + Rescanning... + 正在重新扫描... @@ -1956,26 +1928,27 @@ SSL 选项: (SSL 安装教程具体见比特币维基百科) 警告: -paytxfee 交易费设置过高. 每进行一笔交易您都将支付该数量的交易费. - - Generate coins - 生成货币 + + Get help for a command + 获得某条命令的帮助 - - Add a node to connect to and attempt to keep the connection open - 添加节点并与其保持连接 + + List commands + 列出命令 + - - Don't generate coins - 不要生成货币 - + + Warning: Disk space is low + 警告:磁盘空间不足 - - Cannot downgrade wallet - 无法降级钱包格式 + + Specify pid file (default: bitcoind.pid) + 指定 pid 文件 (默认为 bitcoind.pid) + @@ -1984,9 +1957,21 @@ SSL 选项: (SSL 安装教程具体见比特币维基百科) - - Cannot initialize keypool - 无法初始化 keypool + + Show splash screen on startup (default: 1) + 启动时显示版权页 (缺省: 1) + + + + Specify data directory + 指定数据目录 + + + + + Specify connection timeout (in milliseconds) + 指定连接超时时间 (微秒) + @@ -1995,77 +1980,92 @@ SSL 选项: (SSL 安装教程具体见比特币维基百科) - - Cannot write default address - 无法写入缺省地址 + + Accept connections from outside (default: 1) + 接受来自外部的连接 (缺省: 1) - - Maintain at most <n> connections to peers (default: 125) - 最大连接数 <n> (缺省: 125) + + Set language, for example "de_DE" (default: system locale) + 设置语言, 例如 "de_DE" (缺省: 系统语言) 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: 10000) + Maximum per-connection receive buffer, <n>*1000 bytes (缺省: 10000) + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maximum per-connection send buffer, <n>*1000 bytes (缺省: 10000) - - Fee per KB to add to transactions you send - 每发送1KB交易所需的费用 + + Use Universal Plug and Play to map the listening port (default: 1) + 使用UPnp映射监听端口(缺省: 1) - - Find peers using internet relay chat (default: 0) - 通过IRC聊天室查找网络上的比特币节点 (缺省: 0) + + Use Universal Plug and Play to map the listening port (default: 0) + 使用UPnp映射监听端口(缺省: 0) - - Output extra debugging information - 输出调试信息 + + Accept command line and JSON-RPC commands + 接受命令行和 JSON-RPC 命令 + - - How many blocks to check at startup (default: 2500, 0 = all) - 启动时需检查的区块数量 (缺省: 2500, 设置0为检查所有区块) + + Run in the background as a daemon and accept commands + 在后台运行并接受命令 + + - - How thorough the block verification is (0-6, default: 1) - 需要几个确认 (0-6个, 缺省: 1个) + + Use the test network + 使用测试网络 + - - Listen for JSON-RPC connections on <port> (default: 8332) - JSON-RPC连接监听<端口> (默认为 8332) - + + Output extra debugging information + 输出调试信息 - - Send commands to node running on <ip> (default: 127.0.0.1) - 向IP地址为 <ip> 的节点发送指令 (缺省: 127.0.0.1) - + + Send trace/debug info to console instead of debug.log file + 跟踪/调试信息输出到控制台,不输出到debug.log文件 - - Rescan the block chain for missing wallet transactions - 重新扫描数据链以查找遗漏的交易 - + + Send trace/debug info to debugger + 跟踪/调试信息输出到 调试器debugger - - Warning: Disk space is low - 警告:磁盘空间不足 + + Password for JSON-RPC connections + JSON-RPC连接密码 + Execute command when the best block changes (%s in cmd is replaced by block hash) 当最佳区块变化时执行命令 (命令行中的 %s 会被替换成区块哈希值) + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL 选项: (SSL 安装教程具体见比特币维基百科) + + diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index a9efab37da..38f388a0eb 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -67,17 +67,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - 複製到剪貼簿 - - - - Show &QR Code - 顯示 &QR 條碼 - - - - &Sign Message - 簽署訊息 + 複製到剪貼簿 @@ -89,31 +79,31 @@ This product includes software developed by the OpenSSL Project for use in the O &Delete 刪除 + + + &Sign Message + 簽署訊息 + + + + Show &QR Code + 顯示 &QR 條碼 + Sign a message to prove you own this address 簽署一則訊息來證明你擁有這個位址 - - Export Address Book Data - 匯出位址簿資料 - - - - Comma separated file (*.csv) - 逗號區隔資料檔 (*.csv) + + Copy address + 複製位址 Copy label 複製標記 - - - Copy address - 複製位址 - Edit @@ -125,23 +115,28 @@ This product includes software developed by the OpenSSL Project for use in the O 刪除 - - Error exporting - 資料匯出有誤 + + Export Address Book Data + 匯出位址簿資料 + + + + Comma separated file (*.csv) + 逗號區隔資料檔 (*.csv) Could not write to file %1. 無法寫入檔案 %1. + + + Error exporting + 資料匯出有誤 + AddressTableModel - - - (no label) - (沒有標記) - Label @@ -152,36 +147,38 @@ This product includes software developed by the OpenSSL Project for use in the O Address 位址 + + + (no label) + (沒有標記) + AskPassphraseDialog - - - - - Wallet encryption failed - 錢包加密失敗 - - - - Dialog - 對話視窗 + + Encrypt wallet + 錢包加密 Enter passphrase 輸入密碼 + + + This operation needs your wallet passphrase to decrypt the wallet. + 這個動作需要用你的錢包密碼來解密 + New passphrase 新的密碼 - - Decrypt wallet - 錢包解密 + + Change passphrase + 變更密碼 @@ -189,15 +186,54 @@ This product includes software developed by the OpenSSL Project for use in the O 重複新密碼 - - Encrypt wallet - 錢包加密 + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + 輸入錢包的新密碼.<br/>請用<b>10個以上的字元</b>, 或是<b>8個以上的字詞</b>. TextLabel 文字標籤 + + + Confirm wallet encryption + 錢包加密確認 + + + + + Wallet encrypted + 錢包已加密 + + + + Decrypt wallet + 錢包解密 + + + + This operation needs your wallet passphrase to unlock the wallet. + 這個動作需要用你的錢包密碼來解鎖 + + + + Unlock wallet + 錢包解鎖 + + + + Dialog + 對話視窗 + + + + + + + Wallet encryption failed + 錢包加密失敗 + Wallet encryption failed due to an internal error. Your wallet was not encrypted. @@ -214,29 +250,11 @@ 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 encrypted - 錢包已加密 - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 位元幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的位元幣. - Enter the old and new passphrase to the wallet. @@ -249,6 +267,18 @@ Are you sure you wish to encrypt your wallet? 警告: 如果將錢包加密後忘記密碼, 你會<b>失去其中所有的位元幣</b>! 你確定要將錢包加密嗎? + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 位元幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的位元幣. + + + + + + The passphrase entered for the wallet decryption was incorrect. + 用來解密錢包的密碼輸入錯誤. + Wallet passphrase was successfully changed. @@ -260,43 +290,28 @@ Are you sure you wish to encrypt your wallet? Warning: The Caps Lock key is on. 警告: 鍵盤輸入鎖定為大寫字母中. + + + BitcoinGUI - - This operation needs your wallet passphrase to unlock the wallet. - 這個動作需要用你的錢包密碼來解鎖 - - - - This operation needs your wallet passphrase to decrypt the wallet. - 這個動作需要用你的錢包密碼來解密 - - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - 輸入錢包的新密碼.<br/>請用<b>10個以上的字元</b>, 或是<b>8個以上的單字</b>. - - - - Unlock wallet - 錢包解鎖 + + Show general overview of wallet + 顯示錢包一般總覽 - - Change passphrase - 變更密碼 + + &Transactions + 交易 - - Confirm wallet encryption - 錢包加密確認 + + &Address Book + 位址簿 - - - BitcoinGUI - - Show the list of addresses for receiving payments - 顯示收款位址的列表 + + Block chain synchronization in progress + 正在進行區塊鎖鏈的同步中 @@ -304,9 +319,9 @@ Are you sure you wish to encrypt your wallet? 付錢 - - Edit the list of stored addresses and labels - 編輯儲存位址與標記的列表 + + Sending... + 付出中... @@ -319,40 +334,30 @@ Are you sure you wish to encrypt your wallet? Synchronizing with network... 網路同步中... - - - Block chain synchronization in progress - 正在進行區塊鎖鏈的同步中 - &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 + 顯示收款位址的列表 + + + + Sign &message + 訊息簽署 @@ -364,36 +369,21 @@ Are you sure you wish to encrypt your wallet? E&xit 結束 - - - Show information about Qt - 顯示有關於 Qt 的資訊 - - - - Modify configuration options for bitcoin - 修改位元幣的設定選項 - Show the Bitcoin window 顯示位元幣主視窗 - - &Backup Wallet - 錢包備份 + + Quit application + 結束應用程式 &Change Passphrase 變更密碼 - - - Quit application - 結束應用程式 - Show information about Bitcoin @@ -404,6 +394,16 @@ Are you sure you wish to encrypt your wallet? About &Qt 關於 &Qt + + + Show information about Qt + 顯示有關於 Qt 的資訊 + + + + &Options... + 選項... + &Settings @@ -415,14 +415,19 @@ Are you sure you wish to encrypt your wallet? 求助 - - Tabs toolbar - 分頁工具列 + + &Export... + 匯出... - - Actions toolbar - 動作工具列 + + Export the data in the current tab to a file + 將目前分頁的資料匯出存成檔案 + + + + Encrypt or decrypt wallet + 將錢包加解密 @@ -430,26 +435,29 @@ Are you sure you wish to encrypt your wallet? [testnet] - - Encrypt or decrypt wallet - 將錢包加解密 + + Backup wallet to another location + 將錢包備份到其它地方 Open &Bitcoin 開啟位元幣 - - - %n active connection(s) to Bitcoin network - - 與位元幣網路有 %n 個連線在使用中 - + + + Change the passphrase used for wallet encryption + 變更錢包加密用的密碼 - - Backup wallet to another location - 將錢包備份到其它地方 + + &File + 檔案 + + + + &Receive coins + 收錢 @@ -468,11 +476,6 @@ Are you sure you wish to encrypt your wallet? %n 秒鐘前 - - - Sign &message - 訊息簽署 - %n minute(s) ago @@ -480,6 +483,13 @@ Are you sure you wish to encrypt your wallet? %n 分鐘前 + + + %n hour(s) ago + + %n 小時前 + + %n day(s) ago @@ -497,35 +507,35 @@ Are you sure you wish to encrypt your wallet? Catching up... 進度追趕中... - - - &About %1 - 關於%1 - 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 的費用來傳送. 這筆費用會付給處理該筆交易的節點, 並幫助維持整個網路. 你願意支付這項費用嗎? + + &About %1 + 關於%1 - - &Options... - 選項... + + Modify configuration options for bitcoin + 修改位元幣的設定選項 - - bitcoin-qt - + + &Encrypt Wallet + 錢包加密 - - Sending... - 付出中... + + &Backup Wallet + 錢包備份 + + + + 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 的費用來傳送. 這筆費用會付給處理該筆交易的節點, 並幫助維持整個網路. 你願意支付這項費用嗎? @@ -549,11 +559,6 @@ Address: %4 類別: %3 位址: %4 - - - &Encrypt Wallet - 錢包加密 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> @@ -564,11 +569,6 @@ Address: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> 錢包<b>已加密</b>並且正<b>上鎖中</b> - - - Change the passphrase used for wallet encryption - 變更錢包加密用的密碼 - Backup Wallet @@ -590,32 +590,32 @@ Address: %4 儲存錢包資料到新的地方時發生錯誤 - - &Export... - 匯出... + + Tabs toolbar + 分頁工具列 - - Export the data in the current tab to a file - 將目前分頁的資料匯出存成檔案 + + Actions toolbar + 動作工具列 - - &File - 檔案 - - - - %n hour(s) ago - - %n 小時前 - + + bitcoin-qt + bitcoin-qt Downloaded %1 of %2 blocks of transaction history. 已下載了 %1/%2 個交易紀錄的區塊. + + + %n active connection(s) to Bitcoin network + + 與位元幣網路有 %n 個連線在使用中 + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -637,7 +637,7 @@ Address: %4 &Display addresses in transaction list - 在交易列表顯示位址 + &在交易列表中顯示位址 @@ -677,6 +677,11 @@ Address: %4 New receiving address 新收款位址 + + + New sending address + 新付款位址 + Edit receiving address @@ -702,11 +707,6 @@ Address: %4 New key generation failed. 新密鑰產生失敗. - - - New sending address - 新付款位址 - The entered address "%1" is not a valid bitcoin address. @@ -748,7 +748,7 @@ Address: %4 M&inimize on close - 關閉時最小化 + 關閉時最小化 @@ -765,20 +765,20 @@ Address: %4 Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) 透過 SOCKS4 代理伺服器連線至位元幣網路 (比如說透過 Tor) + + + Proxy &IP: + 伺服器位址: + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - 非必要的交易手續費, 以 kB 為計費單位, 且有助於縮短你的交易處理時間. 大部份交易的資料大小是 1 kB. 建議設定為 0.01 元. + 非必要的交易手續費, 以 kB 為計費單位, 且有助於縮短你的交易處理時間. 大部份交易的資料大小是 1 kB. 建議設定為 0.01 元. Pay transaction &fee - 付交易手續費 - - - - Proxy &IP: - 伺服器位址: + 付交易手續費 @@ -808,46 +808,11 @@ Address: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. 你可以用你的位址來簽署訊息, 以證明你對它的所有權. 但是請小心, 不要簽署語意含糊不清的內容, 因為釣魚式詐騙可能會用騙你簽署的手法來冒充是你. 只有在語句中的細節你都同意時才簽署. - - - The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - 用來簽署訊息的位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - - Choose adress from 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 - 複製目前的簽章到系統剪貼簿 - - - - Click "Sign Message" to get signature - 按"簽署訊息"來取得簽章 - Sign a message to prove you own this address @@ -858,11 +823,6 @@ Address: %4 &Sign Message 簽署訊息 - - - &Copy to Clipboard - 複製到剪貼簿 - @@ -885,9 +845,54 @@ Address: %4 Sign failed 簽署失敗 + + + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + 用來簽署訊息的位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Choose adress from address book + 從位址簿中選一個位址 + + + + Alt+A + Alt+A + + + + Paste address from clipboard + 從剪貼簿貼上位址 + + + + Alt+P + Alt+P + + + + Click "Sign Message" to get signature + 按"簽署訊息"來取得簽章 + + + + Copy the current signature to the system clipboard + 複製目前的簽章到系統剪貼簿 + + + + &Copy to Clipboard + 複製到剪貼簿 + OptionsDialog + + + Main + 主要 + Options @@ -898,24 +903,19 @@ Address: %4 Display 顯示 - - - Main - 主要 - OverviewPage - - - Balance: - 餘額: - Form 表單 + + + Balance: + 餘額: + Number of transactions: @@ -931,6 +931,11 @@ Address: %4 Wallet 錢包 + + + <b>Recent transactions</b> + <b>最近交易</b> + Your current balance @@ -946,11 +951,6 @@ Address: %4 Total number of transactions in wallet 錢包中紀錄的總交易次數 - - - <b>Recent transactions</b> - <b>最近交易</b> - 0 @@ -979,6 +979,21 @@ Address: %4 PNG Images (*.png) PNG 圖檔 (*.png) + + + BTC + BTC + + + + Message: + 訊息: + + + + Save Image... + 儲存圖片... + Dialog @@ -994,34 +1009,29 @@ Address: %4 Amount: 金額: - - - BTC - BTC - - - - Message: - 訊息: - Error encoding URI into QR Code. 將 URI 編碼成 QR 條碼時發生錯誤 - - - Save Image... - 儲存圖片... - SendCoinsDialog + + + &Add recipient... + 加收款人... + Remove all transaction fields 移除所有交易欄位 + + + Clear all + 全部清掉 + Balance: @@ -1042,6 +1052,11 @@ Address: %4 &Send 付出 + + + <b>%1</b> to %2 (%3) + <b>%1</b> 給 %2 (%3) + Confirm send coins @@ -1052,11 +1067,6 @@ Address: %4 Are you sure you want to send %1? 確定要付出 %1 嗎? - - - The amount to pay must be larger than 0. - 付款金額必須大於 0. - @@ -1074,21 +1084,6 @@ Address: %4 Send to multiple recipients at once 一次付給多個人 - - - &Add recipient... - 加收款人... - - - - Clear all - 全部清掉 - - - - <b>%1</b> to %2 (%3) - <b>%1</b> 給 %2 (%3) - and @@ -1099,6 +1094,11 @@ Address: %4 The recipient address is not valid, please recheck. 無效的收款位址, 請再檢查看看. + + + The amount to pay must be larger than 0. + 付款金額必須大於 0. + The amount exceeds your balance. @@ -1142,32 +1142,16 @@ Address: %4 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - 付款的目標位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose address from address book 從位址簿中選一個位址 - - - Alt+A - Alt+A - Paste address from clipboard @@ -1183,6 +1167,22 @@ Address: %4 Remove this recipient 去掉這個收款人 + + + + Enter a label for this address to add it to your address book + 給這個位址輸入一個標記, 並加到位址簿中 + + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + 付款的目標位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Alt+A + Alt+A + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1192,30 +1192,15 @@ Address: %4 TransactionDesc - - Open until %1 - 在 %1 前未定 - - - - %1/unconfirmed - %1/未確認 + + Transaction ID: + 交易識別碼: %1 confirmations 經確認 %1 次 - - - , has not been successfully broadcast yet - , 尚未成功公告出去 - - - - unknown - 未知 - Open for %1 blocks @@ -1246,11 +1231,6 @@ Address: %4 <b>Date:</b> <b>日期:</b> - - - <b>Source:</b> Generated<br> - <b>來源:</b> 生產所得<br> - @@ -1264,6 +1244,31 @@ Address: %4 <b>To:</b> <b>目的:</b> + + + unknown + 未知 + + + + Open until %1 + 在 %1 前未定 + + + + %1/unconfirmed + %1/未確認 + + + + , has not been successfully broadcast yet + , 尚未成功公告出去 + + + + <b>Source:</b> Generated<br> + <b>來源:</b> 生產所得<br> + (yours, label: @@ -1319,11 +1324,6 @@ Address: %4 Comment: 附註: - - - Transaction ID: - 交易識別碼: - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. @@ -1332,24 +1332,66 @@ Address: %4 TransactionDescDialog - - - Transaction details - 交易明細 - This pane shows a detailed description of the transaction 此版面顯示交易的詳細說明 + + + Transaction details + 交易明細 + TransactionTableModel + + + Date + 日期 + Amount 金額 + + + Open for %n block(s) + + 在 %n 個區塊內未定 + + + + + Open until %1 + 在 %1 前未定 + + + + Offline (%1 confirmations) + 離線中 (經確認 %1 次) + + + + Unconfirmed (%1 of %2 confirmations) + 未確認 (經確認 %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 @@ -1400,103 +1442,51 @@ Address: %4 Amount removed from or added to balance. 減去或加入至餘額的金額 + + + Address + 位址 + Type 種類 - - Date - 日期 + + Confirmed (%1 confirmations) + 已確認 (經確認 %1 次) - - Open for %n block(s) + + Mined balance will be available in %n more blocks - 在 %n 個區塊內未定 + 生產金額將在 %n 個區塊產出後可用 + + + TransactionView - - Open until %1 - 在 %1 前未定 + + Label + 標記 - - Offline (%1 confirmations) - 離線中 (經確認 %1 次) - - - - Unconfirmed (%1 of %2 confirmations) - 未確認 (經確認 %1 次, 應確認 %2 次) - - - - Confirmed (%1 confirmations) - 已確認 (經確認 %1 次) - - - - Mined balance will be available in %n more blocks - - 生產金額將在 %n 個區塊產出後可用 - - - - - Generated but not accepted - 產出但不被接受 - - - - Received with - 收受於 - - - - Address - 位址 - - - - This block was not received by any other nodes and will probably not be accepted! - 沒有其他節點收到這個區塊, 也許它不被接受! + + Today + 今天 - - - TransactionView - - Could not write to file %1. - 無法寫入至 %1 檔案. + + This week + 這週 This month 這個月 - - - Last month - 上個月 - - - - Copy amount - 複製金額 - - - - Edit label - 編輯標記 - - - - Comma separated file (*.csv) - 逗號分隔資料檔 (*.csv) - Confirmed @@ -1512,11 +1502,6 @@ Address: %4 Type 種類 - - - Label - 標記 - Address @@ -1533,20 +1518,14 @@ Address: %4 識別碼 - - - All - 全部 - - - - Today - 今天 + + Error exporting + 匯出錯誤 - - This week - 這週 + + Could not write to file %1. + 無法寫入至 %1 檔案. @@ -1558,6 +1537,16 @@ Address: %4 to + + + Last month + 上個月 + + + + This year + 今年 + Range... @@ -1609,14 +1598,14 @@ Address: %4 複製標記 - - Error exporting - 匯出錯誤 + + Copy amount + 複製金額 - - Show details... - 顯示明細... + + Edit label + 編輯標記 @@ -1624,9 +1613,20 @@ Address: %4 匯出交易資料 - - This year - 今年 + + Comma separated file (*.csv) + 逗號分隔資料檔 (*.csv) + + + + Show details... + 顯示明細... + + + + + All + 全部 @@ -1640,29 +1640,14 @@ Address: %4 bitcoin-core - - Bitcoin version - 位元幣版本 - - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - 無法鎖定資料目錄 %s. 也許位元幣已經在執行了. - - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - 在通訊埠 <port> 聽候連線 (預設: 8333, 或若為測試網路: 18333) - - - - Loading block index... - 載入區塊索引中... + + Loading addresses... + 載入位址中... - - Rescanning... - 重新掃描中... + + Loading wallet... + 載入錢包中... @@ -1670,54 +1655,45 @@ Address: %4 載入完成 - - Set database cache size in megabytes (default: 25) - 設定資料庫快取大小為多少百萬位元組(MB, 預設: 25) - - - - Specify data directory - 指定資料目錄 - - - - - Specify pid file (default: bitcoind.pid) - 指定行程識別碼檔案 (預設: bitcoind.pid) - + + Cannot initialize keypool + 無法將密鑰池初始化 - - Threshold for disconnecting misbehaving peers (default: 100) - 與亂搞的節點斷線的臨界值 (預設: 100) + + Cannot write default address + 無法寫入預設位址 - - Usage: - 用法: + + Error loading wallet.dat: Wallet corrupted + 載入檔案 wallet.dat 失敗: 錢包壞掉了 - - Send command to -server or bitcoind - 送指令至 -server 或 bitcoind - + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + 載入檔案 wallet.dat 失敗: 此錢包需要新版的 Bitcoin - - Get help for a command - 取得指令說明 - + + Error loading wallet.dat + 載入檔案 wallet.dat 失敗 - - Specify configuration file (default: bitcoin.conf) - 指定設定檔 (預設: bitcoin.conf) - + + Cannot downgrade wallet + 無法將錢包格式降級 Specify connection timeout (in milliseconds) 指定連線逾時時間 (毫秒) + + + + + List commands + 列出指令 @@ -1730,6 +1706,12 @@ Address: %4 Number of seconds to keep misbehaving peers from reconnecting (default: 86400) 避免與亂搞的節點連線的秒數 (預設: 86400) + + + Don't generate coins + 不生產位元幣 + + Accept command line and JSON-RPC commands @@ -1741,45 +1723,25 @@ Address: %4 Send trace/debug info to console instead of debug.log file 輸出追蹤或除錯資訊至終端機, 而非 debug.log 檔案 + + + Add a node to connect to and attempt to keep the connection open + 加入一個要連線的節線, 並試著保持對它的連線暢通 + Username for JSON-RPC connections JSON-RPC 連線使用者名稱 - - Send trace/debug info to debugger - 輸出追蹤或除錯資訊給除錯器 - - - - Show splash screen on startup (default: 1) - 顯示啓動畫面 (預設: 1) - - - - Accept connections from outside (default: 1) - 是否接受外來連線 (預設: 1) - - - - Set language, for example "de_DE" (default: system locale) - 設定語言, 比如說 "de_DE" (預設: 系統語系) - - - - Find peers using DNS lookup (default: 1) - - - - - Use Universal Plug and Play to map the listening port (default: 1) - 是否使用通用即插即用(UPnP)協定來設定聽候連線的通訊埠 (預設: 1) + + Find peers using internet relay chat (default: 0) + 是否使用網際網路中繼聊天(IRC)來找節點 (預設: 0) - - Use Universal Plug and Play to map the listening port (default: 0) - 是否使用通用即插即用(UPnP)協定來設定聽候連線的通訊埠 (預設: 0) + + Run in the background as a daemon and accept commands + 以背景程式執行並接受指令 @@ -1803,16 +1765,25 @@ Address: %4 - - Set key pool size to <n> (default: 100) - 設定密鑰池大小為 <n> (預設: 100) - + + Fee per KB to add to transactions you send + 交易付款時每 KB 的交易手續費 Rescan the block chain for missing wallet transactions 重新掃描區塊鎖鏈, 以尋找錢包所遺漏的交易. + + + Error: CreateThread(StartNode) failed + 錯誤: CreateThread(StartNode) 失敗 + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + 無法與這台電腦上的通訊埠 %d 連結. 也許 Bitcoin 已經在執行了. + Use OpenSSL (https) for JSON-RPC connections @@ -1844,29 +1815,29 @@ Address: %4 - - Error loading blkindex.dat - 載入 blkindex.dat 失敗 + + Execute command when the best block changes (%s in cmd is replaced by block hash) + 當最新區塊改變時所要執行的指令 (指令中的 %s 會被取代為區塊的雜湊值) - - Error loading wallet.dat: Wallet corrupted - 載入檔案 wallet.dat 失敗: 錢包壞掉了 + + Upgrade wallet to latest format + 將錢包升級成最新的格式 - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - 載入檔案 wallet.dat 失敗: 此錢包需要新版的 Bitcoin + + How many blocks to check at startup (default: 2500, 0 = all) + 啓動時檢查多少區塊 (預設: 2500, 0 表示全部) - - Wallet needed to be rewritten: restart Bitcoin to complete - 錢包需要重寫: 請重啟位元幣來完成 + + How thorough the block verification is (0-6, default: 1) + 區塊檢查的仔細程度 (0 至 6, 預設: 1) - - Error loading wallet.dat - 載入檔案 wallet.dat 失敗 + + Threshold for disconnecting misbehaving peers (default: 100) + 與亂搞的節點斷線的臨界值 (預設: 100) @@ -1887,25 +1858,15 @@ Address: %4 - - Run in the background as a daemon and accept commands - 以背景程式執行並接受指令 - - - - Use the test network - 使用測試網路 + + Connect through socks4 proxy + 透過 socks4 代理伺服器連線 - - Output extra debugging information - 輸出額外的除錯資訊 - - - - Prepend debug output with timestamp - 在除錯輸出內容前附加時間 + + Send trace/debug info to debugger + 輸出追蹤或除錯資訊給除錯器 @@ -1916,19 +1877,69 @@ SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) - - Error loading addr.dat - 載入 addr.dat 失敗 + + Bitcoin version + 位元幣版本 - - Loading addresses... - 載入位址中... + + Listen for connections on <port> (default: 8333 or testnet: 18333) + 在通訊埠 <port> 聽候連線 (預設: 8333, 或若為測試網路: 18333) - - Loading wallet... - 載入錢包中... + + Options: + 選項: + + + + + Send command to -server or bitcoind + 送指令至 -server 或 bitcoind + + + + + Specify configuration file (default: bitcoin.conf) + 指定設定檔 (預設: bitcoin.conf) + + + + + Specify data directory + 指定資料目錄 + + + + + Specify pid file (default: bitcoind.pid) + 指定行程識別碼檔案 (預設: bitcoind.pid) + + + + + Usage: + 用法: + + + + Loading block index... + 載入區塊索引中... + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + 無法鎖定資料目錄 %s. 也許位元幣已經在執行了. + + + + Find peers using DNS lookup (default: 1) + 是否允許在找節點時使用域名查詢 (預設: 1) + + + + Rescanning... + 重新掃描中... @@ -1945,16 +1956,6 @@ SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. 警告: -paytxfee 設定得很高. 這是當你交易付款時所要支付的手續費. - - - Error: CreateThread(StartNode) failed - 錯誤: CreateThread(StartNode) 失敗 - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - 無法與這台電腦上的通訊埠 %d 連結. 也許 Bitcoin 已經在執行了. - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. @@ -1972,9 +1973,9 @@ SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) - - Don't generate coins - 不生產位元幣 + + Get help for a command + 取得指令說明 @@ -1983,82 +1984,81 @@ SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) 警告: 磁碟空間很少 - - List commands - 列出指令 - + + Error loading addr.dat + 載入 addr.dat 失敗 - - Options: - 選項: - + + Error loading blkindex.dat + 載入 blkindex.dat 失敗 - - Connect through socks4 proxy - 透過 socks4 代理伺服器連線 - + + Wallet needed to be rewritten: restart Bitcoin to complete + 錢包需要重寫: 請重啟位元幣來完成 - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - 每個連線的接收緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) + + Show splash screen on startup (default: 1) + 顯示啓動畫面 (預設: 1) - - Execute command when the best block changes (%s in cmd is replaced by block hash) - 當最新區塊改變時所要執行的指令 (指令中的 %s 會被取代為區塊的雜湊值) + + Set database cache size in megabytes (default: 25) + 設定資料庫快取大小為多少百萬位元組(MB, 預設: 25) - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - 每個連線的傳送緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) + + Accept connections from outside (default: 1) + 是否接受外來連線 (預設: 1) - - Add a node to connect to and attempt to keep the connection open - 加入一個要連線的節線, 並試著保持對它的連線暢通 + + Set language, for example "de_DE" (default: system locale) + 設定語言, 比如說 "de_DE" (預設: 系統語系) - - Cannot downgrade wallet - 無法將錢包格式降級 + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + 每個連線的接收緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) - - Cannot initialize keypool - 無法將密鑰池初始化 + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + 每個連線的傳送緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) - - Cannot write default address - 無法寫入預設位址 + + Use Universal Plug and Play to map the listening port (default: 1) + 是否使用通用即插即用(UPnP)協定來設定聽候連線的通訊埠 (預設: 1) - - Fee per KB to add to transactions you send - 交易付款時每 KB 的交易手續費 + + Use Universal Plug and Play to map the listening port (default: 0) + 是否使用通用即插即用(UPnP)協定來設定聽候連線的通訊埠 (預設: 0) - - Find peers using internet relay chat (default: 0) - 是否使用網際網路中繼聊天(IRC)來找節點 (預設: 0) + + Use the test network + 使用測試網路 + - - How many blocks to check at startup (default: 2500, 0 = all) - 啓動時檢查多少區塊 (預設: 2500, 0 表示全部) + + Output extra debugging information + 輸出額外的除錯資訊 - - How thorough the block verification is (0-6, default: 1) - 區塊檢查的仔細程度 (0 至 6, 預設: 1) + + Prepend debug output with timestamp + 在除錯輸出內容前附加時間 - - Upgrade wallet to latest format - 將錢包升級成最新的格式 + + Set key pool size to <n> (default: 100) + 設定密鑰池大小為 <n> (預設: 100) + -- cgit v1.2.3 From 367f2873bc14f57afa7b0f1b43d8b6fc3d404e2e Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 28 Aug 2012 23:39:17 +0000 Subject: Update supported translations --- src/qt/bitcoinstrings.cpp | 72 +- src/qt/locale/bitcoin_ca_ES.ts | 1551 ++++++++++++++++++-------------- src/qt/locale/bitcoin_cs.ts | 1530 +++++++++++++++++-------------- src/qt/locale/bitcoin_da.ts | 1779 +++++++++++++++++++----------------- src/qt/locale/bitcoin_de.ts | 1812 ++++++++++++++++++++----------------- src/qt/locale/bitcoin_en.ts | 876 +++++++++--------- src/qt/locale/bitcoin_es.ts | 1947 ++++++++++++++++++++++------------------ src/qt/locale/bitcoin_es_CL.ts | 1870 +++++++++++++++++++++----------------- src/qt/locale/bitcoin_et.ts | 1511 +++++++++++++++++-------------- src/qt/locale/bitcoin_eu_ES.ts | 1583 +++++++++++++++++--------------- src/qt/locale/bitcoin_fa.ts | 1561 ++++++++++++++++++-------------- src/qt/locale/bitcoin_fa_IR.ts | 1788 +++++++++++++++++++----------------- src/qt/locale/bitcoin_fi.ts | 1614 ++++++++++++++++++--------------- src/qt/locale/bitcoin_fr_CA.ts | 1557 ++++++++++++++++++-------------- src/qt/locale/bitcoin_fr_FR.ts | 921 +++++++++++-------- src/qt/locale/bitcoin_he.ts | 1577 ++++++++++++++++++-------------- src/qt/locale/bitcoin_hr.ts | 1637 ++++++++++++++++++--------------- src/qt/locale/bitcoin_hu.ts | 1752 ++++++++++++++++++++---------------- src/qt/locale/bitcoin_it.ts | 1781 +++++++++++++++++++----------------- src/qt/locale/bitcoin_lt.ts | 1421 ++++++++++++++++------------- src/qt/locale/bitcoin_nb.ts | 1892 ++++++++++++++++++++------------------ src/qt/locale/bitcoin_nl.ts | 1824 ++++++++++++++++++++----------------- src/qt/locale/bitcoin_pl.ts | 1614 ++++++++++++++++++--------------- src/qt/locale/bitcoin_pt_BR.ts | 1817 ++++++++++++++++++++----------------- src/qt/locale/bitcoin_ro_RO.ts | 1327 +++++++++++++++------------ src/qt/locale/bitcoin_ru.ts | 1902 +++++++++++++++++++++------------------ src/qt/locale/bitcoin_sk.ts | 1487 ++++++++++++++++-------------- src/qt/locale/bitcoin_sr.ts | 1497 ++++++++++++++++-------------- src/qt/locale/bitcoin_sv.ts | 1795 +++++++++++++++++++----------------- src/qt/locale/bitcoin_tr.ts | 1560 ++++++++++++++++++-------------- src/qt/locale/bitcoin_uk.ts | 1840 ++++++++++++++++++++----------------- src/qt/locale/bitcoin_zh_CN.ts | 1804 ++++++++++++++++++++----------------- src/qt/locale/bitcoin_zh_TW.ts | 1766 ++++++++++++++++++++---------------- 33 files changed, 28935 insertions(+), 23330 deletions(-) diff --git a/src/qt/bitcoinstrings.cpp b/src/qt/bitcoinstrings.cpp index b25af1a210..604f14cb37 100644 --- a/src/qt/bitcoinstrings.cpp +++ b/src/qt/bitcoinstrings.cpp @@ -5,10 +5,39 @@ #else #define UNUSED #endif -static const char UNUSED *bitcoin_strings[] = {QT_TRANSLATE_NOOP("bitcoin-core", "" -"Unable to bind to port %d on this computer. Bitcoin is probably already " -"running."), -QT_TRANSLATE_NOOP("bitcoin-core", "Warning: Disk space is low "), +static const char UNUSED *bitcoin_strings[] = {QT_TRANSLATE_NOOP("bitcoin-core", "Error: Wallet locked, 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: Disk space is low"), +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=bitcoinrpc\n" +"rpcpassword=%s\n" +"(you do not need to remember this password)\n" +"If the file does not exist, create it with owner-readable-only file " +"permissions.\n"), +QT_TRANSLATE_NOOP("bitcoin-core", "Error"), +QT_TRANSLATE_NOOP("bitcoin-core", "An error occurred while setting up the RPC port %i for listening: %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", "" +"Warning: Please check that your computer's date and time are correct. If " +"your clock is wrong Bitcoin will not work properly."), QT_TRANSLATE_NOOP("bitcoin-core", "Bitcoin version"), QT_TRANSLATE_NOOP("bitcoin-core", "Usage:"), QT_TRANSLATE_NOOP("bitcoin-core", "Send command to -server or bitcoind"), @@ -43,6 +72,8 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection receive buffer, *10 QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection send buffer, *1000 bytes (default: 10000)"), QT_TRANSLATE_NOOP("bitcoin-core", "Use Universal Plug and Play to map the listening port (default: 1)"), QT_TRANSLATE_NOOP("bitcoin-core", "Use Universal Plug and Play 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", "Accept command line and JSON-RPC commands"), QT_TRANSLATE_NOOP("bitcoin-core", "Run in the background as a daemon and accept commands"), @@ -99,36 +130,7 @@ 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", "Error: CreateThread(StartNode) failed"), -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=bitcoinrpc\n" -"rpcpassword=%s\n" -"(you do not need to remember this password)\n" -"If the file does not exist, create it with owner-readable-only file " -"permissions.\n"), -QT_TRANSLATE_NOOP("bitcoin-core", "Error"), -QT_TRANSLATE_NOOP("bitcoin-core", "An error occured while setting up the RPC port %i for listening: %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", "" -"Warning: Please check that your computer's date and time are correct. If " -"your clock is wrong Bitcoin will not work properly."), -QT_TRANSLATE_NOOP("bitcoin-core", "Error: Wallet locked, 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"), +"Unable to bind to port %d on this computer. Bitcoin is probably already " +"running."), }; \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ca_ES.ts b/src/qt/locale/bitcoin_ca_ES.ts index 0340550960..8660306959 100644 --- a/src/qt/locale/bitcoin_ca_ES.ts +++ b/src/qt/locale/bitcoin_ca_ES.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> versió - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -34,7 +36,7 @@ This product includes software developed by the OpenSSL Project for use in the O These are your Bitcoin 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,27 +61,27 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - + Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + Delete the currently selected address from the list. Only sending addresses can be deleted. - + @@ -87,96 +89,70 @@ This product includes software developed by the OpenSSL Project for use in the O &Borrar - + Copy address - + - + Copy label - + - + Edit - + Editar - + Delete - + Borrar - + Export Address Book Data - + - + Comma separated file (*.csv) - + - + Error exporting - + - + Could not write to file %1. - + AddressTableModel - + Label Etiqueta - + Address Direcció - + (no label) - + AskPassphraseDialog - - - Dialog - - - - - - TextLabel - - - - - Enter passphrase - - - - - New passphrase - - - - - Repeat new passphrase - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + @@ -186,60 +162,54 @@ This product includes software developed by the OpenSSL Project for use in the O 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 BITCOINS</b>! Are you sure you wish to encrypt your wallet? - + Wallet encrypted - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - - Warning: The Caps Lock key is on. - + @@ -247,371 +217,440 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - + The supplied passphrases do not match. - + Wallet unlock failed - + The passphrase entered for the wallet decryption was incorrect. - + Wallet decryption failed - + - Wallet passphrase was succesfully changed. - + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on. + + + + + Dialog + + + + + Enter passphrase + + + + + New passphrase + + + + + Repeat new passphrase + + + + + TextLabel + BitcoinGUI - - Bitcoin Wallet - - - - - + Synchronizing with network... Sincronització amb la xarxa ... - - Block chain synchronization in progress - Sincronització de la cadena en el progrés + + Bitcoin Wallet + - + &Overview - + - + Show general overview of wallet Mostra panorama general de la cartera - + &Transactions - + - + Browse transaction history Cerca a l'historial de transaccions - + &Address Book - + llibreta d'&adreces - + Edit the list of stored addresses and labels Edita la llista d'adreces emmagatzemada i etiquetes - + &Receive coins &Rebre monedes - + Show the list of addresses for receiving payments - + - + &Send coins - + - + Send coins to a bitcoin address - + - + Sign &message - + - + Prove you control an address - + - + E&xit - + - + Quit application Sortir de l'aplicació - + &About %1 - + &Sobre %1 - + Show information about Bitcoin Mostra informació sobre Bitcoin - + About &Qt - + Sobre &Qt - + Show information about Qt - + - + &Options... &Opcions ... - + Modify configuration options for bitcoin Modificar les opcions de configuració per bitcoin - - Open &Bitcoin - + + Show/Hide &Bitcoin + - - Show the Bitcoin window - + + Show or hide the Bitcoin window + - + &Export... - + - + Export the data in the current tab to a file - + - + &Encrypt Wallet - + &Xifrar la Cartera - + Encrypt or decrypt wallet - + - + &Backup Wallet - + - + Backup wallet to another location - + - + &Change Passphrase - + - + Change the passphrase used for wallet encryption - + - + &File - + - + &Settings - + - + &Help &Ajuda - + Tabs toolbar - + - + Actions toolbar Accions de la barra d'eines - + [testnet] - + - + + Bitcoin client + + + + bitcoin-qt - + - + %n active connection(s) to Bitcoin network - + + + + + + + + + ~%n block(s) remaining + + + + + - - Downloaded %1 of %2 blocks of transaction history. - + + 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 Al dia - + Catching up... Posar-se 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? - + - + Sending... L'enviament de ... - + Sent transaction Transacció enviada - + Incoming transaction - + - + Date: %1 Amount: %2 Type: %3 Address: %4 - + - + 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. - + + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: - + - + Choose the default subdivision unit to show in the interface, and when sending coins - + + + + + &Display addresses in transaction list + - - Display addresses in transaction list - + + Whether to show Bitcoin addresses in the transaction list + @@ -624,150 +663,155 @@ Address: %4 &Label - + &Etiqueta The label associated with this address book entry - + &Address - + &Direcció 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 bitcoin address. - + Could not unlock wallet. - + New key generation failed. - + MainOptionsPage - + &Start Bitcoin on window system startup - + - + Automatically start Bitcoin after the computer is turned on - + - + &Minimize to the tray instead of the taskbar - + - + Show only a tray icon after minimizing the window - + - Map port using &UPnP - Port obert amb &UPnP + M&inimize on close + - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - + 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 - + Map port using &UPnP + Port obert amb &UPnP - 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. - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + - + &Connect through SOCKS4 proxy: - + - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + - + Proxy &IP: - + - + IP address of the proxy (e.g. 127.0.0.1) - + - + &Port: - + - + Port of the proxy (e.g. 1234) - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + - + Pay transaction &fee - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Detach databases at shutdown + + + + + 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. + @@ -775,107 +819,107 @@ Address: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Choose adress from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - Copieu l'adreça seleccionada al porta-retalls del sistema + Copy the current signature to the system clipboard + &Copy to Clipboard - + Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + OptionsDialog - + Main - + - + Display - + - + Options - + Opcions @@ -883,27 +927,22 @@ Address: %4 Form - + Balance: Balanç: - - - 123.456 BTC - - Number of transactions: - + 0 - + @@ -911,23 +950,14 @@ Address: %4 Sense confirmar: - - 0 BTC - + + Wallet + - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - - - - + <b>Recent transactions</b> - + @@ -937,12 +967,12 @@ p, li { white-space: pre-wrap; } Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + Total number of transactions in wallet - + @@ -950,87 +980,97 @@ p, li { white-space: pre-wrap; } Dialog - + QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + Etiqueta: - + Message: - + - + &Save As... - + - + + Error encoding URI into QR Code. + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + Save Image... - + - + PNG Images (*.png) - + SendCoinsDialog - - - - - - - + + + + + + + Send Coins Enviar monedes Send to multiple recipients at once - + &Add recipient... - + Remove all transaction fields - + Clear all - + @@ -1040,72 +1080,72 @@ p, li { white-space: pre-wrap; } 123.456 BTC - + Confirm the send action - + &Send - + - + <b>%1</b> to %2 (%3) - + - + Confirm send coins - + - - Are you sure you want to send %1? - + + and + i - - and - + + Are you sure you want to send %1? + - - The recepient address is not valid, please recheck. - + + The recipient address is not valid, please recheck. + - + The amount to pay must be larger than 0. La quantitat a pagar ha de ser major que 0. - - Amount exceeds your balance - Import superi el saldo de la seva compte + + The amount exceeds your balance. + Import superi el saldo de la seva compte. - - 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 in one 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. + @@ -1113,204 +1153,204 @@ p, li { white-space: pre-wrap; } 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + TransactionDesc - + Open for %1 blocks - + - + Open until %1 - + - + %1/offline? - + - + %1/unconfirmed - + - + %1 confirmations - + - + <b>Status:</b> - + - + , has not been successfully broadcast yet - + - + , broadcast through %1 node - + - + , broadcast through %1 nodes - + - + <b>Date:</b> - + - + <b>Source:</b> Generated<br> - + - - + + <b>From:</b> - + - + unknown - + - - - + + + <b>To:</b> - + - + (yours, label: - + - + (yours) - + - - - - + + + + <b>Credit:</b> - + - + (%1 matures in %2 more blocks) - + - + (not accepted) - + - - - + + + <b>Debit:</b> - + - + <b>Transaction fee:</b> - + - + <b>Net amount:</b> - + - + Message: - + - + Comment: - + - + Transaction ID: - + - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + @@ -1318,130 +1358,138 @@ p, li { white-space: pre-wrap; } Transaction details - + This pane shows a detailed description of the transaction - + TransactionTableModel - - Date - + + Address + Direcció - - Type - + + Date + - - Address - Direcció + + Type + - + Amount - + - + Open for %n block(s) - + + + + + - + Open until %1 - + - + Offline (%1 confirmations) - + - + Unconfirmed (%1 of %2 confirmations) - + - + Confirmed (%1 confirmations) - + - + Mined balance will be available in %n more blocks - + + + + + - + 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. - + @@ -1450,168 +1498,168 @@ p, li { white-space: pre-wrap; } 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 - + Edit label - + Show details... - + - + Export Transaction Data - + - + Comma separated file (*.csv) - + - + Confirmed - + - + Date - + - + Type - + - + Label Etiqueta - + Address Direcció - + Amount - + - + ID - + - + Error exporting - + - + Could not write to file %1. - + - + Range: - + - + to - + WalletModel - + Sending... L'enviament de ... @@ -1619,345 +1667,484 @@ p, li { white-space: pre-wrap; } bitcoin-core - + + Error: Wallet locked, 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... + L'enviament de ... + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 + + + + + Insufficient funds + + + + + Warning: Disk space is low + + + + + 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=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + + + + + Error + + + + + An error occurred while setting up the RPC port %i for listening: %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. + + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + + + Bitcoin version - + - + Usage: - + - + Send command to -server or bitcoind - + - + List commands - + - + Get help for a command - + - + Options: - + - + Specify configuration file (default: bitcoin.conf) - + - + Specify pid file (default: bitcoind.pid) - + - + Generate coins - + - + Don't generate coins - + - + Start minimized - + - + + Show splash screen on startup (default: 1) + + + + Specify data directory - + - + + Set database cache size in megabytes (default: 25) + + + + + Set database disk log size in megabytes (default: 100) + + + + Specify connection timeout (in milliseconds) - + - + Connect through socks4 proxy - + - + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - - Add a node to connect to - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node - + - - Don't accept connections from outside - + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + - - Don't bootstrap list of peers using DNS - + + Find peers using DNS lookup (default: 1) + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - - Don't attempt to use UPnP to map the listening port - + + Use Universal Plug and Play to map the listening port (default: 1) + - - Attempt to use UPnP to map the listening port - + + Use Universal Plug and Play to map the listening port (default: 0) + - - Fee per kB to add to transactions you send - + + Detach block and address databases. Increases shutdown time (default: 0) + - + + Fee per KB to add to transactions you send + + + + Accept command line and JSON-RPC commands - + - + Run in the background as a daemon and accept commands - + - + Use the test network - + - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections - + - + Password for JSON-RPC connections - + - + Listen for JSON-RPC connections on <port> (default: 8332) - + - + Allow JSON-RPC connections from specified IP address - + - + Send commands to node running on <ip> (default: 127.0.0.1) - + - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) - + - + Rescan the block chain for missing wallet transactions - + - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin 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) - + - + This help message - + - + + Usage + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + + Bitcoin + + + + Loading addresses... - + - + Error loading addr.dat - + - + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + - + Wallet needed to be rewritten: restart Bitcoin to complete - + - + Error loading wallet.dat - + - - Loading block index... - + + Cannot downgrade wallet + - - Loading wallet... - + + Cannot initialize keypool + - + + Cannot write default address + + + + Rescanning... - + - + Done loading - + - + Invalid -proxy address - + - + Invalid amount for -paytxfee=<amount> - + - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + - + Error: CreateThread(StartNode) failed - + - - Warning: Disk space is low - - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - - - - - beta - + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_cs.ts b/src/qt/locale/bitcoin_cs.ts index fafcf54d53..30f116f7b1 100644 --- a/src/qt/locale/bitcoin_cs.ts +++ b/src/qt/locale/bitcoin_cs.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> verze - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -72,11 +74,6 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Show &QR Code Zobraz &QR kód - - - Sign a message to prove you own this address - Podepiš zprávu, čímž prokážeš, že jsi vlastníkem této adresy - &Sign Message @@ -93,42 +90,47 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open S&maž - + + Sign a message to prove you own this address + Podepiš zprávu, čímž prokážeš, že jsi vlastníkem této adresy + + + Copy address Kopíruj adresu - + Copy label Kopíruj označení - + Edit Uprav - + Delete Smaž - + Export Address Book Data Exportuj data adresáře - + Comma separated file (*.csv) CSV formát (*.csv) - + Error exporting Chyba při exportu - + Could not write to file %1. Nemohu zapisovat do souboru %1. @@ -136,17 +138,17 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open AddressTableModel - + Label Označení - + Address Adresa - + (no label) (bez označení) @@ -159,23 +161,17 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Dialog - - - TextLabel - Textový popisek - - - + Enter passphrase Zadej platné heslo - + New passphrase Zadej nové heslo - + Repeat new passphrase Totéž heslo ještě jednou @@ -224,13 +220,6 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Confirm wallet encryption Potvrď zašifrování peněženky - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - VAROVÁNÍ: Pokud zašifruješ peněženku a ztratíš či zapomeneš heslo, <b>PŘIJDEŠ O VŠECHNY BITCOINY</b>! -Jsi si jistý, že chceš peněženku zašifrovat? - @@ -242,12 +231,6 @@ Jsi si jistý, že chceš peněženku zašifrovat? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin se teď ukončí, aby dokončil zašifrování. Pamatuj však, že pouhé zašifrování peněženky úplně nezabraňuje krádeži tvých bitcoinů malwarem, kterým se může počítač nakazit. - - - - Warning: The Caps Lock key is on. - Upozornění: Caps Lock je zapnutý. - @@ -286,285 +269,356 @@ Jsi si jistý, že chceš peněženku zašifrovat? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Heslo k peněžence bylo v pořádku změněno. + + + + Warning: The Caps Lock key is on. + Upozornění: Caps Lock je zapnutý. + + + + TextLabel + Textový popisek + + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + VAROVÁNÍ: Pokud zašifruješ peněženku a ztratíš či zapomeneš heslo, <b>PŘIJDEŠ O VŠECHNY BITCOINY</b>! +Jsi si jistý, že chceš peněženku zašifrovat? + BitcoinGUI - - Bitcoin Wallet - Bitcoinová peněženka + + &Transactions + &Transakce - - - Synchronizing with network... - Synchronizuji se sítí... + + Edit the list of stored addresses and labels + Uprav seznam uložených adres a jejich označení - - Block chain synchronization in progress - Provádí se synchronizace řetězce bloků + + Synchronizing with network... + Synchronizuji se sítí... - + &Overview &Přehled - + Show general overview of wallet Zobraz celkový přehled peněženky - - &Transactions - &Transakce + + &Address Book + &Adresář - - Browse transaction history - Procházet historii transakcí + + Bitcoin Wallet + Bitcoinová peněženka - - &Address Book - &Adresář + + E&xit + &Konec - - Edit the list of stored addresses and labels - Uprav seznam uložených adres a jejich označení + + &File + &Soubor - - &Receive coins - Pří&jem mincí + + Show information about Bitcoin + Zobraz informace o Bitcoinu - - Show the list of addresses for receiving payments - Zobraz seznam adres pro příjem plateb + + About &Qt + O &Qt - - &Send coins - P&oslání mincí + + Tabs toolbar + Panel s listy - - Send coins to a bitcoin address - Pošli mince na Bitcoinovou adresu + + [testnet] + [testnet] + + + + Sent transaction + Odeslané transakce + + + + Incoming transaction + Příchozí transakce + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> - + Sign &message Po&depiš zprávu - - Prove you control an address - Prokaž vlastnictví adresy + + &Receive coins + Pří&jem mincí - - E&xit - &Konec + + Show the list of addresses for receiving payments + Zobraz seznam adres pro příjem plateb - - Quit application - Ukončit aplikaci + + Wallet Data (*.dat) + Data peněženky (*.dat) + + + + Last received block was generated %1. + Poslední stažený blok byl vygenerován %1. - + &About %1 &O %1 - - Show information about Bitcoin - Zobraz informace o Bitcoinu + + Backup Wallet + Záloha peněženky - - About &Qt - O &Qt + + There was an error trying to save the wallet data to the new location. + Při ukládání peněženky na nové místo se přihodila nějaká chyba. + + + + Downloaded %1 blocks of transaction history. + Staženo %1 bloků transakční historie. + + + + Change the passphrase used for wallet encryption + Změň heslo k šifrování peněženky + + + + Catching up... + Stahuji... - + Show information about Qt Zobraz informace o Qt - + &Options... &Možnosti... - - Modify configuration options for bitcoin - Uprav nastavení Bitcoinu - - - - Open &Bitcoin - Otevři &Bitcoin + + Show/Hide &Bitcoin + Zobrazit/Skrýt &Bitcoin - - Show the Bitcoin window - Zobraz okno Bitcoinu + + Show or hide the Bitcoin window + Zobraz nebo skryj okno Bitcoinu - + &Export... &Export... - + Export the data in the current tab to a file Exportovat data z tohoto panelu do souboru - - &Encrypt Wallet - Zaši&fruj peněženku - - - + Encrypt or decrypt wallet Zašifruj nebo dešifruj peněženku - - &Backup Wallet - &Zazálohovat peněženku - - - + Backup wallet to another location Zazálohuj peněženku na jiné místo - - &Change Passphrase - Změň &heslo + + &Settings + &Nastavení - - Change the passphrase used for wallet encryption - Změň heslo k šifrování peněženky + + &Help + Ná&pověda - - &File - &Soubor + + Bitcoin client + Bitcoin klient + + + + %n active connection(s) to Bitcoin network + + %n aktivní spojení do Bitcoinové sítě + %n aktivní spojení do Bitcoinové sítě + %n aktivních spojení do Bitcoinové sítě + + + + + %n second(s) ago + + před vteřinou + před %n vteřinami + před %n vteřinami + - - &Settings - &Nastavení + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Peněženka je <b>zašifrovaná</b> a momentálně <b>odemčená</b> - - &Help - Ná&pověda + + Backup Failed + Zálohování selhalo - - Tabs toolbar - Panel s listy + + Send coins to a bitcoin address + Pošli mince na Bitcoinovou adresu - - Actions toolbar - Panel akcí + + Browse transaction history + Procházet historii transakcí - - [testnet] - [testnet] + + &Send coins + P&oslání mincí - - bitcoin-qt - bitcoin-qt + + Prove you control an address + Prokaž vlastnictví adresy - - - %n active connection(s) to Bitcoin network - %n aktivní spojení do Bitcoinové sítě%n aktivní spojení do Bitcoinové sítě%n aktivních spojení do Bitcoinové sítě + + + Quit application + Ukončit aplikaci - - Downloaded %1 of %2 blocks of transaction history. - Staženo %1 z %2 bloků transakční historie. + + Modify configuration options for bitcoin + Uprav nastavení Bitcoinu - - Downloaded %1 blocks of transaction history. - Staženo %1 bloků transakční historie. + + &Encrypt Wallet + Zaši&fruj peněženku + + + + &Backup Wallet + &Zazálohovat peněženku + + + + &Change Passphrase + Změň &heslo + + + + bitcoin-qt + bitcoin-qt - - %n second(s) ago - před vteřinoupřed %n vteřinamipřed %n vteřinami + + ~%n block(s) remaining + + zbývá ~%n blok + zbývá ~%n bloky + zbývá ~%n bloků + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Staženo %1 z %2 bloků transakční historie (%3 % hotovo). - + %n minute(s) ago - před minutoupřed %n minutamipřed %n minutami + + před minutou + před %n minutami + před %n minutami + - + %n hour(s) ago - před hodinoupřed %n hodinamipřed %n hodinami + + před hodinou + před %n hodinami + před %n hodinami + - + %n day(s) ago - včerapřed %n dnypřed %n dny + + včera + před %n dny + před %n dny + - + Up to date - aktuální - - - - Catching up... - Stahuji... - - - - Last received block was generated %1. - Poslední stažený blok byl vygenerován %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? - Tahle transakce přesahuje velikostní limit. I tak ji ale můžeš poslat, pokud za ni zaplatíš poplatek %1, který půjde uzlům, které tvou transakci zpracují, a navíc tak podpoříš síť. Chceš zaplatit poplatek? + Aktuální - + Sending... Posílám... - - Sent transaction - Odeslané transakce + + 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? + Tahle transakce přesahuje velikostní limit. I tak ji ale můžeš poslat, pokud za ni zaplatíš poplatek %1, který půjde uzlům, které tvou transakci zpracují, a navíc tak podpoříš síť. Chceš zaplatit poplatek? - - Incoming transaction - Příchozí transakce - - - + Date: %1 Amount: %2 Type: %3 @@ -577,52 +631,37 @@ Adresa: %4 - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Peněženka je <b>zašifrovaná</b> a momentálně <b>odemčená</b> - - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> - - - - Backup Wallet - Záloha peněženky - - - - Wallet Data (*.dat) - Data peněženky (*.dat) - - - - Backup Failed - Zálohování selhalo + + Actions toolbar + Panel akcí - - There was an error trying to save the wallet data to the new location. - Při ukládání peněženky na nové místo se přihodila nějaká chyba. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Stala se fatální chyba. Bitcoin nemůže bezpečně pokračovat v činnosti, a proto skončí. DisplayOptionsPage - + &Unit to show amounts in: &Jednotka pro částky: - + Choose the default subdivision unit to show in the interface, and when sending coins Zvol výchozí podjednotku, která se bude zobrazovat v programu a při posílání mincí - - Display addresses in transaction list - Ukazovat adresy ve výpisu transakcí + + &Display addresses in transaction list + &Ukazovat adresy ve výpisu transakcí + + + + Whether to show Bitcoin addresses in the transaction list + Zda ukazovat bitcoinové adresy ve výpisu transakcí nebo ne @@ -696,87 +735,92 @@ Adresa: %4 MainOptionsPage - + &Start Bitcoin on window system startup &Spustit Bitcoin při startu systému - + Automatically start Bitcoin after the computer is turned on Automaticky spustí Bitcoin po zapnutí počítače - + &Minimize to the tray instead of the taskbar &Minimalizovávat do ikony v panelu - + Show only a tray icon after minimizing the window Po minimalizaci okna zobrazí pouze ikonu v panelu - + Map port using &UPnP Namapovat port přes &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Automaticky otevře potřebný port na routeru. Tohle funguje jen za předpokladu, že tvůj router podporuje UPnP a že je UPnP povolené. - + M&inimize on close &Zavřením minimalizovat - + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Zavřením se aplikace minimalizuje. Pokud je tato volba zaškrtnuta, tak se aplikace ukončí pouze zvolením Konec v menu. - + &Connect through SOCKS4 proxy: &Připojit přes SOCKS4 proxy: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Připojí se do Bitcoinové sítě přes SOCKS4 proxy (např. když se připojuje přes Tor) - + Proxy &IP: &IP adresa proxy: - + IP address of the proxy (e.g. 127.0.0.1) IP adresa proxy (např. 127.0.0.1) - + &Port: P&ort: - + Port of the proxy (e.g. 1234) Port proxy (např. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Dobrovolný transakční poplatek za každý započatý kB dopomáhá k rychlému zpracování tvých transakcí. Většina transakcí má do 1 kB. Doporučená výše poplatku je 0.01. - - - + Pay transaction &fee Platit &transakční poplatek - + + Detach databases at shutdown + Při ukončování odpojit databáze + + + + 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. + Při ukončování odpojit databáze bloků a adres. To znamená, že mohou být přesunuty do jiného adresáře, ale prodlužuje to čas potřebný k ukončení. Peněženka je vždy odpojená. + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Dobrovolný transakční poplatek za každý započatý kB dopomáhá k rychlému zpracování tvých transakcí. Většina transakcí má do 1 kB. Doporučená výše poplatku je 0.01. @@ -793,11 +837,6 @@ Adresa: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Podepsáním zprávy svými adresami můžeš prokázat, že je skutečně vlastníš. Buď opatrný a nepodepisuj nic vágního; například při phishingových útocích můžeš být lákán, abys něco takového podepsal. Podepisuj pouze zcela úplná a detailní prohlášení, se kterými souhlasíš. - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Tvá adresa (např. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose adress from address book @@ -840,8 +879,8 @@ Adresa: %4 - Copy the currently selected address to the system clipboard - Zkopíruj podpis do systémové schránky + Copy the current signature to the system clipboard + Zkopíruj aktuálně vybraný podpis do systémové schránky @@ -870,85 +909,62 @@ Adresa: %4 Sign failed Podepisování selhalo + + + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adresa, kterou se zpráva podepíše (např. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + OptionsDialog - + Main Hlavní - + Display Zobrazení - + Options Možnosti OverviewPage - - - Form - Formulář - Balance: Stav účtu: - - - 123.456 BTC - 123.456 BTC - Number of transactions: Počet transakcí: - - 0 - 0 - - - - Unconfirmed: - Nepotvrzeno: - - - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Peněženka</span></p></body></html> + + Form + Formulář - - <b>Recent transactions</b> - <b>Poslední transakce</b> + + Wallet + Peněženka Your current balance Aktuální stav tvého účtu + + + Unconfirmed: + Nepotvrzeno: + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance @@ -959,9 +975,39 @@ p, li { white-space: pre-wrap; } Total number of transactions in wallet Celkový počet transakcí v peněžence + + + <b>Recent transactions</b> + <b>Poslední transakce</b> + + + + 0 + 0 + QRCodeDialog + + + Label: + Označení: + + + + Message: + Zpráva: + + + + &Save As... + &Ulož jako... + + + + Error encoding URI into QR Code. + Chyba při kódování URI do QR kódu. + Dialog @@ -973,42 +1019,32 @@ p, li { white-space: pre-wrap; } QR kód - + Request Payment Požadovat platbu - + Amount: Částka: - + BTC BTC - - Label: - Označení: - - - - Message: - Zpráva: - - - - &Save As... - &Ulož jako... + + Resulting URI too long, try to reduce the text for label / message. + Výsledná URI je příliš dlouhá, zkus zkrátit text označení / zprávy. - + Save Image... Ulož obrázek... - + PNG Images (*.png) PNG obrázky (*.png) @@ -1017,13 +1053,13 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins Pošli mince @@ -1042,11 +1078,6 @@ p, li { white-space: pre-wrap; } Remove all transaction fields Smaž všechny transakční formuláře - - - Clear all - Všechno smaž - Balance: @@ -1068,59 +1099,64 @@ p, li { white-space: pre-wrap; } &Pošli - + <b>%1</b> to %2 (%3) <b>%1</b> pro %2 (%3) - + Confirm send coins Potvrď odeslání mincí - + Are you sure you want to send %1? Jsi si jistý, že chceš poslat %1? - + and a - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance - Částka překračuje stav účtu + + The amount exceeds your balance. + Částka překračuje stav účtu. - - 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 + + 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 in one send operation - Zaznamenána duplikovaná adresa; každá adresa může být v odesílané platbě pouze jednou + + 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. - - Error: Transaction creation failed - Chyba: Vytvoření transakce selhalo + + Error: Transaction creation failed. + Chyba: Vytvoření transakce selhalo. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Chyba Transakce byla odmítnuta. Tohle může nastat, pokud nějaké mince z tvé peněženky už jednou byly utraceny, například pokud používáš kopii souboru wallet.dat a mince byly utraceny v druhé kopii, ale nebyly označeny jako utracené v této. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Chyba Transakce byla odmítnuta. Tohle může nastat, pokud nějaké mince z tvé peněženky už jednou byly utraceny, například pokud používáš kopii souboru wallet.dat a mince byly utraceny v druhé kopii, ale nebyly označeny jako utracené v této. + + + + Clear all + Všechno smaž @@ -1190,143 +1226,143 @@ p, li { white-space: pre-wrap; } TransactionDesc - + Open for %1 blocks Otevřeno pro %1 bloků - + Open until %1 Otřevřeno dokud %1 - + %1/offline? %1/offline? - + %1/unconfirmed %1/nepotvrzeno - + %1 confirmations %1 potvrzení - + <b>Status:</b> <b>Stav:</b> - + , has not been successfully broadcast yet , ještě nebylo rozesláno - + , broadcast through %1 node , rozesláno přes %1 uzel - + , broadcast through %1 nodes , rozesláno přes %1 uzlů - + + <b>Transaction fee:</b> + <b>Transakční poplatek:</b> + + + + <b>Net amount:</b> + <b>Čistá částka:</b> + + + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Vygenerované mince musí čekat 120 bloků, než mohou být utraceny. Když jsi vygeneroval tenhle blok, tak byl rozposlán do sítě, aby byl přidán do řetězce bloků. Pokud se mu nepodaří dostat se do řetězce, změní se na "neakceptovaný" a nepůjde utratit. Občas se to může stát, když jiný uzel vygeneruje blok zhruba ve stejném okamžiku jako ty. + + + <b>Date:</b> <b>Datum:</b> - + <b>Source:</b> Generated<br> <b>Zdroj:</b> Vygenerováno<br> - - + + <b>From:</b> <b>Od:</b> - + unknown neznámo - - - + + + <b>To:</b> <b>Pro:</b> - + (yours, label: (tvoje, označení: - + (yours) (tvoje) - - - - + + + + <b>Credit:</b> <b>Příjem:</b> - + (%1 matures in %2 more blocks) (%1 dozraje po %2 blocích) - + (not accepted) (neakceptováno) - - - + + + <b>Debit:</b> <b>Výdaj:</b> - - <b>Transaction fee:</b> - <b>Transakční poplatek:</b> - - - - <b>Net amount:</b> - <b>Čistá částka:</b> - - - + Message: Zpráva: - + Comment: Komentář: - + Transaction ID: ID transakce: - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Vygenerované mince musí čekat 120 bloků, než mohou být utraceny. Když jsi vygeneroval tenhle blok, tak byl rozposlán do sítě, aby byl přidán do řetězce bloků. Pokud se mu nepodaří dostat se do řetězce, změní se na "neakceptovaný" a nepůjde utratit. Občas se to může stát, když jiný uzel vygeneruje blok zhruba ve stejném okamžiku jako ty. - TransactionDescDialog @@ -1344,123 +1380,176 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Datum - + Type Typ - + Address Adresa - + Amount Částka - + Open for %n block(s) - Otevřeno pro 1 blokOtevřeno pro %n blokyOtevřeno pro %n bloků + + Otevřeno pro 1 blok + Otevřeno pro %n bloky + Otevřeno pro %n bloků + - + Open until %1 Otřevřeno dokud %1 - + Offline (%1 confirmations) Offline (%1 potvrzení) - + Unconfirmed (%1 of %2 confirmations) Nepotvrzeno (%1 z %2 potvrzení) - + Confirmed (%1 confirmations) Potvrzeno (%1 potvrzení) - + Mined balance will be available in %n more blocks - Vytěžené mince budou použitelné po jednom blokuVytěžené mince budou použitelné po %n blocíchVytěžené mince budou použitelné po %n blocích + + Vytěžené mince budou použitelné po jednom bloku + Vytěžené mince budou použitelné po %n blocích + Vytěžené mince budou použitelné po %n blocích + - + This block was not received by any other nodes and will probably not be accepted! Tento blok nedostal žádný jiný uzel a pravděpodobně nebude akceptován! - + Generated but not accepted Vygenerováno, ale neakceptováno - + Received with Přijato do - + Received from Přijato od - + Sent to Posláno na - + Payment to yourself Platba sama sobě - + Mined Vytěženo - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. Stav transakce. Najetím myši na toto políčko si zobrazíš počet potvrzení. - + Date and time that the transaction was received. Datum a čas přijetí transakce. - + Type of transaction. Druh transakce. - + Destination address of transaction. Cílová adresa transakce. - + Amount removed from or added to balance. Částka odečtená z nebo přičtená k účtu. TransactionView + + + Copy address + Kopíruj adresu + + + + Copy label + Kopíruj její označení + + + + Copy amount + Kopíruj částku + + + + Edit label + Uprav označení + + + + Confirmed + Potvrzeno + + + + Date + Datum + + + + Label + Označení + + + + ID + ID + + + + Error exporting + Chyba při exportu + @@ -1532,101 +1621,56 @@ p, li { white-space: pre-wrap; } Min amount Minimální částka - - - Copy address - Kopíruj adresu - - - - Copy label - Kopíruj její označení - - - - Copy amount - Kopíruj částku - - - - Edit label - Uprav označení - Show details... Zobraz detaily.... - + Export Transaction Data Exportuj transakční 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 - Chyba při exportu - - - - Could not write to file %1. - Nemohu zapisovat do souboru %1. - - - + Range: Rozsah: - + to + + + Type + Typ + + + + Could not write to file %1. + Nemohu zapisovat do souboru %1. + WalletModel - + Sending... Posílám... @@ -1634,346 +1678,494 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Verze Bitcoinu - - Usage: - Užití: + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Čekat na spojení na <portu> (výchozí: 8333 nebo testnet: 18333) - - Send command to -server or bitcoind - Poslat příkaz pro -server nebo bitcoind + + Maintain at most <n> connections to peers (default: 125) + Povol nejvýše <n> připojení k uzlům (výchozí: 125) - - List commands - Výpis příkazů + + Run in the background as a daemon and accept commands + Běžet na pozadí jako démon a akceptovat příkazy - - Get help for a command - Získat nápovědu pro příkaz + + Specify configuration file (default: bitcoin.conf) + Konfigurační soubor (výchozí: bitcoin.conf) - - Options: - Možnosti: + + Specify connection timeout (in milliseconds) + Zadej časový limit spojení (v milisekundách) - - Specify configuration file (default: bitcoin.conf) - Konfigurační soubor (výchozí: bitcoin.conf) + + Specify data directory + Adresář pro data - + Specify pid file (default: bitcoind.pid) PID soubor (výchozí: bitcoind.pid) - - Generate coins - Generovat mince + + Threshold for disconnecting misbehaving peers (default: 100) + Práh pro odpojování nesprávně se chovajících uzlů (výchozí: 100) - - Don't generate coins - Negenerovat mince + + This help message + Tato nápověda - - Start minimized - Startovat minimalizovaně + + Loading addresses... + Načítám adresy... - - Specify data directory - Adresář pro data + + 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 - - Specify connection timeout (in milliseconds) - Zadej časový limit spojení (v milisekundách) + + Wallet needed to be rewritten: restart Bitcoin to complete + Soubor s peněženkou potřeboval přepsat: restartuj Bitcoin, aby se operace dokončila - - Connect through socks4 proxy - Připojovat se přes socks4 proxy + + Error loading wallet.dat + Chyba při načítání wallet.dat - - Allow DNS lookups for addnode and connect - Povolit DNS dotazy pro addnode (přidání uzlu) a connect (připojení) + + Cannot initialize keypool + Nemohu inicializovat zásobník klíčů - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Čekat na spojení na <portu> (výchozí: 8333 nebo testnet: 18333) + + Done loading + Načítání dokončeno - - Maintain at most <n> connections to peers (default: 125) - Povol nejvýše <n> připojení k uzlům (výchozí: 125) + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Doba ve vteřinách, po kterou se nebudou moci nesprávně se chovající uzly znovu připojit (výchozí: 86400) - - Add a node to connect to - Přidat uzel, ke kterému se připojit + + Accept command line and JSON-RPC commands + Akceptovat příkazy z příkazové řádky a přes JSON-RPC - - Connect only to the specified node - Připojovat se pouze k udanému uzlu + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Nedaří se mi získat zámek na datový adresář %s. Bitcoin pravděpodobně už jednou běží. - - Don't accept connections from outside - Nepřijímat připojení zvenčí + + 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) - - Don't bootstrap list of peers using DNS - Nenačítat seznam uzlů z DNS + + Prepend debug output with timestamp + Připojit před ladicí výstup časové razítko - - Threshold for disconnecting misbehaving peers (default: 100) - Práh pro odpojování nesprávně se chovajících uzlů (výchozí: 100) + + Password for JSON-RPC connections + Heslo pro JSON-RPC spojení - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Doba ve vteřinách, po kterou se nebudou moci nesprávně se chovající uzly znovu připojit (výchozí: 86400) + + Listen for JSON-RPC connections on <port> (default: 8332) + Čekat na JSON-RPC spojení na <portu> (výchozí: 8332) - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maximální velikost přijímacího bufferu pro každé spojení, <n>*1000 bytů (výchozí: 10000) + + Allow JSON-RPC connections from specified IP address + Povolit JSON-RPC spojení ze specifikované IP adresy - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maximální velikost odesílacího bufferu pro každé spojení, <n>*1000 bytů (výchozí: 10000) + + Set key pool size to <n> (default: 100) + Nastavit zásobník klíčů na velikost <n> (výchozí: 100) - - Don't attempt to use UPnP to map the listening port - Nesnažit se použít UPnP k namapování naslouchacího portu + + Rescan the block chain for missing wallet transactions + Přeskenovat řetězec bloků na chybějící transakce tvé pěněženky - - Attempt to use UPnP to map the listening port - Snažit se použít UPnP k namapování naslouchacího portu + + Use OpenSSL (https) for JSON-RPC connections + Použít OpenSSL (https) pro JSON-RPC spojení - - Fee per kB to add to transactions you send - Poplatek za kB, který se přidá ke každé odeslané transakci + + Server certificate file (default: server.cert) + Soubor se serverovým certifikátem (výchozí: server.cert) - - Accept command line and JSON-RPC commands - Akceptovat příkazy z příkazové řádky a přes JSON-RPC + + Server private key (default: server.pem) + Soubor se serverovým soukromým klíčem (výchozí: server.pem) - - Run in the background as a daemon and accept commands - Běžet na pozadí jako démon a akceptovat příkazy + + Upgrade wallet to latest format + Převést peněženku na nejnovější formát - + Use the test network Použít testovací síť (testnet) - - Output extra debugging information - Tisknout speciální ladící informace - - - - Prepend debug output with timestamp - Připojit před ladící výstup časové razítko - - - + Send trace/debug info to console instead of debug.log file - Posílat stopovací/ladící 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 - Posílat stopovací/ladící informace do debuggeru + Posílat stopovací/ladicí informace do debuggeru - + Username for JSON-RPC connections Uživatelské jméno pro JSON-RPC spojení - - Password for JSON-RPC connections - Heslo pro JSON-RPC spojení + + 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) - - Listen for JSON-RPC connections on <port> (default: 8332) - Čekat na JSON-RPC spojení na <portu> (výchozí: 8332) + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Akceptovatelné šifry (výchozí: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Allow JSON-RPC connections from specified IP address - Povolit JSON-RPC spojení ze specifikované IP adresy + + Loading block index... + Načítám index bloků... - - 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) + + Loading wallet... + Načítám peněženku... - - Set key pool size to <n> (default: 100) - Nastavit zásobník klíčů na velikost <n> (výchozí: 100) + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Chyba při načítání wallet.dat: peněženka vyžaduje novější verzi Bitcoinu - - Rescan the block chain for missing wallet transactions - Přeskenovat řetězec bloků na chybějící transakce tvé pěněženky + + Rescanning... + Přeskenovávám... - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -Možnosti SSL: (viz instrukce nastavení SSL v Bitcoin Wiki) + + Usage: + Užití: - - Use OpenSSL (https) for JSON-RPC connections - Použít OpenSSL (https) pro JSON-RPC spojení + + Send command to -server or bitcoind + Poslat příkaz pro -server nebo bitcoind - - Server certificate file (default: server.cert) - Soubor se serverovým certifikátem (výchozí: server.cert) + + Options: + Možnosti: - - Server private key (default: server.pem) - Soubor se serverovým soukromým klíčem (výchozí: server.pem) + + List commands + Výpis příkazů - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Akceptovatelné šifry (výchozí: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Get help for a command + Získat nápovědu pro příkaz - - This help message - Tato nápověda + + Generate coins + Generovat mince + + + + Don't generate coins + Negenerovat mince + + + + Start minimized + Startovat minimalizovaně - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Nedaří se mi získat zámek na datový adresář %s. Bitcoin pravděpodobně už jednou běží. + Connect through socks4 proxy + Připojovat se přes socks4 proxy - - Loading addresses... - Načítám adresy... + + Allow DNS lookups for addnode and connect + Povolit DNS dotazy pro addnode (přidání uzlu) a connect (připojení) - - Error loading addr.dat - Chyba při načítání addr.dat + + Connect only to the specified node + Připojovat se pouze k udanému uzlu - - Error loading blkindex.dat - Chyba při načítání blkindex.dat + + Accept connections from outside (default: 1) + Přijímat spojení zvenčí (výchozí: 1) - Error loading wallet.dat: Wallet corrupted - Chyba při načítání wallet.dat: peněženka je poškozená + Set language, for example "de_DE" (default: system locale) + Nastavit jazyk, například "de_DE" (výchozí: systémové nastavení) - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Chyba při načítání wallet.dat: peněženka vyžaduje novější verzi Bitcoinu + Find peers using DNS lookup (default: 1) + Hledat uzly přes DNS (výchozí: 1) - - Wallet needed to be rewritten: restart Bitcoin to complete - Soubor s peněženkou potřeboval přepsat: restartuj Bitcoin, aby se operace dokončila + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maximální velikost přijímacího bufferu pro každé spojení, <n>*1000 bytů (výchozí: 10000) - - Error loading wallet.dat - Chyba při načítání wallet.dat + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maximální velikost odesílacího bufferu pro každé spojení, <n>*1000 bytů (výchozí: 10000) - - Loading block index... - Načítám index bloků... + + Output extra debugging information + Tisknout speciální ladící informace - - Loading wallet... - Načítám peněženku... + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +Možnosti SSL: (viz instrukce nastavení SSL v Bitcoin Wiki) - - Rescanning... - Přeskenovávám... + + Usage + Užití - - Done loading - Načítání dokončeno + + Error loading addr.dat + Chyba při načítání addr.dat - + Invalid -proxy address Neplatná -proxy adresa - + Invalid amount for -paytxfee=<amount> Neplatná částka pro -paytxfee=<částka> - + 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. - + Error: CreateThread(StartNode) failed Chyba: Selhalo CreateThread(StartNode) - - Warning: Disk space is low - Upozornění: Na disku je málo místa - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Nedaří se mi připojit na port %d na tomhle počítači. Bitcoin už pravděpodobně jednou běží. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Upozornění: Zkontroluj, že máš v počítači správně nastavený datum a čas. Pokud jsou nastaveny špatně, Bitcoin nebude fungovat správně. - - beta - beta + + Use Universal Plug and Play to map the listening port (default: 1) + Použít UPnP k namapování naslouchacího portu (výchozí: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Použít UPnP k namapování naslouchacího portu (výchozí: 0) + + + + Show splash screen on startup (default: 1) + Zobrazovat startovací obrazovku (výchozí: 1) + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + %s, musíš nastavit rpcpassword v konfiguračním souboru: + %s +Je vhodné použít následující náhodné heslo: +rpcuser=bitcoinrpc +rpcpassword=%s +(není potřeba si ho pamatovat) +Pokud konfigurační soubor ještě neexistuje, vytvoř ho tak, aby ho mohl číst pouze vlastník. + + + + + Detach block and address databases. Increases shutdown time (default: 0) + Odpojit databázi bloků a adres. Prodlužuje čas potřebný k ukončení (výchozí: 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 Transakce byla odmítnuta. Tohle může nastat, pokud nějaké mince z tvé peněženky už jednou byly utraceny, například pokud používáš kopii souboru wallet.dat a mince byly utraceny v druhé kopii, ale nebyly označeny jako utracené v této. + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Chyba: Tahle transakce vyžaduje transakční poplatek nejméně %s kvůli velikosti zasílané částky, komplexnosti nebo použití nedávno přijatých mincí + + + + 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. + + + + Error loading blkindex.dat + Chyba při načítání blkindex.dat + + + + An error occurred while setting up the RPC port %i for listening: %s + Při nastavování naslouchacího RPC portu %i nastala chyba: %s + + + + Error loading wallet.dat: Wallet corrupted + Chyba při načítání wallet.dat: peněženka je poškozená + + + + Bitcoin + Bitcoin + + + + Cannot downgrade wallet + Nemohu převést peněženku do staršího formátu + + + + Cannot write default address + Nemohu napsat výchozí adresu + + + + Error + Chyba + + + + Error: Transaction creation failed + Chyba: Vytvoření transakce selhalo + + + + Error: Wallet locked, unable to create transaction + Chyba: Peněženka je zamčená, nemohu vytvořit transakci + + + + Fee per KB to add to transactions you send + Poplatek za KB, který se přidá ke každé odeslané transakci + + + + Find peers using internet relay chat (default: 0) + Hledat uzly přes IRC (výchozí: 0) + + + + How many blocks to check at startup (default: 2500, 0 = all) + Kolik bloků při startu zkontrolovat (výchozí: 2500, 0 = všechny) + + + + How thorough the block verification is (0-6, default: 1) + Jak moc důkladná má verifikace bloků být (0-6, výchozí: 1) + + + + Warning: Disk space is low + Upozornění: Na disku je málo místa + + + + Insufficient funds + Nedostatek prostředků + + + + Invalid amount + Neplatná částka + + + + Sending... + Posílám... + + + + 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) + Nastavit velikost databázového souboru s logy v megabajtech (výchozí: 100) + + + + To use the %s option + K použití volby %s - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index 1a7f916ae0..c757a94a5f 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> version - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,13 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Copyright © 2009-2012 Bitcoin Developers + +Dette program er ekperimentielt. + +Det er gjort tilgængeligt under MIT/X11 softwarelicensen. Se den tilhørende fil "license.txt" 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 skrevet af Eric Young (eay@cryptsoft.com) og UPnP-software skrevet by Thomas Bernard. @@ -46,6 +54,16 @@ This product includes software developed by the OpenSSL Project for use in the O Create a new address Opret en ny adresse + + + Comma separated file (*.csv) + Kommasepareret fil (*. csv) + + + + Error exporting + Fejl under eksport + &New Address... @@ -64,17 +82,17 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + @@ -87,42 +105,32 @@ This product includes software developed by the OpenSSL Project for use in the O &Slet - + Copy address Kopier adresse - + Copy label Kopier etiket - + Edit - + Rediger - + Delete - + Slet - + Export Address Book Data Eksporter Adressekartoteketsdata - - Comma separated file (*.csv) - Kommasepareret fil (*. csv) - - - - Error exporting - Fejl under eksport - - - + Could not write to file %1. Kunne ikke skrive til filen %1. @@ -130,17 +138,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - - Label - Etiket - - - + Address Adresse - + + Label + Etiket + + + (no label) (ingen etiket) @@ -148,108 +156,84 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - - Dialog - Dialog + + Enter passphrase + Indtast adgangskode - - - TextLabel - TekstEtiket + + Change passphrase + Skift adgangskode - - Enter passphrase - Indtast adgangskode + + Dialog + Dialog - + New passphrase Ny adgangskode - + Repeat new passphrase Gentag ny adgangskode - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Indtast den nye adgangskode til tegnebogen.<br/>Brug venligst en adgangskode på <b>10 eller flere tilfældige tegn</b>, eller <b>otte eller flere ord</b>. + + TextLabel + TekstEtiket + + + + Decrypt wallet + Dekryptér tegnebog + + + + + Wallet encrypted + Tegnebog krypteret Encrypt wallet Krypter tegnebog + + + + + + Wallet encryption failed + Tegnebogskryptering mislykkedes + This operation needs your wallet passphrase to unlock the wallet. Denne funktion har brug for din tegnebogs kodeord 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 kodeord for at dekryptere tegnebogen. - - Decrypt wallet - Dekryptér tegnebog + + Unlock wallet + Lås tegnebog op - - Change passphrase - Skift adgangskode + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Indtast den nye adgangskode til tegnebogen.<br/>Brug venligst en adgangskode på <b>10 eller flere tilfældige tegn</b>, eller <b>otte eller flere ord</b>. Enter the old and new passphrase to the wallet. Indtast den gamle og 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 BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ADVARSEL: Hvis du krypterer din tegnebog og mister dit kodeord vil du <b>miste alle dine BITCOINS</b>! -Er du sikker på at du ønsker at kryptere din tegnebog? - - - - - Wallet encrypted - Tegnebog krypteret - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - - Warning: The Caps Lock key is on. - - - - - - - - Wallet encryption failed - Tegnebogskryptering mislykkedes - Wallet encryption failed due to an internal error. Your wallet was not encrypted. @@ -273,6 +257,29 @@ Er du sikker på at du ønsker at kryptere din tegnebog? The passphrase entered for the wallet decryption was incorrect. Det angivne kodeord for tegnebogsdekrypteringen er forkert. + + + + Warning: The Caps Lock key is on. + + + + + Confirm wallet encryption + Bekræft tegnebogskryptering + + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ADVARSEL: Hvis du krypterer din tegnebog og mister dit kodeord vil du <b>miste alle dine BITCOINS</b>! +Er du sikker på at du ønsker at kryptere din tegnebog? + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. + Wallet decryption failed @@ -280,343 +287,375 @@ Er du sikker på at du ønsker at kryptere din tegnebog? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Tegnebogskodeord blev ændret. BitcoinGUI - + + Show general overview of wallet + Vis generel oversigt over tegnebog + + + + Browse transaction history + Gennemse transaktionshistorik + + + + &Address Book + &Adressebog + + + + &Export... + &Eksporter... + + + + Encrypt or decrypt wallet + Kryptér eller dekryptér tegnebog + + + + &File + &Fil + + + Bitcoin Wallet Bitcoin Tegnebog - - + Synchronizing with network... Synkroniserer med netværk ... - - Block chain synchronization in progress - Blokkæde synkronisering i gang + + &Receive coins + &Modtag coins - - &Overview - &Oversigt + + Sending... + Sender... - - Show general overview of wallet - Vis generel oversigt over tegnebog + + Sent transaction + Afsendt transaktion - - &Transactions - &Transaktioner + + Incoming transaction + Indgående transaktion - - Browse transaction history - Gennemse transaktionshistorik + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Dato: %1 +Beløb: %2 +Type: %3 +Adresse: %4 + - - &Address Book - &Adressebog + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Tegnebog er <b>krypteret</b> og i øjeblikket <b>ulåst</b> - - Edit the list of stored addresses and labels - Rediger listen over gemte adresser og etiketter + + &Options... + &Indstillinger ... - - &Receive coins - &Modtag coins + + &Transactions + &Transaktioner + + + + Edit the list of stored addresses and labels + Rediger listen over gemte adresser og etiketter - + Show the list of addresses for receiving payments Vis listen over adresser for at modtage betalinger - + &Send coins &Send coins - - Send coins to a bitcoin address - Send coins til en bitcoinadresse - - - + Sign &message - + - + Prove you control an address - + - + E&xit &Luk - + Quit application Afslut program - - &About %1 - &Om %1 - - - + Show information about Bitcoin Vis oplysninger om Bitcoin - - About &Qt - - - - - Show information about Qt - + + &Overview + &Oversigt - - &Options... - &Indstillinger ... + + Change the passphrase used for wallet encryption + Skift kodeord anvendt til tegnebogskryptering - - Modify configuration options for bitcoin - Rediger konfigurationsindstillinger af bitcoin + + Send coins to a bitcoin address + Send coins til en bitcoinadresse - Open &Bitcoin - Åbn &Bitcoin - - - - Show the Bitcoin window - Vis Bitcoinvinduet + &About %1 + &Om %1 - - &Export... - &Eksporter... + + Modify configuration options for bitcoin + Rediger konfigurationsindstillinger af bitcoin - - Export the data in the current tab to a file - + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> - + &Encrypt Wallet &Kryptér tegnebog - - Encrypt or decrypt wallet - Kryptér eller dekryptér tegnebog + + &Change Passphrase + &Skift adgangskode - + &Backup Wallet - + &Backup tegnebog - - Backup wallet to another location - + + &Settings + &Indstillinger - - &Change Passphrase - &Skift adgangskode + + &Help + &Hjælp - - Change the passphrase used for wallet encryption - Skift kodeord anvendt til tegnebogskryptering + + Tabs toolbar + Faneværktøjslinje - - &File - &Fil + + Actions toolbar + Handlingsværktøjslinje - - &Settings - &Indstillinger + + About &Qt + Om &Qt - - &Help - &Hjælp + + Show/Hide &Bitcoin + - - Tabs toolbar - Faneværktøjslinje + + Show or hide the Bitcoin window + Vis Bitcoinvinduet - - Actions toolbar - Handlingsværktøjslinje + + Export the data in the current tab to a file + Eksportér den aktuelle visning til en fil - - [testnet] - [testnet] + + Backup wallet to another location + - - bitcoin-qt - bitcoin-qt + + Bitcoin client + - - %n active connection(s) to Bitcoin network - %n aktiv(e) forbindelse(r) til Bitcoinnetværket%n aktiv(e) forbindelse(r) til Bitcoinnetværket + + ~%n block(s) remaining + + + + - - Downloaded %1 of %2 blocks of transaction history. - Downloadet %1 af %2 blokke af transaktionshistorie. + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Downloadet %1 af %2 blokke af transaktionshistorie (%3% done). - + Downloaded %1 blocks of transaction history. Downloadet %1 blokke af transaktionshistorie. - + %n second(s) ago - %n sekund(er) siden%n sekund(er) siden + + %n sekund(er) siden + %n sekund(er) siden + - + %n minute(s) ago - %n minut(ter) siden%n minut(ter) siden + + %n minut(ter) siden + %n minut(ter) siden + - + %n hour(s) ago - %n time(r) siden%n time(r) siden + + %n time(r) siden + %n time(r) siden + - + %n day(s) ago - %n dag(e) siden%n dag(e) siden + + %n dag(e) siden + %n dag(e) 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 størrelsesbegrænsningen. Du kan stadig sende den for et gebyr på %1 som går til de noder der behandler din transaktion, og som hjælper med at støtte netværket. Ønsker du at betale gebyret? + + Backup Wallet + Backup tegnebog - - Sending... - Sender... + + Wallet Data (*.dat) + - - Sent transaction - Afsendt transaktion + + Backup Failed + - - Incoming transaction - Indgående transaktion + + There was an error trying to save the wallet data to the new location. + - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Dato: %1 -Beløb: %2 -Type: %3 -Adresse: %4 - + + [testnet] + [testnet] - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Tegnebog er <b>krypteret</b> og i øjeblikket <b>ulåst</b> + + Last received block was generated %1. + Sidst modtagne blok blev genereret %1. - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> + + Show information about Qt + Vis oplysninger om Qt - - Backup Wallet - + + 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 størrelsesbegrænsningen. Du kan stadig sende den for et gebyr på %1 som går til de noder der behandler din transaktion, og som hjælper med at støtte netværket. Ønsker du at betale gebyret? - - Wallet Data (*.dat) - + + bitcoin-qt + bitcoin-qt - - - Backup Failed - + + + %n active connection(s) to Bitcoin network + + %n aktiv(e) forbindelse(r) til Bitcoinnetværket + %n aktiv(e) forbindelse(r) til Bitcoinnetværket + - - There was an error trying to save the wallet data to the new location. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &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 når du sender coins - - Display addresses in transaction list - Vis adresser i transaktionensliste + + &Display addresses in transaction list + &Vis adresser i transaktionensliste + + + + Whether to show Bitcoin addresses in the transaction list + @@ -671,11 +710,6 @@ Adresse: %4 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 bitcoin address. - Den indtastede adresse "%1" er ikke en gyldig bitcoinadresse. - Could not unlock wallet. @@ -686,156 +720,141 @@ Adresse: %4 New key generation failed. Ny nøglegenerering mislykkedes. + + + The entered address "%1" is not a valid bitcoin address. + Den indtastede adresse "%1" er ikke en gyldig bitcoinadresse. + MainOptionsPage - + + IP address of the proxy (e.g. 127.0.0.1) + IP-adressen på proxyen (f.eks. 127.0.0.1) + + + &Start Bitcoin on window system startup &Start Bitcoin når systemet startes - + Automatically start Bitcoin after the computer is turned on Start Bitcoin automatisk efter at computeren er tændt - + &Minimize to the tray instead of the taskbar &Minimer til systembakken i stedet for proceslinjen - + Show only a tray icon after minimizing the window Vis kun et systembakkeikon efter minimering af vinduet - - Map port using &UPnP - Konfigurer port vha. &UPnP - - - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Åbn Bitcoinklient-porten på routeren automatisk. Dette virker kun når din router understøtter UPnP og UPnP er aktiveret. - + M&inimize on close M&inimer ved lukning - + 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. - + + Map port using &UPnP + Konfigurer port vha. &UPnP + + + &Connect through SOCKS4 proxy: &Forbind gennem SOCKS4 proxy: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Opret forbindelse til Bitconnetværket via en SOCKS4 proxy (f.eks. ved tilslutning gennem Tor) - + Proxy &IP: Proxy-&IP: - - IP address of the proxy (e.g. 127.0.0.1) - IP-adressen på proxyen (f.eks. 127.0.0.1) - - - + &Port: &Port: - + Port of the proxy (e.g. 1234) Porten på proxyen (f.eks. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1 kB. Gebyr på 0.01 anbefales. - + Pay transaction &fee Betal transaktions&gebyr - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Detach databases at shutdown + + + + + 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. + MessagePage - - - 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adresse som betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose adress from address book Vælg adresse fra adressebog - - - 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 - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - Kopier den valgte adresse til systemets udklipsholder + Copy the current signature to the system clipboard + @@ -843,45 +862,70 @@ Adresse: %4 &Kopier til Udklipsholder - - - - Error signing - + + Message + 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. + + + + + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Indtast en Bitcoinadresse (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Alt+A + Alt+A + + + + Alt+P + Alt+P %1 is not a valid address. - + Den indtastede adresse "%1" er ikke en gyldig bitcoinadresse. + + + + + + Error signing + Private key for %1 is not available. - + Sign failed - + OptionsDialog - + Main Generelt - - Display - Visning - - - + Options Indstillinger + + + Display + Visning + OverviewPage @@ -895,11 +939,6 @@ Adresse: %4 Balance: Saldo: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -916,25 +955,12 @@ Adresse: %4 Ubekræftede: - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + tegnebog - + <b>Recent transactions</b> <b>Nyeste transaktioner</b> @@ -956,6 +982,11 @@ p, li { white-space: pre-wrap; } QRCodeDialog + + + Message: + Besked: + Dialog @@ -964,77 +995,60 @@ p, li { white-space: pre-wrap; } QR Code - + - + Request Payment - + - + Amount: - + Beløb: - + BTC - + - + Label: - + Etiket: - - Message: - Besked: + + &Save As... + - - &Save As... - + + Error encoding URI into QR Code. + - + + Resulting URI too long, try to reduce the text for label / message. + + + + Save Image... - + - + PNG Images (*.png) - + SendCoinsDialog - - - - - - - - - - Send Coins - Send Coins - - - - Send to multiple recipients at once - Send til flere modtagere på én gang - - - - &Add recipient... - &Tilføj modtager... - Remove all transaction fields - + @@ -1051,70 +1065,92 @@ p, li { white-space: pre-wrap; } 123.456 BTC 123.456 BTC - - - Confirm the send action - Bekræft afsendelsen - &Send &Afsend - + <b>%1</b> to %2 (%3) <b>%1</b> til %2 (%3) - + Confirm send coins Bekræft afsendelse af coins - + Are you sure you want to send %1? Er du sikker på at du vil sende %1? - + and og - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance - Beløbet overstiger din saldo + + Error: Transaction creation failed. + Fejl: Oprettelse af transaktionen mislykkedes. - - Total exceeds your balance when the %1 transaction fee is included - Totalen overstiger din saldo når %1 transaktionsgebyr er inkluderet + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Fejl: Transaktionen blev afvist. Dette kan ske hvis nogle af dine coins i din tegnebog allerede var brugt, som hvis du brugte en kopi af wallet.dat og dine coins er blevet brugt i kopien, men ikke er markeret som brugt her. - - Duplicate address found, can only send to each address once in one send operation - Duplikeret adresse fundet. Du kan kun sende til hver adresse en gang pr. afsendelse. + + Confirm the send action + Bekræft afsendelsen - - Error: Transaction creation failed - Fejl: Oprettelse af transaktionen mislykkedes + + &Add recipient... + &Tilføj modtager... + + + + + + + - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Fejl: Transaktionen blev afvist. Dette kan ske hvis nogle af dine coins i din tegnebog allerede var brugt, som hvis du brugte en kopi af wallet.dat og dine coins er blevet brugt i kopien, men ikke er markeret som brugt her. + Send Coins + Send Coins + + + + Send to multiple recipients at once + Send til flere modtagere på én gang + + + + 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. @@ -1184,140 +1220,140 @@ p, li { white-space: pre-wrap; } TransactionDesc - - Open for %1 blocks - Åben for %1 blokke + + , has not been successfully broadcast yet + , er ikke blevet transmitteret endnu + + + + unknown + ukendt + + + + <b>Date:</b> + <b>Dato:</b> - Open until %1 - Åben indtil %1 + Open for %1 blocks + Åben for %1 blokke - + %1/offline? %1/offline? - + %1/unconfirmed %1/ubekræftet - - %1 confirmations - %1 bekræftelser - - - + <b>Status:</b> <b>Status:</b> - - , has not been successfully broadcast yet - , er ikke blevet transmitteret endnu - - - + , broadcast through %1 node , transmitteret via %1 node - + , broadcast through %1 nodes , transmitteret via %1 noder - - <b>Date:</b> - <b>Dato:</b> - - - + <b>Source:</b> Generated<br> <b>Kilde:</b> Genereret<br> - - + + <b>From:</b> - <b>Fra:</b> + <b>Fra:</b> - - unknown - ukendt + + Open until %1 + Åben indtil %1 + + + + %1 confirmations + %1 bekræftelser - - - + + + <b>To:</b> <b>Til:</b> - + (yours, label: (din, etiket: - + (yours) (din) - - - - + + + + <b>Credit:</b> <b>Kredit:</b> - + (%1 matures in %2 more blocks) (%1 modnes i %2 blokke mere) - + (not accepted) (ikke accepteret) - - - + + + <b>Debit:</b> <b>Debet:</b> - + <b>Transaction fee:</b> <b>Transaktionsgebyr:</b> - + <b>Net amount:</b> - <b>Nettobeløb:</b> + <b>Nettobeløb:</b> - + Message: Besked: - + Comment: Kommentar: - + Transaction ID: - + - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Genererede coins skal vente 120 blokke, før de kan blive brugt. Da du genererede denne blok blev det transmitteret til netværket, for at blive føjet til blokkæden. Hvis det mislykkes at komme ind i kæden, vil den skifte til "ikke godkendt", og ikke blive kunne bruges. Dette kan lejlighedsvis ske, hvis en anden node genererer en blok inden for få sekunder af din. @@ -1338,123 +1374,174 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + + Amount + Beløb + + + + Open for %n block(s) + + Åben for %n blok(ke) + Åben for %n blok(ke) + + + + + Open until %1 + Åben indtil %1 + + + + Payment to yourself + Betaling til dig selv + + + + Mined + Minerede + + + Date Dato - + Type Type - + Address Adresse - - Amount - Beløb - - - - Open for %n block(s) - Åben for %n blok(ke)Åben for %n blok(ke) - - - - Open until %1 - Åben indtil %1 - - - + Offline (%1 confirmations) Offline (%1 bekræftelser) - + Unconfirmed (%1 of %2 confirmations) Ubekræftet (%1 af %2 bekræftelser) - + Confirmed (%1 confirmations) Bekræftet (%1 bekræftelser) - - - Mined balance will be available in %n more blocks - Minerede balance vil være tilgængelig om %n blok(ke)Minerede balance vil være tilgængelig om %n blok(ke) - - + This block was not received by any other nodes and will probably not be accepted! Denne blok blev ikke modtaget af nogen andre noder, og vil formentlig ikke blive accepteret! - + Generated but not accepted Genereret, men ikke accepteret - + Received with Modtaget med - - Received from - - - - + Sent to Sendt til - - Payment to yourself - Betaling til dig selv - - - - Mined - Minerede - - - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. Transactionsstatus. Hold musen over dette felt for at vise antallet af bekræftelser. - + Date and time that the transaction was received. Dato og tid for at transaktionen blev modtaget. - + Type of transaction. Type af transaktion. - + Destination address of transaction. Destinationsadresse for transaktion. - + Amount removed from or added to balance. Beløb fjernet eller tilføjet balance. + + + Mined balance will be available in %n more blocks + + Minerede balance vil være tilgængelig om %n blok(ke) + Minerede balance vil være tilgængelig om %n blok(ke) + + + + + Received from + Modtaget fra + TransactionView + + + Confirmed + Bekræftet + + + + Date + Dato + + + + Label + Etiket + + + + Amount + Beløb + + + + Could not write to file %1. + Kunne ikke skrive til filen %1. + + + + Range: + Interval: + + + + to + til + + + + Range... + Interval... + + + + Show details... + Vis detaljer... + @@ -1486,11 +1573,6 @@ p, li { white-space: pre-wrap; } This year Dette år - - - Range... - Interval... - Received with @@ -1516,11 +1598,6 @@ p, li { white-space: pre-wrap; } Other Andet - - - Enter address or label to search - Indtast adresse eller etiket for at søge - Min amount @@ -1539,7 +1616,7 @@ p, li { white-space: pre-wrap; } Copy amount - + @@ -1547,80 +1624,45 @@ p, li { white-space: pre-wrap; } Rediger etiket - - Show details... - Vis detaljer... - - - + Export Transaction Data Eksportér Transaktionsdata - - Comma separated file (*.csv) - Kommasepareret fil (*.csv) - - - - Confirmed - Bekræftet + + Enter address or label to search + Indtast adresse eller etiket for at søge - - Date - Dato + + Comma separated file (*.csv) + Kommasepareret fil (*.csv) - + Type Type - - Label - Etiket - - - + Address Adresse - - Amount - Beløb - - - + ID ID - + Error exporting Fejl under eksport - - - Could not write to file %1. - Kunne ikke skrive til filen %1. - - - - Range: - Interval: - - - - to - til - WalletModel - + Sending... Sender... @@ -1628,377 +1670,514 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoinversion - + Usage: Anvendelse: - - Send command to -server or bitcoind - Send kommando til -server eller bitcoind - + + Done loading + Indlæsning gennemført - - List commands - Liste over kommandoer - + + Error: CreateThread(StartNode) failed + Fejl: CreateThread(StartNode) mislykkedes - - Get help for a command - Få hjælp til en kommando - + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Advarsel: Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet. Hvis der er fejl i disse vil Bitcoin ikke fungere korrekt. - Options: - Indstillinger: - + Error: Wallet locked, unable to create transaction + - Specify configuration file (default: bitcoin.conf) - Angiv konfigurationsfil (standard: bitcoin.conf) - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Denne transaktion er over størrelsesbegrænsningen. Du kan stadig sende den for et gebyr på %1 som går til de noder der behandler din transaktion, og som hjælper med at støtte netværket. Ønsker du at betale gebyret? - + + Invalid amount + Ugyldigt beløb + + + + 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=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + + + + + Error + + + + + An error occurred while setting up the RPC port %i for listening: %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. + + + + + Send command to -server or bitcoind + Send kommando til -server eller bitcoind + + + + + List commands + Liste over kommandoer + + + + + Get help for a command + Få hjælp til en kommando + + + + + Options: + Indstillinger: + + + + + Specify configuration file (default: bitcoin.conf) + Angiv konfigurationsfil (standard: bitcoin.conf) + + + + Specify pid file (default: bitcoind.pid) Angiv pid-fil (default: bitcoind.pid) - + Generate coins Generér coins - + Don't generate coins Generér ikke coins - - Start minimized - Start minimeret - + + Show splash screen on startup (default: 1) + - + Specify data directory Angiv databibliotek - + + Set database cache size in megabytes (default: 25) + + + + + Set database disk log size in megabytes (default: 100) + + + + Specify connection timeout (in milliseconds) Angiv tilslutningstimeout (i millisekunder) - - Connect through socks4 proxy - Tilslut via SOCKS4 proxy - + + Maintain at most <n> connections to peers (default: 125) + - - Allow DNS lookups for addnode and connect - Tillad DNS-opslag for addnode og connect - + + Find peers using internet relay chat (default: 0) + - - Listen for connections on <port> (default: 8333 or testnet: 18333) - + + Set language, for example "de_DE" (default: system locale) + - - Maintain at most <n> connections to peers (default: 125) - + + Find peers using DNS lookup (default: 1) + - - Add a node to connect to - Tilføj en node til at forbinde til - + + Threshold for disconnecting misbehaving peers (default: 100) + - - Connect only to the specified node - Tilslut kun til den angivne node - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Don't accept connections from outside - Acceptér ikke forbindelser udefra - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + - - Don't bootstrap list of peers using DNS - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + - - Threshold for disconnecting misbehaving peers (default: 100) - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + + Output extra debugging information + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + + Prepend debug output with timestamp + - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + + Send trace/debug info to console instead of debug.log file + - - Don't attempt to use UPnP to map the listening port - Forsøg ikke at bruge UPnP til at konfigurere den lyttende port + + Send trace/debug info to debugger + - - Attempt to use UPnP to map the listening port - Forsøg at bruge UPnP til at kofnigurere den lyttende port + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Fee per kB to add to transactions you send - + + Upgrade wallet to latest format + - - Accept command line and JSON-RPC commands - Accepter kommandolinje- og JSON-RPC-kommandoer - + + How many blocks to check at startup (default: 2500, 0 = all) + - - Run in the background as a daemon and accept commands - Kør i baggrunden som en service, og acceptér kommandoer - + + How thorough the block verification is (0-6, default: 1) + - - Use the test network - Brug test-netværket - + + Usage + - - Output extra debugging information - + + Wallet needed to be rewritten: restart Bitcoin to complete + - - Prepend debug output with timestamp - + + Cannot downgrade wallet + - - Send trace/debug info to console instead of debug.log file - + + Cannot initialize keypool + - - Send trace/debug info to debugger - + + Cannot write default address + - - Username for JSON-RPC connections - Brugernavn til JSON-RPC-forbindelser + + Invalid amount for -paytxfee=<amount> + Ugyldigt beløb for -paytxfee=<amount> + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Kunne ikke binde sig til port %d på denne computer. Bitcoin kører sikkert allerede. + + + + 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 acceptér kommandoer + + + + + Use the test network + Brug test-netværket + + + + Password for JSON-RPC connections Password til JSON-RPC-forbindelser - + Listen for JSON-RPC connections on <port> (default: 8332) Lyt til JSON-RPC-forbindelser på <port> (standard: 8332) - + 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 node, der kører på <ip> (standard: 127.0.0.1) - + Set key pool size to <n> (default: 100) Sæt nøglepoolstørrelse til <n> (standard: 100) - - Rescan the block chain for missing wallet transactions - Gennemsøg blokkæden for manglende tegnebogstransaktioner - - - - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL-indstillinger: (se Bitcoin Wiki for SSL opsætningsinstruktioner) - - - + 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) Server private nøgle (standard: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Acceptabele ciphers (standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - This help message - Denne hjælpebesked + + Start minimized + Start minimeret - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kan låse data-biblioteket %s. Bitcoin kører sikkert allerede. + Connect through socks4 proxy + Tilslut via SOCKS4 proxy + - + + Connect only to the specified node + Tilslut kun til den angivne node + + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL-indstillinger: (se Bitcoin Wiki for SSL opsætningsinstruktioner) + + + Loading addresses... Indlæser adresser... - - Error loading addr.dat - + + Loading block index... + Indlæser blok-indeks... - - Error loading blkindex.dat - + + Loading wallet... + Indlæser tegnebog... - - Error loading wallet.dat: Wallet corrupted - + + 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. - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - + + Invalid -proxy address + Ugyldig -proxy adresse - - Wallet needed to be rewritten: restart Bitcoin to complete - + + Allow DNS lookups for addnode and connect + Tillad DNS-opslag for addnode og connect + - - Error loading wallet.dat - + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Lyt til forbindelser på <port> (standard: 8333 or testnet: 18333) - - Loading block index... - Indlæser blok-indeks... + + Add a node to connect to and attempt to keep the connection open + Tilføj en node til at forbinde til and attempt to keep the connection open - Loading wallet... - Indlæser tegnebog... + Accept connections from outside (default: 1) + Acceptér forbindelser udefra - - Rescanning... - Genindlæser... + + Use Universal Plug and Play to map the listening port (default: 1) + Forsøg at bruge UPnP til at kofnigurere den lyttende port (standard: 1) - - Done loading - Indlæsning gennemført + + Use Universal Plug and Play to map the listening port (default: 0) + Forsøg at bruge UPnP til at kofnigurere den lyttende port (standard: 0) - - Invalid -proxy address - Ugyldig -proxy adresse + + Fee per KB to add to transactions you send + Gebyr pr. kB, som skal tilføjes til transaktioner du sender - - Invalid amount for -paytxfee=<amount> - Ugyldigt beløb for -paytxfee=<amount> + + Username for JSON-RPC connections + Brugernavn til JSON-RPC-forbindelser + - - 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. + + Rescan the block chain for missing wallet transactions + Gennemsøg blokkæden for manglende tegnebogstransaktioner + - - Error: CreateThread(StartNode) failed - Fejl: CreateThread(StartNode) mislykkedes + + Server certificate file (default: server.cert) + Servercertifikat-fil (standard: server.cert) + - - Warning: Disk space is low - Advarsel: Diskplads er lav + + This help message + Denne hjælpebesked + - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Kunne ikke binde sig til port %d på denne computer. Bitcoin kører sikkert allerede. + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kan låse data-biblioteket %s. Bitcoin kører sikkert allerede. - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Advarsel: Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet. Hvis der er fejl i disse vil Bitcoin ikke fungere korrekt. + + Error loading addr.dat + Fejl ved indlæsning af addr.dat - - beta - beta + + 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 Bitcoin + Fejl ved indlæsning af wallet.dat: Tegnebog kræver en nyere version af Bitcoin + + + + Error loading wallet.dat + Fejl ved indlæsning af wallet.dat + + + + Warning: Disk space is low + Advarsel: Diskplads er lav + + + + Rescanning... + Genindlæser... + + + + Bitcoin + Bitcoin + + + + Insufficient funds + Du har ikke penge nok + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Fejl: Transaktionen blev afvist. Dette kan ske hvis nogle af dine coins i din tegnebog allerede var brugt, som hvis du brugte en kopi af wallet.dat og dine coins er blevet brugt i kopien, men ikke er markeret som brugt her. + + + + Error: Transaction creation failed + Fejl: Oprettelse af transaktionen mislykkedes + + + + Sending... + Sender... - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index 42cb17d64c..4a476a35c0 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> Version - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -72,11 +74,6 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Show &QR Code &QR-Code anzeigen - - - Sign a message to prove you own this address - Eine Nachricht signieren, um den Besitz einer Adresse zu beweisen - &Sign Message @@ -87,48 +84,53 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Delete the currently selected address from the list. Only sending addresses can be deleted. Die ausgewählte Adresse aus der Liste entfernen. Sie können nur Zahlungsadressen entfernen. + + + Error exporting + Fehler beim Exportieren + + + + Sign a message to prove you own this address + Eine Nachricht signieren, um den Besitz einer Adresse zu beweisen + &Delete &Löschen - + Copy address Adresse kopieren - + Copy label Bezeichnung kopieren - + Edit Bearbeiten - + Delete Löschen - + Export Address Book Data Adressbuch exportieren - + Comma separated file (*.csv) Kommagetrennte Datei (*.csv) - - Error exporting - Fehler beim Exportieren - - - + Could not write to file %1. Konnte nicht in Datei %1 schreiben. @@ -136,59 +138,58 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open AddressTableModel - + + (no label) + (keine Bezeichnung) + + + Label Bezeichnung - + Address Adresse - - - (no label) - (keine Bezeichnung) - AskPassphraseDialog + + + New passphrase + Neue Passphrase + Dialog Dialog - - - TextLabel - Textbezeichnung - - - + Enter passphrase Passphrase eingeben - - New passphrase - Neue Passphrase - - - + Repeat new passphrase Neue Passphrase wiederholen - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Geben Sie die neue Passphrase für die Brieftasche ein.<br>Bitte benutzen Sie eine Passphrase bestehend aus <b>10 oder mehr zufälligen Zeichen</b> oder <b>8 oder mehr Wörtern</b>. - Encrypt wallet Brieftasche verschlüsseln + + + Wallet passphrase was successfully changed. + Die Passphrase der Brieftasche wurde erfolgreich geändert. + + + + TextLabel + Textbezeichnung + This operation needs your wallet passphrase to unlock the wallet. @@ -219,34 +220,6 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Enter the old and new passphrase to the wallet. Geben Sie die alte und die neue Passphrase der Brieftasche ein. - - - Confirm wallet encryption - Verschlüsselung der Brieftasche bestätigen - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - WARNUNG: Wenn Sie Ihre Brieftasche verschlüsseln und Ihre Passphrase verlieren, werden Sie <b>ALLE IHRE BITCOINS VERLIEREN</b>!<br><br>Sind Sie sich sicher, dass Sie Ihre Brieftasche verschlüsseln möchten? - - - - - Wallet encrypted - Brieftasche verschlüsselt - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung Ihrer Brieftasche nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadsoftware schützt, die Ihren Computer befällt. - - - - - Warning: The Caps Lock key is on. - Warnung: Die Feststelltaste ist aktiviert. - @@ -260,17 +233,17 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Die Verschlüsselung der Brieftasche ist aufgrund eines internen Fehlers fehlgeschlagen. Ihre Brieftasche wurde nicht verschlüsselt. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung Ihrer Brieftasche nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadsoftware schützt, die Ihren Computer befällt. + The supplied passphrases do not match. Die eingegebenen Passphrasen stimmen nicht überein. - - - Wallet unlock failed - Entsperrung der Brieftasche fehlgeschlagen - @@ -284,286 +257,255 @@ Are you sure you wish to encrypt your wallet? Entschlüsselung der Brieftasche fehlgeschlagen - - Wallet passphrase was succesfully changed. - Die Passphrase der Brieftasche wurde erfolgreich geändert. + + + Warning: The Caps Lock key is on. + Warnung: Die Feststelltaste ist aktiviert. - - - BitcoinGUI - - Bitcoin Wallet - Bitcoin-Brieftasche + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + WARNUNG: Wenn Sie Ihre Brieftasche verschlüsseln und Ihre Passphrase verlieren, werden Sie <b>ALLE IHRE BITCOINS VERLIEREN</b>!<br><br>Sind Sie sich sicher, dass Sie Ihre Brieftasche verschlüsseln möchten? - - - Synchronizing with network... - Synchronisiere mit Netzwerk... + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Geben Sie die neue Passphrase für die Brieftasche ein.<br>Bitte benutzen Sie eine Passphrase bestehend aus <b>10 oder mehr zufälligen Zeichen</b> oder <b>8 oder mehr Wörtern</b>. + + + + Confirm wallet encryption + Verschlüsselung der Brieftasche bestätigen - - Block chain synchronization in progress - Synchronisation der Blockkette wird durchgeführt + + + Wallet encrypted + Brieftasche verschlüsselt - - &Overview - &Übersicht + + Wallet unlock failed + Entsperrung der Brieftasche fehlgeschlagen + + + BitcoinGUI - - Show general overview of wallet - Allgemeine Übersicht der Brieftasche anzeigen + + &Overview + &Übersicht - + &Transactions &Transaktionen - - Browse transaction history - Transaktionsverlauf durchsehen + + Change the passphrase used for wallet encryption + Ändert die Passphrase, die für die Verschlüsselung der Brieftasche benutzt wird - - &Address Book - &Adressbuch + + Send coins to a bitcoin address + Bitcoins an eine Bitcoin-Adresse überweisen - - Edit the list of stored addresses and labels - Liste der gespeicherten Zahlungsadressen und Bezeichnungen bearbeiten + + E&xit + &Beenden - - &Receive coins - Bitcoins &empfangen + + &Change Passphrase + Passphrase &ändern... - - Show the list of addresses for receiving payments - Liste der Empfangsadressen anzeigen + + Sending... + Transaktionsgebühr bestätigen - - &Send coins - Bitcoins &überweisen + + About &Qt + Über &Qt - - Send coins to a bitcoin address - Bitcoins an eine Bitcoin-Adresse überweisen + + Bitcoin Wallet + Bitcoin-Brieftasche - - Sign &message - &Nachricht signieren... + + Synchronizing with network... + Synchronisiere mit Netzwerk... - - Prove you control an address - Beweisen Sie die Kontrolle einer Adresse + + Show general overview of wallet + Allgemeine Übersicht der Brieftasche anzeigen - - E&xit - &Beenden + + Browse transaction history + Transaktionsverlauf durchsehen - - Quit application - Anwendung beenden + + Show the list of addresses for receiving payments + Liste der Empfangsadressen anzeigen - - &About %1 - &Über %1 + + &Address Book + &Adressbuch - - Show information about Bitcoin - Informationen über Bitcoin anzeigen + + Edit the list of stored addresses and labels + Liste der gespeicherten Zahlungsadressen und Bezeichnungen bearbeiten - - About &Qt - Über &Qt + + &Receive coins + Bitcoins &empfangen - - Show information about Qt - Informationen über Qt anzeigen + + Quit application + Anwendung beenden - - &Options... - &Erweiterte Einstellungen... + + Show information about Qt + Informationen über Qt anzeigen - - Modify configuration options for bitcoin - Erweiterte Bitcoin-Einstellungen ändern + + Show information about Bitcoin + Informationen über Bitcoin anzeigen - - Open &Bitcoin - &Bitcoin öffnen + + &Options... + &Erweiterte Einstellungen... - - Show the Bitcoin window - Bitcoin-Fenster anzeigen + + Tabs toolbar + Registerkarten-Leiste - + &Export... - &Exportieren nach... + &Exportieren... - + Export the data in the current tab to a file Daten der aktuellen Ansicht in eine Datei exportieren - - &Encrypt Wallet - Brieftasche &verschlüsseln... - - - - Encrypt or decrypt wallet - Brieftasche ent- oder verschlüsseln - - - - &Backup Wallet - Brieftasche &sichern... - - - + Backup wallet to another location Eine Sicherungskopie der Brieftasche erstellen und abspeichern - - &Change Passphrase - Passphrase &ändern... - - - - Change the passphrase used for wallet encryption - Ändert die Passphrase, die für die Verschlüsselung der Brieftasche benutzt wird - - - + &File &Datei - + &Settings &Einstellungen - - &Help - &Hilfe - - - - Tabs toolbar - Registerkarten-Leiste - - - - Actions toolbar - Aktionen-Werkzeugleiste - - - + [testnet] - [testnet] + [Testnetz] - - bitcoin-qt - bitcoin-qt + + Downloaded %1 blocks of transaction history. + %1 Blöcke des Transaktionsverlaufs heruntergeladen. - - %n active connection(s) to Bitcoin network - %n aktive Verbindung zum Bitcoin-Netzwerk%n aktive Verbindungen zum Bitcoin-Netzwerk - - - - Downloaded %1 of %2 blocks of transaction history. - %1 von %2 Blöcken des Transaktionsverlaufs heruntergeladen. - - - - Downloaded %1 blocks of transaction history. - %1 Blöcke des Transaktionsverlaufs heruntergeladen. - - - - %n second(s) ago - vor %n Sekundevor %n Sekunden + + %n second(s) ago + + vor %n Sekunde + vor %n Sekunden + - + %n minute(s) ago - vor %n Minutevor %n Minuten + + vor %n Minute + vor %n Minuten + - + %n hour(s) ago - vor %n Stundevor %n Stunden + + vor %n Stunde + vor %n Stunden + - + %n day(s) ago - vor %n Tagvor %n Tagen + + vor %n Tag + vor %n Tagen + - + Up to date Auf aktuellem Stand - + Catching up... Hole auf... - + Last received block was generated %1. Der letzte empfangene Block wurde %1 generiert. - + + &About %1 + &Über %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? Die Transaktion übersteigt das Größenlimit. Sie können sie trotzdem senden, wenn Sie eine zusätzliche Transaktionsgebühr in Höhe von %1 zahlen. Diese wird an die Knoten verteilt, die Ihre Transaktion bearbeiten und unterstützt damit das Bitcoin-Netzwerk.<br><br>Möchten Sie die Gebühr bezahlen? - - Sending... - Transaktionsgebühr bestätigen + + Modify configuration options for bitcoin + Erweiterte Bitcoin-Einstellungen ändern - + Sent transaction Gesendete Transaktion - + Incoming transaction Eingehende Transaktion - + Date: %1 Amount: %2 Type: %3 @@ -575,52 +517,143 @@ Typ: %3 Adresse: %4 - + + &Encrypt Wallet + Brieftasche &verschlüsseln... + + + + &Send coins + Bitcoins &überweisen + + + + Sign &message + &Nachricht signieren... + + + + Prove you control an address + Beweisen Sie die Kontrolle einer Adresse + + + + Show/Hide &Bitcoin + Zeige/Verstecke &Bitcoin + + + + Encrypt or decrypt wallet + Brieftasche ent- oder verschlüsseln + + + + &Backup Wallet + Brieftasche &sichern... + + + + bitcoin-qt + bitcoin-qt + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Brieftasche ist <b>verschlüsselt</b> und aktuell <b>entsperrt</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Brieftasche ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> - + Backup Wallet Brieftasche sichern - + Wallet Data (*.dat) - Brieftaschen-Datei (*.dat) + Brieftaschendaten (*.dat) - + Backup Failed Sicherung der Brieftasche fehlgeschlagen - + There was an error trying to save the wallet data to the new location. - Fehler beim abspeichern der Sicherungskopie der Brieftasche. + Fehler beim Abspeichern der Sicherungskopie der Brieftasche. + + + + Show or hide the Bitcoin window + Zeige oder verstecke das Bitcoin Fenster + + + + &Help + &Hilfe + + + + Actions toolbar + Aktionen-Werkzeugleiste + + + + Bitcoin client + Bitcoin Client + + + + %n active connection(s) to Bitcoin network + + %n aktive Verbindung zum Bitcoin-Netzwerk + %n aktive Verbindungen zum Bitcoin-Netzwerk + + + + + ~%n block(s) remaining + + ~%n Block verbleibend + ~%n Blöcke verbleibend + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + %1 von %2 Blöcken des Transaktionsverlaufs heruntergeladen (%3% fertig). + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Ein schwerer Fehler ist aufgetreten. Bitcoin kann nicht stabil weiter ausgeführt werden und wird beendet. DisplayOptionsPage - + &Unit to show amounts in: &Einheit der Beträge: - + Choose the default subdivision unit to show in the interface, and when sending coins Wählen Sie die Standard-Untereinheit, die in der Benutzeroberfläche und beim Überweisen von Bitcoins angezeigt werden soll - - Display addresses in transaction list - Adressen in der Transaktionsliste anzeigen + + &Display addresses in transaction list + &Adressen in der Transaktionsliste anzeigen + + + + Whether to show Bitcoin addresses in the transaction list + Legt fest, ob Bitcoin-Adressen in der Transaktionsliste angezeigt werden @@ -675,11 +708,6 @@ Adresse: %4 The entered address "%1" is already in the address book. Die eingegebene Adresse "%1" befindet sich bereits im Adressbuch. - - - The entered address "%1" is not a valid bitcoin address. - Die eingegebene Adresse "%1" ist keine gültige Bitcoin-Adresse. - Could not unlock wallet. @@ -690,93 +718,103 @@ Adresse: %4 New key generation failed. Generierung eines neuen Schlüssels fehlgeschlagen. + + + The entered address "%1" is not a valid bitcoin address. + Die eingegebene Adresse "%1" ist keine gültige Bitcoin-Adresse. + MainOptionsPage - + &Start Bitcoin on window system startup Bitcoin beim &Systemstart ausführen - + Automatically start Bitcoin after the computer is turned on Bitcoin automatisch ausführen, wenn der Computer eingeschaltet wird - + &Minimize to the tray instead of the taskbar In den Infobereich anstatt in die Taskleiste &minimieren - + Show only a tray icon after minimizing the window Nur ein Symbol im Infobereich anzeigen, nachdem das Fenster minimiert wurde - + Map port using &UPnP Portweiterleitung via &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Automatisch den Bitcoin Client-Port auf dem Router öffnen. Dies funktioniert nur, wenn Ihr Router UPnP unterstützt und dies aktiviert ist. - + M&inimize on close Beim Schließen &minimieren - + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimiert die Anwendung anstatt sie zu Beenden, wenn das Fenster geschlossen wird. Wenn dies aktiviert ist, müssen Sie das Programm über "Beenden" im Menü schließen. - + &Connect through SOCKS4 proxy: Über einen SOCKS4-Proxy &verbinden: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Über einen SOCKS4-Proxy zum Bitcoin-Netzwerk verbinden (z.B. bei einer Verbindung über Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Über einen SOCKS4-Proxy mit dem Bitcoin-Netzwerk verbinden (z.B. beim Verbinden über Tor) - + Proxy &IP: Proxy-&IP: - + IP address of the proxy (e.g. 127.0.0.1) IP-Adresse des Proxy-Servers (z.B. 127.0.0.1) - + &Port: &Port: - + Port of the proxy (e.g. 1234) Port des Proxy-Servers (z.B. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Optionale Transaktionsgebühr pro kB, die sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 wird empfohlen. - - Pay transaction &fee - Transaktions&gebühr bezahlen + + Detach databases at shutdown + Datenbanken beim Beenden trennen - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Optionale Transaktionsgebühr pro kB, die sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 wird empfohlen. + + 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. + Block- und Adressdatenbank beim Beenden trennen. Diese können so in ein anderes Datenverzeichnis verschoben werden, die zum Beenden benötigte Zeit wird aber verlängert. Die Datenbank der Brieftasche wird immer getrennt. + + + + Pay transaction &fee + Transaktions&gebühr bezahlen @@ -791,9 +829,29 @@ Adresse: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Sie können Nachrichten mit Ihren Adressen signieren, um den Besitz dieser Adressen zu beweisen. Bitte nutzen Sie diese Funktion mit Vorsicht und nehmen Sie sich vor Phishing-Angriffen in Acht, um nicht ungewollt etwas zu signieren, dass für Sie negative Auswirkungen haben könnte. + + + Private key for %1 is not available. + Privater Schlüssel für %1 ist nicht verfügbar. + + + + Sign failed + Signierung der Nachricht fehlgeschlagen + + + + Click "Sign Message" to get signature + Auf "Nachricht signieren" klicken, um die Signatur zu erhalten. Diese wird dann hier angezeigt. + + + + &Copy to Clipboard + Signatur in die Zwischenablage &kopieren + - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Die Adresse mit der die Nachricht signiert wird (z.B. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -821,11 +879,6 @@ Adresse: %4 Enter the message you want to sign here Zu signierende Nachricht hier eingeben - - - Click "Sign Message" to get signature - Auf "Nachricht signieren" klicken, um die Signatur zu erhalten. Diese wird dann hier angezeigt. - Sign a message to prove you own this address @@ -838,14 +891,9 @@ Adresse: %4 - Copy the currently selected address to the system clipboard + Copy the current signature to the system clipboard Aktuelle Signatur in die Zwischenablage kopieren - - - &Copy to Clipboard - Signatur in die Zwischenablage &kopieren - @@ -858,34 +906,24 @@ Adresse: %4 %1 is not a valid address. %1 ist keine gültige Adresse. - - - Private key for %1 is not available. - Privater Schlüssel für %1 ist nicht verfügbar. - - - - Sign failed - Signierung der Nachricht fehlgeschlagen - OptionsDialog - + + Options + Erweiterte Einstellungen + + + Main Allgemein - + Display Anzeige - - - Options - Erweiterte Einstellungen - OverviewPage @@ -899,16 +937,6 @@ Adresse: %4 Balance: Kontostand: - - - 123.456 BTC - 123.456 BTC - - - - Number of transactions: - Anzahl der Transaktionen: - 0 @@ -920,25 +948,12 @@ Adresse: %4 Unbestätigt: - - 0 BTC - 0 BTC + + Wallet + Brieftasche - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Brieftasche</span></p></body></html> - - - + <b>Recent transactions</b> <b>Letzte Transaktionen</b> @@ -952,6 +967,11 @@ p, li { white-space: pre-wrap; } Total of transactions that have yet to be confirmed, and do not yet count toward the current balance Betrag aus unbestätigten Transaktionen, der noch nicht im aktuellen Kontostand enthalten ist + + + Number of transactions: + Anzahl der Transaktionen: + Total number of transactions in wallet @@ -960,6 +980,31 @@ p, li { white-space: pre-wrap; } QRCodeDialog + + + Message: + Nachricht: + + + + Amount: + Betrag: + + + + &Save As... + &Speichern unter... + + + + PNG Images (*.png) + PNG Bild (*.png) + + + + Save Image... + QR-Code abspeichern + Dialog @@ -971,57 +1016,42 @@ p, li { white-space: pre-wrap; } QR-Code - + Request Payment Zahlung anfordern - - Amount: - Betrag: - - - - BTC - BTC - - - + Label: Bezeichnung: - - Message: - Nachricht: - - - - &Save As... - &Speichern unter... + + BTC + BTC - - Save Image... - QR-Code abspeichern + + Error encoding URI into QR Code. + Fehler beim Kodieren der URI in den QR-Code. - - PNG Images (*.png) - PNG Bild (*.png) + + Resulting URI too long, try to reduce the text for label / message. + Resultierende URI zu lang, bitte den Text für Bezeichnung / Nachricht kürzen. SendCoinsDialog - - - - - - - + + + + + + + Send Coins Bitcoins überweisen @@ -1030,26 +1060,11 @@ p, li { white-space: pre-wrap; } Send to multiple recipients at once In einer Transaktion an mehrere Empfänger auf einmal überweisen - - - &Add recipient... - &Empfänger hinzufügen - Remove all transaction fields Alle Überweisungsfelder zurücksetzen - - - Clear all - Zurücksetzen - - - - Balance: - Kontostand: - 123.456 BTC @@ -1066,109 +1081,124 @@ p, li { white-space: pre-wrap; } &Überweisen - + <b>%1</b> to %2 (%3) <b>%1</b> an %2 (%3) - + Confirm send coins Überweisung bestätigen - - Are you sure you want to send %1? - Sind Sie sich sicher, dass Sie die folgende Überweisung ausführen möchten?<br>%1 + + &Add recipient... + &Empfänger hinzufügen - - and - und + + Clear all + Zurücksetzen - - The recepient address is not valid, please recheck. - Die Zahlungsadresse ist ungültig, bitte nochmals überprüfen. + + Balance: + Kontostand: - - The amount to pay must be larger than 0. - Der zu zahlende Betrag muss größer 0 sein. + + Are you sure you want to send %1? + Sind Sie sich sicher, dass Sie die folgende Überweisung ausführen möchten?<br>%1 - - Amount exceeds your balance + + and + und + + + + The recipient address is not valid, please recheck. + Die Zahlungsadresse ist ungültig, bitte nochmals überprüfen. + + + + The amount exceeds your balance. Der angegebene Betrag übersteigt Ihren Kontostand. - - Total exceeds your balance when the %1 transaction fee is included + + 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 in one send operation - Doppelte Adresse gefunden, pro Überweisung kann an jede Adresse nur einmalig etwas überwiesen werden + + 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. - - Error: Transaction creation failed - Fehler: Transaktionserstellung fehlgeschlagen + + Error: Transaction creation failed. + Fehler: Transaktionserstellung fehlgeschlagen. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. Fehler: Die Transaktion wurde abgelehnt. Dies kann passieren, wenn einige Bitcoins aus Ihrer Brieftasche bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie Ihrer wallet.dat genutzt, die Bitcoins dort ausgegeben haben und dies daher in der derzeit aktiven Brieftasche nicht vermerkt ist. + + + The amount to pay must be larger than 0. + Der zu zahlende Betrag muss größer 0 sein. + SendCoinsEntry + + + Pay &To: + &Empfänger: + + + + &Label: + &Bezeichnung: + + + + Paste address from clipboard + Adresse aus der Zwischenablage einfügen + Form Formular - - A&mount: - &Betrag: - - - - Pay &To: - &Empfänger: + + Choose address from address book + Adresse aus Adressbuch wählen Enter a label for this address to add it to your address book - Adressbezeichnung eingeben (diese wird bei unbekannten Adressen inkl. der Adresse dem Adressbuch hinzugefügt) + Adressbezeichnung eingeben (diese wird zusammen mit der Adresse dem Adressbuch hinzugefügt) - - &Label: - &Bezeichnung: + + A&mount: + &Betrag: The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Die Zahlungsadresse der Überweisung (z.B. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - Choose address from address book - Adresse aus Adressbuch wählen - Alt+A Alt+A - - - Paste address from clipboard - Adresse aus der Zwischenablage einfügen - Alt+P @@ -1188,140 +1218,140 @@ p, li { white-space: pre-wrap; } TransactionDesc - - Open for %1 blocks - Offen für %1 Blöcke - - - - Open until %1 - Offen bis %1 + + %1 confirmations + %1 Bestätigungen - - %1/offline? - %1/offline? + + <b>Date:</b> + <b>Datum:</b> - + %1/unconfirmed %1/unbestätigt - - %1 confirmations - %1 Bestätigungen + + Open for %1 blocks + Offen für %1 Blöcke - - <b>Status:</b> - <b>Status:</b> + + %1/offline? + %1/offline? - - , has not been successfully broadcast yet - , wurde noch nicht erfolgreich übertragen + + <b>Status:</b> + <b>Status:</b> - + , broadcast through %1 node , über %1 Knoten übertragen - + , broadcast through %1 nodes , über %1 Knoten übertragen - - <b>Date:</b> - <b>Datum:</b> - - - + <b>Source:</b> Generated<br> <b>Quelle:</b> Generiert<br> - - + + <b>From:</b> <b>Von:</b> - + unknown unbekannt - - - + + + <b>To:</b> <b>An:</b> - + (yours, label: (Eigene Adresse, Bezeichnung: - + (yours) (Eigene Adresse) - - - - + + + + <b>Credit:</b> <b>Gutschrift:</b> - + (%1 matures in %2 more blocks) %1 (reift noch %2 weitere Blöcke) - + (not accepted) (nicht angenommen) - - - + + + <b>Debit:</b> <b>Belastung:</b> - + + Open until %1 + Offen bis %1 + + + + , has not been successfully broadcast yet + , wurde noch nicht erfolgreich übertragen + + + <b>Transaction fee:</b> <b>Transaktionsgebühr:</b> - + <b>Net amount:</b> <b>Nettobetrag:</b> - + Message: Nachricht: - + Comment: Kommentar: - + Transaction ID: Transaktions-ID: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Generierte Bitcoins müssen 120 Blöcke lang warten, bevor sie ausgegeben werden können. Als Sie diesen Block generierten, wurde er an das Netzwerk übertragen, um ihn der Blockkette hinzuzufügen. Falls dies fehlschlägt wird der Status in "nicht angenommen" geändert und der Betrag wird nicht verfügbar werden. Das kann gelegentlich passieren, wenn ein anderer Knoten einen Block zur selben Zeit wie Sie generierte. @@ -1342,138 +1372,138 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Datum - + Type Typ - + Address Adresse - + Amount Betrag - + Open for %n block(s) - Offen für %n BlockOffen für %n Blöcke + + Offen für %n Block + Offen für %n Blöcke + - + Open until %1 Offen bis %1 - + Offline (%1 confirmations) - Nicht verbunden (%1 Bestätigungen) + Offline (%1 Bestätigungen) - + Unconfirmed (%1 of %2 confirmations) Unbestätigt (%1 von %2 Bestätigungen) - + Confirmed (%1 confirmations) Bestätigt (%1 Bestätigungen) - - - Mined balance will be available in %n more blocks - Der erarbeitete Betrag wird in %n Block verfügbar seinDer erarbeitete Betrag wird in %n Blöcken verfügbar sein - - + This block was not received by any other nodes and will probably not be accepted! Dieser Block wurde von keinem anderen Knoten empfangen und wird wahrscheinlich nicht angenommen werden! - + Generated but not accepted Generiert, jedoch nicht angenommen - + Received with Empfangen über - + Received from Empfangen von - + Sent to Überwiesen an - + Payment to yourself Eigenüberweisung - + Mined Erarbeitet - + (n/a) (k.A.) - + Transaction status. Hover over this field to show number of confirmations. Transaktionsstatus. Fahren Sie mit der Maus über dieses Feld, um die Anzahl der Bestätigungen zu sehen. - + Date and time that the transaction was received. Datum und Uhrzeit als die Transaktion empfangen wurde. - + Type of transaction. Art der Transaktion - + Destination address of transaction. - Zieladresse der Transaktion. + Zieladresse der Transaktion - + Amount removed from or added to balance. Der Betrag, der dem Kontostand abgezogen oder hinzugefügt wurde. + + + Mined balance will be available in %n more blocks + + Der erarbeitete Betrag wird in %n Block verfügbar sein + Der erarbeitete Betrag wird in %n Blöcken verfügbar sein + + TransactionView - - - All - Alle - - - - Today - Heute + + Min amount + Minimaler Betrag - - This week - Diese Woche + + Copy address + Adresse kopieren @@ -1485,61 +1515,6 @@ p, li { white-space: pre-wrap; } Last month Letzten Monat - - - This year - Dieses Jahr - - - - Range... - Zeitraum - - - - Received with - Empfangen über - - - - Sent to - Überwiesen an - - - - To yourself - Eigenüberweisung - - - - Mined - Erarbeitet - - - - Other - Andere - - - - Enter address or label to search - Zu suchende Adresse oder Bezeichnung eingeben - - - - Min amount - Minimaler Betrag - - - - Copy address - Adresse kopieren - - - - Copy label - Bezeichnung kopieren - Copy amount @@ -1551,427 +1526,636 @@ p, li { white-space: pre-wrap; } Bezeichnung bearbeiten - - Show details... - Transaktionsdetails anzeigen - - - + Export Transaction Data Transaktionen exportieren - + 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. Konnte nicht in Datei %1 schreiben. - + Range: Zeitraum: - + to bis - - - WalletModel - - - Sending... - Überweise... - - - - bitcoin-core - - Bitcoin version - Bitcoin Version + + Today + Heute - - Usage: - Verwendung: + + This week + Diese Woche - - Send command to -server or bitcoind - Befehl an -server oder bitcoind senden - - - - List commands - Befehle auflisten + + This year + Dieses Jahr - - Get help for a command - Hilfe zu einem Befehl erhalten + + Range... + Zeitraum... - - Options: - Einstellungen: + + Received with + Empfangen über - - Specify configuration file (default: bitcoin.conf) - Konfigurationsdatei angeben (Standard: bitcoin.conf) + + Sent to + Überwiesen an - - Specify pid file (default: bitcoind.pid) - PID-Datei angeben (Standard: bitcoind.pid) + + To yourself + Eigenüberweisung - - Generate coins - Bitcoins generieren + + Mined + Erarbeitet - - Don't generate coins - Keine Bitcoins generieren + + Other + Andere - - Start minimized - Minimiert starten + + Enter address or label to search + Zu suchende Adresse oder Bezeichnung eingeben - - Specify data directory - Datenverzeichnis angeben + + Copy label + Bezeichnung kopieren - - Specify connection timeout (in milliseconds) - Verbindungstimeout angeben (in Millisekunden) + + Show details... + Transaktionsdetails anzeigen - - Connect through socks4 proxy - Über einen SOCKS4-Proxy verbinden: + + Label + Bezeichnung - - Allow DNS lookups for addnode and connect - Erlaube DNS Namensauflösung für addnode und connect + + + All + Alle + + + WalletModel - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Verbindungen erwarten an <port> (Standard: 8333 oder test-Netzwerk: 18333) + + Sending... + Überweise... + + + bitcoin-core - - Maintain at most <n> connections to peers (default: 125) - Maximal <n> Verbindungen zu Peers aufrechterhalten (Standard: 125) + + Usage: + Benutzung: - - Add a node to connect to - Einen Knoten hinzufügen, mit dem sich verbunden werden soll + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Datenverzeichnis %s kann nicht gesperrt werden. Evtl. wurde Bitcoin bereits gestartet. - - Connect only to the specified node - Nur mit dem angegebenem Knoten verbinden + + Loading addresses... + Lade Adressen... - - Don't accept connections from outside - Keine Verbindungen von außen akzeptieren + + Loading wallet... + Lade Brieftasche... - - Don't bootstrap list of peers using DNS - Keine Peerliste durch die Nutzung von DNS erzeugen + + Rescanning... + Durchsuche erneut... - - Threshold for disconnecting misbehaving peers (default: 100) - Schwellenwert, um Verbindungen zu sich nicht konform verhaltenden Peers zu beenden (Standard: 100) + + Cannot initialize keypool + Schlüsselpool kann nicht initialisiert werden - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Anzahl Sekunden, während denen sich nicht konform verhaltenden Peers die Wiederverbindung verweigert wird (Standard: 86400) + + Cannot write default address + Standardadresse kann nicht geschrieben werden - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maximale Größe des Empfangspuffers pro Verbindung, <n>*1000 Bytes (Standard: 10000) + + List commands + Befehle auflisten - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maximale Größe des Sendepuffers pro Verbindung, <n>*1000 Bytes (Standard: 10000) + + Options: + Optionen: - - Don't attempt to use UPnP to map the listening port - Nicht versuchen UPnP zu verwenden, um den abgehörten Port weiterzuleiten + + Specify configuration file (default: bitcoin.conf) + Konfigurationsdatei angeben (Standard: bitcoin.conf) - - Attempt to use UPnP to map the listening port - Versuchen UPnP zu verwenden, um den abgehörten Port weiterzuleiten + + Specify data directory + Datenverzeichnis angeben - - Fee per kB to add to transactions you send - Gebühr pro kB, die gesendeten Transaktionen hinzugefügt wird + + Add a node to connect to and attempt to keep the connection open + Mit dem Knoten verbinden und versuchen die Verbindung aufrecht zu halten - - Accept command line and JSON-RPC commands - Kommandozeilenbefehle und JSON-RPC Befehle annehmen + + Maintain at most <n> connections to peers (default: 125) + Maximal <n> Verbindungen zu Gegenstellen aufrechterhalten (Standard: 125) - - Run in the background as a daemon and accept commands - Als Hintergrunddienst starten und Befehle akzeptieren + + Set database cache size in megabytes (default: 25) + Größe des Datenbankcaches in MB festlegen (Standard: 25) - - Use the test network - Das test-Netzwerk verwenden + + Find peers using internet relay chat (default: 0) + Gegenstellen via Internet Relay Chat finden (Standard: 0) - - Output extra debugging information - Ausgabe zusätzlicher Debugging-Informationen + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Fehler beim Laden von wallet.dat: Brieftasche benötigt neuere Version von Bitcoin - - Prepend debug output with timestamp - Der Debug-Ausgabe einen Zeitstempel voranstellen + + Cannot downgrade wallet + Brieftasche kann nicht auf eine ältere Version herabgestuft werden - - Send trace/debug info to console instead of debug.log file - Rückverfolgungs- und Debug-Informationen an die Konsole senden anstatt sie in die debug.log Datei zu schreiben + + Fee per KB to add to transactions you send + Gebühr pro KB, die gesendeten Transaktionen hinzugefügt wird - - Send trace/debug info to debugger - Rückverfolgungs- und Debug-Informationen an den Debugger senden + + Use the test network + Das Testnetz verwenden - - Username for JSON-RPC connections - Benutzername für JSON-RPC Verbindungen + + Run in the background as a daemon and accept commands + Als Hintergrunddienst starten und Befehle annehmen - + Password for JSON-RPC connections Passwort für JSON-RPC Verbindungen - - Listen for JSON-RPC connections on <port> (default: 8332) - JSON-RPC Verbindungen erwarten an <port> (Standard: 8332) + + Threshold for disconnecting misbehaving peers (default: 100) + Schwellenwert, um Verbindungen zu sich nicht konform verhaltenden Gegenstellen zu beenden (Standard: 100) - - Allow JSON-RPC connections from specified IP address - JSON-RPC Verbindungen von der angegebenen IP-Adresse erlauben + + 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 gesetzt. Dies ist die Gebühr die beim Senden einer Transaktion fällig wird. - + + Error: CreateThread(StartNode) failed + Fehler: CreateThread(StartNode) fehlgeschlagen + + + Send commands to node running on <ip> (default: 127.0.0.1) Sende Befehle an Knoten <ip> (Standard: 127.0.0.1) - - Set key pool size to <n> (default: 100) - Setze Größe des Schlüsselpools auf <n> (Standard: 100) + + 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) - - Rescan the block chain for missing wallet transactions - Blockkette erneut nach fehlenden Transaktionen der Brieftasche durchsuchen + + Upgrade wallet to latest format + Brieftasche auf das neueste Format aktualisieren - + + Server certificate file (default: server.cert) + Serverzertifikat (Standard: server.cert) + + + + Server private key (default: server.pem) + Privater Serverschlüssel (Standard: server.pem) + + + + How many blocks to check at startup (default: 2500, 0 = all) + Wieviele Blöcke sollen beim Starten geprüft werden (Standard: 2500, 0 = alle) + + + + How thorough the block verification is (0-6, default: 1) + Wie gründlich soll die Blockprüfung sein (0-6, Standard: 1) + + + + Error loading wallet.dat: Wallet corrupted + Fehler beim Laden von wallet.dat: Brieftasche beschädigt + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Brieftasche muss neu geschrieben werden: Starten Sie Bitcoin zur Fertigstellung neu + + + + Connect through socks4 proxy + Über einen SOCKS4-Proxy verbinden: + + + + Prepend debug output with timestamp + Der Debug-Ausgabe einen Zeitstempel voranstellen + + + + Connect only to the specified node + Nur mit dem angegebenem Knoten verbinden + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL Einstellungen: (siehe Bitcoin-Wiki für SSL Installationsanweisungen) - - Use OpenSSL (https) for JSON-RPC connections - OpenSSL (https) für JSON-RPC Verbindungen benutzen + + Bitcoin version + Bitcoin Version - - Server certificate file (default: server.cert) - Server Zertifikat (Standard: server.cert) + + Usage + Benutzung - - Server private key (default: server.pem) - Privater Serverschlüssel (Standard: server.pem) + + Loading block index... + Lade Blockindex... - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Akzeptierte Chiffren (Standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Done loading + Laden abgeschlossen - - This help message - Dieser Hilfetext + + Invalid -proxy address + Fehlerhafte Proxy-Adresse - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Konnte das Datenverzeichnis %s nicht sperren. Evtl. wurde Bitcoin bereits gestartet. + + Invalid amount for -paytxfee=<amount> + Ungültige Angabe für -paytxfee=<Betrag> - - Loading addresses... - Lade Adressen... + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Fehler beim registrieren des Ports %d auf diesem Computer. Evtl. wurde Bitcoin bereits gestartet. - - Error loading addr.dat - Fehler beim Laden von addr.dat + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Warnung: Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen Ihres Computers, da Bitcoin ansonsten nicht ordnungsgemäß funktionieren wird. - - Error loading blkindex.dat - Fehler beim Laden von blkindex.dat + + Warning: Disk space is low + Warnung: Festplattenplatz wird knapp - - Error loading wallet.dat: Wallet corrupted - Fehler beim Laden von wallet.dat: Brieftasche beschädigt + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + %s, Sie müssen den Wert rpcpasswort in der Konfigurationsdatei angeben +%s +Es wird empfohlen das folgende Zufallspasswort zu verwenden: +rpcuser=bitcoinrpc +rpcpassword=%s +(Sie müssen sich dieses Passwort nicht merken!) +Falls die Konfigurationsdatei nicht existiert, erzeugen Sie diese bitte mit Leserechten nur für den Dateibesitzer. + - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Fehler beim Laden von wallet.dat: Brieftasche benötigt neuere Version von Bitcoin + + Send command to -server or bitcoind + Befehl an -server oder bitcoind senden - - Wallet needed to be rewritten: restart Bitcoin to complete - Brieftasche muss neu geschrieben werden: starten Sie Bitcoin zur Fertigstellung neu + + Get help for a command + Hilfe zu einem Befehl erhalten - - Error loading wallet.dat - Fehler beim Laden von wallet.dat (Brieftasche) + + Specify pid file (default: bitcoind.pid) + PID-Datei angeben (Standard: bitcoind.pid) - - Loading block index... - Lade Blockindex... + + Generate coins + Bitcoins generieren + + + + Don't generate coins + Keine Bitcoins generieren + + + + Start minimized + Minimiert starten + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Akzeptierte Chiffren (Standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Show splash screen on startup (default: 1) + Startbildschirm beim Starten anzeigen (Standard: 1) + + + + Specify connection timeout (in milliseconds) + Verbindungstimeout angeben (in Millisekunden) + + + + Allow DNS lookups for addnode and connect + Erlaube DNS Namensauflösung für addnode und connect + + + + Detach block and address databases. Increases shutdown time (default: 0) + Block- und Adressdatenbank beim Beenden trennen. Verlängert, die zum Beenden benötigte Zeit (Standard: 0) + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + <port> nach Verbindungen abhören (Standard: 8333 oder Testnetz: 18333) + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Fehler: Die Transaktion wurde abgelehnt. Dies kann passieren, wenn einige Bitcoins aus Ihrer Brieftasche bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie Ihrer wallet.dat genutzt, die Bitcoins dort ausgegeben haben und dies daher in der derzeit aktiven Brieftasche nicht vermerkt ist. - Loading wallet... - Lade Geldbörse... + Accept connections from outside (default: 1) + Eingehende Verbindungen annehmen (Standard: 1) - - Rescanning... - Durchsuche erneut... + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Fehler: Diese Transaktion benötigt aufgrund ihres Betrags, ihrer Komplexität oder der Nutzung kürzlich erhaltener Zahlungen eine Transaktionsgebühr in Höhe von mindestens %s. - - Done loading - Laden abgeschlossen + + Set language, for example "de_DE" (default: system locale) + Sprache festlegen, z.B. "de_DE" (Standard: System Locale) + + + + Find peers using DNS lookup (default: 1) + Gegenstellen via DNS-Namensauflösung finden (Standard: 1) + + + + 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) - Invalid -proxy address - Fehlerhafte Proxy-Adresse + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maximale Größe des Empfangspuffers pro Verbindung, <n>*1000 Bytes (Standard: 10000) - Invalid amount for -paytxfee=<amount> - Ungültige Angabe für -paytxfee=<Betrag> + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maximale Größe des Sendepuffers pro Verbindung, <n>*1000 Bytes (Standard: 10000) - 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 gesetzt. Dies ist die Gebühr die beim Senden einer Transaktion fällig wird. - - - - Error: CreateThread(StartNode) failed - Fehler: CreateThread(StartNode) fehlgeschlagen + Use Universal Plug and Play to map the listening port (default: 1) + UPnP verwenden, um die Portweiterleitung einzurichten (Standard: 1) - - Warning: Disk space is low - Warnung: Festplattenplatz wird knapp + + Use Universal Plug and Play to map the listening port (default: 0) + UPnP verwenden, um die Portweiterleitung einzurichten (Standard: 0) - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Fehler beim registrieren des Ports %d auf diesem Computer. Evtl. wurde Bitcoin bereits gestartet. + Accept command line and JSON-RPC commands + Kommandozeilenbefehle und JSON-RPC Befehle annehmen - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Warnung: Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen Ihres Computers, da Bitcoin ansonsten nicht ordnungsgemäß funktionieren wird. + Output extra debugging information + Ausgabe zusätzlicher Debugging-Informationen + + + + Send trace/debug info to console instead of debug.log file + Rückverfolgungs- und Debuginformationen an die Konsole senden anstatt sie in die debug.log Datei zu schreiben - beta - Beta + Send trace/debug info to debugger + Rückverfolgungs- und Debug-Informationen an den Debugger senden + + + + Username for JSON-RPC connections + Benutzername für JSON-RPC Verbindungen + + + + Listen for JSON-RPC connections on <port> (default: 8332) + <port> nach JSON-RPC Verbindungen abhören (Standard: 8332) + + + + Allow JSON-RPC connections from specified IP address + JSON-RPC Verbindungen von der angegebenen IP-Adresse erlauben + + + + 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. + + + + 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 Transaktionen der Brieftasche durchsuchen + + + + An error occurred while setting up the RPC port %i for listening: %s + Beim Einrichten des abzuhörenden RPC-Ports %i ist ein Fehler aufgetreten: %s + + + + Use OpenSSL (https) for JSON-RPC connections + OpenSSL (https) für JSON-RPC Verbindungen verwenden + + + + Bitcoin + Bitcoin + + + + This help message + Dieser Hilfetext + + + + Error loading addr.dat + Fehler beim Laden von addr.dat + + + + Error loading blkindex.dat + Fehler beim Laden von blkindex.dat + + + + Error loading wallet.dat + Fehler beim Laden von wallet.dat (Brieftasche) + + + + Error + Fehler + + + + Error: Transaction creation failed + Fehler: Transaktionserstellung fehlgeschlagen + + + + Error: Wallet locked, unable to create transaction + Fehler: Brieftasche gesperrt, Transaktion kann nicht erstellt werden + + + + Insufficient funds + Unzureichender Kontostand + + + + Invalid amount + Ungültige Angabe + + + + Sending... + Senden... + + + + Set database disk log size in megabytes (default: 100) + Größe des Datenbankprotokolls auf der Festplatte in MB festlegen (Standard: 100) + + + + To use the %s option + Zur Nutzung der %s Option - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index 53ba23b11c..5046852834 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -1,6 +1,6 @@ - + UTF-8 AboutDialog @@ -109,22 +109,22 @@ This product includes software developed by the OpenSSL Project for use in the O - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. @@ -132,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label - + Address - + (no label) @@ -155,26 +155,25 @@ This product includes software developed by the OpenSSL Project for use in the O - - - TextLabel - - - - + Enter passphrase - + New passphrase - + Repeat new passphrase + + + TextLabel + + 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>. @@ -237,12 +236,6 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - Warning: The Caps Lock key is on. - - @@ -281,227 +274,215 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on. BitcoinGUI - + Bitcoin Wallet - - Show/Hide &Bitcoin - - - - - 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 - + Send coins to a bitcoin address - + Sign &message - + Prove you control an address - + E&xit - + Quit application - + &About %1 - + Show information about Bitcoin - + About &Qt - + Show information about Qt - + &Options... - + Modify configuration options for bitcoin - - - ~%n block(s) remaining - - ~%n block remaining - ~%n blocks remaining - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). + + Show/Hide &Bitcoin - - &Export... + + Show or hide the Bitcoin window - - Show or hide the Bitcoin window + + &Export... - + Export the data in the current tab to a file - + &Encrypt Wallet - + Encrypt or decrypt wallet - + &Backup Wallet - + Backup wallet to another location - + &Change Passphrase - + Change the passphrase used for wallet encryption - + &File - + &Settings - + &Help - + Tabs toolbar - + Actions toolbar - + [testnet] - + Bitcoin client - + bitcoin-qt - + %n active connection(s) to Bitcoin network %n active connection to Bitcoin network @@ -509,12 +490,22 @@ Are you sure you wish to encrypt your wallet? - + + Synchronizing with network... + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + Downloaded %1 blocks of transaction history. - + %n second(s) ago %n second ago @@ -522,7 +513,7 @@ Are you sure you wish to encrypt your wallet? - + %n minute(s) ago %n minute ago @@ -530,7 +521,7 @@ Are you sure you wish to encrypt your wallet? - + %n hour(s) ago %n hour ago @@ -538,7 +529,7 @@ Are you sure you wish to encrypt your wallet? - + %n day(s) ago %n day ago @@ -546,42 +537,42 @@ Are you sure you wish to encrypt your wallet? - + 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? - + Sending... - + Sent transaction - + Incoming transaction - + Date: %1 Amount: %2 Type: %3 @@ -590,51 +581,69 @@ Address: %4 - + 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 block(s) remaining + + ~%n block remaining + ~%n blocks remaining + + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage - + &Unit to show amounts in: - + Choose the default subdivision unit to show in the interface, and when sending coins - - Display addresses in transaction list + + &Display addresses in transaction list + + + + + Whether to show Bitcoin addresses in the transaction list @@ -709,88 +718,93 @@ Address: %4 MainOptionsPage - + &Start Bitcoin on window system startup - + Automatically start Bitcoin after the computer is turned on - + &Minimize to the tray instead of the taskbar - + Show only a tray icon after minimizing the window - - Map port using &UPnP + + M&inimize on close - - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + + 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 + + Map port using &UPnP - - 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. + + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - + &Connect through SOCKS4 proxy: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &Port: - + Port of the proxy (e.g. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + Pay transaction &fee - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + + Detach databases at shutdown + + + + + 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. @@ -853,7 +867,7 @@ Address: %4 - Copy the currently selected address to the system clipboard + Copy the current signature to the system clipboard @@ -887,17 +901,17 @@ Address: %4 OptionsDialog - + Main - + Display - + Options @@ -914,11 +928,6 @@ Address: %4 Balance: - - - 123.456 BTC - - Number of transactions: @@ -935,21 +944,12 @@ Address: %4 - - 0 BTC - - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet - + <b>Recent transactions</b> @@ -1012,17 +1012,22 @@ p, li { white-space: pre-wrap; } - + + Error encoding URI into QR Code. + + + + Resulting URI too long, try to reduce the text for label / message. - + Save Image... - + PNG Images (*.png) @@ -1031,13 +1036,13 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins @@ -1082,58 +1087,58 @@ p, li { white-space: pre-wrap; } - + <b>%1</b> to %2 (%3) - + Confirm send coins - + Are you sure you want to send %1? - + and - - The recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. - + The amount to pay must be larger than 0. - - Amount exceeds your balance + + The amount exceeds your balance. - - 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 in one 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. @@ -1204,140 +1209,140 @@ p, li { white-space: pre-wrap; } TransactionDesc - + Open for %1 blocks - + Open until %1 - + %1/offline? - + %1/unconfirmed - + %1 confirmations - + <b>Status:</b> - + , has not been successfully broadcast yet - + , broadcast through %1 node - + , broadcast through %1 nodes - + <b>Date:</b> - + <b>Source:</b> Generated<br> - - + + <b>From:</b> - + unknown - - - + + + <b>To:</b> - + (yours, label: - + (yours) - - - - + + + + <b>Credit:</b> - + (%1 matures in %2 more blocks) - + (not accepted) - - - + + + <b>Debit:</b> - + <b>Transaction fee:</b> - + <b>Net amount:</b> - + Message: - + Comment: - + Transaction ID: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. @@ -1358,27 +1363,27 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date - + Type - + Address - + Amount - + Open for %n block(s) Open for %n block @@ -1386,27 +1391,27 @@ p, li { white-space: pre-wrap; } - + Open until %1 - + Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) - + Mined balance will be available in %n more blocks Mined balance will be available in %n more block @@ -1414,67 +1419,67 @@ p, li { white-space: pre-wrap; } - + 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. @@ -1578,67 +1583,67 @@ p, li { white-space: pre-wrap; } - + Export Transaction Data - + Comma separated file (*.csv) - + Confirmed - + Date - + Type - + Label - + Address - + Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to @@ -1646,486 +1651,491 @@ p, li { white-space: pre-wrap; } WalletModel - + Sending... bitcoin-core - - - Bitcoin version - - - Usage: + Error: Wallet locked, unable to create transaction - Send command to -server or bitcoind - - - - - List commands - - - - - Get help for a command + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - Options: + Error: Transaction creation failed - Specify configuration file (default: bitcoin.conf) + Sending... - Specify pid file (default: bitcoind.pid) - - - - - Generate coins - - - - - Don't generate coins - - - - - Start minimized + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Show splash screen on startup (default: 1) + Invalid amount - Specify data directory + Insufficient funds - Set database cache size in megabytes (default: 25) + Warning: Disk space is low - Set database disk log size in megabytes (default: 100) + To use the %s option - Specify connection timeout (in milliseconds) - - - - - Connect through socks4 proxy - - - - - Allow DNS lookups for addnode and connect - - - - - Listen for connections on <port> (default: 8333 or testnet: 18333) + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + - - Maintain at most <n> connections to peers (default: 125) + + Error - - Connect only to the specified node + + An error occurred while setting up the RPC port %i for listening: %s - Threshold for disconnecting misbehaving peers (default: 100) - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + Bitcoin version - Accept command line and JSON-RPC commands + Usage: - Run in the background as a daemon and accept commands + Send command to -server or bitcoind - Use the test network + List commands - Output extra debugging information + Get help for a command - Prepend debug output with timestamp + Options: - Send trace/debug info to console instead of debug.log file + Specify configuration file (default: bitcoin.conf) - Send trace/debug info to debugger + Specify pid file (default: bitcoind.pid) - Username for JSON-RPC connections + Generate coins - Password for JSON-RPC connections + Don't generate coins - Listen for JSON-RPC connections on <port> (default: 8332) + Start minimized - Allow JSON-RPC connections from specified IP address + Show splash screen on startup (default: 1) - Send commands to node running on <ip> (default: 127.0.0.1) + Specify data directory - Execute command when the best block changes (%s in cmd is replaced by block hash) + Set database cache size in megabytes (default: 25) + + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout (in milliseconds) - Upgrade wallet to latest format + Connect through socks4 proxy - Set key pool size to <n> (default: 100) + Allow DNS lookups for addnode and connect - Rescan the block chain for missing wallet transactions + Listen for connections on <port> (default: 8333 or testnet: 18333) - How many blocks to check at startup (default: 2500, 0 = all) + Maintain at most <n> connections to peers (default: 125) - How thorough the block verification is (0-6, default: 1) + Add a node to connect to and attempt to keep the connection open - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Connect only to the specified node + + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) - Use OpenSSL (https) for JSON-RPC connections + Set language, for example "de_DE" (default: system locale) - Server certificate file (default: server.cert) + Find peers using DNS lookup (default: 1) - Server private key (default: server.pem) + Threshold for disconnecting misbehaving peers (default: 100) - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - This help message + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Usage + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Use Universal Plug and Play to map the listening port (default: 1) - - Bitcoin + + Use Universal Plug and Play to map the listening port (default: 0) + + + + + Detach block and address databases. Increases shutdown time (default: 0) - Loading addresses... + Fee per KB to add to transactions you send - Error loading addr.dat + Accept command line and JSON-RPC commands + + + + + Run in the background as a daemon and accept commands - Error loading blkindex.dat + Use the test network + + + + + Output extra debugging information - Error loading wallet.dat: Wallet corrupted + Prepend debug output with timestamp - Error loading wallet.dat: Wallet requires newer version of Bitcoin + Send trace/debug info to console instead of debug.log file - Wallet needed to be rewritten: restart Bitcoin to complete + Send trace/debug info to debugger - Error loading wallet.dat + Username for JSON-RPC connections - - Error: Wallet locked, unable to create transaction + + Password for JSON-RPC connections - - 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: 8332) - - Error: Transaction creation failed + + Allow JSON-RPC connections from specified IP address - - Sending... + + Send commands to node running on <ip> (default: 127.0.0.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. + + Execute command when the best block changes (%s in cmd is replaced by block hash) - - Invalid amount + + Upgrade wallet to latest format - - Insufficient funds + + Set key pool size to <n> (default: 100) - - Loading block index... + + Rescan the block chain for missing wallet transactions - - Add a node to connect to and attempt to keep the connection open + + How many blocks to check at startup (default: 2500, 0 = all) - - Find peers using internet relay chat (default: 0) + + How thorough the block verification is (0-6, default: 1) - - Accept connections from outside (default: 1) + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - Set language, for example "de_DE" (default: system locale) + + Use OpenSSL (https) for JSON-RPC connections - - Find peers using DNS lookup (default: 1) + + Server certificate file (default: server.cert) - - Use Universal Plug and Play to map the listening port (default: 1) + + Server private key (default: server.pem) - - Use Universal Plug and Play to map the listening port (default: 0) + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Fee per KB to add to transactions you send + + This help message - - Loading wallet... + + Usage - - Cannot downgrade wallet + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - - Cannot initialize keypool + + Bitcoin - - Cannot write default address + + Loading addresses... - - Rescanning... + + Error loading addr.dat - - Done loading + + Loading block index... - - Invalid -proxy address + + Error loading blkindex.dat - - Invalid amount for -paytxfee=<amount> + + Loading wallet... - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + + Error loading wallet.dat: Wallet corrupted - - Error: CreateThread(StartNode) failed + + Error loading wallet.dat: Wallet requires newer version of Bitcoin - - Warning: Disk space is low + + Wallet needed to be rewritten: restart Bitcoin to complete - - Unable to bind to port %d on this computer. Bitcoin is probably already running. + + Error loading wallet.dat - - To use the %s option + + Cannot downgrade wallet - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -If the file does not exist, create it with owner-readable-only file permissions. - + + Cannot initialize keypool - - Error + + Cannot write default address - - An error occured while setting up the RPC port %i for listening: %s + + Rescanning... - - 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 - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + Invalid -proxy address + + + + + Invalid amount for -paytxfee=<amount> + + + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + + + + + Error: CreateThread(StartNode) failed + + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index a388508ff8..bfc5cb46c4 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -1,19 +1,21 @@ - + + + UTF-8 AboutDialog About Bitcoin - Sobre Bitcoin + Acerca de Bitcoin <b>Bitcoin</b> version - <b>Bitcoin</b> - versión + <b>Bitcoin</b> versión - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,16 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Copyright © 2009-2012 Bitcoin Developers + +Este es un software experimental. + +Distribuido bajo la licencia MIT/X11, vea el archivo adjunto +license.txt 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 UPnP software escrito por Thomas Bernard. @@ -29,7 +40,7 @@ This product includes software developed by the OpenSSL Project for use in the O Address Book - Guia de direcciones + Libreta de direcciones @@ -39,221 +50,237 @@ This product includes software developed by the OpenSSL Project for use in the O Double-click to edit address or label - Haz doble click para editar una dirección o etiqueta + Haga doble clic para editar una dirección o etiqueta Create a new address - Crea una nueva dirección + Crear una nueva dirección - - &New Address... - &Nueva Dirección + + Sign a message to prove you own this address + + + + + Delete the currently selected address from the list. Only sending addresses can be deleted. + Borrar de la lista la dirección seleccionada . Sólo se pueden borrar las direcciones de envío. + + + + &Delete + &Borrar Copy the currently selected address to the system clipboard - Copia la dirección seleccionada al portapapeles + Copiar la dirección seleccionada al portapapeles - - &Copy to Clipboard - &Copiar al portapapeles + + &Sign Message + &Firmar mensaje Show &QR Code - - - - - Sign a message to prove you own this address - + Mostrar código &QR - - &Sign Message - + + &Copy to Clipboard + &Copiar al portapapeles - - Delete the currently selected address from the list. Only sending addresses can be deleted. - Borra la dirección seleccionada de la lista. Solo las direcciónes de envio se pueden borrar. + + &New Address... + &Nueva Dirección - - &Delete - Bo&rrar + + Error exporting + Exportar errores - - Copy address - Copia dirección + + Comma separated file (*.csv) + Archivos de columnas separadas por coma (*.csv) - + Copy label - Copia etiqueta + Copiar etiqueta - + Edit - + Editar - + Delete - - - - - Export Address Book Data - Exporta datos de la Guia de direcciones + Borrar - - Comma separated file (*.csv) - Archivos separados por coma (*.csv) + + Could not write to file %1. + No se pudo escribir en el archivo %1. - - Error exporting - Exportar errores + + Copy address + Copia dirección - - Could not write to file %1. - No se pudo escribir al archivo %1. + + Export Address Book Data + Exporta datos de la Guia de direcciones AddressTableModel - - Label - Etiqueta - - - + Address Dirección - + + Label + Etiqueta + + + (no label) (sin etiqueta) AskPassphraseDialog + + + Enter passphrase + Contraseña actual + + + + New passphrase + Nueva contraseña + + + + Repeat new passphrase + Repita la nueva contraseña + + + + This operation needs your wallet passphrase to unlock the wallet. + Para desbloquear el monedero esta operación necesita de su contraseña. + Dialog Cambiar contraseña - - + TextLabel Cambiar contraseña: - - Enter passphrase - Introduce contraseña actual - - - - New passphrase - Nueva contraseña + + + + The passphrase entered for the wallet decryption was incorrect. + La contraseña introducida para descifrar el monedero es incorrecta. - - Repeat new passphrase - Repite nueva contraseña: + + Wallet decryption failed + Ha fallado el descifrado del monedero Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Introduce la nueva contraseña de cartera.<br/>Por favor utiliza un contraseña <b>de 10 o mas caracteres aleatorios</b>, u <b>ocho o mas palabras</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 - Encriptar cartera - - - - This operation needs your wallet passphrase to unlock the wallet. - Esta operación necesita la contraseña para desbloquear la cartera. + Cifrar el monedero Unlock wallet - Desbloquea cartera + Desbloquear monedero This operation needs your wallet passphrase to decrypt the wallet. - Esta operación necesita la contraseña para decriptar la cartera. + Para descifrar el monedero esta operación necesita de su contraseña. Decrypt wallet - Decriptar cartera + Descifrar monedero Change passphrase - Cambia contraseña + Cambiar contraseña Enter the old and new passphrase to the wallet. - Introduce la contraseña anterior y la nueva de cartera + Introduzca la contraseña anterior del monedero y la nueva. - - Confirm wallet encryption - Confirma la encriptación de cartera + + + + + Wallet encryption failed + Ha fallado el cifrado del monedero - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ATENCION: ¡Si encriptas tu cartera y pierdes la contraseña perderas <b>TODOS TUS BITCOINS</b>!" -¿Seguro que quieres seguir encriptando la cartera? + + Wallet passphrase was successfully changed. + La contraseña de cartera ha sido cambiada con exit. + + + + + Warning: The Caps Lock key is on. + Wallet encrypted - Cartera encriptada + Monedero cifrado - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + + Wallet encryption failed 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. - - - Warning: The Caps Lock key is on. - + + Confirm wallet encryption + Confirmar cifrado del monedero - - - - - Wallet encryption failed - Encriptación de cartera fallida + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ATENCION: ¡Si encriptas tu cartera y pierdes la contraseña perderas <b>TODOS TUS BITCOINS</b>!" +¿Seguro que quieres seguir encriptando la cartera? - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Encriptación de cartera fallida debido a un error interno. Tu cartera no ha sido encriptada. + + Wallet unlock failed + Ha fallado el desbloqueo del monedero @@ -262,303 +289,255 @@ Are you sure you wish to encrypt your wallet? Las contraseñas no coinciden. - - Wallet unlock failed - Desbloqueo de cartera fallido + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerda que encriptando tu cartera no garantiza mantener a salvo tus bitcoins en caso de tener viruses en el ordenador. + + + BitcoinGUI - - - - The passphrase entered for the wallet decryption was incorrect. - La contraseña introducida para decriptar la cartera es incorrecta. + + Browse transaction history + Examinar el historial de transacciones - - Wallet decryption failed - Decriptación de cartera fallida + + &Send coins + &Envia monedas - - Wallet passphrase was succesfully changed. - La contraseña de cartera ha sido cambiada con exit. + + E&xit + &Salir - - - BitcoinGUI - + + Quit application + Salir de la aplicación + + + + &About %1 + S&obre %1 + + + Bitcoin Wallet Cartera Bitcoin - - + Synchronizing with network... - Sincronizando con la red... - - - - Block chain synchronization in progress - Sincronización cadena de bloques en progreso + Sincronizando con la red… - + &Overview &Vista general - + Show general overview of wallet - Muestra una vista general de cartera + Mostrar vista general del monedero - + &Transactions - &Transacciónes - - - - Browse transaction history - Visiona el historial de transacciónes + &Transacciones - + &Address Book - &Guia de direcciónes + &Libreta de direcciones - + Edit the list of stored addresses and labels - Edita la lista de las direcciónes y etiquetas almacenada + Editar la lista de las direcciones y etiquetas almacenadas - + &Receive coins - &Recibe monedas + &Recibir monedas - + Show the list of addresses for receiving payments - Muestra la lista de direcciónes utilizadas para recibir pagos + Mostrar la lista de direcciones utilizadas para recibir pagos - - &Send coins - &Envia monedas - - - + Send coins to a bitcoin address Envia monedas a una dirección bitcoin - + Sign &message - + Firmar &mensaje... - + Prove you control an address - - - - - E&xit - &Salir - - - - Quit application - Salir de la aplicación - - - - &About %1 - S&obre %1 + - + Show information about Bitcoin - Muestra información sobre Bitcoin - - - - About &Qt - + Mostrar información acerca de Bitcoin - + Show information about Qt - + Mostrar información acerca de Qt - + &Options... - &Opciones + &Opciones... - + Modify configuration options for bitcoin Modifica opciones de configuración - - Open &Bitcoin - Abre &Bitcoin - - - - Show the Bitcoin window - Muestra la ventana de Bitcoin - - - - &Export... - &Exporta... - - - - Export the data in the current tab to a file - - - - - &Encrypt Wallet - &Encriptar cartera + + There was an error trying to save the wallet data to the new location. + Ha habido un error al intentar guardar los datos del monedero a la nueva ubicación. - - Encrypt or decrypt wallet - Encriptar o decriptar cartera + + &Settings + &Configuración - - &Backup Wallet - + + &Change Passphrase + &Cambiar la contraseña - - - Backup wallet to another location - + + + %n active connection(s) to Bitcoin network + + %n conexión activa hacia la red Bitcoin + %n conexiones activas hacia la red Bitcoin + - - &Change Passphrase - &Cambiar la contraseña + + About &Qt + Acerca de &Qt - - Change the passphrase used for wallet encryption - Cambiar la contraseña utilizada para la encriptación de cartera + + Downloaded %1 blocks of transaction history. + Se han bajado %1 bloques de historial. - - &File - &Archivo + + &Export... + &Exportar… - - &Settings - &Configuración + + Encrypt or decrypt wallet + Cifrar o descifrar el monedero - + &Help - &Ayuda + A&yuda - + Tabs toolbar Barra de pestañas - + Actions toolbar - Barra de acciónes + Barra de acciones - + [testnet] [testnet] - - bitcoin-qt - bitcoin-qt - - - - %n active connection(s) to Bitcoin network - %n conexión activa hacia la red Bitcoin%n conexiones activas hacia la red Bitcoin - - - - Downloaded %1 of %2 blocks of transaction history. - Se han bajado %1 de %2 bloques de historial. + + Bitcoin client + cliente Bitcoin - - Downloaded %1 blocks of transaction history. - Se han bajado %1 bloques de historial. + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Descargado %1 de %2 bloques del historial de transacciones (%3% hecho). - + %n second(s) ago - Hace %n segundoHace %n segundos + + hace %n segundo + hace %n segundos + - + %n minute(s) ago - Hace %n minutoHace %n minutos + + hace %n minuto + hace %n minutos + - + %n hour(s) ago - Hace %n horaHace %n horas + + hace %n hora + hace %n horas + - + %n day(s) ago - Hace %n díaHace %n días + + hace %n día + hace %n días + - + Up to date Actualizado - + Catching up... Recuperando... - + Last received block was generated %1. - El ultimo bloque recibido fue generado %1. + El último bloque recibido fue 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? - Esta transacción supera el límite. Puedes seguir enviandola incluyendo una comisión de %s que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Quieres seguir con la transacción? + Esta transacción supera el límite. Puede seguir enviándola incluyendo una comisión de %1 que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Desea pagar esa tarifa? - - Sending... - Enviando... - - - + Sent transaction Transacción enviada - + Incoming transaction Transacción entrante - + Date: %1 Amount: %2 Type: %3 @@ -570,52 +549,115 @@ Tipo: %3 Dirección: %4 - + + Show or hide the Bitcoin window + Mostrar u ocultar la ventana Bitcoin + + + + Export the data in the current tab to a file + Exportar a un archivo los datos de esta pestaña + + + + &Encrypt Wallet + &Encriptar cartera + + + + &Backup Wallet + Copia de &respaldo del monedero... + + + + Backup wallet to another location + Copia de seguridad del monedero en otra ubicación + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - La cartera esta <b>encriptada</b> y actualmente <b>desbloqueda</b> + El monedero está <b>cifrado</b> y actualmente <b>desbloqueado</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> - La cartera esta <b>encriptada</b> y actualmente <b>bloqueda</b> + El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> + + + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para el cifrado del monedero + + + + Show/Hide &Bitcoin + Mostrar/ocultar &Bitcoin + + + + &File + &Archivo + + + + bitcoin-qt + bitcoin-qt + + + + ~%n block(s) remaining + + ~%n bloque restante + ~%n bloques restantes + - + Backup Wallet - + Copia de seguridad del monedero - + Wallet Data (*.dat) - + Datos del monedero (*.dat) - + Backup Failed - + La copia de seguridad ha fallado - - There was an error trying to save the wallet data to the new location. - + + Sending... + Enviando... + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: &Unidad en la que mostrar cantitades: - + Choose the default subdivision unit to show in the interface, and when sending coins Elige la subdivisión por defecto para mostrar cantidaded en la interfaz cuando se envien monedas - - Display addresses in transaction list - Muestra direcciones en el listado de movimientos + + &Display addresses in transaction list + &Muestra direcciones en el listado de movimientos + + + + Whether to show Bitcoin addresses in the transaction list + Mostrar o no las direcciones Bitcoin en la lista de transacciones @@ -633,7 +675,7 @@ Dirección: %4 The label associated with this address book entry - La etiqueta asociada con esta entrada de la guia + La etiqueta asociada con esta entrada en la libreta @@ -643,7 +685,7 @@ Dirección: %4 The address associated with this address book entry. This can only be modified for sending addresses. - La dirección asociada con esta entrada en la guia. Solo puede ser modificada para direcciónes de envío. + La dirección asociada con esta entrada en la guia. Solo puede ser modificada para direcciones de envío. @@ -668,129 +710,119 @@ Dirección: %4 The entered address "%1" is already in the address book. - La dirección introducia "%1" ya esta guardada en la guia. - - - - The entered address "%1" is not a valid bitcoin address. - La dirección introducida "%1" no es una dirección Bitcoin valida. + La dirección introducida "%1" ya está presente en la libreta de direcciones. Could not unlock wallet. - No se pudo desbloquear la cartera. + No se pudo desbloquear el monedero. New key generation failed. - La generación de nueva clave fallida. + Ha fallado la generación de la nueva clave. + + + + The entered address "%1" is not a valid bitcoin address. + La dirección introducida "%1" no es una dirección Bitcoin valida. MainOptionsPage - - &Start Bitcoin on window system startup - &Arranca Bitcoin al iniciar el sistema - - - + Automatically start Bitcoin after the computer is turned on Arranca Bitcoin cuando se encienda el ordenador - + &Minimize to the tray instead of the taskbar &Minimiza a la bandeja en vez de la barra de tareas - + Show only a tray icon after minimizing the window Muestra solo el icono de sistema cuando se minimize la ventana - + Map port using &UPnP Mapea el puerto usando &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Intenta abrir el puerto adecuado en el router automaticamente. Esta opcion solo funciona si el router soporta UPnP y esta activado. - + M&inimize on close M&inimiza a la bandeja al cerrar - + + &Start Bitcoin on window system startup + &Arranca Bitcoin al iniciar el sistema + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimiza la ventana en lugar de salir de la aplicación.Cuando esta opcion esta activa la aplicación solo se puede cerrar seleccionando Salir desde el menu. - + &Connect through SOCKS4 proxy: &Conecta atraves de un proxy SOCKS4: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Conecta a la red Bitcoin atraves de un proxy SOCKS4 (ej. para conectar con la red Tor) - + Proxy &IP: &IP Proxy: - + IP address of the proxy (e.g. 127.0.0.1) Dirección IP del proxy (ej. 127.0.0.1) - + &Port: &Puerto: - + Port of the proxy (e.g. 1234) Puerto del servidor proxy (ej. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Tarifa de transacción por kB opcional que ayuda a asegurarse de que sus transacciones se procesan rápidamente. La mayoría de las transacciones son de 1 KB. Tarifa de 0,01 recomendado. - + Pay transaction &fee Comision de &transacciónes - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Detach databases at shutdown + Desconectar las bases de datos al cerrar la aplicación + + + + 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. + Desconectar las bases de datos de bloques y direcciones al cerrar la aplicación. Implica que pueden moverse a otros directorios de datos pero ralentiza el cierre. El monedero siempre queda desconectado. MessagePage - - - 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - La dirección donde enviar el pago (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose adress from address book @@ -811,76 +843,91 @@ Dirección: %4 Alt+P Alt+P - - - Enter the message you want to sign here - - Click "Sign Message" to get signature - + Sign a message to prove you own this address - + + + + + &Copy to Clipboard + &Copiar al portapapeles + + + + Message + 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 los 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 firmando su identidad a través de ellos. Solo firme declaraciones totalmente detalladas con las que usted esté de acuerdo. + + + + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Introduce una dirección Bitcoin (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Enter the message you want to sign here + Introduzca el mensaje que desea firmar aquí &Sign Message - + &Firme mensaje - Copy the currently selected address to the system clipboard - Copia la dirección seleccionada al portapapeles + Copy the current signature to the system clipboard + Copiar la firma actual al portapapeles del sistema - - &Copy to Clipboard - &Copiar al portapapeles + + %1 is not a valid address. + La dirección introducida "%1" no es una dirección Bitcoin válida. Error signing - - - - - %1 is not a valid address. - + Error Private key for %1 is not available. - + Sign failed - + OptionsDialog - - Main - Principal - - - + Display Mostrado - + Options Opciones + + + Main + Principal + OverviewPage @@ -890,24 +937,19 @@ Dirección: %4 Desde - - Balance: - Balance: + + 0 + 0 - - 123.456 BTC - 123.456 BTC + + <b>Recent transactions</b> + <b>Movimientos recientes</b> Number of transactions: - Numero de movimientos: - - - - 0 - 0 + Número de movimientos: @@ -915,115 +957,122 @@ Dirección: %4 No confirmado(s): - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Cartera</span></p></body></html> + + Balance: + Saldo: - - <b>Recent transactions</b> - <b>Movimientos recientes</b> + + Wallet + Monedero Your current balance - Tu balance actual + Saldo actual Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - El total de las transacciones que faltan por confirmar y que no se cuentan para el total general. + Total de las transacciones que faltan por confirmar y que no se cuentan para el total general Total number of transactions in wallet - El numero total de movimiento en cartera + Número total de movimientos en el monedero QRCodeDialog - - Dialog - Cambiar contraseña + + PNG Images (*.png) + Imágenes PNG (*.png) - - QR Code - + + Message: + Mensaje: - - Request Payment - + + Amount: + Cuantía: - - Amount: - + + Label: + Label: - - BTC - + + Error encoding URI into QR Code. + Error al codificar la URI en el código QR. - - Label: - + + Resulting URI too long, try to reduce the text for label / message. + URI demasiado larga, trata de reducir el texto de la etiqueta / mensaje. - - Message: - Mensaje: + + Save Image... + - - &Save As... - + + Dialog + Cambiar contraseña - - Save Image... - + + QR Code + Código QR - - PNG Images (*.png) - + + Request Payment + Solicitud de pago + + + + BTC + + + + + &Save As... + &Guardar Como ... SendCoinsDialog + + + 123.456 BTC + 123.456 BTC + + + + Confirm the send action + Confirma el envío + - - - - - - - + + + + + + + Send Coins - Envia monedas + Envía monedas Send to multiple recipients at once - Envia a multiples destinatarios de una vez + Envía a multiples destinatarios de una vez @@ -1033,87 +1082,77 @@ p, li { white-space: pre-wrap; } Remove all transaction fields - + Eliminar todos los campos de las transacciones Clear all &Borra todos - - - Balance: - Balance: - - - - 123.456 BTC - 123.456 BTC - - - - Confirm the send action - Confirma el envio - &Send &Envía - - <b>%1</b> to %2 (%3) - <b>%1</b> to %2 (%3) + + Balance: + Saldo: - + Confirm send coins - Confirmar el envio de monedas + Confirmar el envío de monedas - + Are you sure you want to send %1? Estas seguro que quieres enviar %1? - + and y - - The recepient address is not valid, please recheck. + + <b>%1</b> to %2 (%3) + <b>%1</b> to %2 (%3) + + + + 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. - - Amount exceeds your balance - La cantidad sobrepasa tu saldo + + The amount exceeds your balance. + La cantidad sobrepasa su saldo. - - Total exceeds your balance when the %1 transaction fee is included - El total sobrepasa tu saldo cuando se incluyen %1 como tasa de envio + + 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 in one send operation - Tienes una dirección duplicada, solo puedes enviar a direcciónes individuales de una sola vez + + 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. - - Error: Transaction creation failed - Error: La transacción no se pudo crear + + Error: Transaction creation failed. + Error: ha fallado la creación de 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 fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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: transacción rechazada. Puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado así aquí. @@ -1126,7 +1165,7 @@ p, li { white-space: pre-wrap; } A&mount: - Cantidad: + Ca&ntidad: @@ -1137,22 +1176,12 @@ p, li { white-space: pre-wrap; } 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: - - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - La dirección donde enviar el pago (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Etiquete esta dirección para añadirla a la libreta Choose address from address book - Elije dirección de la guia + Elija una dirección de la libreta de direcciones @@ -1174,6 +1203,16 @@ p, li { white-space: pre-wrap; } Remove this recipient Elimina destinatario + + + &Label: + &Etiqueta: + + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + La dirección donde enviar el pago (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1183,277 +1222,338 @@ p, li { white-space: pre-wrap; } TransactionDesc - - Open for %1 blocks - Abierto hasta %1 bloques + + %1 confirmations + %1 confirmaciones + Open for %1 blocks + Abierto hasta %1 bloques + + + Open until %1 Abierto hasta %1 - + %1/offline? %1/fuera de linea? - + %1/unconfirmed %1/no confirmado - - %1 confirmations - %1 confirmaciónes - - - + <b>Status:</b> <b>Estado:</b> - + , has not been successfully broadcast yet , no ha sido emitido satisfactoriamente todavía - + , broadcast through %1 node , emitido mediante %1 nodo - + , broadcast through %1 nodes , emitido mediante %1 nodos - + <b>Date:</b> <b>Fecha:</b> - + <b>Source:</b> Generated<br> <b>Fuente:</b> Generado<br> - - + + <b>From:</b> <b>De:</b> - - unknown - desconocido - - - - - + + + <b>To:</b> <b>Para:</b> - + (yours, label: (tuya, etiqueta: - + + unknown + desconocido + + + (yours) (tuya) - - - - + + + + <b>Credit:</b> <b>Crédito:</b> - + (%1 matures in %2 more blocks) - (%1 madura en %1 bloques mas) + (%1 madura en %2 bloques mas) - + (not accepted) (no aceptada) - - - + + + <b>Debit:</b> <b>Débito:</b> - + <b>Transaction fee:</b> <b>Comisión transacción:</b> - + <b>Net amount:</b> <b>Cantidad total:</b> - + Message: Mensaje: - + Comment: Comentario: - + Transaction ID: - + - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Las monedas generadas deben esperar 120 bloques antes de ser gastadas. Cuando has generado este bloque se emitió a la red para ser agregado en la cadena de bloques. Si falla al incluirse en la cadena, cambiará a "no aceptado" y las monedas no se podrán gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque casi al mismo tiempo que el tuyo. 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 + + + Transaction details + Detalles de transacción + TransactionTableModel - + Date Fecha - + Type Tipo - + Address Dirección - + Amount Cantidad - - - Open for %n block(s) - Abierto por %n bloqueAbierto por %n bloques - - + Open until %1 Abierto hasta %1 - + Offline (%1 confirmations) - Fuera de linea (%1 confirmaciónes) + Fuera de linea (%1 confirmaciones) - + Unconfirmed (%1 of %2 confirmations) - No confirmado (%1 de %2 confirmaciónes) + No confirmado (%1 de %2 confirmaciones) - + Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) - - - Mined balance will be available in %n more blocks - El balance minado estará disponible en %n bloque masEl balance minado estará disponible en %n bloques mas - - + This block was not received by any other nodes and will probably not be accepted! Este bloque no ha sido recibido por otros nodos y probablemente no sea aceptado ! - + Generated but not accepted - Generado pero no acceptado + Generado pero no aceptado - + Received with Recibido con - - Received from - - - - + Sent to Enviado a - + Payment to yourself - Pago proprio + Pago propio - + Mined Minado - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. - Estado de transacción. Pasa el raton sobre este campo para ver el numero de confirmaciónes. + 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 cuando se recibió la transaccion + Fecha y hora de cuando se recibió la transacción. - + Type of transaction. Tipo de transacción. - + Destination address of transaction. - Dirección de destino para la transacción + Dirección de destino de la transacción. - + Amount removed from or added to balance. - Cantidad restada o añadida al balance + Cantidad retirada o añadida al balance. + + + + Open for %n block(s) + + Abierto por %n bloque + Abierto por %n bloques + + + + + Mined balance will be available in %n more blocks + + El balance minado estará disponible en %n bloque mas + El balance minado estará disponible en %n bloques mas + + + + + Received from + Recibidos de TransactionView + + + Copy address + Copiar dirección + + + + Copy label + Copiar etiqueta + + + + Edit label + Editar etiqueta + + + + Comma separated file (*.csv) + Archivos de columnas separadas por coma (*.csv) + + + + Confirmed + Confirmado + + + + ID + ID + + + + Error exporting + Error exportando + + + + Could not write to file %1. + No se pudo escribir en el archivo %1. + + + + Range: + Rango: + + + + Copy amount + Copiar cuantía + + + + to + para + @@ -1473,7 +1573,7 @@ p, li { white-space: pre-wrap; } This month - Esta mes + Este mes @@ -1518,108 +1618,53 @@ p, li { white-space: pre-wrap; } Enter address or label to search - Introduce una dirección o etiqueta para buscar + Introduzca una dirección o etiqueta que buscar Min amount - Cantidad minima - - - - Copy address - Copia dirección - - - - Copy label - Copia etiqueta - - - - Copy amount - - - - - Edit label - Edita etiqueta - - - - Show details... - Muestra detalles... + Cantidad mínima - + Export Transaction Data - Exportar datos de transacción - - - - Comma separated file (*.csv) - Archivos separados por coma (*.csv) - - - - Confirmed - Confirmado + Exportar datos de la transacción - + Date Fecha - + Type Tipo - + Label Etiqueta - + Address Dirección - + Amount Cantidad - - ID - ID - - - - Error exporting - Error exportando - - - - Could not write to file %1. - No se pudo escribir en el archivo %1. - - - - Range: - Rango: - - - - to - para + + Show details... + Muestra detalles... WalletModel - + Sending... Enviando... @@ -1627,380 +1672,520 @@ p, li { white-space: pre-wrap; } bitcoin-core - - Bitcoin version - Versión Bitcoin - - - + Usage: Uso: - - Send command to -server or bitcoind - Envia comando a bitcoin lanzado con -server u bitcoind - + + Loading block index... + Cargando el índice de bloques... - - List commands - Muestra comandos - + + Rescanning... + Rescaneando... + + + + Loading addresses... + Cargando direcciones... - + Get help for a command Recibir ayuda para un comando - - Options: - Opciones: - + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Preste atención a las conexiones en <puerto> (por defecto: 8333 o testnet: 18333) - - Specify configuration file (default: bitcoin.conf) - Especifica archivo de configuración (predeterminado: bitcoin.conf) + + Specify connection timeout (in milliseconds) + Especifica tiempo de espera para conexion (en milisegundos) - - Specify pid file (default: bitcoind.pid) - Especifica archivo pid (predeterminado: bitcoin.pid) - + + An error occurred while setting up the RPC port %i for listening: %s + - - Generate coins - Genera monedas + + Options: + Opciones: - - Don't generate coins - No generar monedas + + Specify pid file (default: bitcoind.pid) + Especifica archivo pid (predeterminado: bitcoin.pid) - - Start minimized - Arranca minimizado - + + Maintain at most <n> connections to peers (default: 125) + Mantener en la mayoría de las conexiones <n> a sus compañeros (por defecto: 125) - - Specify data directory - Especifica directorio para los datos - + + Add a node to connect to and attempt to keep the connection open + Añadir un nodo para conectarse y tratar de mantener la conexión abierta - - Specify connection timeout (in milliseconds) - Especifica tiempo de espera para conexion (en milisegundos) - + + Find peers using internet relay chat (default: 0) + Encontrar los pares utilizando Internet Relay Chat (por defecto: 0) - - Connect through socks4 proxy - Conecta mediante proxy socks4 - + + Find peers using DNS lookup (default: 1) + - - Allow DNS lookups for addnode and connect - Permite búsqueda DNS para addnode y connect - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + - - Listen for connections on <port> (default: 8333 or testnet: 18333) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + - - Maintain at most <n> connections to peers (default: 125) - + + Fee per KB to add to transactions you send + Tarifa por KB que añadir a las transacciones que envíe - - Add a node to connect to - Agrega un nodo para conectarse + + Run in the background as a daemon and accept commands + Correr como demonio y acepta comandos - - Connect only to the specified node - Conecta solo al nodo especificado + + Use the test network + Usa la red de pruebas - - Don't accept connections from outside - No aceptar conexiones desde el exterior - + + Output extra debugging information + - - Don't bootstrap list of peers using DNS - + + Prepend debug output with timestamp + Anteponer la salida de depuración, con indicación de la hora - + Threshold for disconnecting misbehaving peers (default: 100) - + Umbral para la desconexión de los compañeros se portan mal (por defecto: 100) - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + + Username for JSON-RPC connections + Usuario para las conexiones JSON-RPC + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + + Password for JSON-RPC connections + Contraseña para las conexiones JSON-RPC + - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + + Listen for JSON-RPC connections on <port> (default: 8332) + Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) + - - Don't attempt to use UPnP to map the listening port - No intentar usar UPnP para mapear el puerto de entrada + + Allow JSON-RPC connections from specified IP address + Permite conexiones JSON-RPC desde la dirección IP especificada - - Attempt to use UPnP to map the listening port - Intenta usar UPnP para mapear el puerto de escucha. - + + Usage + Uso - - Fee per kB to add to transactions you send - + + Invalid -proxy address + Dirección -proxy invalida - - Accept command line and JSON-RPC commands - Aceptar comandos consola y JSON-RPC - + + Invalid amount for -paytxfee=<amount> + Cantidad inválida para -paytxfee=<amount> - - Run in the background as a daemon and accept commands - Correr como demonio y acepta comandos + + Send commands to node running on <ip> (default: 127.0.0.1) + Envía comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - - Use the test network - Usa la red de pruebas - + + Upgrade wallet to latest format + Actualizar el monedero al último formato - - Output extra debugging information - + + How many blocks to check at startup (default: 2500, 0 = all) + Cuántos bloques para comprobar en el arranque (por defecto: 2500, 0 = todos) - - Prepend debug output with timestamp - + + How thorough the block verification is (0-6, default: 1) + Cómo completa la verificación del bloque es (0-6, por defecto: 1) - + Send trace/debug info to console instead of debug.log file - + Enviar rastrear/debug info a la consola en lugar de debug.log archivo - - Send trace/debug info to debugger - + + Error loading blkindex.dat + Error al cargar blkindex.dat - - Username for JSON-RPC connections - Usuario para las conexiones JSON-RPC - + + Error loading wallet.dat: Wallet corrupted + Error al cargar wallet.dat: el monedero está dañado - - Password for JSON-RPC connections - Contraseña para las conexiones JSON-RPC - + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Error al cargar wallet.dat: El monedero requiere una versión más reciente de Bitcoin - - Listen for JSON-RPC connections on <port> (default: 8332) - Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) + + Error loading wallet.dat + Error al cargar wallet.dat + + + + Wallet needed to be rewritten: restart Bitcoin to complete + El monedero ha necesitado ser reescrito. Reinicie Bitcoin para completar el proceso + + + + Cannot downgrade wallet + No se puede rebajar el monedero + + + + Cannot initialize keypool + No se puede inicializar grupo de teclas + + + + Cannot write default address + No se puede escribir la dirección por defecto + + + + 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) + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Precaución: Por favor revisa que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal Bitcoin no funcionará correctamente. + + + + Don't generate coins + No generar monedas - - Allow JSON-RPC connections from specified IP address - Permite conexiones JSON-RPC desde la dirección IP especificada + + Allow DNS lookups for addnode and connect + Permite búsqueda DNS para addnode y connect - - Send commands to node running on <ip> (default: 127.0.0.1) - Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) + + Start minimized + Arranca minimizado - - Set key pool size to <n> (default: 100) - Ajusta el numero de claves en reserva <n> (predeterminado: 100) + + Connect only to the specified node + Conecta solo al nodo especificado - - Rescan the block chain for missing wallet transactions - Rescanea la cadena de bloques para transacciones perdidas de la cartera + + Connect through socks4 proxy + Conecta mediante proxy socks4 - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) - - Use OpenSSL (https) for JSON-RPC connections - Usa OpenSSL (https) para las conexiones JSON-RPC - + + Bitcoin version + Versión de Bitcoin - - Server certificate file (default: server.cert) - Certificado del servidor (Predeterminado: server.cert) + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. - - Server private key (default: server.pem) - Clave privada del servidor (Predeterminado: server.pem) - + + Loading wallet... + Cargando monedero... - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Done loading + Generado pero no aceptado + + + + 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. + + + + Error: CreateThread(StartNode) failed + Error: CreateThread(StartNode) fallido + + + + Warning: Disk space is low + Atención: Poco espacio en el disco duro + + + + Send command to -server or bitcoind + Envíar comando a -server o bitcoind + + + + List commands + Muestra comandos - - This help message - Este mensaje de ayuda + + Specify configuration file (default: bitcoin.conf) + Especifica archivo de configuración (predeterminado: bitcoin.conf) - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. + + Generate coins + Genera monedas - - Loading addresses... - Cargando direcciónes... + + Show splash screen on startup (default: 1) + Mostrar pantalla de bienvenida en el inicio (por defecto: 1) - - Error loading addr.dat - + + Specify data directory + Especificar directorio para los datos - - Error loading blkindex.dat - + + Set database cache size in megabytes (default: 25) + Establecer el tamaño del caché de la base de datos en megabytes (por defecto: 25) - - Error loading wallet.dat: Wallet corrupted - + + Error + Error - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - + + Error: Transaction creation failed + Error: no se ha podido crear la transacción - - Wallet needed to be rewritten: restart Bitcoin to complete - + + Error: Wallet locked, unable to create transaction + Error: monedero bloqueado. Bitcoin es incapaz de crear las transacciones + + + + Accept connections from outside (default: 1) + Aceptar conexiones desde el exterior (predeterminado: 1) + + + + Set language, for example "de_DE" (default: system locale) + Establecer el idioma, por ejemplo, "es_ES" (por defecto: configuración regional del sistema) - Error loading wallet.dat - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Número de segundos que se mantienen los compañeros se portan mal en volver a conectarse (por defecto: 86400) - - Loading block index... - Cargando el index de bloques... + + Insufficient funds + Fondos insuficientes - - Loading wallet... - Cargando cartera... + + Use Universal Plug and Play to map the listening port (default: 1) + Usar UPnP para asignar el puerto de escucha (predeterminado: 1) - - Rescanning... - Rescaneando... + + Use Universal Plug and Play to map the listening port (default: 0) + Usar UPnP para asignar el puerto de escucha (predeterminado: 0) - - Done loading - Carga completa + + Accept command line and JSON-RPC commands + Aceptar comandos consola y JSON-RPC + - - Invalid -proxy address - Dirección -proxy invalida + + Invalid amount + Cuantía no válida - - Invalid amount for -paytxfee=<amount> - Cantidad inválida para -paytxfee=<amount> + + Bitcoin + Bitcoin - - 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. + + Send trace/debug info to debugger + Enviar rastrear / debug info al depurador - - Error: CreateThread(StartNode) failed - Error: CreateThread(StartNode) fallido + + Set key pool size to <n> (default: 100) + Ajusta el número de claves en reserva <n> (predeterminado: 100) + - - Warning: Disk space is low - Atención: Poco espacio en el disco duro + + Rescan the block chain for missing wallet transactions + Volver a examinar la cadena de bloques en busca de transacciones del monedero perdidas - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. + + Use OpenSSL (https) for JSON-RPC connections + Usa OpenSSL (https) para las conexiones JSON-RPC + - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Precaución: Por favor revisa que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal Bitcoin no funcionará correctamente. + + Server certificate file (default: server.cert) + Certificado del servidor (Predeterminado: server.cert) + - - beta - beta + + Server private key (default: server.pem) + Clave privada del servidor (Predeterminado: server.pem) + + + + + Detach block and address databases. Increases shutdown time (default: 0) + Desconectar las bases de datos de bloques y direcciones al cerrar la aplicación. El tiempo de parada de la aplicación aumentará. (Predeterminado: 0) + + + + Sending... + Enviando... + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + + This help message + Este mensaje de ayuda + + + + + Error loading addr.dat + Error cargando addr.dat + + + + To use the %s option + Para utilizar la opción %s + + + + Set database disk log size in megabytes (default: 100) + Base de datos de conjunto de discos de registro de tamaño en megabytes (por defecto: 100) + + + + 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 está sujeta a una tarifa de %s, bien por su cantidad, complejidad, o por el uso de fondos recientemente recibidos + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 fue rechazada. Esto puede pasar si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aquí. + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + %s, tiene que establecer rpcpassword en el archivo de configuración: ⏎ +%s ⏎ +Se recomienda utilizar la siguiente contraseña aleatoria: ⏎ +rpcuser = bitcoinrpc ⏎ +rpcpassword =%s ⏎ +(no es necesario para recordar esta contraseña) ⏎ +Si el archivo no existe se crea con los permisos de lectura y escritura solamente del propietario. ⏎ + + + + 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, se crea con permisos de propietario de lectura de sólo archivos. - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index d0986b691d..0b2fc3b335 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> - versión - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,16 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Copyright © 2009-2012 Bitcoin Developers + +Este es un software experimental. + +Distribuido bajo la licencia MIT/X11, vea el archivo adjunto +license.txt 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/), software criptográfico escrito por +Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. @@ -66,11 +77,6 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code Mostrar Código &QR - - - Sign a message to prove you own this address - Firmar un mensaje para provar que usted es dueño de esta dirección - &Sign Message @@ -87,63 +93,68 @@ This product includes software developed by the OpenSSL Project for use in the O &Borrar - + + Comma separated file (*.csv) + Archivos separados por coma (*.csv) + + + + Error exporting + Exportar errores + + + + Sign a message to prove you own this address + Firmar un mensaje para provar que usted es dueño de esta dirección + + + Copy address Copia dirección - + Copy label Copia etiqueta - + Edit Editar - + Delete Borrar - - Export Address Book Data - Exporta datos de la guia de direcciones - - - - Comma separated file (*.csv) - Archivos separados por coma (*.csv) - - - - Error exporting - Exportar errores - - - + Could not write to file %1. No se pudo escribir al archivo %1. + + + Export Address Book Data + Exporta datos de la guia de direcciones + AddressTableModel - + + (no label) + (sin etiqueta) + + + Label Etiqueta - + Address Dirección - - - (no label) - (sin etiqueta) - AskPassphraseDialog @@ -153,55 +164,45 @@ This product includes software developed by the OpenSSL Project for use in the O Cambiar contraseña - - - TextLabel - Cambiar contraseña: - - - - Enter passphrase - Introduce contraseña actual - - - + New passphrase Nueva contraseña - - Repeat new passphrase - Repite nueva contraseña: - - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Introduce la nueva contraseña para la billetera.<br/>Por favor utiliza un contraseña <b>de 10 o mas caracteres aleatorios</b>, u <b>ocho o mas palabras</b>. + + This operation needs your wallet passphrase to unlock the wallet. + Esta operación necesita la contraseña para desbloquear la billetera. - - Encrypt wallet - Codificar billetera + + Decrypt wallet + Decodificar cartera - - This operation needs your wallet passphrase to unlock the wallet. - Esta operación necesita la contraseña para desbloquear la billetera. + + + + + Wallet encryption failed + Falló la codificación de la billetera - - Unlock wallet - Desbloquea billetera + + + The supplied passphrases do not match. + Las contraseñas no coinciden. - - This operation needs your wallet passphrase to decrypt the wallet. - Esta operación necesita la contraseña para decodificar la billetara. + + TextLabel + Cambiar contraseña: - - Decrypt wallet - Decodificar cartera + + + + The passphrase entered for the wallet decryption was incorrect. + La contraseña introducida para decodificar la billetera es incorrecta. @@ -218,6 +219,26 @@ This product includes software developed by the OpenSSL Project for use in the O Confirm wallet encryption Confirma la codificación de cartera + + + Encrypt wallet + Codificar billetera + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Introduce la nueva contraseña para la billetera.<br/>Por favor utiliza un contraseña <b>de 10 o mas caracteres aleatorios</b>, u <b>ocho o mas palabras</b>. + + + + Unlock wallet + Desbloquea billetera + + + + This operation needs your wallet passphrase to decrypt the wallet. + Esta operación necesita la contraseña para decodificar la billetara. + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! @@ -225,17 +246,26 @@ Are you sure you wish to encrypt your wallet? ATENCIÓN: ¡Si codificas tu billetera y pierdes la contraseña perderás <b>TODOS TUS BITCOINS</b>!" ¿Seguro que quieres seguir codificando la billetera? - - - - Wallet encrypted - Billetera codificada - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus bitcoins de ser robados por malware que infecte su computador + + + Wallet unlock failed + Ha fallado el desbloqueo de la billetera + + + + Wallet decryption failed + Ha fallado la decodificación de la billetera + + + + Wallet passphrase was successfully changed. + La contraseña de billetera ha sido cambiada con éxito. + @@ -243,322 +273,334 @@ Are you sure you wish to encrypt your wallet? Precaucion: Mayúsculas Activadas - - - - - Wallet encryption failed - Falló la codificación de la billetera + + Enter passphrase + Introduce contraseña actual + + + + Repeat new passphrase + Repite nueva contraseña: + + + + + Wallet encrypted + Billetera codificada Wallet encryption failed due to an internal error. Your wallet was not encrypted. La codificación de la billetera falló debido a un error interno. Tu billetera no ha sido codificada. + + + BitcoinGUI - - - The supplied passphrases do not match. - Las contraseñas no coinciden. + + Synchronizing with network... + Sincronizando con la red... - - Wallet unlock failed - Ha fallado el desbloqueo de la billetera + + &Receive coins + &Recibir monedas - - - - The passphrase entered for the wallet decryption was incorrect. - La contraseña introducida para decodificar la billetera es incorrecta. + + Show the list of addresses for receiving payments + Muestra la lista de direcciónes utilizadas para recibir pagos - - Wallet decryption failed - Ha fallado la decodificación de la billetera + + [testnet] + [red-de-pruebas] - - Wallet passphrase was succesfully changed. - La contraseña de billetera ha sido cambiada con éxito. + + &Send coins + &Envíar monedas - - - BitcoinGUI - - Bitcoin Wallet - Billetera Bitcoin + + Bitcoin client + Cliente Bitcoin - - - Synchronizing with network... - Sincronizando con la red... + + Show or hide the Bitcoin window + Mostrar u ocultar la ventana de Bitcoin - - Block chain synchronization in progress - Sincronización de la cadena de bloques en progreso + + Export the data in the current tab to a file + Exportar los datos de la pestaña actual a un archivo - - &Overview - &Vista general + + Backup wallet to another location + Respaldar billetera en otra ubicación + + + + %n active connection(s) to Bitcoin network + + %n conexión activa hacia la red Bitcoin + %n conexiones activas hacia la red Bitcoin + - - Show general overview of wallet - Muestra una vista general de la billetera + + Downloaded %1 blocks of transaction history. + Descargado %1 bloques del historial de transacciones. + + + + %n second(s) ago + + Hace %n segundo + Hace %n segundos + + + + + %n minute(s) ago + + Hace %n minuto + Hace %n minutos + + + + + ~%n block(s) remaining + + %n bloque restante + %n bloques restantes + - - &Transactions - &Transacciónes + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Descargados %1 de %2 bloques del historial de transacciones (%3% hecho). - - Browse transaction history - Explora el historial de transacciónes + + Backup Wallet + Respaldar billetera - - &Address Book - &Guia de direcciónes + + Wallet Data (*.dat) + Datos de billetera (*.dat) - - Edit the list of stored addresses and labels - Edita la lista de direcciones y etiquetas almacenadas + + Backup Failed + Ha fallado el respaldo - - &Receive coins - &Recibir monedas + + &Options... + &Opciones - - Show the list of addresses for receiving payments - Muestra la lista de direcciónes utilizadas para recibir pagos + + Bitcoin Wallet + Billetera Bitcoin - - &Send coins - &Envíar monedas + + &Overview + &Vista general + + + + &Transactions + &Transacciónes + + + + &Address Book + &Guia de direcciónes + + + + Edit the list of stored addresses and labels + Edita la lista de direcciones y etiquetas almacenadas - + Send coins to a bitcoin address Enviar monedas a una dirección bitcoin - + Sign &message Firmar Mensaje - + Prove you control an address Suministre dirección de control - + E&xit &Salir - + Quit application Salir del programa - + &About %1 S&obre %1 - + Show information about Bitcoin Muestra información acerca de Bitcoin - - About &Qt - Acerca de - - - - Show information about Qt - Mostrar Información sobre QT - - - - &Options... - &Opciones - - - + Modify configuration options for bitcoin Modifica las opciones de configuración de bitcoin - - Open &Bitcoin - Abre &Bitcoin - - - - Show the Bitcoin window - Muestra la ventana de Bitcoin - - - - &Export... - &Exportar... - - - - Export the data in the current tab to a file - - - - - &Encrypt Wallet - &Codificar la billetera + + There was an error trying to save the wallet data to the new location. + - + Encrypt or decrypt wallet Codificar o decodificar la billetera - - &Backup Wallet - - - - - Backup wallet to another location - - - - + &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 - - &File - &Archivo + + About &Qt + Acerca de + + + + Show information about Qt + Mostrar Información sobre QT - &Settings - &Configuración + &File + &Archivo - + &Help &Ayuda - - Tabs toolbar - Barra de pestañas - - - + Actions toolbar Barra de acciónes - - [testnet] - [red-de-pruebas] + + Show general overview of wallet + Muestra una vista general de la billetera - - bitcoin-qt - bitcoin-qt - - - - %n active connection(s) to Bitcoin network - %n conexión activa hacia la red Bitcoin%n conexiones activas hacia la red Bitcoin + + Browse transaction history + Explora el historial de transacciónes - - Downloaded %1 of %2 blocks of transaction history. - Descargados %1 de %2 bloques del historial de transacciones. + + &Settings + &Configuración - - Downloaded %1 blocks of transaction history. - Descargado %1 bloques del historial de transacciones. - - - - %n second(s) ago - Hace %n segundoHace %n segundos - - - - %n minute(s) ago - Hace %n minutoHace %n minutos + + Tabs toolbar + Barra de pestañas - + %n hour(s) ago - Hace %n horaHace %n horas + + Hace %n hora + Hace %n horas + - + %n day(s) ago - Hace %n díaHace %n días + + Hace %n día + Hace %n días + - + Up to date Actualizado - + + &Export... + &Exportar... + + + + &Encrypt Wallet + &Codificar la billetera + + + + &Backup Wallet + &Respaldar billetera + + + + bitcoin-qt + bitcoin-qt + + + Catching up... Recuperando... - + Last received block was generated %1. El ultimo bloque recibido fue 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? Esta transacción supera el límite. Puedes seguir enviandola incluyendo una comisión de %s que se va a repartir entre los nodos que procesan su transacción y ayudan a mantener la red. ¿Quieres seguir con la transacción? - - Sending... - Enviando... - - - + Sent transaction Transacción enviada - + Incoming transaction Transacción entrante - + Date: %1 Amount: %2 Type: %3 @@ -570,52 +612,52 @@ Tipo: %3 Dirección: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> La billetera esta <b>codificada</b> y actualmente <b>desbloqueda</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> La billetera esta <b>codificada</b> y actualmente <b>bloqueda</b> - - Backup Wallet - - - - - Wallet Data (*.dat) - + + Sending... + Enviando... - - Backup Failed - + + Show/Hide &Bitcoin + Mostrar/Ocultar &Bitcoin - - There was an error trying to save the wallet data to the new location. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: &Unidad en la que mostrar cantitades: - + Choose the default subdivision unit to show in the interface, and when sending coins Elige la subdivisión por defecto para mostrar cantidaded en la interfaz cuando se envien monedas - - Display addresses in transaction list - Muestra direcciones en el listado de transaccioines + + &Display addresses in transaction list + &Muestra direcciones en el listado de transaccioines + + + + Whether to show Bitcoin addresses in the transaction list + @@ -660,21 +702,11 @@ Dirección: %4 Edit receiving address Editar dirección de recepción - - - Edit sending address - Editar dirección de envio - The entered address "%1" is already in the address book. La dirección introducida "%1" ya esta guardada en la libreta de direcciones. - - - The entered address "%1" is not a valid bitcoin address. - La dirección introducida "%1" no es una dirección Bitcoin valida. - Could not unlock wallet. @@ -685,162 +717,142 @@ Dirección: %4 New key generation failed. La generación de nueva clave falló. + + + Edit sending address + Editar dirección de envio + + + + The entered address "%1" is not a valid bitcoin address. + La dirección introducida "%1" no es una dirección Bitcoin valida. + MainOptionsPage - + &Start Bitcoin on window system startup &Inicia Bitcoin al iniciar el sistema - + Automatically start Bitcoin after the computer is turned on Inicia Bitcoin automáticamente despues de encender el computador - + &Minimize to the tray instead of the taskbar &Minimiza a la bandeja en vez de la barra de tareas - + Show only a tray icon after minimizing the window Muestra solo un ícono en la bandeja después de minimizar la ventana - + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. + Minimiza la ventana en lugar de salir del programa cuando la ventana se cierra. Cuando esta opción esta activa el programa solo se puede cerrar seleccionando Salir desde el menu. + + + Map port using &UPnP Direcciona el puerto usando &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Abre automáticamente el puerto del cliente Bitcoin en el router. Esto funciona solo cuando tu router es compatible con UPnP y está habilitado. - - M&inimize on close - M&inimiza a la bandeja al cerrar + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Conecta a la red Bitcoin a través de un proxy SOCKS4 (ej. cuando te conectas por la red Tor) - - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Minimiza la ventana en lugar de salir del programa cuando la ventana se cierra. Cuando esta opción esta activa el programa solo se puede cerrar seleccionando Salir desde el menu. + + Detach databases at shutdown + - - &Connect through SOCKS4 proxy: - &Conecta a traves de un proxy SOCKS4: + + 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. + - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Conecta a la red Bitcoin a través de un proxy SOCKS4 (ej. cuando te conectas por la red Tor) + + M&inimize on close + M&inimiza a la bandeja al cerrar + + + + &Connect through SOCKS4 proxy: + &Conecta a traves de un proxy SOCKS4: - + Proxy &IP: &IP Proxy: - + IP address of the proxy (e.g. 127.0.0.1) Dirección IP del servidor proxy (ej. 127.0.0.1) - + &Port: - &Puerto: + &Puerto: - + Port of the proxy (e.g. 1234) Puerto del servidor proxy (ej. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Comisión opcional por kB que ayuda a asegurar que sus transacciones son procesadas rápidamente. La mayoria de transacciones son de 1 KB. Se recomienda comisión de 0.01 + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Comisión opcional por kB que ayuda a asegurar que sus transacciones son procesadas rápidamente. La mayoria de transacciones son de 1 KB. Se recomienda comisión de 0.01. - + Pay transaction &fee Comisión de &transacciónes - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Comisión opcional por kB que ayuda a asegurar que sus transacciones son procesadas rápidamente. La mayoria de transacciones son de 1 KB. Se recomienda comisión de 0.01 - MessagePage - - Message - Mensaje - - - - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - - - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - La dirección donde enviar el pago (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + &Sign Message + & Firmar Mensaje - - Choose adress from address book - Elije dirección de la guia + + Copy the current signature to the system clipboard + - - Alt+A - Alt+A + + &Copy to Clipboard + &Copiar al portapapeles Paste address from clipboard Pega dirección desde portapapeles + + + 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. + + Alt+P Alt+P - - - Enter the message you want to sign here - Escriba el mensaje que desea firmar - - - - Click "Sign Message" to get signature - Click en "Firmar Mensage" para conseguir firma - - - - Sign a message to prove you own this address - Firmar un mensjage para probar que usted es dueño de esta dirección - - - - &Sign Message - & Firmar Mensaje - - - - Copy the currently selected address to the system clipboard - Copiar la dirección seleccionada al portapapeles - - - - &Copy to Clipboard - &Copiar al portapapeles - @@ -863,41 +875,76 @@ Dirección: %4 Sign failed Falló Firma - - - OptionsDialog - - Main - Principal + + Message + Mensaje - - Display - Mostrado + + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Introduce una dirección Bitcoin (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - Options - Opciones + + Choose adress from address book + Elije dirección de la guia - - - OverviewPage - - Form - Formulario + + Alt+A + Alt+A - - Balance: - Saldo: + + Enter the message you want to sign here + Escriba el mensaje que desea firmar - - 123.456 BTC - 123.456 BTC + + Click "Sign Message" to get signature + Click en "Firmar Mensage" para conseguir firma + + + + Sign a message to prove you own this address + Firmar un mensjage para probar que usted es dueño de esta dirección + + + + OptionsDialog + + + Options + Opciones + + + + Main + Principal + + + + Display + Mostrado + + + + OverviewPage + + + Form + Formulario + + + + Total number of transactions in wallet + Número total de transacciones en la billetera + + + + Balance: + Saldo: @@ -915,25 +962,12 @@ Dirección: %4 No confirmados: - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Cartera</span></p></body></html> + + Wallet + Cartera - + <b>Recent transactions</b> <b>Transacciones recientes</b> @@ -947,76 +981,81 @@ p, li { white-space: pre-wrap; } Total of transactions that have yet to be confirmed, and do not yet count toward the current balance Total de transacciones que no han sido confirmadas aun, y que no cuentan para el saldo actual. - - - Total number of transactions in wallet - Número total de transacciones en la billetera - QRCodeDialog - - Dialog - Cambiar contraseña + + Message: + Mensaje: - - QR Code - Código QR + + &Save As... + &Guardar Como... - - Request Payment - Solicitar Pago + + Error encoding URI into QR Code. + - - Amount: - Cantidad: + + Resulting URI too long, try to reduce the text for label / message. + - - BTC - BTC + + PNG Images (*.png) + Imágenes PNG (*.png) - - Label: - Etiqueta + + Save Image... + - - Message: - Mensaje: + + Amount: + Cantidad: - - &Save As... - &Guardar Como... + + Request Payment + Solicitar Pago - - Save Image... - + + BTC + BTC - - PNG Images (*.png) - + + Dialog + Cambiar contraseña + + + + QR Code + Código QR + + + + Label: + Etiqueta SendCoinsDialog - - - - - - - + + + + + + + Send Coins Enviar monedas @@ -1025,25 +1064,15 @@ p, li { white-space: pre-wrap; } Send to multiple recipients at once Enviar a múltiples destinatarios - - - &Add recipient... - &Agrega destinatario... - Remove all transaction fields Remover todos los campos de la transacción - - - Clear all - &Borra todos - Balance: - Balance: + Saldo: @@ -1061,73 +1090,88 @@ p, li { white-space: pre-wrap; } &Envía - + <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) - + Confirm send coins Confirmar el envio de monedas - + Are you sure you want to send %1? Estas seguro que quieres enviar %1? - + and y - - The recepient 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. - - Amount exceeds your balance - La cantidad sobrepasa tu saldo + + The amount exceeds your balance. + La cantidad sobrepasa tu saldo. - - Total exceeds your balance when the %1 transaction fee is included - El total sobrepasa tu saldo cuando se incluyen %1 como tasa de envio + + 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 in one send operation - Tienes una dirección duplicada, solo puedes enviar a direcciónes individuales de una sola vez + + &Add recipient... + &Agrega destinatario... - - Error: Transaction creation failed - Error: La transacción no se pudo crear + + Clear all + &Borra todos - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 recipient address is not valid, please recheck. + La dirección de destinatarion no es valida, comprueba otra vez. + + + + 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. + + + + Error: Transaction creation failed. + Error: La transacción no se pudo crear. + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. SendCoinsEntry - - - Form - Envio - A&mount: Cantidad: + + + &Label: + &Etiqueta: + + + + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Introduce una dirección Bitcoin (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Pay &To: @@ -1139,31 +1183,11 @@ p, li { white-space: pre-wrap; } 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: - - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - La dirección donde enviar el pago (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - - Choose address from address book - Elije dirección de la guia - Alt+A Alt+A - - - Paste address from clipboard - Pega dirección desde portapapeles - Alt+P @@ -1175,151 +1199,166 @@ p, li { white-space: pre-wrap; } Elimina destinatario - - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Introduce una dirección Bitcoin (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + La dirección donde enviar el pago (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Form + Envio + + + + Choose address from address book + Elije dirección de la guia + + + + Paste address from clipboard + Pega dirección desde portapapeles TransactionDesc - - Open for %1 blocks - Abierto hasta %1 bloques + + Transaction ID: + ID de Transacción: + + + + unknown + desconocido - Open until %1 - Abierto hasta %1 + Open for %1 blocks + Abierto hasta %1 bloques - + %1/offline? %1/fuera de linea? - + %1/unconfirmed %1/no confirmado - - %1 confirmations - %1 confirmaciónes - - - + <b>Status:</b> <b>Estado:</b> - + , has not been successfully broadcast yet , no ha sido emitido satisfactoriamente todavía - + , broadcast through %1 node , emitido mediante %1 nodo - + , broadcast through %1 nodes , emitido mediante %1 nodos - + <b>Date:</b> <b>Fecha:</b> - + <b>Source:</b> Generated<br> <b>Fuente:</b> Generado<br> - - + + <b>From:</b> <b>De:</b> - - unknown - desconocido - - - - - + + + <b>To:</b> <b>Para:</b> - + (yours, label: - (tuya, etiqueta: + (tuya, etiqueta: - + (yours) (tuya) - - - - + + + + <b>Credit:</b> <b>Crédito:</b> - + (%1 matures in %2 more blocks) (%1 madura en %2 bloques mas) - + (not accepted) (no aceptada) - - - + + + <b>Debit:</b> <b>Débito:</b> - + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Las monedas generadas deben esperar 120 bloques antes de ser gastadas. Cuando has generado este bloque se emitió a la red para ser agregado en la cadena de bloques. Si falla al incluirse en la cadena, cambiará a "no aceptado" y las monedas no se podrán gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque casi al mismo tiempo que el tuyo. + + + + Open until %1 + Abierto hasta %1 + + + + %1 confirmations + %1 confirmaciónes + + + <b>Transaction fee:</b> <b>Comisión transacción:</b> - + <b>Net amount:</b> <b>Cantidad total:</b> - + Message: Mensaje: - + Comment: Comentario: - - - Transaction ID: - ID de Transacción: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Las monedas generadas deben esperar 120 bloques antes de ser gastadas. Cuando has generado este bloque se emitió a la red para ser agregado en la cadena de bloques. Si falla al incluirse en la cadena, cambiará a "no aceptado" y las monedas no se podrán gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque casi al mismo tiempo que el tuyo. - TransactionDescDialog @@ -1337,123 +1376,159 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Fecha - + Type Tipo - + Address Dirección - + Amount Cantidad - + Open for %n block(s) - Abierto por %n bloqueAbierto por %n bloques + + Abierto por %n bloque + Abierto por %n bloques + - + Open until %1 Abierto hasta %1 - + Offline (%1 confirmations) Fuera de linea (%1 confirmaciónes) - + Unconfirmed (%1 of %2 confirmations) No confirmado (%1 de %2 confirmaciónes) - + Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) - - - Mined balance will be available in %n more blocks - El balance minado estará disponible en %n bloque masEl balance minado estará disponible en %n bloques mas - - + This block was not received by any other nodes and will probably not be accepted! Este bloque no ha sido recibido por otros nodos y probablemente no sea aceptado ! - + Generated but not accepted Generado pero no acceptado - + Received with Recibido con - + Received from Recibido de - + Sent to Enviado a - + Payment to yourself Pagar a usted mismo - + Mined Minado - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. Estado de transacción. Pasa el raton sobre este campo para ver el numero de confirmaciónes. - + Date and time that the transaction was received. Fecha y hora cuando se recibió la transaccion - + Type of transaction. Tipo de transacción. - + Destination address of transaction. Dirección de destino para la transacción - + Amount removed from or added to balance. Cantidad restada o añadida al balance + + + Mined balance will be available in %n more blocks + + El balance minado estará disponible en %n bloque mas + El balance minado estará disponible en %n bloques mas + + TransactionView + + + Received with + Recibido con + + + + Comma separated file (*.csv) + Archivos separados por coma (*.csv) + + + + Date + Fecha + + + + Amount + Cantidad + + + + Error exporting + Error exportando + + + + Copy amount + Copiar Cantidad + @@ -1490,36 +1565,56 @@ p, li { white-space: pre-wrap; } Range... Rango... - - - Received with - Recibido con - Sent to Enviado a + + + Label + Etiqueta + To yourself A ti mismo + + + ID + ID + Mined Minado + + + Could not write to file %1. + No se pudo escribir en el archivo %1. + Other Otra + + + Range: + Rango: + Enter address or label to search Introduce una dirección o etiqueta para buscar + + + to + para + Min amount @@ -1535,91 +1630,41 @@ p, li { white-space: pre-wrap; } Copy label Copia etiqueta - - - Copy amount - Copiar Cantidad - Edit label Edita etiqueta - - Show details... - Muestra detalles... - - - + Export Transaction Data Exportar datos de transacción - - Comma separated file (*.csv) - Archivos separados por coma (*.csv) - - - + Confirmed Confirmado - - Date - Fecha + + Show details... + Muestra detalles... - + Type Tipo - - Label - Etiqueta - - - + Address Dirección - - - Amount - Cantidad - - - - ID - ID - - - - Error exporting - Error exportando - - - - Could not write to file %1. - No se pudo escribir en el archivo %1. - - - - Range: - Rango: - - - - to - para - WalletModel - + Sending... Enviando... @@ -1627,380 +1672,515 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Versión Bitcoin - - Usage: - Uso: + + Usage + Uso - - Send command to -server or bitcoind - Envia comando a bitcoin lanzado con -server u bitcoind + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. - - List commands - Muestra comandos - + + Loading wallet... + Cargando cartera... - - Get help for a command - Recibir ayuda para un comando - + + Cannot downgrade wallet + - + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Rescanning... + Rescaneando... + + + + Done loading + Carga completa + + + + Invalid amount for -paytxfee=<amount> + Cantidad inválida para -paytxfee=<amount> + + + Options: Opciones: - + Specify configuration file (default: bitcoin.conf) Especifica archivo de configuración (predeterminado: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Especifica archivo pid (predeterminado: bitcoin.pid) - + Generate coins Genera monedas - + Don't generate coins No generar monedas - - Start minimized - Arranca minimizado - - - - + Specify data directory Especifica directorio para los datos - + Specify connection timeout (in milliseconds) Especifica tiempo de espera para conexion (en milisegundos) - - Connect through socks4 proxy - Conecta mediante proxy socks4 + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Escuchar por conecciones en <puerto> (Por defecto: 8333 o red de prueba: 18333) + + + + Maintain at most <n> connections to peers (default: 125) + Mantener al menos <n> conecciones por cliente (por defecto: 125) + + + + Send command to -server or bitcoind + Envia comando a bitcoin lanzado con -server u bitcoind - - Allow DNS lookups for addnode and connect - Permite búsqueda DNS para addnode y connect + + List commands + Muestra comandos - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Escuchar por conecciones en <puerto> (Por defecto: 8333 o red de prueba: 18333) + + Find peers using internet relay chat (default: 0) + Buscar pares usando 'internet relay chat (IRC)' (predeterminado: 0) - - Maintain at most <n> connections to peers (default: 125) - Mantener al menos <n> conecciones por cliente (por defecto: 125) + + Threshold for disconnecting misbehaving peers (default: 100) + Umbral de desconección de clientes con mal comportamiento (por defecto: 100) - - Add a node to connect to - Agrega un nodo para conectarse + + Invalid -proxy address + Dirección -proxy invalida + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Precaución: Por favor revise que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal configurado Bitcoin no funcionará correctamente. + + + + Password for JSON-RPC connections + Contraseña para las conexiones JSON-RPC - - Connect only to the specified node - Conecta solo al nodo especificado + + Prepend debug output with timestamp + Anteponer salida de depuracion con marca de tiempo + + + + Send trace/debug info to console instead of debug.log file + Enviar informacion de seguimiento a la consola en vez del archivo debug.log + + + + Start minimized + Arranca minimizado + + + Error loading wallet.dat: Wallet corrupted + Error cargando wallet.dat: Billetera corrupta + + + + Error: CreateThread(StartNode) failed + Error: CreateThread(StartNode) fallido + + + + Error loading wallet.dat + Error cargando wallet.dat + + + + To use the %s option + + - Don't accept connections from outside - No aceptar conexiones desde el exterior + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + + + + + An error occurred while setting up the RPC port %i for listening: %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. + + + + + Show splash screen on startup (default: 1) + + + + + Set database cache size in megabytes (default: 25) + + + + + Set database disk log size in megabytes (default: 100) + + + + + Connect through socks4 proxy + Conecta mediante proxy socks4 - - Don't bootstrap list of peers using DNS - + + Accept connections from outside (default: 1) + - - Threshold for disconnecting misbehaving peers (default: 100) - Umbral de desconección de clientes con mal comportamiento (por defecto: 100) + + Set language, for example "de_DE" (default: system locale) + - + + Find peers using DNS lookup (default: 1) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - - Don't attempt to use UPnP to map the listening port - No intentar usar UPnP para mapear el puerto de entrada - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Attempt to use UPnP to map the listening port - Intenta usar UPnP para mapear el puerto de escucha. + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + Actualizar billetera al formato actual + + + + Rescan the block chain for missing wallet transactions + Rescanea la cadena de bloques para transacciones perdidas de la cartera - - Fee per kB to add to transactions you send - Comisión por kB para adicionarla a las transacciones enviadas + + How many blocks to check at startup (default: 2500, 0 = all) + - - Accept command line and JSON-RPC commands - Aceptar comandos consola y JSON-RPC + + How thorough the block verification is (0-6, default: 1) + + + + + Server certificate file (default: server.cert) + Certificado del servidor (Predeterminado: server.cert) - - Run in the background as a daemon and accept commands - Correr como demonio y acepta comandos + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Use the test network - Usa la red de pruebas + + Connect only to the specified node + Conecta solo al nodo especificado - + Output extra debugging information Adjuntar informacion extra de depuracion - - Prepend debug output with timestamp - Anteponer salida de depuracion con marca de tiempo + + Usage: + Uso: - - Send trace/debug info to console instead of debug.log file - Enviar informacion de seguimiento a la consola en vez del archivo debug.log + + Loading addresses... + Cargando direcciónes... + + + + Loading block index... + Cargando el index de bloques... + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. - + + Get help for a command + Recibir ayuda para un comando + + + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + Precaución: -paytxfee es muy alta. Esta es la comisión que pagarás si envias una transacción. + + + + Warning: Disk space is low + Atención: Poco espacio en el disco duro + + + + Allow DNS lookups for addnode and connect + Permite búsqueda DNS para addnode y connect + + + + + 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 + + + + Use Universal Plug and Play to map the listening port (default: 1) + Intenta usar UPnP para mapear el puerto de escucha (default: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Intenta usar UPnP para mapear el puerto de escucha (default: 0) + + + + Fee per KB to add to transactions you send + Comisión por kB para adicionarla a las transacciones enviadas + + + + Accept command line and JSON-RPC commands + Aceptar comandos consola y JSON-RPC + + + + + Run in the background as a daemon and accept commands + Correr como demonio y acepta comandos + + + + + Use the test network + Usa la red de pruebas + + + + Send trace/debug info to debugger Enviar informacion de seguimiento al depurador - + Username for JSON-RPC connections 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: 8332) Escucha conexiones JSON-RPC en el puerto <port> (predeterminado: 8332) - + Allow JSON-RPC connections from specified IP address Permite conexiones JSON-RPC desde la dirección IP especificada - + Send commands to node running on <ip> (default: 127.0.0.1) Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - + Set key pool size to <n> (default: 100) Ajusta el numero de claves en reserva <n> (predeterminado: 100) - - Rescan the block chain for missing wallet transactions - Rescanea la cadena de bloques para transacciones perdidas de la cartera - - - - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) - + Use OpenSSL (https) for JSON-RPC connections Usa OpenSSL (https) para las conexiones JSON-RPC - - Server certificate file (default: server.cert) - Certificado del servidor (Predeterminado: server.cert) - - - - + Server private key (default: server.pem) Clave privada del servidor (Predeterminado: server.pem) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Cifrados aceptados (Predeterminado: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - + This help message Este mensaje de ayuda - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. - - - - - Loading addresses... - Cargando direcciónes... - - - + Error loading addr.dat Error cargando addr.dat - + Error loading blkindex.dat Error cargando blkindex.dat - - Error loading wallet.dat: Wallet corrupted - Error cargando wallet.dat: Billetera corrupta - - - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Error cargando wallet.dat: Billetera necesita una vercion reciente de Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete La billetera necesita ser reescrita: reinicie Bitcoin para completar - - Error loading wallet.dat - Error cargando wallet.dat - - - - Loading block index... - Cargando el index de bloques... - - - - Loading wallet... - Cargando cartera... - - - - Rescanning... - Rescaneando... - - - - Done loading - Carga completa + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. - - Invalid -proxy address - Dirección -proxy invalida + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Error: Esta transación requiere una comisión de al menos %s por su cantidad, complejidad o uso de fondos recibidos recientemente. - - Invalid amount for -paytxfee=<amount> - Cantidad inválida para -paytxfee=<amount> + + Bitcoin + Bitcoin - - 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. + + Error: Transaction creation failed + Error: La transacción no se pudo crear - - Error: CreateThread(StartNode) failed - Error: CreateThread(StartNode) fallido + + Error: Wallet locked, unable to create transaction + Error: Billetera bloqueada, no es posible crear la transacción - - Warning: Disk space is low - Atención: Poco espacio en el disco duro + + Insufficient funds + Fondos insuficientes - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. + + Invalid amount + Cantidad inválida - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Precaución: Por favor revise que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal configurado Bitcoin no funcionará correctamente. + + Sending... + Enviando... - - beta - beta + + Error + Error - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_et.ts b/src/qt/locale/bitcoin_et.ts index a14037f069..47c5d04bc6 100644 --- a/src/qt/locale/bitcoin_et.ts +++ b/src/qt/locale/bitcoin_et.ts @@ -1,19 +1,21 @@ - + + + UTF-8 AboutDialog About Bitcoin - + <b>Bitcoin</b> version - + - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -29,17 +31,17 @@ This product includes software developed by the OpenSSL Project for use in the O Address Book - + Aadressiraamat These are your Bitcoin 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. - + Double-click to edit address or label - + @@ -54,7 +56,7 @@ This product includes software developed by the OpenSSL Project for use in the O Copy the currently selected address to the system clipboard - + @@ -64,22 +66,22 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + Delete the currently selected address from the list. Only sending addresses can be deleted. - + @@ -87,60 +89,60 @@ This product includes software developed by the OpenSSL Project for use in the O &Kustuta - + Copy address - + - + Copy label - + - + Edit - + Muuda - + Delete - + Kustuta - + Export Address Book Data - + - + Comma separated file (*.csv) - + - + Error exporting Viga eksportimisel - + Could not write to file %1. - + AddressTableModel - + Label Silt - + Address Aadress - + (no label) (silti pole) @@ -153,93 +155,86 @@ This product includes software developed by the OpenSSL Project for use in the O Dialoog - - - TextLabel - - - - + Enter passphrase - + - + New passphrase - + - + Repeat new passphrase - + + + + + TextLabel + 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 BITCOINS</b>! Are you sure you wish to encrypt your wallet? - + Wallet encrypted - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - - Warning: The Caps Lock key is on. - + @@ -247,371 +242,409 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - + The supplied passphrases do not match. - + Wallet unlock failed - + The passphrase entered for the wallet decryption was incorrect. - + Wallet decryption failed - + - Wallet passphrase was succesfully changed. - + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on. + BitcoinGUI - + Bitcoin Wallet - - - - - - Synchronizing with network... - + - - Block chain synchronization in progress - - - - + &Overview &Ülevaade - + Show general overview of wallet - + - + &Transactions &Tehingud - + Browse transaction history Sirvi tehingute ajalugu - + &Address Book &Aadressiraamat - + Edit the list of stored addresses and labels - + - + &Receive coins - + - + Show the list of addresses for receiving payments - + - + &Send coins - + - + Send coins to a bitcoin address - + - + Sign &message - + - + Prove you control an address - + - + E&xit - + - + Quit application - + - + &About %1 - + - + Show information about Bitcoin - + - + About &Qt - + - + Show information about Qt - + - + &Options... &Valikud... - + Modify configuration options for bitcoin - + - - Open &Bitcoin - + + Show/Hide &Bitcoin + - - Show the Bitcoin window - + + Show or hide the Bitcoin window + - + &Export... &Ekspordi... - + Export the data in the current tab to a file - + - + &Encrypt Wallet - + - + Encrypt or decrypt wallet - + - + &Backup Wallet - + - + Backup wallet to another location - + - + &Change Passphrase - + - + Change the passphrase used for wallet encryption - + - + &File &Fail - + &Settings &Seaded - + &Help &Abiinfo - + Tabs toolbar - + - + Actions toolbar - + - + [testnet] - + + + + + Bitcoin client + - + bitcoin-qt - + - + %n active connection(s) to Bitcoin network - + + + + + + + + Synchronizing with network... + + + + + ~%n block(s) remaining + + + + - - Downloaded %1 of %2 blocks of transaction history. - + + 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? - + - + Sending... - + - + Sent transaction - + - + Incoming transaction - + - + Date: %1 Amount: %2 Type: %3 Address: %4 - + - + 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. - + + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: - + - + Choose the default subdivision unit to show in the interface, and when sending coins - + - - Display addresses in transaction list - + + &Display addresses in transaction list + + + + + Whether to show Bitcoin addresses in the transaction list + @@ -629,145 +662,150 @@ Address: %4 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 bitcoin address. - + Could not unlock wallet. - + New key generation failed. - + MainOptionsPage - + &Start Bitcoin on window system startup - + - + Automatically start Bitcoin after the computer is turned on - + - + &Minimize to the tray instead of the taskbar - + - + Show only a tray icon after minimizing the window - + - Map port using &UPnP - + M&inimize on close + - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - + 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 - + Map port using &UPnP + - 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. - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + - + &Connect through SOCKS4 proxy: - + - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + - + Proxy &IP: - + - + IP address of the proxy (e.g. 127.0.0.1) - + - + &Port: - + - + Port of the proxy (e.g. 1234) - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + - + Pay transaction &fee - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Detach databases at shutdown + + + + + 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. + @@ -775,62 +813,62 @@ Address: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Choose adress from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - + Copy the current signature to the system clipboard + @@ -842,40 +880,40 @@ Address: %4 Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + OptionsDialog - + Main - + - + Display - + - + Options - + @@ -883,66 +921,52 @@ Address: %4 Form - + Balance: - - - - - 123.456 BTC - + Number of transactions: - + 0 - + Unconfirmed: - - - - - 0 BTC - + - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - + + Wallet + - + <b>Recent transactions</b> - + Your current balance - + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + Total number of transactions in wallet - + @@ -955,157 +979,167 @@ p, li { white-space: pre-wrap; } QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: Sõnum: - + &Save As... - + + + + + Error encoding URI into QR Code. + + + + + Resulting URI too long, try to reduce the text for label / message. + - + Save Image... - + - + PNG Images (*.png) - + SendCoinsDialog - - - - - - - + + + + + + + Send Coins - + Send to multiple recipients at once - + &Add recipient... - + Remove all transaction fields - + Clear all - + Balance: - + 123.456 BTC - + Confirm the send action - + &Send - + - + <b>%1</b> to %2 (%3) - + - + Confirm send coins - + - + Are you sure you want to send %1? - + - + and - + - - The recepient address is not valid, please recheck. - + + The recipient address is not valid, please recheck. + - + The amount to pay must be larger than 0. - + - - Amount exceeds your balance - + + The amount exceeds your balance. + - - 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 in one 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. + @@ -1113,204 +1147,204 @@ p, li { white-space: pre-wrap; } 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + TransactionDesc - + Open for %1 blocks - + - + Open until %1 - + - + %1/offline? - + - + %1/unconfirmed - + - + %1 confirmations - + - + <b>Status:</b> - + - + , has not been successfully broadcast yet - + - + , broadcast through %1 node - + - + , broadcast through %1 nodes - + - + <b>Date:</b> - + - + <b>Source:</b> Generated<br> - + - - + + <b>From:</b> - + - + unknown tundmatu - - - + + + <b>To:</b> - + - + (yours, label: - + - + (yours) - + - - - - + + + + <b>Credit:</b> - + - + (%1 matures in %2 more blocks) - + - + (not accepted) - + - - - + + + <b>Debit:</b> - + - + <b>Transaction fee:</b> - + - + <b>Net amount:</b> - + - + Message: Sõnum: - + Comment: Kommentaar: - + Transaction ID: - + - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + @@ -1318,130 +1352,136 @@ p, li { white-space: pre-wrap; } Transaction details - + This pane shows a detailed description of the transaction - + TransactionTableModel - + Date Kuupäev - + Type Tüüp - + Address Aadress - + Amount Kogus - + Open for %n block(s) - + + + + - + Open until %1 - + - + Offline (%1 confirmations) - + - + Unconfirmed (%1 of %2 confirmations) - + - + Confirmed (%1 confirmations) - + - + Mined balance will be available in %n more blocks - + + + + - + 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. - + @@ -1450,514 +1490,653 @@ p, li { white-space: pre-wrap; } 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 - + Edit label - + Show details... - + - + Export Transaction Data - + - + Comma separated file (*.csv) - + - + Confirmed - + - + Date Kuupäev - + Type Tüüp - + Label Silt - + Address Aadress - + Amount Kogus - + ID - + - + Error exporting Viga eksportimisel - + Could not write to file %1. - + - + Range: - + - + to - + WalletModel - + Sending... - + bitcoin-core - + + Error: Wallet locked, 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... + + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 + + + + + Insufficient funds + + + + + Warning: Disk space is low + + + + + 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=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + + + + + Error + + + + + An error occurred while setting up the RPC port %i for listening: %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. + + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + + + Bitcoin version - + - + Usage: - + - + Send command to -server or bitcoind - + - + List commands - + - + Get help for a command - + - + Options: - + - + Specify configuration file (default: bitcoin.conf) - + - + Specify pid file (default: bitcoind.pid) - + - + Generate coins - + - + Don't generate coins - + - + Start minimized - + - + + Show splash screen on startup (default: 1) + + + + Specify data directory - + - + + Set database cache size in megabytes (default: 25) + + + + + Set database disk log size in megabytes (default: 100) + + + + Specify connection timeout (in milliseconds) - + - + Connect through socks4 proxy - + - + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - - Add a node to connect to - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node - + - - Don't accept connections from outside - + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + - - Don't bootstrap list of peers using DNS - + + Find peers using DNS lookup (default: 1) + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - - Don't attempt to use UPnP to map the listening port - + + Use Universal Plug and Play to map the listening port (default: 1) + - - Attempt to use UPnP to map the listening port - + + Use Universal Plug and Play to map the listening port (default: 0) + - - Fee per kB to add to transactions you send - + + Detach block and address databases. Increases shutdown time (default: 0) + - + + Fee per KB to add to transactions you send + + + + Accept command line and JSON-RPC commands - + - + Run in the background as a daemon and accept commands - + - + Use the test network - + - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections - + - + Password for JSON-RPC connections - + - + Listen for JSON-RPC connections on <port> (default: 8332) - + - + Allow JSON-RPC connections from specified IP address - + - + Send commands to node running on <ip> (default: 127.0.0.1) - + - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) - + - + Rescan the block chain for missing wallet transactions - + - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin 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) - + - + This help message - + - + + Usage + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + + Bitcoin + + + + Loading addresses... - + - + Error loading addr.dat - + - + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + - + Wallet needed to be rewritten: restart Bitcoin to complete - + - + Error loading wallet.dat - + - - Loading block index... - + + Cannot downgrade wallet + - - Loading wallet... - + + Cannot initialize keypool + + + + + Cannot write default address + - + Rescanning... - + - + Done loading - + - + Invalid -proxy address - + - + Invalid amount for -paytxfee=<amount> - + - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + - + Error: CreateThread(StartNode) failed - + - - Warning: Disk space is low - - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - - - - - beta - + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_eu_ES.ts b/src/qt/locale/bitcoin_eu_ES.ts index b4e71af2e2..fd284eed82 100644 --- a/src/qt/locale/bitcoin_eu_ES.ts +++ b/src/qt/locale/bitcoin_eu_ES.ts @@ -1,11 +1,13 @@ - + + + UTF-8 AboutDialog About Bitcoin - + @@ -13,7 +15,7 @@ <b>Bitcoin</b> Bertsio - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -34,12 +36,12 @@ This product includes software developed by the OpenSSL Project for use in the O These are your Bitcoin 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. - + Double-click to edit address or label - + @@ -49,37 +51,37 @@ This product includes software developed by the OpenSSL Project for use in the O &New Address... - + Copy the currently selected address to the system clipboard - + &Copy to Clipboard - + Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + Delete the currently selected address from the list. Only sending addresses can be deleted. - + @@ -87,62 +89,62 @@ This product includes software developed by the OpenSSL Project for use in the O &Ezabatu - + Copy address - + - + Copy label - + - + Edit - + - + Delete - + Ezabatu - + Export Address Book Data - + - + Comma separated file (*.csv) - + - + Error exporting - + - + Could not write to file %1. - + AddressTableModel - - Label - - - - + Address Helbidea - + + Label + + + + (no label) - + @@ -150,96 +152,89 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - + - - - TextLabel - - - - + Enter passphrase - + - + New passphrase - + - + Repeat new passphrase - + + + + + TextLabel + 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 BITCOINS</b>! Are you sure you wish to encrypt your wallet? - + Wallet encrypted - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - - Warning: The Caps Lock key is on. - + @@ -247,371 +242,409 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - + The supplied passphrases do not match. - + Wallet unlock failed - + The passphrase entered for the wallet decryption was incorrect. - + Wallet decryption failed - + - Wallet passphrase was succesfully changed. - + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on. + BitcoinGUI - + Bitcoin Wallet - - - - - - Synchronizing with network... - + - - Block chain synchronization in progress - - - - + &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 - + - + Send coins to a bitcoin address - + - + Sign &message - + - + Prove you control an address - + - + E&xit - + - + Quit application - + - + &About %1 - + - + Show information about Bitcoin - + - + About &Qt - + - + Show information about Qt - + - + &Options... - + - + Modify configuration options for bitcoin - + - - Open &Bitcoin - + + Show/Hide &Bitcoin + - - Show the Bitcoin window - + + Show or hide the Bitcoin window + - + &Export... - + - + Export the data in the current tab to a file - + - + &Encrypt Wallet - + - + Encrypt or decrypt wallet - + - + &Backup Wallet - + - + Backup wallet to another location - + - + &Change Passphrase - + - + Change the passphrase used for wallet encryption - + - + &File - + - + &Settings - + - + &Help - + - + Tabs toolbar - + - + Actions toolbar - + - + [testnet] - + - + + Bitcoin client + + + + bitcoin-qt - + - + %n active connection(s) to Bitcoin network - + + + + + + + + Synchronizing with network... + + + + + ~%n block(s) remaining + + + + - - Downloaded %1 of %2 blocks of transaction history. - + + 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? - + - + Sending... - + - + Sent transaction - + - + Incoming transaction - + - + Date: %1 Amount: %2 Type: %3 Address: %4 - + - + 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. - + + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: - + - + Choose the default subdivision unit to show in the interface, and when sending coins - + + + + + &Display addresses in transaction list + - - Display addresses in transaction list - + + Whether to show Bitcoin addresses in the transaction list + @@ -619,155 +652,160 @@ Address: %4 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 bitcoin address. - + Could not unlock wallet. - + New key generation failed. - + MainOptionsPage - + &Start Bitcoin on window system startup - + - + Automatically start Bitcoin after the computer is turned on - + - + &Minimize to the tray instead of the taskbar - + - + Show only a tray icon after minimizing the window - + - Map port using &UPnP - + M&inimize on close + - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - + 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 - + Map port using &UPnP + - 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. - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + - + &Connect through SOCKS4 proxy: - + - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + - + Proxy &IP: - + - + IP address of the proxy (e.g. 127.0.0.1) - + - + &Port: - + - + Port of the proxy (e.g. 1234) - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + - + Pay transaction &fee - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Detach databases at shutdown + + + + + 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. + @@ -775,107 +813,107 @@ Address: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Choose adress from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - + Copy the current signature to the system clipboard + &Copy to Clipboard - + Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + OptionsDialog - + Main - + - + Display - + - + Options - + @@ -883,66 +921,52 @@ Address: %4 Form - + Balance: - - - - - 123.456 BTC - + Number of transactions: - + 0 - + Unconfirmed: - - - - - 0 BTC - + - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - + + Wallet + - + <b>Recent transactions</b> - + Your current balance - + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + Total number of transactions in wallet - + @@ -950,162 +974,172 @@ p, li { white-space: pre-wrap; } Dialog - + QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: - + - + &Save As... - + + + + + Error encoding URI into QR Code. + - + + Resulting URI too long, try to reduce the text for label / message. + + + + Save Image... - + - + PNG Images (*.png) - + SendCoinsDialog - - - - - - - + + + + + + + Send Coins - + Send to multiple recipients at once - + &Add recipient... - + Remove all transaction fields - + Clear all - + Balance: - + 123.456 BTC - + Confirm the send action - + &Send - + - + <b>%1</b> to %2 (%3) - + - + Confirm send coins - + - + Are you sure you want to send %1? - + - + and - + - - The recepient address is not valid, please recheck. - + + The recipient address is not valid, please recheck. + - + The amount to pay must be larger than 0. - + - - Amount exceeds your balance - + + The amount exceeds your balance. + - - 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 in one 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. + @@ -1113,204 +1147,204 @@ p, li { white-space: pre-wrap; } 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + TransactionDesc - + Open for %1 blocks - + - + Open until %1 - + - + %1/offline? - + - + %1/unconfirmed - + - + %1 confirmations - + - + <b>Status:</b> - + - + , has not been successfully broadcast yet - + - + , broadcast through %1 node - + - + , broadcast through %1 nodes - + - + <b>Date:</b> - + - + <b>Source:</b> Generated<br> - + - - + + <b>From:</b> - + - + unknown - + - - - + + + <b>To:</b> - + - + (yours, label: - + - + (yours) - + - - - - + + + + <b>Credit:</b> - + - + (%1 matures in %2 more blocks) - + - + (not accepted) - + - - - + + + <b>Debit:</b> - + - + <b>Transaction fee:</b> - + - + <b>Net amount:</b> - + - + Message: - + - + Comment: - + - + Transaction ID: - + - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + @@ -1318,130 +1352,136 @@ p, li { white-space: pre-wrap; } Transaction details - + This pane shows a detailed description of the transaction - + TransactionTableModel - - Date - + + Address + Helbidea - - Type - + + Date + - - Address - Helbidea + + Type + - + Amount - + - + Open for %n block(s) - + + + + - + Open until %1 - + - + Offline (%1 confirmations) - + - + Unconfirmed (%1 of %2 confirmations) - + - + Confirmed (%1 confirmations) - + - + Mined balance will be available in %n more blocks - + + + + - + 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. - + @@ -1450,514 +1490,653 @@ p, li { white-space: pre-wrap; } 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 - + Edit label - + Show details... - + - + Export Transaction Data - + - + Comma separated file (*.csv) - + - + Confirmed - + - + Date - + - + Type - + - + Label - + - + Address Helbidea - + Amount - + - + ID - + - + Error exporting - + - + Could not write to file %1. - + - + Range: - + - + to - + WalletModel - + Sending... - + bitcoin-core - + + Error: Wallet locked, 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... + + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 + + + + + Insufficient funds + + + + + Warning: Disk space is low + + + + + 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=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + + + + + Error + + + + + An error occurred while setting up the RPC port %i for listening: %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. + + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + + + Bitcoin version - + - + Usage: - + - + Send command to -server or bitcoind - + - + List commands - + - + Get help for a command - + - + Options: - + - + Specify configuration file (default: bitcoin.conf) - + - + Specify pid file (default: bitcoind.pid) - + - + Generate coins - + - + Don't generate coins - + - + Start minimized - + - + + Show splash screen on startup (default: 1) + + + + Specify data directory - + + + + + Set database cache size in megabytes (default: 25) + + + + + Set database disk log size in megabytes (default: 100) + - + Specify connection timeout (in milliseconds) - + - + Connect through socks4 proxy - + - + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - - Add a node to connect to - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node - + - - Don't accept connections from outside - + + Find peers using internet relay chat (default: 0) + - - Don't bootstrap list of peers using DNS - + + Accept connections from outside (default: 1) + - + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) + + + + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - - Don't attempt to use UPnP to map the listening port - + + Use Universal Plug and Play to map the listening port (default: 1) + - - Attempt to use UPnP to map the listening port - + + Use Universal Plug and Play to map the listening port (default: 0) + - - Fee per kB to add to transactions you send - + + Detach block and address databases. Increases shutdown time (default: 0) + - + + Fee per KB to add to transactions you send + + + + Accept command line and JSON-RPC commands - + - + Run in the background as a daemon and accept commands - + - + Use the test network - + - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections - + - + Password for JSON-RPC connections - + - + Listen for JSON-RPC connections on <port> (default: 8332) - + - + Allow JSON-RPC connections from specified IP address - + - + Send commands to node running on <ip> (default: 127.0.0.1) - + - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) - + - + Rescan the block chain for missing wallet transactions - + - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin 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) - + - + This help message - + - + + Usage + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + + Bitcoin + + + + Loading addresses... - + - + Error loading addr.dat - + - + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + - + Wallet needed to be rewritten: restart Bitcoin to complete - + - + Error loading wallet.dat - + - - Loading block index... - + + Cannot downgrade wallet + - - Loading wallet... - + + Cannot initialize keypool + + + + + Cannot write default address + - + Rescanning... - + - + Done loading - + - + Invalid -proxy address - + - + Invalid amount for -paytxfee=<amount> - + - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + - + Error: CreateThread(StartNode) failed - + - - Warning: Disk space is low - - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - - - - - beta - + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fa.ts b/src/qt/locale/bitcoin_fa.ts index ed2aff6ac2..6f90b94327 100644 --- a/src/qt/locale/bitcoin_fa.ts +++ b/src/qt/locale/bitcoin_fa.ts @@ -1,20 +1,21 @@ - + + + UTF-8 AboutDialog About Bitcoin - در مورد بیتکویین - + در مورد Bitcoin <b>Bitcoin</b> version - نسخه + نسخه Bitcoin - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -36,7 +37,7 @@ This product includes software developed by the OpenSSL Project for use in the O Address Book - دفتر آدرس + فهرست آدرس @@ -52,7 +53,7 @@ This product includes software developed by the OpenSSL Project for use in the O Create a new address - آدرس نو ایجاد کنید + آدرس جدید ایجاد کنید @@ -74,11 +75,6 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code نمایش &کد QR - - - Sign a message to prove you own this address - یک پیام را امضا کنید تا ثابت کنید صاحب این نشانی هستید - &Sign Message @@ -87,50 +83,55 @@ This product includes software developed by the OpenSSL Project for use in the O Delete the currently selected address from the list. Only sending addresses can be deleted. - آدرس انتخاب شده از لیست حذف کنید. فقط آدرسهای ارسال شده می شود حفذ کرد + آدرس انتخاب شده از لیست حذف کنید. فقط آدرسهای ارسال شده می شود حذف کرد &Delete - آدرس نو + حذف - + + Sign a message to prove you own this address + یک پیام را امضا کنید تا ثابت کنید صاحب این نشانی هستید + + + Copy address کپی آدرس - + Copy label کپی بر چسب - + Edit ویرایش - + Delete حذف - + Export Address Book Data آدرس انتخاب شده در سیستم تخته رسم گیره دار کپی کنید - + Comma separated file (*.csv) - Comma فایل جدا + Comma separated file (*.csv) - + Error exporting - خطای صادرت + خطای صدور - + Could not write to file %1. تا فایل %1 نمی شود نوشت @@ -138,19 +139,19 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label - ر چسب + بر چسب - + Address - ایل جدا + آدرس - + (no label) - خطای صادرت + بدون برچسب @@ -161,26 +162,25 @@ This product includes software developed by the OpenSSL Project for use in the O تگفتگو - - - TextLabel - بر چسب - - - + Enter passphrase وارد عبارت عبور - + New passphrase عبارت عبور نو - + Repeat new passphrase تکرار عبارت عبور نو + + + TextLabel + بر چسب + 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>. @@ -244,12 +244,6 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Biticon هم اکنون بسته می‌شود تا فرایند رمزگذاری را تمام کند. به خاطر داشته باشید که رمزگذاری کیف پولتان نمی‌تواند به طور کامل بیتیکون‌های شما را در برابر دزدیده شدن توسط بدافزارهایی که رایانه شما را آلوده می‌کنند، محافظت نماید. - - - - Warning: The Caps Lock key is on. - هشدار: کلید حروف بزرگ روشن است. - @@ -281,353 +275,391 @@ Are you sure you wish to encrypt your wallet? The passphrase entered for the wallet decryption was incorrect. اموفق رمز بندی پنجر + + + Wallet passphrase was successfully changed. + wallet passphrase با موفقیت تغییر یافت + + + + + Warning: The Caps Lock key is on. + هشدار: کلید حروف بزرگ روشن است. + Wallet decryption failed ناموفق رمز بندی پنجره - - - Wallet passphrase was succesfully changed. - عبارت عبور با موفقیت تغییر شد - BitcoinGUI - - Bitcoin Wallet - پنجره بیتکویین - - - - - Synchronizing with network... - همگام سازی با شبکه ... - - - - Block chain synchronization in progress - همگام زنجیر بلوک در حال پیشرفت - - - - &Overview - بررسی اجمالی - - - - Show general overview of wallet - نمای کلی پنجره نشان بده - - - - &Transactions - &amp;معاملات - - - - Browse transaction history - نمایش تاریخ معاملات + + &Export... + &;صادرات - + &Address Book دفتر آدرس - + Edit the list of stored addresses and labels ویرایش لیست آدرسها و بر چسب های ذخیره ای - - &Receive coins - در یافت سکه - - - - Show the list of addresses for receiving payments - نمایش لیست آدرس ها برای در یافت پر داخت ها - - - - &Send coins - رسال سکه ها - - - - Send coins to a bitcoin address - ارسال سکه به آدرس بیتکویین - - - + Sign &message امضای &پیام - + Prove you control an address اثبات کنید که روی یک نشانی کنترل دارید - + E&xit خروج - - Quit application - خروج از برنامه + + About &Qt + درباره &Qt - - &About %1 - &حدود%1 + + Modify configuration options for bitcoin + صلاح تنظیمات برای بیتکویین - - Show information about Bitcoin - نمایش اطلاعات در مورد بیتکویین + + &Encrypt Wallet + &رمز بندی پنجره - - About &Qt - درباره &Qt + + &Change Passphrase + تغییر عبارت عبور - - Show information about Qt - نمایش اطلاعات درباره Qt + + bitcoin-qt + بیتکویین - - &Options... - تنظیمات... + + Last received block was generated %1. + خرین بلوک در یافت شده تولید شده بود %1 - - Modify configuration options for bitcoin - صلاح تنظیمات برای بیتکویین + + Bitcoin Wallet + پنجره بیتکویین - - Open &Bitcoin - باز کردن &amp;بیتکویین + + Sent transaction + معامله ارسال شده - - Show the Bitcoin window - نمایش پنجره بیتکویین + + &Overview + بررسی اجمالی - - &Export... - &;صادرات + + Show information about Qt + نمایش اطلاعات درباره Qt - + Export the data in the current tab to a file - + داده ها نوارِ جاری را به فایل انتقال دهید - - &Encrypt Wallet - &رمز بندی پنجره + + Backup wallet to another location + نسخه پیشتیبان wallet را به محل دیگر انتقال دهید - - Encrypt or decrypt wallet - رمز بندی یا رمز گشایی پنجره + + Send coins to a bitcoin address + ارسال سکه به آدرس بیتکویین - + &Backup Wallet - + پشتیبان گیری از wallet - - Backup wallet to another location - + + Up to date + تا تاریخ - - &Change Passphrase - تغییر عبارت عبور + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + زمایش شبکهه - - Change the passphrase used for wallet encryption - عبارت عبور رمز گشایی پنجره تغییر کنید + + Quit application + خروج از برنامه - - &File - فایل + + 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% بفرستید که شامل گره معامله شما می باشد و به شبکه های اینترنتی کمک خواهد کردو آیا شما می خواهید این پول پر داخت%1 - - &Settings - تنظیمات + + Encrypt or decrypt wallet + رمز بندی یا رمز گشایی پنجره - - &Help - کمک + + &Receive coins + در یافت سکه - - Tabs toolbar - نوار ابزار زبانه ها + + Incoming transaction + معامله در یافت شده - - Actions toolbar - نوار ابزار عملیت + + &About %1 + &حدود%1 - + [testnet] آزمایش شبکه - - - bitcoin-qt - بیتکویین - - + %n active connection(s) to Bitcoin network - در صد ارتباطات فعال بیتکویین با شبکه %n - - - - Downloaded %1 of %2 blocks of transaction history. - %1 %2 دانلود 1% 2% بلوک معاملات + + در صد ارتباطات فعال بیتکویین با شبکه %n + - - Downloaded %1 blocks of transaction history. - دانلود بلوکهای معملات %1 - - - - %n second(s) ago - %n بعد از چند دقیقه + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + تاریخ %1 +مبلغ%2 +نوع %3 +آدرس %4 - + %n minute(s) ago - %n بعد از چند دقیقه + + %n بعد از چند دقیقه + - + %n hour(s) ago - %n بعد از چند دقیقه + + %n بعد از چند دقیقه + - - - %n day(s) ago - %n بعد از چند روزز + + + Backup Failed + عملیات پیشتیبان گیری انجام نشد - - Up to date - تا تاریخ + + There was an error trying to save the wallet data to the new location. + در زمان انتقال داده wallet به محل جدید خطا روی داد + + + + Downloaded %1 blocks of transaction history. + دانلود بلوکهای معملات %1 + + + + %n day(s) ago + + %n بعد از چند روزز + - + Catching up... ابتلا به بالا - - Last received block was generated %1. - خرین بلوک در یافت شده تولید شده بود %1 + + Show general overview of wallet + نمای کلی پنجره نشان بده - - 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% بفرستید که شامل گره معامله شما می باشد و به شبکه های اینترنتی کمک خواهد کردو آیا شما می خواهید این پول پر داخت%1 + + &Transactions + &amp;معاملات - - Sending... - ارسال... + + Browse transaction history + نمایش تاریخ معاملات - - Sent transaction - معامله ارسال شده + + Show the list of addresses for receiving payments + نمایش لیست آدرس ها برای در یافت پر داخت ها - - Incoming transaction - معامله در یافت شده + + &Send coins + رسال سکه ها - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - تاریخ %1 -مبلغ%2 -نوع %3 -آدرس %4 + + Show information about Bitcoin + نمایش اطلاعات در مورد بیتکویین - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - زمایش شبکهه + + &Options... + تنظیمات... - - Wallet is <b>encrypted</b> and currently <b>locked</b> - زمایش شبکه + + Show/Hide &Bitcoin + نمایش/ عدم نمایش BITCOIN - - Backup Wallet - + + Show or hide the Bitcoin window + صفحه Bitcoin را نمایش دهید/ندهید - + + Change the passphrase used for wallet encryption + عبارت عبور رمز گشایی پنجره تغییر کنید + + + + &Settings + تنظیمات + + + + &Help + کمک + + + + Tabs toolbar + نوار ابزار زبانه ها + + + + &File + فایل + + + + Actions toolbar + نوار ابزار عملیت + + + + Bitcoin client + مشتری Bitcoin + + + + %n second(s) ago + + %n بعد از چند دقیقه + + + + + Synchronizing with network... + همگام سازی با شبکه ... + + + + ~%n block(s) remaining + + %n بلاکِ باقیمانده +%n بلاکِ باقیمانده + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + دانلود %1 از %2 بلاکهای تاریخچه تراکنش (%3% انجام شد) + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + زمایش شبکه + + + + Backup Wallet + نسخه پیشتیبان از wallet + + + Wallet Data (*.dat) - + داده wallet (*.DAT) - - Backup Failed - + + Sending... + ارسال... - - There was an error trying to save the wallet data to the new location. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + خطا روی داده است. Bitcoin نمی تواند بدون مشکل ادامه دهد و باید بسته شود DisplayOptionsPage - + &Unit to show amounts in: &;واحد نمایش مبلغ - + Choose the default subdivision unit to show in the interface, and when sending coins زیر بخش پیش فرض در واسط انتخاب کنید و سکه ها ارسال کنید - - Display addresses in transaction list - نمایش آدرس ها در لیست معامله + + &Display addresses in transaction list + نمایش آدرسها در فهرست تراکنش + + + + Whether to show Bitcoin addresses in the transaction list + تا آدرسهای bITCOIN در فهرست تراکنش نمایش داده شوند یا نشوند. EditAddressDialog + + + Edit sending address + اصلاح آدرس ارسال + Edit Address @@ -668,11 +700,6 @@ Address: %4 Edit receiving address اصلاح آدرس در یافت - - - Edit sending address - اصلاح آدرس ارسال - The entered address "%1" is already in the address book. @@ -697,87 +724,92 @@ Address: %4 MainOptionsPage - + &Start Bitcoin on window system startup شروع بیتکویین از پنجره سیستم استارت - + Automatically start Bitcoin after the computer is turned on شروع بیتکویین اتوماتین بعد از روشن کامپیوتر - + &Minimize to the tray instead of the taskbar حد اقل رساندن در جای نوار ابزار ها - + Show only a tray icon after minimizing the window نمایش فقط نماد سینی بعد از حد اقل رساندن پنجره - + Map port using &UPnP درگاه با استفاده از - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. اتوماتیک باز کردن بندر بیتکویین در روتر . این فقط در مواردی می باشد که روتر با کمک یو پ ن پ کار می کند - + M&inimize on close حد اقل رساندن در نزدیک - + 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. حد اقل رساندن در جای خروج بر نامه وقتیکه پنجره بسته است.وقتیکه این فعال است برنامه خاموش می شود بعد از انتخاب دستور خاموش در منیو - + &Connect through SOCKS4 proxy: ارتباط با توسط - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - وسل به شبکه بیتکویین با توسط + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + وسل به شبکه بیتکویین با توسط - + Proxy &IP: درس پروکسی - + IP address of the proxy (e.g. 127.0.0.1) درس پروکسی - + &Port: پورت پروکسی - + Port of the proxy (e.g. 1234) ورت پروکسی - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - نرخ اختیاری تراکنش هر کیلوبایت که به شما کمک می‌کند اطمینان پیدا کنید که تراکنش‌ها به سرعت پردازش می‌شوند. بیشتر تراکنش‌ها ۱ کیلوبایت هستند. نرخ 0.01 پیشنهاد می‌شود. - - - + Pay transaction &fee دستمزد&amp;پر داخت معامله - + + Detach databases at shutdown + تفکیک بانک داده در زمان خاموشی + + + + 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. + بلاک و آدرس بانکهای داده را در زمان خاموشی جدا کن.این بدان معنی است که آنها می توانند به دایرکتوری داده دیگری منتقل شوند اما این باعث کندی روند خاموشی در سیستم خواهد شد. wallet همیشه تفکیک شده است. + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. نرخ اختیاری تراکنش هر کیلوبایت که به شما کمک می‌کند اطمینان پیدا کنید که تراکنش‌ها به سرعت پردازش می‌شوند. بیشتر تراکنش‌ها ۱ کیلوبایت هستند. نرخ 0.01 پیشنهاد می‌شود. @@ -792,12 +824,12 @@ Address: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + شما می توانید پیامها را با آدرس خودتان امضا نمایید تا ثابت شود متعلق به شما هستند. مواظب باشید تا چیزی که بدان مطمئن نیستنید را امضا نکنید زیرا حملات فیشینگ در زمان ورود شما به سیستم فریبنده هستند. تنها مواردی را که حاوی اطلاعات دقیق و قابل قبول برای شما هستند را امضا کنید - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - آدرس برای ارسال پر داخت (bijvoorbeeld: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + آدرس برای امضا کردن پیام با (برای مثال 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -841,8 +873,8 @@ Address: %4 - Copy the currently selected address to the system clipboard - آدرس انتخاب شده در سیستم تخته رسم گیره دار کپی کنید + Copy the current signature to the system clipboard + این امضا را در system clipboard کپی کن @@ -875,17 +907,17 @@ Address: %4 OptionsDialog - + Main صلی - + Display دیسپلی - + Options اصلی @@ -903,128 +935,120 @@ Address: %4 راز: - - 123.456 BTC - 123.456 بتس - - - - Number of transactions: - تعداد معامله + + Wallet + wallet - - 0 - 0 + + Your current balance + تزار جاری شما Unconfirmed: تایید نشده - - - 0 BTC - 0 - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;">⏎ -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">کیف پول</span></p></body></html> - - - - <b>Recent transactions</b> - اخرین معاملات&lt - - - - Your current balance - تزار جاری شما - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance تعداد معاملات که تایید شده ولی هنوز در تزار جاری شما بر شمار نرفته است + + + Number of transactions: + تعداد معامله + Total number of transactions in wallet تعداد معاملات در صندوق - - - QRCodeDialog - - Dialog - تگفتگو + + <b>Recent transactions</b> + اخرین معاملات&lt - - QR Code - کد QR + + 0 + 0 + + + QRCodeDialog - + Request Payment درخواست پرداخت - + Amount: مقدار: - + BTC BTC - + Label: برچسب: - + Message: پیام - + &Save As... &ذخیره به عنوان... - + + Dialog + تگفتگو + + + + QR Code + کد QR + + + + Error encoding URI into QR Code. + خطا در زمان رمزدار کردن URI در کد QR + + + Save Image... - + - + + Resulting URI too long, try to reduce the text for label / message. + URI ذکر شده بسیار طولانی است، متن برچسب/پیام را کوتاه کنید + + + PNG Images (*.png) - + تصاویر با فرمت PNG (*.png) SendCoinsDialog - - - - - - - + + + + + + + Send Coins ارسال سکه ها @@ -1069,59 +1093,59 @@ p, li { white-space: pre-wrap; }⏎ &;ارسال - - <b>%1</b> to %2 (%3) - (%3) تا <b>%1</b> درصد%2 + + Are you sure you want to send %1? + %1شما متماینید که می خواهید 1% ارسال کنید ؟ - - Confirm send coins - ارسال سکه ها تایید کنید + + and + و - Are you sure you want to send %1? - %1شما متماینید که می خواهید 1% ارسال کنید ؟ + Confirm send coins + ارسال سکه ها تایید کنید - - and - و + + <b>%1</b> to %2 (%3) + (%3) تا <b>%1</b> درصد%2 - - The recepient address is not valid, please recheck. - آدرس در یافت دو باره چک کنید + + The recipient address is not valid, please recheck. + آدرس گیرنده نادرست است، لطفا دوباره بررسی کنید. - + The amount to pay must be larger than 0. مبلغ پر داخت باید از 0 بیشتر باشد - - Amount exceeds your balance - مبلغ از تزار بیشتر است + + The amount exceeds your balance. + میزان وجه از بالانس/تتمه حساب شما بیشتر است - - Total exceeds your balance when the %1 transaction fee is included - مجموعه از تزار شما بیشتر می باشد وقتیکه 1% معامله شامل می شود %1 + + The total exceeds your balance when the %1 transaction fee is included. + کل میزان وجه از بالانس/تتمه حساب شما بیشتر می شود وقتی %1 هزینه تراکنش نیز به ین میزان افزوده می شود - - Duplicate address found, can only send to each address once in one 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. + خطا: تراکنش تایید نشد. این پیام زمانی روی می دهد که مقداری از سکه های WALLET شما استفاده شده اند برای مثال اگر شما از WALLET.DAT استفاده کرده اید، ممکن است سکه ها استفاده شده باشند اما در اینجا نمایش داده نشوند @@ -1191,143 +1215,143 @@ p, li { white-space: pre-wrap; }⏎ TransactionDesc - + Open for %1 blocks باز کردن 1% بلوک 1%1 - + Open until %1 باز کردن تا%1 - + %1/offline? %1 انلاین نیست - + %1/unconfirmed %1 تایید نشده - + %1 confirmations ایید %1 - + <b>Status:</b> &lt;b&gt;وضعیت :&lt;/b&gt; - + , has not been successfully broadcast yet هنوز با مو فقیت ارسال نشده - + , broadcast through %1 node ارسال توسط گره %1 - + , broadcast through %1 nodes رسال توسط گره های %1 - + <b>Date:</b> &lt;b&gt;تاریخ :&lt;/b&gt - + <b>Source:</b> Generated<br> &lt;b&gt;منبع :&lt;/b&gt; Generated&lt;br&gt - - + + <b>From:</b> &lt;b&gt;از:&lt;/b&gt; - + + <b>Net amount:</b> + &lt;b&gt;مبلغ خالص :&lt;/b&gt; + + + + Message: + پیام + + + + Comment: + مورد نظر + + + + Transaction ID: + شماره تراکنش: + + + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + برای ارسال واحد های تولید شده باید 120 بلوک باشند. هنگامی که بلون ایجاد می شود به شبکه ارسال می شود تا در زنجیر بلوکها اضافه شود. و گر نه بلوک به غیر قابول و غیر ارسال عوض می شود. این اتفاقی می افتد وقتی که همزمان گره دیگر در بلوک ایجاد می شود. + + + unknown مشخص نیست - - - + + + <b>To:</b> &lt;b&gt;به :&lt;/b&gt; - + (yours, label: مال شما ، بر چسب( - + (yours) مال شما) ( - - - - + + + + <b>Credit:</b> &lt;b&gt;اعتبار :&lt;/b&gt; - + (%1 matures in %2 more blocks) (%1 )بالغ در بلوک 2% و بیشتر%2 - + (not accepted) قابل قبول نیست ( ) - - - + + + <b>Debit:</b> &lt;b&gt;مقدار خالص:&lt;/b&gt; - + <b>Transaction fee:</b> &lt;b&gt;پر داخت معامله :&lt;/b&gt; - - - <b>Net amount:</b> - &lt;b&gt;مبلغ خالص :&lt;/b&gt; - - - - Message: - پیام - - - - Comment: - مورد نظر - - - - Transaction ID: - شماره تراکنش: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - برای ارسال واحد های تولید شده باید 120 بلوک باشند. هنگامی که بلون ایجاد می شود به شبکه ارسال می شود تا در زنجیر بلوکها اضافه شود. و گر نه بلوک به غیر قابول و غیر ارسال عوض می شود. این اتفاقی می افتد وقتی که همزمان گره دیگر در بلوک ایجاد می شود. - TransactionDescDialog @@ -1345,134 +1369,127 @@ p, li { white-space: pre-wrap; }⏎ TransactionTableModel - + Date تاریخ - + Type نوع - + Address ایل جدا - + Amount مبلغ - + Open for %n block(s) - بلوک %n باز شده برای + + بلوک %n باز شده برای + - + Open until %1 از شده تا 1%1 - + Offline (%1 confirmations) افلایین (%1) - + Unconfirmed (%1 of %2 confirmations) تایید نشده (%1/%2) - + Confirmed (%1 confirmations) تایید شده (%1) - + Mined balance will be available in %n more blocks - و بیشتر باشند قابل قابول می شود %n تزار اصلی بعد از اینکه بلوکها + + + - + 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 @@ -1523,11 +1540,6 @@ p, li { white-space: pre-wrap; }⏎ Other یگر - - - Enter address or label to search - برای جست‌‌وجو نشانی یا برچسب را وارد کنید - Min amount @@ -1554,80 +1566,96 @@ p, li { white-space: pre-wrap; }⏎ اصلاح بر چسب - - Show details... - جزییت نشان بده - - - + Export Transaction Data صادرات تاریخ معامله - + Comma separated file (*.csv) Comma فایل جدا - - Confirmed - تایید شده - - - + Date تاریخ - - Type - نوع - - - + Label ر چسب - + Address ایل جدا - + Amount مبلغ - + + to + به + + + ID آی دی - + Error exporting خطای صادرت - + Could not write to file %1. تا فایل %1 نمی شود نوشت - + Range: >محدوده - - to - به + + Confirmed + تایید شده + + + + + All + همه + + + + Today + امروز + + + + Enter address or label to search + برای جست‌‌وجو نشانی یا برچسب را وارد کنید + + + + Show details... + جزییت نشان بده + + + + Type + نوع WalletModel - + Sending... ارسال... @@ -1635,346 +1663,487 @@ p, li { white-space: pre-wrap; }⏎ bitcoin-core - + + Loading addresses... + بار گیری آدرس ها + + + + Error loading wallet.dat + خطا در بارگیری wallet.dat + + + + Cannot downgrade wallet + امکان تنزل نسخه در wallet وجود ندارد + + + + Cannot initialize keypool + امکان مقداردهی اولیه برای key pool وجود ندارد + + + + Cannot write default address + آدرس پیش فرض قابل ذخیره نیست + + + + Done loading + بار گیری انجام شده است + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + برای اتصالات به <port> (پیش‌فرض: 8333 یا تست‌نت: 18333) گوش کنید + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + رمز های قابل قبول( TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Maintain at most <n> connections to peers (default: 125) + حداکثر <n> اتصال با همکاران برقرار داشته باشید (پیش‌فرض: 125) + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + رمز گشایی دایرکتور داده ها امکان پذیر نیست. شاید بیت کویین در حال فعال می باشد%s + + + + Threshold for disconnecting misbehaving peers (default: 100) + آستانه برای قطع ارتباط با همکاران بدرفتار (پیش‌فرض: 100) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + مدت زمان به ثانیه برای جلوگیری از همکاران بدرفتار برای اتصال دوباره (پیش‌فرض: 86400) + + + + Run in the background as a daemon and accept commands + اجرای در پس زمینه به عنوان شبح و قبول فرمان ها + + + + Send trace/debug info to debugger + اطلاعات ردگیری/اشکال‌زدایی را به اشکال‌زدا بفرستید + + + + Username for JSON-RPC connections + JSON-RPC شناسه برای ارتباطات + + + + Password for JSON-RPC connections + JSON-RPC عبارت عبور برای ارتباطات + + + + Send commands to node running on <ip> (default: 127.0.0.1) + (127.0.0.1پیش فرض: ) &lt;ip&gt; دادن فرمانها برای استفاده گره ها روی + + + + Set key pool size to <n> (default: 100) + (100پیش فرض:)&lt;n&gt; گذاشتن اندازه کلید روی + + + + Rescan the block chain for missing wallet transactions + اسکان مجدد زنجیر بلوکها برای گم والت معامله + + + + Use OpenSSL (https) for JSON-RPC connections + JSON-RPCبرای ارتباطات استفاده کنید OpenSSL (https) + + + + Server certificate file (default: server.cert) + (server.certپیش فرض: )گواهی نامه سرور + + + + Accept command line and JSON-RPC commands + JSON-RPC قابل فرمانها و + + + + Use the test network + استفاده شبکه آزمایش + + + + Prepend debug output with timestamp + به خروجی اشکال‌زدایی برچسب زمان بزنید + + + + Listen for JSON-RPC connections on <port> (default: 8332) + ( 8332پیش فرض :) &lt;poort&gt; JSON-RPC شنوایی برای ارتباطات + + + + Allow JSON-RPC connections from specified IP address + از آدرس آی پی خاص JSON-RPC قبول ارتباطات + + + + Server private key (default: server.pem) + (server.pemپیش فرض: ) کلید خصوصی سرور + + + + This help message + پیام کمکی + + + + Loading block index... + بار گیری شاخص بلوک + + + + Error loading wallet.dat: Wallet corrupted + خطا در بارگیری wallet.dat: کیف پول خراب شده است + + + + Loading wallet... + بار گیری والت + + + + Wallet needed to be rewritten: restart Bitcoin to complete + سلام + + + + Rescanning... + اسکان مجدد + + + Bitcoin version سخه بیتکویین - + Usage: ستفاده : - + Send command to -server or bitcoind ارسال فرمان به سرور یا باتکویین - + List commands لیست فومان ها - + Get help for a command کمک برای فرمان - + Options: تنظیمات - + Specify configuration file (default: bitcoin.conf) (: bitcoin.confپیش فرض: )فایل تنظیمی خاص - + Specify pid file (default: bitcoind.pid) (bitcoind.pidپیش فرض : ) فایل پید خاص - - Generate coins - سکه های تولید شده - - - + Don't generate coins تولید سکه ها - + Start minimized شروع حد اقل - + + Show splash screen on startup (default: 1) + نمایش صفحه splash در STARTUP (پیش فرض:1) + + + Specify data directory دایرکتور اطلاعاتی خاص - + Specify connection timeout (in milliseconds) (میلی ثانیه )فاصله ارتباط خاص - + Connect through socks4 proxy socks4 proxy ارتباط توسط - + Allow DNS lookups for addnode and connect اجازه متغیر دی ان اس برای اضافه گره یا ارتباط - - Listen for connections on <port> (default: 8333 or testnet: 18333) - برای اتصالات به <port> (پیش‌فرض: 8333 یا تست‌نت: 18333) گوش کنید - - - - Maintain at most <n> connections to peers (default: 125) - حداکثر <n> اتصال با همکاران برقرار داشته باشید (پیش‌فرض: 125) - - - - Add a node to connect to - ضافه گره برای ارتباط به - - - + Connect only to the specified node ارتباط فقط به گره خاص - - Don't accept connections from outside - قابل ارتباطات از بیرون - - - - Don't bootstrap list of peers using DNS - فهرست همکاران را با استفاده از DNS خودراه‌اندازی نکنید - - - - 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: 10000) حداکثر بافر دریافتی در هر اتصال، 1000*<n> (پیش‌فرض: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) حداکثر بافر ارسالی در هر اتصال، 1000*<n> (پیش‌فرض: 10000) - - Don't attempt to use UPnP to map the listening port - برای ترسیم بندر شنیدنی UPnP استفاده + + Output extra debugging information + اطلاعات اشکال‌زدایی اضافی خروجی - - Attempt to use UPnP to map the listening port - برای ترسیم بندر شنیدنی UPnP استفاده + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +( نگاه کنید Bitcoin Wiki در SSLتنظیمات ):SSL گزینه های - - Fee per kB to add to transactions you send - نرخ هر کیلوبایت برای اضافه کردن به تراکنش‌هایی که می‌فرستید + + Usage + ستفاده - - Accept command line and JSON-RPC commands - JSON-RPC قابل فرمانها و + + Error loading addr.dat + خطا در بارگیری addr.dat - - Run in the background as a daemon and accept commands - اجرای در پس زمینه به عنوان شبح و قبول فرمان ها + + Invalid -proxy address + آدرس پروکسی معتبر نیست - - Use the test network - استفاده شبکه آزمایش + + Invalid amount for -paytxfee=<amount> + paytxfee=&lt;بالغ &gt;مبلغ نا معتبر - - Output extra debugging information - اطلاعات اشکال‌زدایی اضافی خروجی + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + خطا : پر داخت خیلی بالا است. این پر داخت معامله است که شما هنگام ارسال معامله باید پر داخت کنید - - Prepend debug output with timestamp - به خروجی اشکال‌زدایی برچسب زمان بزنید + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + وسل بندر به کامپیوتر امکان پذیر نیست. شاید بیتکویید در حال فعال است%d - Send trace/debug info to console instead of debug.log file - اطلاعات ردگیری/اشکال‌زدایی را به جای فایل لاگ اشکال‌زدایی به کنسول بفرستید + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + هشدار: تاریخ و ساعت کامپیوتر شما چک کنید. اگر ساعت درست نیست بیتکویین مناسب نخواهد کار کرد - - Send trace/debug info to debugger - اطلاعات ردگیری/اشکال‌زدایی را به اشکال‌زدا بفرستید + + Error: CreateThread(StartNode) failed + خطا :ایجاد موضوع(گره) اشتباه بود - - Username 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=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + %s، شما باید یک rpcpassword را در فایل پیکربندی تنظیم کنید :⏎%s⏎ توصیه می شود از رمزهای تصادفی زیر استفاده کنید⏎ rpcuser=bitcoinrpc⏎ rpcpassword=%s⏎ (لازم نیست این رمز را به خاطر بسپارید) ⏎ اگر فایل ایجاد نشد، یک فایل فقط متنی ایجاد کنید + - - Password for JSON-RPC connections - JSON-RPC عبارت عبور برای ارتباطات + + Detach block and address databases. Increases shutdown time (default: 0) + تفکیک بلاک و آدرس بانک داده ها. افزایش زمان خاموشی (پیش فرض:0) - - Listen for JSON-RPC connections on <port> (default: 8332) - ( 8332پیش فرض :) &lt;poort&gt; 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. + خطا . معامله رد شد.این هنگامی که سکه ها در والت شما هنوز ارسال شده اند ولی شما کپی والت استفاده می کنید و سکه ها روی کپی فرستاده شده اند و به عنوان ارسال شنه مشخص نشده اتفاقی می افتد. - - Allow JSON-RPC connections from specified IP address - از آدرس آی پی خاص JSON-RPC قبول ارتباطات + + Accept connections from outside (default: 1) + پذیرش اتصالات از بیرون (پیش فرض:1 بدون پراکسی یا اتصال) - - Send commands to node running on <ip> (default: 127.0.0.1) - (127.0.0.1پیش فرض: ) &lt;ip&gt; دادن فرمانها برای استفاده گره ها روی + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + خطا: این تراکنش نیازمند هزینه تراکنش به مبلغ حداقل %s است به علت میزان وجه، دشواری، یا استفاده از وجوه دریافتی اخیر - - Set key pool size to <n> (default: 100) - (100پیش فرض:)&lt;n&gt; گذاشتن اندازه کلید روی + + Set language, for example "de_DE" (default: system locale) + زبان را تنظیم کنید برای مثال "de_DE" (پیش فرض: system locale) - - Rescan the block chain for missing wallet transactions - اسکان مجدد زنجیر بلوکها برای گم والت معامله + + Find peers using DNS lookup (default: 1) + قرینه ها را برای جستجوی DNS بیاب (پیش فرض: 1 مگر در زمان اتصال) - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -( نگاه کنید Bitcoin Wiki در SSLتنظیمات ):SSL گزینه های + + Execute command when the best block changes (%s in cmd is replaced by block hash) + زمانی که بهترین بلاک تغییر کرد، دستور را اجرا کن (%s در cmd با block hash جایگزین شده است) - - Use OpenSSL (https) for JSON-RPC connections - JSON-RPCبرای ارتباطات استفاده کنید OpenSSL (https) + + Send trace/debug info to console instead of debug.log file + اطلاعات ردگیری/اشکال‌زدایی را به جای فایل لاگ اشکال‌زدایی به کنسول بفرستید - - Server certificate file (default: server.cert) - (server.certپیش فرض: )گواهی نامه سرور + + Use Universal Plug and Play to map the listening port (default: 1) + از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:1 در زمان شنیدن) - - Server private key (default: server.pem) - (server.pemپیش فرض: ) کلید خصوصی سرور + + Use Universal Plug and Play to map the listening port (default: 0) + از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:0) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - رمز های قابل قبول( TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + 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⏎ اگر فایل ایجاد نشد، یک فایل فقط متنی ایجاد کنید. + - - This help message - پیام کمکی + + Add a node to connect to and attempt to keep the connection open + به اتصال یک گره اضافه کنید و اتصال را باز نگاه دارید - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - رمز گشایی دایرکتور داده ها امکان پذیر نیست. شاید بیت کویین در حال فعال می باشد%s + + Error loading blkindex.dat + خطا در بارگیری blkindex.dat - - Loading addresses... - بار گیری آدرس ها + + An error occurred while setting up the RPC port %i for listening: %s + در زمان تنظیم درگاه RPX %i در فهرست کردن %s اشکالی رخ داده است - - Error loading addr.dat - خطا در بارگیری addr.dat + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + خطا در بارگیری wallet.dat: کیف پول به ویرایش جدیدتری از Biticon نیاز دارد - - Error loading blkindex.dat - خطا در بارگیری blkindex.dat + + Bitcoin + یت کویین - - Error loading wallet.dat: Wallet corrupted - خطا در بارگیری wallet.dat: کیف پول خراب شده است + + Error + خطا - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - خطا در بارگیری wallet.dat: کیف پول به ویرایش جدیدتری از Biticon نیاز دارد + + Error: Transaction creation failed + خطا ایجاد معامله اشتباه است - - Wallet needed to be rewritten: restart Bitcoin to complete - سلام + + Error: Wallet locked, unable to create transaction + خطا: Wallet قفل شده است. ایجاد تراکنش امکان پذیر نیست - - Error loading wallet.dat - خطا در بارگیری wallet.dat + + Fee per KB to add to transactions you send + پر داجت برای هر کیلو بیت برای اضافه به معامله ارسال - - Loading block index... - بار گیری شاخص بلوک + + Find peers using internet relay chat (default: 0) + یافتنت قرینه با استفاده از internet relay chat (پیش فرض:0) - - Loading wallet... - بار گیری والت + + Generate coins + سکه های تولید شده - - Rescanning... - اسکان مجدد + + How many blocks to check at startup (default: 2500, 0 = all) + چند بلاک برای بررسی در زمان startup (پیش فرض:2500 , 0=همه) - - Done loading - بار گیری انجام شده است + + How thorough the block verification is (0-6, default: 1) + چقد کامل بلوک تصدیق است (0-6, پیش فرض:1) - - Invalid -proxy address - آدرس پروکسی معتبر نیست + + Insufficient funds + بود جه نا کافی - - Invalid amount for -paytxfee=<amount> - paytxfee=&lt;بالغ &gt;مبلغ نا معتبر + + Invalid amount + میزان وجه اشتباه - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - خطا : پر داخت خیلی بالا است. این پر داخت معامله است که شما هنگام ارسال معامله باید پر داخت کنید + + Sending... + ارسال... - - Error: CreateThread(StartNode) failed - خطا :ایجاد موضوع(گره) اشتباه بود + + Set database cache size in megabytes (default: 25) + سایز کَش بانک داده را بر حسب مگابایت تنظیم کنید (پیش فرض:25) - - Warning: Disk space is low - هشدار: جای دیسک پایین است + + Set database disk log size in megabytes (default: 100) + سایز دیسک لاگِ بانک داده را بر حسب مگابایت تنظیم کنید (پیش فرض:100) - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - وسل بندر به کامپیوتر امکان پذیر نیست. شاید بیتکویید در حال فعال است%d + + To use the %s option + برای استفاده از %s از انتخابات - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - هشدار: تاریخ و ساعت کامپیوتر شما چک کنید. اگر ساعت درست نیست بیتکویین مناسب نخواهد کار کرد + + Upgrade wallet to latest format + wallet را به جدیدترین فرمت روزآمد کنید - - beta - بتا + + Warning: Disk space is low + هشدار: فضای دیسک محدود است! - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fa_IR.ts b/src/qt/locale/bitcoin_fa_IR.ts index 2e8df62f04..cf37021c8d 100644 --- a/src/qt/locale/bitcoin_fa_IR.ts +++ b/src/qt/locale/bitcoin_fa_IR.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> version - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -29,120 +31,120 @@ This product includes software developed by the OpenSSL Project for use in the O Address Book - + دفترچه آدرس These are your Bitcoin 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. - + Double-click to edit address or label - + برای ویرایش آدرس/برچسب دوبار کلیک نمایید Create a new address - + یک آدرس جدید بسازید &New Address... - + و آدرس جدید Copy the currently selected address to the system clipboard - + آدرس انتخاب شده را در کلیپ بوردِ سیستم کپی کنید &Copy to Clipboard - + Show &QR Code - + نشان و کد QR Sign a message to prove you own this address - + &Sign Message - + و امضای پیام Delete the currently selected address from the list. Only sending addresses can be deleted. - + آدرس انتخاب شده را از لیست حذف کنید. تنها آدرس ارسال شده می تواند حذف شود &Delete - + و حذف - + Copy address - + آدرس را کپی کنید - + Copy label - + برچسب را کپی کنید - + Edit - + - + Delete - + و حذف - + Export Address Book Data - + انتقال اطلاعات دفترچه آدرس - + Comma separated file (*.csv) - + سی.اس.وی. (فایل جداگانه دستوری) - + Error exporting - + صدور پیام خطا - + Could not write to file %1. - + قابل کپی در فایل نیست %1 AddressTableModel - + Label - + برچسب - + Address - + آدرس - + (no label) - + (برچسب ندارد) @@ -150,96 +152,89 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - + - - - TextLabel - - - - + Enter passphrase - + رمز/پَس فرِیز را وارد کنید - + New passphrase - + رمز/پَس فرِیز جدید را وارد کنید - + Repeat new passphrase - + رمز/پَس فرِیز را دوباره وارد کنید + + + + TextLabel + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + رمز/پَس فرِیز جدید را در wallet وارد کنید. برای انتخاب رمز/پَس فرِیز از 10 کاراکتر تصادفی یا بیشتر و یا هشت کلمه یا بیشتر استفاده کنید. Encrypt wallet - + wallet را رمزگذاری کنید This operation needs your wallet passphrase to unlock the wallet. - + برای انجام این عملکرد به رمز/پَس فرِیزِwallet نیاز است تا آن را از حالت قفل درآورد. Unlock wallet - + باز کردن قفل wallet This operation needs your wallet passphrase to decrypt the wallet. - + برای کشف رمز wallet، به رمز/پَس فرِیزِwallet نیاز است. Decrypt wallet - + کشف رمز wallet Change passphrase - + تغییر رمز/پَس فرِیز Enter the old and new passphrase to the wallet. - + رمز/پَس فرِیزِ قدیم و جدید را در wallet وارد کنید Confirm wallet encryption - + رمزگذاری wallet را تایید کنید WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! Are you sure you wish to encrypt your wallet? - + Wallet encrypted - + تایید رمزگذاری Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - - Warning: The Caps Lock key is on. - + Bitcoin برای اتمام فرایند رمزگذاری بسته خواهد شد. به خاطر داشته باشید که رمزگذاری WALLET شما، کامپیوتر شما را از آلودگی به بدافزارها مصون نمی دارد. @@ -247,371 +242,409 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed - + رمزگذاری تایید نشد Wallet encryption failed due to an internal error. Your wallet was not encrypted. - + رمزگذاری به علت خطای داخلی تایید نشد. wallet شما رمزگذاری نشد The supplied passphrases do not match. - + رمزهای/پَس فرِیزهایِ وارد شده با هم تطابق ندارند Wallet unlock failed - + قفل wallet باز نشد The passphrase entered for the wallet decryption was incorrect. - + رمزهای/پَس فرِیزهایِ وارد شده wallet برای کشف رمز اشتباه است. Wallet decryption failed - + کشف رمز wallet انجام نشد - Wallet passphrase was succesfully changed. - + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on. + BitcoinGUI - - Bitcoin Wallet - - - - - - Synchronizing with network... - - - - - Block chain synchronization in progress - - - - - &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 - + و ارسال سکه ها - + Send coins to a bitcoin address - + - + Sign &message - + امضا و پیام - + Prove you control an address - + - + E&xit - + خروج - + Quit application - + از "درخواست نامه"/ application خارج شو - + &About %1 - + - + Show information about Bitcoin - + اطلاعات در مورد Bitcoin را نشان بده - + About &Qt - + درباره و QT - + Show information about Qt - + نمایش اطلاعات درباره QT - + &Options... - + و انتخابها - + Modify configuration options for bitcoin - + اصلاح انتخابها برای پیکربندی Bitcoin - - Open &Bitcoin - + + Show/Hide &Bitcoin + نمایش/ عدم نمایش و bitcoin - - Show the Bitcoin window - + + Show or hide the Bitcoin window + نمایش یا عدم نمایش در صفحه bitcoin - + &Export... - + و صدور - + Export the data in the current tab to a file - - - - - &Encrypt Wallet - + صدور داده نوار جاری به یک فایل - + Encrypt or decrypt wallet - + رمزگذاری با رمزگشایی از wallet - + &Backup Wallet - - - - - Backup wallet to another location - + گرفتن نسخه پیشتیبان از Wallet - + &Change Passphrase - + تغییر رمز/پَس فرِیز - + Change the passphrase used for wallet encryption - + رمز مربوط به رمزگذاریِ wallet را تغییر دهید - + &File - + و فایل - + &Settings - + و تنظیمات - + &Help - + و راهنما - + Tabs toolbar - + نوار ابزار - + Actions toolbar - + نوار عملیات - + [testnet] - + [testnet] + + + + Bitcoin client + مشتری bitcoin - + bitcoin-qt - + - - - %n active connection(s) to Bitcoin network - + + + Synchronizing with network... + به روز رسانی با شبکه... - - Downloaded %1 of %2 blocks of transaction history. - + + Sending... + در حال ارسال... - - Downloaded %1 blocks of transaction history. - + + &Overview + و بازبینی - - - %n second(s) ago - + + + Bitcoin Wallet + + + + + Show general overview of wallet + نمای کلی از wallet را نشان بده + + + + &Transactions + و تراکنش + + + + Browse transaction history + تاریخچه تراکنش را باز کن + + + + &Address Book + و دفترجه ادرس + + + + Show the list of addresses for receiving payments + فهرست آدرسها را برای دریافت وجه نشان بده + + + + Backup wallet to another location + گرفتن نسخه پیشتیبان در آدرسی دیگر - - %n minute(s) ago - + + %n active connection(s) to Bitcoin network + + %n ارتباط فعال به شبکه Bitcoin +%n ارتباط فعال به شبکه Bitcoin + + + + + &Encrypt Wallet + و رمزگذاری wallet - - %n hour(s) ago - + + ~%n block(s) remaining + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + دانلود %1 از %2 بلاک مربوط به تاریخچه تراکنش (%3% انجام شده است) + + + + Downloaded %1 blocks of transaction history. + دانلود %1 از بلاکها در تاریخچه تراکنش - + %n day(s) ago - + + + - + 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? - - - - - Sending... - + تراکنش بیشتر از محدودیتهای شماست. شما می توانید همچنان با هزینه %1 آن را ارسال کنید که این هزینه به گره هایی که تراکنش را برایتان انجام می دهد تعلق می گیرد و به حمایت از شبکه کمک می کند. آیا شما می خواهید این هزینه را پرداخت کنید؟ - + 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 رمزگذاری شد و در حال حاضر از حالت قفل در آمده است - + Wallet is <b>encrypted</b> and currently <b>locked</b> - + wallet رمزگذاری شد و در حال حاضر قفل است - + Backup Wallet - + گرفتن نسخه پیشتیبان از Wallet - + Wallet Data (*.dat) - + داده های Wallet +(*.dat) - + Backup Failed - + عملیات گرفتن نسخه پیشتیبان انجام نشد - + There was an error trying to save the wallet data to the new location. - + در هنگام ذخیره داده های wallet به نسخه جدید خطایی ایجاد شده است + + + + %n second(s) ago + + %n ثانیه قبل +%n ثانیه قبل + + + + + %n minute(s) ago + + %n دقیقه قبل +%n دقیقه قبل + + + + + %n hour(s) ago + + %n ساعت قبل +%n ساعت قبل + + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: - + - + Choose the default subdivision unit to show in the interface, and when sending coins - + - - Display addresses in transaction list - + + &Display addresses in transaction list + و نمایش آدرسها در فهرست تراکنش + + + + Whether to show Bitcoin addresses in the transaction list + @@ -619,155 +652,160 @@ Address: %4 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 bitcoin address. - + آدرس وارد شده "%1" یک آدرس صحیح برای bitcoin نسشت Could not unlock wallet. - + عدم توانیی برای قفل گشایی wallet New key generation failed. - + عدم توانیی در ایجاد کلید جدید MainOptionsPage - + &Start Bitcoin on window system startup - + - + Automatically start Bitcoin after the computer is turned on - + - + &Minimize to the tray instead of the taskbar - + - + Show only a tray icon after minimizing the window - + - Map port using &UPnP - + M&inimize on close + - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - + 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 - + Map port using &UPnP + - 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. - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + - + &Connect through SOCKS4 proxy: - + - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + - + Proxy &IP: - + - + IP address of the proxy (e.g. 127.0.0.1) - + - + &Port: - + - + Port of the proxy (e.g. 1234) - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + - + Pay transaction &fee - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Detach databases at shutdown + + + + + 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. + @@ -775,107 +813,107 @@ Address: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + یک آدرس bitcoin وارد کنید (مثال 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Choose adress from address book - + آدرس از فهرست آدرس انتخاب کنید Alt+A - + Alt و A Paste address from clipboard - + آدرس را بر کلیپ بورد کپی کنید Alt+P - + Alt و P Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + و امضای پیام - Copy the currently selected address to the system clipboard - + Copy the current signature to the system clipboard + &Copy to Clipboard - + Error signing - + خطا %1 is not a valid address. - + آدرس وارد شده "%1" یک آدرس صحیح برای bitcoin نسشت Private key for %1 is not available. - + Sign failed - + OptionsDialog - + Main - + - + Display - + - + Options - + انتخاب/آپشن @@ -883,229 +921,226 @@ Address: %4 Form - + فرم + + + + Your current balance + مانده حساب جاری + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + تعداد تراکنشهایی که نیاز به تایید دارند و هنوز در مانده حساب جاری شما به حساب نیامده اند Balance: - + مانده حساب: - - 123.456 BTC - + + Total number of transactions in wallet + تعداد کل تراکنشهای wallet شما + + + + Unconfirmed: + تایید نشده Number of transactions: - + تعداد تراکنشها 0 - - - - - Unconfirmed: - + - - 0 BTC - + + Wallet + کیف پول - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - + + <b>Recent transactions</b> + تراکنشهای اخیر + + + QRCodeDialog - - <b>Recent transactions</b> - + + Request Payment + درخواست وجه - - Your current balance - + + Label: + برچسب: - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + Message: + پیام: - - Total number of transactions in wallet - + + Amount: + میزان وجه: - - - QRCodeDialog Dialog - + QR Code - - - - - Request Payment - - - - - Amount: - + - + BTC - + - - Label: - + + &Save As... + و ذخیره با عنوانِ... - - Message: - + + Error encoding URI into QR Code. + - - &Save As... - + + Resulting URI too long, try to reduce the text for label / message. + متن وارد شده طولانی است، متنِ برچسب/پیام را کوتاه کنید - - Save Image... - + + PNG Images (*.png) + تصاویر با فرمت PNG +(*.png) - - PNG Images (*.png) - + + Save Image... + SendCoinsDialog - - - - - - - + + + + + + + Send Coins - + سکه های ارسالی Send to multiple recipients at once - + ارسال همزمان به گیرنده های متعدد &Add recipient... - + Remove all transaction fields - + تمامی فیلدهای تراکنش حذف شوند Clear all - + Balance: - + مانده حساب: 123.456 BTC - + 123.456 BTC Confirm the send action - + تایید عملیات ارسال &Send - + و ارسال - + <b>%1</b> to %2 (%3) - + %1 به %2 (%3) - + Confirm send coins - + تایید ارسال سکه ها - + Are you sure you want to send %1? - + شما مطمئن هستید که می خواهید %1 را ارسال کنید؟ - + and - + و - - The recepient address is not valid, please recheck. - + + The recipient address is not valid, please recheck. + - + The amount to pay must be larger than 0. - + میزان پرداخت باید بیشتر از 0 باشد - - Amount exceeds your balance - + + The amount exceeds your balance. + - - 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 in one 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. + خطا: تراکنش تایید نشد. این خطا ممکن است به این دلیل اتفاق بیافتد که سکه های wallet شما خرج شده باشند مثلا اگر wallet.dat را مپی کرده باشید و سکه های شما در آن کپی استفاده شده باشند اما در اینجا نمایش داده نشده اند. @@ -1113,204 +1148,204 @@ p, li { white-space: pre-wrap; } 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + آدرس برای ارسال وجه به (برای مثال 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Choose address from address book - + آدرس از فهرست آدرس انتخاب کنید Alt+A - + Alt و A Paste address from clipboard - + آدرس را بر کلیپ بورد کپی کنید Alt+P - + Alt و P Remove this recipient - + این گیرنده را حذف کن Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + یک آدرس bitcoin وارد کنید (مثال 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) TransactionDesc - + Open for %1 blocks - + - + Open until %1 - + باز کن تا %1 - + %1/offline? - + - + %1/unconfirmed - + %1 غیرقابل تایید - + %1 confirmations - + %1 تاییدها - + <b>Status:</b> - + - + , has not been successfully broadcast yet - + تا به حال با موفقیت انتشار نیافته است - + , broadcast through %1 node - + - + , broadcast through %1 nodes - + - + <b>Date:</b> - + <b>تاریخ:</b> - + <b>Source:</b> Generated<br> - + - - + + <b>From:</b> - + - + unknown - + ناشناس - - - + + + <b>To:</b> - + - + (yours, label: - + - + (yours) - + - - - - + + + + <b>Credit:</b> - + - + (%1 matures in %2 more blocks) - + - + (not accepted) - + - - - + + + <b>Debit:</b> - + - + <b>Transaction fee:</b> - + - + <b>Net amount:</b> - + - + Message: - + پیام: - + Comment: - + - + Transaction ID: - + - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + @@ -1318,130 +1353,136 @@ p, li { white-space: pre-wrap; } Transaction details - + جزئیات تراکنش This pane shows a detailed description of the transaction - + این بخش جزئیات تراکنش را نشان می دهد TransactionTableModel + + + Open for %n block(s) + + تراکنشهای چندتایی +یک:برای %n را باز کن +دیگر: برای %n را باز کن + + - + Date - + تاریخ - + Type - + نوع - + Address - + آدرس - + Amount - - - - - Open for %n block(s) - + میزان وجه - + Open until %1 - + باز کن تا %1 - + Offline (%1 confirmations) - + برون خطی (%1 تاییدها) - + Unconfirmed (%1 of %2 confirmations) - + تایید نشده (%1 از %2 تاییدها) - + Confirmed (%1 confirmations) - + تایید شده (%1 تاییدها) - + Mined balance will be available in %n more blocks - + + + - + This block was not received by any other nodes and will probably not be accepted! - + این block توسط گره های دیگری دریافت نشده است و ممکن است قبول نشود - + 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. - + میزان وجه کم شده یا اضافه شده به حساب @@ -1450,514 +1491,655 @@ p, li { white-space: pre-wrap; } 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 - + میزان وجه کپی شود Edit label - + برچسب را ویرایش کنید Show 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. - + قابل کپی به فایل نیست %1. - + Range: - + دامنه: - + to - + به WalletModel - + Sending... - + در حال ارسال... bitcoin-core - + Bitcoin version - + نسخه bitcoin - - Usage: - + + Don't generate coins + سکه ها را تولید نکن - - Send command to -server or bitcoind - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + تعداد ثانیه ها برای اتصال دوباره قرینه های اشتباه (پیش فرض:86400) - - List commands - + + Generate coins + سکه ها را تولید کن - + Get help for a command - + درخواست کمک برای یک دستور - - Options: - + + List commands + فهرست دستورها - - Specify configuration file (default: bitcoin.conf) - + + Listen for connections on <port> (default: 8333 or testnet: 18333) + ارتباطات را در <PORT> بشنوید (پیش فرض: 8333 or testnet: 18333) - - Specify pid file (default: bitcoind.pid) - + + Maintain at most <n> connections to peers (default: 125) + نگهداری <N> ارتباطات برای قرینه سازی (پیش فرض:125) - - Generate coins - + + Options: + انتخابها: - - Don't generate coins - + + Accept command line and JSON-RPC commands + command line و JSON-RPC commands را قبول کنید - - Start minimized - + + Send command to -server or bitcoind + ارسال دستور به سرور یا bitcoined - - Specify data directory - + + Bitcoin + bitcoin - - Specify connection timeout (in milliseconds) - + + Set database cache size in megabytes (default: 25) + حافظه بانک داده را به مگابایت تنظیم کنید (پیش فرض: 25) - - Connect through socks4 proxy - + + 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 ⏎ اگر فایل ایجاد نشده است، آن را با یک فایل "فقط متنی" ایجاد کنید. + - - Allow DNS lookups for addnode and connect - + + Specify connection timeout (in milliseconds) + تعیین مدت زمان وقفه (time out) به هزارم ثانیه - - Listen for connections on <port> (default: 8333 or testnet: 18333) - + + Specify data directory + دایرکتوری داده را مشخص کن - - Maintain at most <n> connections to peers (default: 125) - + + Error + خطا - - Add a node to connect to - + + To use the %s option + برای استفاده از %s از اختیارات - - Connect only to the specified node - + + Error loading wallet.dat + خطا در هنگام لود شدن wallet.dat - - Don't accept connections from outside - + + Cannot downgrade wallet + قابلیت برگشت به نسخه قبلی برای wallet امکان پذیر نیست - - Don't bootstrap list of peers using DNS - + + Error loading wallet.dat: Wallet corrupted + خطا در هنگام لود شدن wallet.dat: Wallet corrupted - - Threshold for disconnecting misbehaving peers (default: 100) - + + Cannot initialize keypool + initialize keypool امکان پذیر نیست - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + + Cannot write default address + آدرس پیش فرض قابل ذخیره نیست - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + + Find peers using internet relay chat (default: 0) + یافتن همتا/دوست با استفاده از internet relay chat (پیش فرض:0) - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + + Loading addresses... + لود شدن آدرسها.. - - Don't attempt to use UPnP to map the listening port - + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 شما خرج شده باشند مثلا اگر wallet.dat را مپی کرده باشید و سکه های شما در آن کپی استفاده شده باشند اما در اینجا نمایش داده نشده اند. - - Attempt to use UPnP to map the listening port - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + خطا: تراکنش نیازمند پرداخت هزینه به میران حداقل %s است به علت هزینه، دشواری عملیات یا استفاده از وجوه دریافت شده اخیر - - Fee per kB to add to transactions you send - + + Error: Transaction creation failed + خطا: ایجاد تراکنش امکان پذیر نیست - - Accept command line and JSON-RPC commands - + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + - - Run in the background as a daemon and accept commands - + + Usage + میزان استفاده - - Use the test network - + + Error loading addr.dat + خطا در هنگام لود شدن addr.dat - - Output extra debugging information - + + Error loading blkindex.dat + خطا در هنگام لود شدن فایل blkindex.dat - - Prepend debug output with timestamp - + + Loading wallet... + wallet در حال لود شدن است... - - Send trace/debug info to console instead of debug.log file - + + Error: Wallet locked, unable to create transaction + خطا: wallet قفل شده است، ایجاد تراکنش امکان پذیر نیست - - Send trace/debug info to debugger - + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + خطا در هنگام لود شدن wallet.dat. به نسخه جدید Bitocin برای wallet نیاز است. - - Username for JSON-RPC connections - + + How many blocks to check at startup (default: 2500, 0 = all) + چند بلاک در startup بررسی شوند (پیش فرض: 2500 و 0= همه) - - Password for JSON-RPC connections - + + How thorough the block verification is (0-6, default: 1) + چگونگی تایید تمامی بلاکها (پیش فرض: 1 و 0-6) - - Listen for JSON-RPC connections on <port> (default: 8332) - + + Rescanning... + اسکنِ دوباره... - - Allow JSON-RPC connections from specified IP address - + + Invalid amount + میزان اشتباه است - - Send commands to node running on <ip> (default: 127.0.0.1) - + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + %s شما باید یک رمز rpc در فایل تنظیمات ایجاد کنید⏎ %s ⏎ توصیه می شود از رمزهای تصادفی زیر استفاده کنید rpcuser=bitcoinrpc⏎ rpcpassword=%s (شما لازم نیست این رمزها را به خاطر بسپارید)⏎ اگر فایل ایجاد نشده است، آن را با یک فایل "فقط متنی" ایجاد کنید. + - - Set key pool size to <n> (default: 100) - + + Done loading + اتمام لود شدن - - Rescan the block chain for missing wallet transactions - + + Loading block index... + لود شدن نمایه بلاکها.. - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Sending... + در حال ارسال... - - Use OpenSSL (https) for JSON-RPC connections - + + Insufficient funds + وجوه ناکافی - - Server certificate file (default: server.cert) - + + Warning: Disk space is low + - - Server private key (default: server.pem) - + + An error occurred while setting up the RPC port %i for listening: %s + - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + - - This help message - + + Start minimized + + + + + Show splash screen on startup (default: 1) + - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + Connect through socks4 proxy + - - Loading addresses... - + + Allow DNS lookups for addnode and connect + - - Error loading addr.dat - + + Connect only to the specified node + - - Error loading blkindex.dat - + + Accept connections from outside (default: 1) + - Error loading wallet.dat: Wallet corrupted - + Set language, for example "de_DE" (default: system locale) + - Error loading wallet.dat: Wallet requires newer version of Bitcoin - + Find peers using DNS lookup (default: 1) + - - Wallet needed to be rewritten: restart Bitcoin to complete - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + - - Error loading wallet.dat - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + - - Loading block index... - + + Use Universal Plug and Play to map the listening port (default: 1) + - - Loading wallet... - + + Use Universal Plug and Play to map the listening port (default: 0) + - - Rescanning... - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Done loading - + + Fee per KB to add to transactions you send + هزینه بر اساس کیلو بایت برای اضافه شدن به تراکنشی که ارسال کرده اید - + + Run in the background as a daemon and accept commands + به عنوان daemon بک گراند را اجرا کنید و دستورات را قبول نمایید + + + + Output extra debugging information + + + + + Password for JSON-RPC connections + رمز برای ارتباطاتِ JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 8332) + ارتباطاتِ JSON-RPC را در <port> گوش کنید (پیش فرض:8332) + + + + Rescan the block chain for missing wallet transactions + زنجیره بلاک را برای تراکنش جا افتاده در WALLET دوباره اسکن کنید + + + Invalid -proxy address - + - + Invalid amount for -paytxfee=<amount> - + - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + - + Error: CreateThread(StartNode) failed - + - - Warning: Disk space is low - + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - + + Send commands to node running on <ip> (default: 127.0.0.1) + دستورات را به گره اجرا شده در<ip> ارسال کنید (پیش فرض:127.0.0.1) - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + + Add a node to connect to and attempt to keep the connection open + یک گره برای اتصال اضافه کنید و تلاش کنید تا اتصال را باز نگاه دارید + + + + Server certificate file (default: server.cert) + فایل certificate سرور (پیش فرض server.cert) + + + + Server private key (default: server.pem) + رمز اختصاصی سرور (پیش فرض: server.pem) + + + + Threshold for disconnecting misbehaving peers (default: 100) + آستانه قطع برای قرینه سازی اشتباه (پیش فرض:100) + + + + This help message + این پیام راهنما + + + + Use OpenSSL (https) for JSON-RPC connections + برای ارتباطاتِ JSON-RPC از OpenSSL (https) استفاده کنید + + + + Upgrade wallet to latest format + wallet را به جدیدترین نسخه روزآمد کنید + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + ciphers قابل قبول (پیش فرض: default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Wallet needed to be rewritten: restart Bitcoin to complete + wallet نیاز به بازنویسی دارد. Bitcoin را برای تکمیل عملیات دوباره اجرا کنید. + + + + Use the test network + از تستِ شبکه استفاده نمایید + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + دستور را وقتی بهترین بلاک تغییر کرد اجرا کن (%s در دستور توسط block hash جایگزین شده است) + + + + Send trace/debug info to console instead of debug.log file + ارسال اطلاعات پیگیری/خطایابی به کنسول به جای ارسال به فایل debug.log - beta - + Send trace/debug info to debugger + ارسال اطاعات خطایابی/پیگیری به سیستم خطایاب + + + + Username for JSON-RPC connections + شناسه کاربری برای ارتباطاتِ JSON-RPC + + + + Set database disk log size in megabytes (default: 100) + سایز disk log بانک داده را به مگابایت تنظیم کنید (پیش فرض: 100) + + + + Specify configuration file (default: bitcoin.conf) + فایل پیکربندیِ را مشخص کنید (پیش فرض: bitcoin.conf) + + + + Specify pid file (default: bitcoind.pid) + فایل pid را مشخص کنید (پیش فرض: bitcoind.pid) + + + + Prepend debug output with timestamp + برونداد اشکال زدایی با timestamp + + + + Set key pool size to <n> (default: 100) + حجم key pool را به اندازه <n> تنظیم کنید (پیش فرض:100) + + + + Allow JSON-RPC connections from specified IP address + ارتباطاتِ JSON-RPC را از آدرس آی.پی. مشخصی برقرار کنید. + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + قفل دایرکتوری داده ها %s قابل دریافت نیست. احتمال این وجود دارد که Bitcoin در حال اجرا باشد + + + + Usage: + میزان استفاده: - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fi.ts b/src/qt/locale/bitcoin_fi.ts index 8b6481930c..2244da02df 100644 --- a/src/qt/locale/bitcoin_fi.ts +++ b/src/qt/locale/bitcoin_fi.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> versio - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -93,42 +95,42 @@ This product includes software developed by the OpenSSL Project for use in the O &Poista - + Copy address Kopioi osoite - + Copy label Kopioi nimi - + Edit Muokkaa - + Delete Poista - + Export Address Book Data Vie osoitekirja - + Comma separated file (*.csv) Comma separated file (*.csv) - + Error exporting Virhe viedessä osoitekirjaa - + Could not write to file %1. Ei voida kirjoittaa tiedostoon %1. @@ -136,17 +138,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Nimi - + Address Osoite - + (no label) (ei nimeä) @@ -159,26 +161,25 @@ This product includes software developed by the OpenSSL Project for use in the O Dialogi - - - TextLabel - TekstiMerkki - - - + Enter passphrase Anna tunnuslause - + New passphrase Uusi tunnuslause - + Repeat new passphrase Toista uusi tunnuslause + + + TextLabel + TekstiMerkki + 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>. @@ -199,11 +200,40 @@ This product includes software developed by the OpenSSL Project for use in the O Unlock wallet Avaa lompakko + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin sulkeutuu lopettaakseen salausprosessin. Muista, että salattu lompakko ei täysin suojaa sitä haittaohjelmien aiheuttamilta varkauksilta. + + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + VAROITUS: Mikäli salaat lompakkosi ja unohdat tunnuslauseen, <b>MENETÄT LOMPAKON KOKO SISÄLLÖN</b>! +Tahdotko varmasti salata lompakon? + This operation needs your wallet passphrase to decrypt the wallet. Tätä toimintoa varten sinun täytyy antaa lompakon tunnuslause salauksen purkuun. + + + 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. + Decrypt wallet @@ -224,30 +254,12 @@ This product includes software developed by the OpenSSL Project for use in the O Confirm wallet encryption Hyväksy lompakon salaus - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - VAROITUS: Mikäli salaat lompakkosi ja unohdat tunnuslauseen, <b>MENETÄT LOMPAKON KOKO SISÄLLÖN</b>! -Tahdotko varmasti salata lompakon? - Wallet encrypted Lompakko salattu - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin sulkeutuu lopettaessaan salausprosessin. Muista että salattu lompakko ei täysin suojaa sitä haittaohjelmien aiheuttamilta varkauksilta. - - - - - Warning: The Caps Lock key is on. - Varoitus: Caps Lock on päällä. - @@ -262,366 +274,387 @@ Tahdotko varmasti salata lompakon? Lompakon salaaminen epäonnistui sisäisen virheen vuoksi. Lompakkoa 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 passphrase was successfully changed. + Lompakon tunnuslause on vaihdettu. - - Wallet decryption failed - Lompakon salauksen purku epäonnistui. + + + Warning: The Caps Lock key is on. + Varoitus: Caps Lock on päällä. - - Wallet passphrase was succesfully changed. - Lompakon tunnuslause on vaihdettu. + + + The supplied passphrases do not match. + Annetut tunnuslauseet eivät täsmää. BitcoinGUI - - Bitcoin Wallet - Bitcoin-lompakko - - - - + Synchronizing with network... Synkronoidaan verkon kanssa... - - Block chain synchronization in progress - Block chainin synkronointi kesken - - - + &Overview &Yleisnäkymä - - Show general overview of wallet - Näyttää kokonaiskatsauksen lompakon tilanteesta + + Tabs toolbar + Välilehtipalkki - + &Transactions &Rahansiirrot - - Browse transaction history - Selaa rahansiirtohistoriaa + + E&xit + L&opeta - + &Address Book &Osoitekirja - + Edit the list of stored addresses and labels Muokkaa tallennettujen nimien ja osoitteiden listaa - - &Receive coins - &Bitcoinien vastaanottaminen - - - - Show the list of addresses for receiving payments - Näytä Bitcoinien vastaanottamiseen käytetyt osoitteet - - - - &Send coins - &Lähetä Bitcoineja - - - - Send coins to a bitcoin address - Lähetä Bitcoin-osoitteeseen - - - - Sign &message - Allekirjoita &viesti + + &Help + &Apua - + Prove you control an address Todista että hallitset osoitetta - - E&xit - L&opeta - - - - Quit application - Lopeta ohjelma - - - - &About %1 - &Tietoja %1 - - - + Show information about Bitcoin Näytä tietoa Bitcoin-projektista - - About &Qt - Tietoja &Qt + + &File + &Tiedosto - + Show information about Qt Näytä tietoja QT:ta - + &Options... &Asetukset... + + + %n hour(s) ago + + %n tunti sitten + %n tuntia sitten + + - - Modify configuration options for bitcoin - Muokkaa asetuksia + + Encrypt or decrypt wallet + Kryptaa tai dekryptaa lompakko - - Open &Bitcoin - Avaa &Bitcoin + + Backup wallet to another location + Varmuuskopioi lompakko toiseen sijaintiin - - Show the Bitcoin window - Näytä Bitcoin-ikkuna + + Bitcoin Wallet + Bitcoin-lompakko - - &Export... - &Vie... + + Sign &message + Allekirjoita &viesti - - Export the data in the current tab to a file - Vie aukiolevan välilehden tiedot tiedostoon + + Modify configuration options for bitcoin + Muokkaa asetuksia - - &Encrypt Wallet - &Salaa lompakko + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Lompakko on <b>salattu</b> ja tällä hetkellä <b>lukittuna</b> - - Encrypt or decrypt wallet - Kryptaa tai dekryptaa lompakko + + Wallet Data (*.dat) + Lompakkodata (*.dat) - - &Backup Wallet - &Varmuuskopioi lompakko + + &Export... + &Vie... - - Backup wallet to another location - Varmuuskopioi lompakko toiseen sijaintiin + + &Encrypt Wallet + &Salaa lompakko - + &Change Passphrase &Vaihda tunnuslause - + Change the passphrase used for wallet encryption Vaihda lompakon salaukseen käytettävä tunnuslause - - &File - &Tiedosto - - - - &Settings - &Asetukset - - - - &Help - &Apua + + Up to date + Rahansiirtohistoria on ajan tasalla - - Tabs toolbar - Välilehtipalkki + + &About %1 + &Tietoja %1 - - Actions toolbar - Toimintopalkki + + Send coins to a bitcoin address + Lähetä Bitcoin-osoitteeseen - - [testnet] - [testnet] + + &Backup Wallet + &Varmuuskopioi lompakko - + bitcoin-qt bitcoin-qt - - - %n active connection(s) to Bitcoin network - %n aktiivinen yhteys Bitcoin-verkkoon%n aktiivista yhteyttä Bitcoin-verkkoon - - - Downloaded %1 of %2 blocks of transaction history. - Ladattu %1 of %2 rahansiirtohistorian lohkoa. + + 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ää kokorajoituksen. Voit siitä huolimatta lähettää sen %1 siirtopalkkion mikä menee solmuille jotka käsittelevät rahansiirtosi tämä auttaa myös verkostoa. Haluatko maksaa siirtopalkkion? - - Downloaded %1 blocks of transaction history. - Ladattu %1 lohkoa rahansiirron historiasta. - - - - %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 + + Sent transaction + Lähetetyt rahansiirrot - - - %n day(s) ago - %n päivä sitten%n päivää sitten + + + Incoming transaction + Saapuva rahansiirto - - Up to date - Ohjelmisto on ajan tasalla + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Lompakko on <b>salattu</b> ja tällä hetkellä <b>avoinna</b> - - Catching up... - Kurotaan kiinni... + + Backup Wallet + Varmuuskopioi lompakko - + Last received block was generated %1. Viimeisin vastaanotettu lohko tuotettu %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ää kokorajoituksen. Voit siitä huolimatta lähettää sen %1 siirtopalkkion mikä menee solmuille jotka käsittelevät rahansiirtosi tämä auttaa myös verkostoa. Haluatko maksaa siirtopalkkion? + + Backup Failed + Varmuuskopio epäonnistui - + Sending... Lähetetään... - - Sent transaction - Lähetetyt rahansiirrot + + There was an error trying to save the wallet data to the new location. + Virhe tallennettaessa lompakkodataa uuteen sijaintiin. - - Incoming transaction - Saapuva rahansiirto + + &Receive coins + &Vastaanota Bitcoineja - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Päivä: %1 -Määrä: %2 -Tyyppi: %3 -Osoite: %4 + + Show the list of addresses for receiving payments + Näytä Bitcoinien vastaanottamiseen käytetyt osoitteet - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Lompakko on <b>salattu</b> ja tällä hetkellä <b>avoinna</b> + + Bitcoin client + Bitcoin-asiakas - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Lompakko on <b>salattu</b> ja tällä hetkellä <b>lukittuna</b> + + &Send coins + &Lähetä Bitcoineja - - Backup Wallet - Varmuuskopioi lompakko + + Show or hide the Bitcoin window + Näytä tai piillota Bitcoin-ikkuna - - Wallet Data (*.dat) - Lompakkodata (*.dat) + + Export the data in the current tab to a file + Vie auki olevan välilehden tiedot tiedostoon - - Backup Failed - Varmuuskopio epäonnistui + + Quit application + Lopeta ohjelma - - There was an error trying to save the wallet data to the new location. - Virhe tallennettaessa lompakkodataa uuteen sijaintiin. + + About &Qt + Tietoja &Qt + + + + Show/Hide &Bitcoin + Näytä/Kätke &Bitcoin + + + + %n active connection(s) to Bitcoin network + + %n aktiivinen yhteys Bitcoin-verkkoon + %n aktiivista yhteyttä Bitcoin-verkkoon + + + + + Downloaded %1 blocks of transaction history. + Ladattu %1 lohkoa rahansiirron historiasta. + + + + %n second(s) ago + + %n sekunti sitten + %n sekuntia sitten + + + + + %n minute(s) ago + + %n minuutti sitten + %n minuuttia sitten + + + + + %n day(s) ago + + %n päivä sitten + %n päivää sitten + + + + + Catching up... + Kurotaan kiinni... + + + + ~%n block(s) remaining + + ~%n lohko jäljellä + ~%n lohkoja jäljellä + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Ladattu %1 / %2 lohkoista rahansiirtohistoriasta (%3% suoritettu). + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Päivä: %1 +Määrä: %2 +Tyyppi: %3 +Osoite: %4 + + + + Show general overview of wallet + Näyttää kokonaiskatsauksen lompakon tilanteesta + + + + Browse transaction history + Selaa rahansiirtohistoriaa + + + + &Settings + &Asetukset + + + + Actions toolbar + Toimintopalkki + + + + [testnet] + [testnet] + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: &Yksikkö, jossa määrät näytetään: - + Choose the default subdivision unit to show in the interface, and when sending coins Valitse oletus lisämääre mikä näkyy käyttöliittymässä ja kun lähetät kolikoita - - Display addresses in transaction list - Näytä osoitteet rahansiirtoluettelossa + + &Display addresses in transaction list + &Näytä osoitteet rahansiirtoluettelossa + + + + Whether to show Bitcoin addresses in the transaction list + @@ -641,6 +674,11 @@ Osoite: %4 The label associated with this address book entry Tähän osoitteeseen liitetty nimi + + + Could not unlock wallet. + Lompakkoa ei voitu avata. + &Address @@ -681,11 +719,6 @@ Osoite: %4 The entered address "%1" is not a valid bitcoin address. Osoite "%1" ei ole kelvollinen Bitcoin-osoite. - - - Could not unlock wallet. - Lompakkoa ei voitu avata. - New key generation failed. @@ -695,87 +728,92 @@ Osoite: %4 MainOptionsPage - + &Start Bitcoin on window system startup &Käynnistä Bitcoin kun kirjaudutaan sisään - + Automatically start Bitcoin after the computer is turned on Käynnistä Bitcoin automaattisesti, kun tietokone kytketään päälle - + &Minimize to the tray instead of the taskbar &Pienennä ilmaisinalueelle työkalurivin sijasta - + Show only a tray icon after minimizing the window Näytä ainoastaan pikkukuvake ikkunan pienentämisen jälkeen - + Map port using &UPnP Portin uudelleenohjaus &UPnP:llä - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Avaa Bitcoin-asiakasohjelman portti reitittimellä automaattisesti. Tämä toimii vain, jos reitittimesi tukee UPnP:tä ja se on käytössä. - + M&inimize on close P&ienennä ikkuna suljettaessa - + 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. - + &Connect through SOCKS4 proxy: &Yhdistä SOCKS4-välityspalvelimen kautta: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Yhdistä Bitcoin-verkkoon SOCKS4-välityspalvelimen kautta (esimerkiksi käyttäessä Tor:ia) - + Proxy &IP: Palvelimen &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. 1234) Portti, johon Bitcoin-asiakasohjelma yhdistää (esim. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Vapaaehtoinen rahansiirtopalkkio per kB auttaa nopeuttamaan siirtoja. Useimmat rahansiirrot ovat 1 kB. 0.01 palkkio on suositeltava. - - - + Pay transaction &fee Maksa rahansiirtopalkkio - + + Detach databases at shutdown + + + + + 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. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Vapaaehtoinen rahansiirtopalkkio per kB auttaa nopeuttamaan siirtoja. Useimmat rahansiirrot ovat 1 kB. 0.01 palkkio on suositeltava. @@ -794,8 +832,8 @@ Osoite: %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Osoite, johon Bitcoinit lähetetään (esim. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Anna Bitcoin-osoite (esim. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -839,8 +877,8 @@ Osoite: %4 - Copy the currently selected address to the system clipboard - Kopioi valittu osoite leikepöydälle + Copy the current signature to the system clipboard + Kopioi tämänhetkinen allekirjoitus leikepöydälle @@ -873,17 +911,17 @@ Osoite: %4 OptionsDialog - + Main Yleiset - + Display Näyttö - + Options Asetukset @@ -900,11 +938,6 @@ Osoite: %4 Balance: Saldo: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -916,30 +949,7 @@ Osoite: %4 0 - - Unconfirmed: - Vahvistamatta: - - - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Lompakko</span></p></body></html> - - - + <b>Recent transactions</b> <b>Viimeisimmät rahansiirrot</b> @@ -958,9 +968,44 @@ p, li { white-space: pre-wrap; } Total number of transactions in wallet Lompakolla tehtyjen rahansiirtojen yhteismäärä + + + Unconfirmed: + Vahvistamatta: + + + + Wallet + Lompakko + QRCodeDialog + + + Message: + Viesti: + + + + &Save As... + &Tallenna nimellä... + + + + Error encoding URI into QR Code. + Virhe käännettäessä URI:a QR-koodiksi. + + + + Resulting URI too long, try to reduce the text for label / message. + Tuloksen URI liian pitkä, yritä lyhentää otsikon tekstiä / viestiä. + + + + PNG Images (*.png) + PNG kuvat (*png) + Dialog @@ -972,57 +1017,42 @@ p, li { white-space: pre-wrap; } QR-koodi - + Request Payment Vastaanota maksu - + Amount: Määrä: - + BTC BTC - + Label: Tunniste: - - Message: - Viesti: - - - - &Save As... - &Tallenna nimellä... - - - + Save Image... Tallenna kuva... - - - PNG Images (*.png) - PNG kuvat (*png) - SendCoinsDialog - - - - - - - + + + + + + + Send Coins Lähetä Bitcoineja @@ -1031,16 +1061,16 @@ p, li { white-space: pre-wrap; } Send to multiple recipients at once Lähetä monelle vastaanottajalle - - - &Add recipient... - &Lisää vastaanottaja... - Remove all transaction fields Poista kaikki rahansiiron kentät + + + &Add recipient... + &Lisää vastaanottaja... + Clear all @@ -1067,58 +1097,58 @@ p, li { white-space: pre-wrap; } &Lähetä - + <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) - + Confirm send coins Hyväksy Bitcoinien lähettäminen - + Are you sure you want to send %1? Haluatko varmasti lähettää %1? - + and ja - - The recepient address is not valid, please recheck. - Vastaanottajan osoite ei kelpaa, ole hyvä ja tarkista + + The recipient address is not valid, please recheck. + Vastaanottajan osoite ei kelpaa, ole hyvä ja tarkista. - + The amount to pay must be larger than 0. Maksettavan summan tulee olla suurempi kuin 0 Bitcoinia. - - Amount exceeds your balance + + The amount exceeds your balance. Määrä on suurempi kuin tilisi tämänhetkinen saldo. - - Total exceeds your balance when the %1 transaction fee is included + + The total exceeds your balance when the %1 transaction fee is included. Kokonaissumma ylittäää tilisi saldon, kun siihen lisätään %1 BTC rahansiirtomaksu. - - Duplicate address found, can only send to each address once in one send operation + + Duplicate address found, can only send to each address once per send operation. Tuplaosite löytynyt, voit ainoastaan lähettää kunkin osoitteen kerran yhdessä lähetysoperaatiossa. - - Error: Transaction creation failed - Virhe: Rahansiirron luonti epäonnistui + + 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. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Virhe: Rahansiirto hylättiin. Tämä voi tapahtua jos jotkin bitcoineistasi on jo käytetty, esimerkiksi jos olet käyttänyt kopiota wallet.dat-lompakkotiedostosta ja bitcoinit on merkitty käytetyksi vain kopiossa. @@ -1189,143 +1219,143 @@ p, li { white-space: pre-wrap; } TransactionDesc - + Open for %1 blocks Avoinna %1 lohkolle - + Open until %1 Avoinna %1 asti - - %1/offline? - %1/ei linjalla? - - - + %1/unconfirmed %1/vahvistamaton - + %1 confirmations %1 vahvistusta - - <b>Status:</b> - <b>Tila:</b> + + <b>Date:</b> + <b>Päivä:</b> - - , has not been successfully broadcast yet - , ei ole vielä onnistuneesti lähetetty + + <b>Source:</b> Generated<br> + <b>Lähde:</b> Generoitu<br> - - , broadcast through %1 node - , lähetetään %1 solmun kautta + + + <b>From:</b> + <b>Lähettäjä:</b> - - , broadcast through %1 nodes - , lähetetään %1 solmunkautta + + %1/offline? + %1/ei linjalla? - - <b>Date:</b> - <b>Päivä:</b> + + <b>Status:</b> + <b>Tila:</b> - - <b>Source:</b> Generated<br> - <b>Lähde:</b> Generoitu<br> + + , has not been successfully broadcast yet + , ei ole vielä onnistuneesti lähetetty - - - <b>From:</b> - <b>Lähettäjä:</b> + + , broadcast through %1 node + , lähetetään %1 solmun kautta - - unknown - tuntematon + + , broadcast through %1 nodes + , lähetetään %1 solmunkautta - - - + + + <b>To:</b> <b>Vast. ott.:</b> - + (yours, label: (sinun, tunniste: - + (yours) (sinun) - - - - + + + + <b>Credit:</b> <b>Krediitti:</b> - + (%1 matures in %2 more blocks) (%1 erääntyy %2 useammassa lohkossa) - + (not accepted) (ei hyväksytty) - - - + + + <b>Debit:</b> <b>Debit:</b> - + <b>Transaction fee:</b> <b>Rahansiirtomaksu:</b> - + <b>Net amount:</b> <b>Nettomäärä:</b> - + Message: Viesti: - + Comment: Kommentti: - + Transaction ID: Rahansiirron ID: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Luotujen kolikoiden on odotettava 120 lohkoa ennen kuin ne voidaan käyttää. Kun loit tämän lohkon, se lähetettiin verkkoon lisättäväksi lohkoketjuun. Jos se epäonnistuu ketjuun liittymisessä, se tila tulee muuttumaan "ei hyväksytty" eikä sitä voi käyttää. Tätä voi silloin tällöin esiintyä jos toinen solmu luo lohkon muutamia sekunteja omastasi. + + + unknown + tuntematon + TransactionDescDialog @@ -1343,123 +1373,214 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + + Amount + Määrä + + + Date Päivämäärä - + Type Laatu - + Address Osoite - - - Amount - Määrä - - + Open for %n block(s) - Auki %n lohkolleAuki %n lohkoille + + Auki %n lohkolle + Auki %n lohkoille + - + Open until %1 Avoinna %1 asti - + Offline (%1 confirmations) Ei yhteyttä verkkoon (%1 vahvistusta) - + Unconfirmed (%1 of %2 confirmations) Vahvistamatta (%1/%2 vahvistusta) - + Confirmed (%1 confirmations) Vahvistettu (%1 vahvistusta) - + Mined balance will be available in %n more blocks - Louhittu saldo tulee saataville %n lohkossaLouhittu saldo tulee saataville %n lohkossa + + Louhittu saldo tulee saataville %n lohkossa + Louhittu saldo tulee saataville %n lohkossa + - + 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äksytty! + 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 + + + Copy address + Kopioi osoite + + + + Copy label + Kopioi nimi + + + + Copy amount + Kopioi määrä + + + + Edit label + Muokkaa nimeä + + + + Export Transaction Data + Vie rahansiirron tiedot + + + + Comma separated file (*.csv) + Comma separated file (*.csv) + + + + Confirmed + Vahvistettu + + + + Type + Laatu + + + + Label + Nimi + + + + Address + Osoite + + + + Amount + Määrä + + + + ID + ID + + + + Error exporting + Virhe tietojen viennissä + + + + Could not write to file %1. + Ei voida kirjoittaa tiedostoon %1. + + + + Range: + Alue: + + + + to + kenelle + + + + Date + Aika + @@ -1532,447 +1653,510 @@ p, li { white-space: pre-wrap; } Minimimäärä - - Copy address - Kopioi osoite + + Show details... + Näytä tarkemmat tiedot... + + + WalletModel - - Copy label - Kopioi nimi + + Sending... + Lähetetään... + + + bitcoin-core - - Copy amount - Kopioi määrä + + Accept command line and JSON-RPC commands + Hyväksy merkkipohjaiset- ja JSON-RPC-käskyt - - Edit label - Muokkaa nimeä + + Run in the background as a daemon and accept commands + Aja taustalla daemonina ja hyväksy komennot - - Show details... - Näytä tarkemmat tiedot... + + Server certificate file (default: server.cert) + Palvelimen sertifikaatti-tiedosto (oletus: server.cert) - - Export Transaction Data - Vie transaktion tiedot + + Server private key (default: server.pem) + Palvelimen yksityisavain (oletus: server.pem) - - Comma separated file (*.csv) - Comma separated file (*.csv) + + This help message + Tämä ohjeviesti - - Confirmed - Vahvistettu + + Use the test network + Käytä test -verkkoa - - Date - Aika + + Wallet needed to be rewritten: restart Bitcoin to complete + Lompakko tarvitsee uudelleenkirjoittaa: käynnistä Bitcoin uudelleen - - Type - Laatu + + Fee per KB to add to transactions you send + Rahansiirtopalkkio per KB lisätään lähettämääsi rahansiirtoon - - Label - Nimi + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Kuuntele yhteyksiä portista <port> (oletus: 8333 tai testnet: 18333) - - Address - Osoite + + Maintain at most <n> connections to peers (default: 125) + Pidä enintään <n> yhteyttä verkkoihin (oletus: 125) - - Amount - Määrä + + Threshold for disconnecting misbehaving peers (default: 100) + Kynnysarvo aikakatkaisulle heikosti toimiville verkoille (oletus: 100) - - ID - ID + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Sekuntien määrä, kuinka kauan uudelleenkytkeydytään verkkoihin (oletus: 86400) - - Error exporting - Virhe tietojen viennissä + + Listen for JSON-RPC connections on <port> (default: 8332) + Kuuntele JSON-RPC -yhteyksiä portista <port> (oletus: 8332) - - Could not write to file %1. - Ei voida kirjoittaa tiedostoon %1. + + Allow JSON-RPC connections from specified IP address + Salli JSON-RPC yhteydet tietystä ip-osoitteesta - - Range: - Alue: + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + En pääse käsiksi data-hakemiston lukitukseen %s. Bitcoin on todennäköisesti jo käynnistetty. - - to - kenelle + + Loading addresses... + Ladataan osoitteita... - - - WalletModel - - Sending... - Lähetetään... + + Error loading blkindex.dat + Virhe ladattaessa blkindex.dat-tiedostoa + + + + Error loading wallet.dat: Wallet corrupted + Virhe ladattaessa wallet.dat-tiedostoa: Lompakko vioittunut + + + + 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) + + + + Set database cache size in megabytes (default: 25) + Aseta tietokannan välimuistin koko megatavuina (oletus: 25) + + + + How many blocks to check at startup (default: 2500, 0 = all) + Kuinka monta lohkoa tarkistetaan käynnistettäessä (oletus: 2500, 0 = kaikki) + + + + How thorough the block verification is (0-6, default: 1) + Kuinka tiukka lohkovarmistus on (0-6, oletus: 1) + + + + Prepend debug output with timestamp + Lisää debuggaustiedon tulostukseen aikaleima + + + + 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ä jäljitys/debug-tieto debuggeriin + + + + Username for JSON-RPC connections + Käyttäjätunnus JSON-RPC-yhteyksille + + + + Password for JSON-RPC connections + Salasana JSON-RPC-yhteyksille + + + + Send commands to node running on <ip> (default: 127.0.0.1) + Lähetä käskyjä solmuun osoitteessa <ip> (oletus: 127.0.0.1) + + + + 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 - - - bitcoin-core - + + Use OpenSSL (https) for JSON-RPC connections + Käytä OpenSSL:ää (https) JSON-RPC-yhteyksille + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Hyväksyttävä salaus (oletus: +TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Loading block index... + Ladataan lohkoindeksiä... + + + + Loading wallet... + Ladataan lompakkoa... + + + + Rescanning... + Skannataan uudelleen... + + + + Done loading + Lataus on valmis + + + Bitcoin version Bitcoinin versio - + + An error occurred while setting up the RPC port %i for listening: %s + + + + Usage: Käyttö: - + Send command to -server or bitcoind Lähetä käsky palvelimelle tai bitcoind:lle - + List commands Lista komennoista - + Get help for a command Hanki apua käskyyn - + Options: Asetukset: - + Specify configuration file (default: bitcoin.conf) Määritä asetustiedosto (oletus: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Määritä pid-tiedosto (oletus: bitcoin.pid) - + Generate coins Generoi kolikoita - + Don't generate coins Älä generoi kolikoita - + Start minimized Käynnistä pienennettynä - + + Show splash screen on startup (default: 1) + Näytä aloitusruutu käynnistettäessä (oletus: 1) + + + Specify data directory Määritä data-hakemisto - + Specify connection timeout (in milliseconds) Määritä yhteyden aikakatkaisu (millisekunneissa) - + Connect through socks4 proxy Yhteys socks4-proxyn kautta - + Allow DNS lookups for addnode and connect Salli DNS haut lisäsolmulle ja yhdistä - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Kuuntele yhteyksiä portista <port> (oletus: 8333 tai testnet: 18333) - - - - Maintain at most <n> connections to peers (default: 125) - Pidä enintään <n> yhteyttä verkkoihin (oletus: 125) - - - - Add a node to connect to - Lisää solmu mihin yhdistetään - - - + Connect only to the specified node Ota yhteys vain tiettyyn solmuun - - Don't accept connections from outside - Älä hyväksy ulkopuolisia yhteyksiä - - - - Don't bootstrap list of peers using DNS - Älä alkulataa listaa verkoista DNS:ää käyttäen - - - - 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) + + Find peers using DNS lookup (default: 1) + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) Maksimi verkkoyhteyden vastaanottopuskuri, <n>*1000 tavua (oletus: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maksimi verkkoyhteyden lähetyspuskuri, <n>*1000 tavua (oletus: 10000) - - Don't attempt to use UPnP to map the listening port - Älä käytä UPnP toimintoa kartoittamaan avointa porttia + + Detach block and address databases. Increases shutdown time (default: 0) + - - Attempt to use UPnP to map the listening port - Yritä käyttää UPnP toimintoa kartoittamaan avointa porttia - - - - Fee per kB to add to transactions you send - palkkio per kB lisätty lähettämiisi rahansiirtoihin - - - - 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 Tulosta ylimääräistä debuggaustietoa - - Prepend debug output with timestamp - Lisää debuggaustiedon tulostukseen aikaleima - - - - Send trace/debug info to console instead of debug.log file - Lähetä jäljitys/debug-tieto konsoliin, debug.log-tiedoston sijaan + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL-asetukset: (lisätietoja Bitcoin-Wikistä) - - Send trace/debug info to debugger - Lähetä jäljitys/debug-tieto debuggeriin + + Usage + Käyttö - - Username for JSON-RPC connections - Käyttäjätunnus JSON-RPC-yhteyksille + + Error loading addr.dat + Virhe ladattaessa addr.dat-tiedostoa - - Password for JSON-RPC connections - Salasana JSON-RPC-yhteyksille + + Invalid -proxy address + Virheellinen proxy-osoite - - Listen for JSON-RPC connections on <port> (default: 8332) - Kuuntele JSON-RPC -yhteyksiä portista <port> (oletus: 8332) + + Invalid amount for -paytxfee=<amount> + Virheellinen määrä -paytxfee=<amount> - - Allow JSON-RPC connections from specified IP address - Salli JSON-RPC yhteydet tietystä ip-osoitteesta + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + Varoitus:-paytxfee on erittäin korkea. Tämä on palkkio siirrosta minkä suoritat rahansiirrosta. - - Send commands to node running on <ip> (default: 127.0.0.1) - Lähetä käskyjä solmuun osoitteessa <ip> (oletus: 127.0.0.1) + + Error: CreateThread(StartNode) failed + Virhe: CreateThread(StartNode) epäonnistui - - Set key pool size to <n> (default: 100) - Aseta avainpoolin koko arvoon <n> (oletus: 100) + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + En pysty varaamaan porttia %d tähän koneeseen. Ehkä Bitcoin on jo käynnissä. - - Rescan the block chain for missing wallet transactions - Skannaa uudelleen lohkoketju lompakon puuttuvien rahasiirtojen vuoksi + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Varoitus: Tarkista, ovatko tietokoneesi päivämäärä ja aika oikein. Mikäli aika on väärin, Bitcoin-ohjelma ei toimi oikein. - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL-asetukset: (lisätietoja Bitcoin-Wikistä) + + Set language, for example "de_DE" (default: system locale) + Set language, for example "de_DE" (default: system locale) - - Use OpenSSL (https) for JSON-RPC connections - Käytä OpenSSL:ää (https) JSON-RPC-yhteyksille + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Virhe ladattaessa wallet.dat-tiedostoa: Tarvitset uudemman version Bitcoinista - - Server certificate file (default: server.cert) - Palvelimen sertifikaatti-tiedosto (oletus: server.cert) + + Error loading wallet.dat + Virhe ladattaessa wallet.dat-tiedostoa - - Server private key (default: server.pem) - Palvelimen yksityisavain (oletus: server.pem) + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Virhe: Rahansiirto hylättiin. Tämä voi tapahtua jos jotkin bitcoineistasi on jo käytetty, esimerkiksi jos olet käyttänyt kopiota wallet.dat-lompakkotiedostosta ja bitcoinit on merkitty käytetyksi vain kopiossa. - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Hyväksyttävä salaus (oletus: -TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + %s, sinun täytyy asettaa rpcpassword asetustiedostoon: +%s +On suositeltavaa käyttää seuraavaan satunnaista salasanaa: +rpcuser=bitcoinrpc +rpcpassword=%s +(sinun ei tarvitse muistaa tätä salasanaa) +Jos tiedostoa ei ole, niin luo se ainoastaan omistajan kirjoitusoikeuksin. + - - This help message - Tämä ohjeviesti + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Virhe: Tämä rahansiirto vaatii rahansiirtopalkkion vähintään %s johtuen sen määrästä, monimutkaisuudesta tai hiljattain vastaanotettujen summien käytöstä - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - En pääse käsiksi data-hakemiston lukitukseen %s. Bitcoin on todennäköisesti jo käynnistetty. + + Add a node to connect to and attempt to keep the connection open + Linää solmu mihin liittyä pitääksesi yhteyden auki - - Loading addresses... - Ladataan osoitteita... + + Bitcoin + Bitcoin - - Error loading addr.dat - Virhe ladattaessa addr.dat-tiedostoa + + 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. - - Error loading blkindex.dat - Virhe ladattaessa blkindex.dat-tiedostoa + + Set database disk log size in megabytes (default: 100) + Aseta tietokannan lokitiedoston koko megatavuina (oletus: 100) - - Error loading wallet.dat: Wallet corrupted - Virhe ladattaessa wallet.dat-tiedostoa: Lompakko vioittunut + + Error: Transaction creation failed + Virhe: Rahansiirron luonti epäonnistui - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Virhe ladattaessa wallet.dat-tiedostoa: Tarvitset uudemman version Bitcoinista + + Error: Wallet locked, unable to create transaction + Virhe: Lompakko on lukittu, rahansiirtoa ei voida luoda - - Wallet needed to be rewritten: restart Bitcoin to complete - Lompakko tarvitsee uudelleenkirjoittaa: käynnistä Bitcoin uudelleen + + Cannot downgrade wallet + Et voi päivittää lompakkoasi vanhempaan versioon - - Error loading wallet.dat - Virhe ladattaessa wallet.dat-tiedostoa + + Cannot initialize keypool + Avainvarastoa ei voi alustaa - - Loading block index... - Ladataan lohkoindeksiä... + + Cannot write default address + Oletusosoitetta ei voi kirjoittaa - - Loading wallet... - Ladataan lompakkoa... + + Insufficient funds + Lompakon saldo ei riitä - - Rescanning... - Skannataan uudelleen... + + Invalid amount + Virheellinen määrä - - Done loading - Lataus on valmis + + Error + Virhe - - Invalid -proxy address - Virheellinen proxy-osoite + + Find peers using internet relay chat (default: 0) + Etsi solmuja käyttäen internet relay chatia (oletus: 0) - - Invalid amount for -paytxfee=<amount> - Virheellinen määrä -paytxfee=<amount> + + Sending... + Lähetetään... - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - Varoitus:-paytxfee on erittäin korkea. Tämä on palkkio siirrosta minkä suoritat rahansiirrosta. + + Upgrade wallet to latest format + Päivitä lompakko uusimpaan formaattiin - - Error: CreateThread(StartNode) failed - Virhe: CreateThread(StartNode) epäonnistui + + To use the %s option + Käytä %s optiota - - Warning: Disk space is low - Varoitus: Kiintolevytila on loppumassa + + Warning: Disk space is low + Varoitus: Kiintolevytila on loppumassa - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - En pysty varaamaan porttia %d tähän koneeseen. Ehkä Bitcoin on jo käynnissä. + + Accept connections from outside (default: 1) + Älä hyväksy ulkopuolisia yhteyksiä - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Varoitus: Tarkista, ovatko tietokoneesi päivämäärä ja aika oikein. Mikäli aika on väärin, Bitcoin-ohjelma ei toimi oikein. + + Use Universal Plug and Play to map the listening port (default: 1) + Yritä käyttää UPnP toimintoa kartoittamaan avointa porttia (default: 1) - - beta - beta + + Use Universal Plug and Play to map the listening port (default: 0) + Yritä käyttää UPnP toimintoa kartoittamaan avointa porttia (default: 0) - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fr_CA.ts b/src/qt/locale/bitcoin_fr_CA.ts index cc0a0fd59f..a83bab6a0a 100644 --- a/src/qt/locale/bitcoin_fr_CA.ts +++ b/src/qt/locale/bitcoin_fr_CA.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> version - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -64,17 +66,17 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + @@ -87,62 +89,62 @@ This product includes software developed by the OpenSSL Project for use in the O &Supprimer - + Copy address - + - + Copy label - + - + Edit - + - + Delete - + - + Export Address Book Data Exporter les données du carnet d'adresses - + Comma separated file (*.csv) - + - + Error exporting - + - + Could not write to file %1. - + AddressTableModel - + Label - + - + Address - + - + (no label) - + @@ -150,96 +152,89 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - + - - - TextLabel - - - - + Enter passphrase - + - + New passphrase - + - + Repeat new passphrase - + + + + + TextLabel + 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 BITCOINS</b>! Are you sure you wish to encrypt your wallet? - + Wallet encrypted - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - - Warning: The Caps Lock key is on. - + @@ -247,371 +242,409 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - + The supplied passphrases do not match. - + Wallet unlock failed - + The passphrase entered for the wallet decryption was incorrect. - + Wallet decryption failed - + - Wallet passphrase was succesfully changed. - + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on. + BitcoinGUI - + Bitcoin Wallet - + - - - Synchronizing with network... - - - - - Block chain synchronization in progress - - - - + &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 - + - + Send coins to a bitcoin address - + - + Sign &message - + - + Prove you control an address - + - + E&xit - + - + Quit application - + - + &About %1 - + - + Show information about Bitcoin - + - + About &Qt - + - + Show information about Qt - + - + &Options... - + - + Modify configuration options for bitcoin - + - - Open &Bitcoin - + + Show/Hide &Bitcoin + - - Show the Bitcoin window - + + Show or hide the Bitcoin window + - + &Export... - + - + Export the data in the current tab to a file - + - + &Encrypt Wallet - + - + Encrypt or decrypt wallet - + - + &Backup Wallet - + - + Backup wallet to another location - + - + &Change Passphrase - + - + Change the passphrase used for wallet encryption - + - + &File - + - + &Settings - + - + &Help - + - + Tabs toolbar - + - + Actions toolbar - + - + [testnet] - + - + + Bitcoin client + + + + bitcoin-qt - + - + %n active connection(s) to Bitcoin network - + + + + + + + + Synchronizing with network... + + + + + ~%n block(s) remaining + + + + - - Downloaded %1 of %2 blocks of transaction history. - + + 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? - + - + Sending... - + - + Sent transaction - + - + Incoming transaction - + - + Date: %1 Amount: %2 Type: %3 Address: %4 - + - + 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. - + + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: - + - + Choose the default subdivision unit to show in the interface, and when sending coins - + + + + + &Display addresses in transaction list + - - Display addresses in transaction list - + + Whether to show Bitcoin addresses in the transaction list + @@ -619,155 +652,160 @@ Address: %4 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 bitcoin address. - + Could not unlock wallet. - + New key generation failed. - + MainOptionsPage - + &Start Bitcoin on window system startup - + - + Automatically start Bitcoin after the computer is turned on - + - + &Minimize to the tray instead of the taskbar - + - + Show only a tray icon after minimizing the window - + - Map port using &UPnP - + M&inimize on close + - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - + 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 - + Map port using &UPnP + - 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. - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + - + &Connect through SOCKS4 proxy: - + - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + - + Proxy &IP: - + - + IP address of the proxy (e.g. 127.0.0.1) - + - + &Port: - + - + Port of the proxy (e.g. 1234) - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + - + Pay transaction &fee - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Detach databases at shutdown + + + + + 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. + @@ -775,62 +813,62 @@ Address: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Choose adress from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - Copier l'adresse surligné a votre presse-papier + Copy the current signature to the system clipboard + @@ -842,40 +880,40 @@ Address: %4 Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + OptionsDialog - + Main - + - + Display - + - + Options - + @@ -883,66 +921,52 @@ Address: %4 Form - + Balance: - - - - - 123.456 BTC - + Number of transactions: - + 0 - + Unconfirmed: - + - - 0 BTC - + + Wallet + - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - - - - + <b>Recent transactions</b> - + Your current balance - + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + Total number of transactions in wallet - + @@ -950,162 +974,172 @@ p, li { white-space: pre-wrap; } Dialog - + QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + - + Message: - + - + &Save As... - + + + + + Error encoding URI into QR Code. + + + + + Resulting URI too long, try to reduce the text for label / message. + - + Save Image... - + - + PNG Images (*.png) - + SendCoinsDialog - - - - - - - + + + + + + + Send Coins - + Send to multiple recipients at once - + &Add recipient... - + Remove all transaction fields - + Clear all - + Balance: - + 123.456 BTC - + Confirm the send action - + &Send - + - + <b>%1</b> to %2 (%3) - + - + Confirm send coins - + - + Are you sure you want to send %1? - + - + and - + - - The recepient address is not valid, please recheck. - + + The recipient address is not valid, please recheck. + - + The amount to pay must be larger than 0. - + - - Amount exceeds your balance - + + The amount exceeds your balance. + - - 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 in one 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. + @@ -1113,204 +1147,204 @@ p, li { white-space: pre-wrap; } 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + TransactionDesc - + Open for %1 blocks - + - + Open until %1 - + - + %1/offline? - + - + %1/unconfirmed - + - + %1 confirmations - + - + <b>Status:</b> - + - + , has not been successfully broadcast yet - + - + , broadcast through %1 node - + - + , broadcast through %1 nodes - + - + <b>Date:</b> - + - + <b>Source:</b> Generated<br> - + - - + + <b>From:</b> - + - + unknown - + - - - + + + <b>To:</b> - + - + (yours, label: - + - + (yours) - + - - - - + + + + <b>Credit:</b> - + - + (%1 matures in %2 more blocks) - + - + (not accepted) - + - - - + + + <b>Debit:</b> - + - + <b>Transaction fee:</b> - + - + <b>Net amount:</b> - + - + Message: - + - + Comment: - + - + Transaction ID: - + - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + @@ -1318,130 +1352,136 @@ p, li { white-space: pre-wrap; } Transaction details - + This pane shows a detailed description of the transaction - + TransactionTableModel - + Date - + - + Type - + - + Address - + - + Amount - + - + Open for %n block(s) - + + + + - + Open until %1 - + - + Offline (%1 confirmations) - + - + Unconfirmed (%1 of %2 confirmations) - + - + Confirmed (%1 confirmations) - + - + Mined balance will be available in %n more blocks - + + + + - + 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. - + @@ -1450,514 +1490,653 @@ p, li { white-space: pre-wrap; } 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 - + Edit label - + Show 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 - + + Error: Wallet locked, 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... + + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 + + + + + Insufficient funds + + + + + Warning: Disk space is low + + + + + 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=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + + + + + Error + + + + + An error occurred while setting up the RPC port %i for listening: %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. + + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + + + Bitcoin version - + - + Usage: - + - + Send command to -server or bitcoind - + - + List commands - + - + Get help for a command - + - + Options: - + - + Specify configuration file (default: bitcoin.conf) - + - + Specify pid file (default: bitcoind.pid) - + - + Generate coins - + - + Don't generate coins - + - + Start minimized - + - + + Show splash screen on startup (default: 1) + + + + Specify data directory - + - + + Set database cache size in megabytes (default: 25) + + + + + Set database disk log size in megabytes (default: 100) + + + + Specify connection timeout (in milliseconds) - + - + Connect through socks4 proxy - + - + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - - Add a node to connect to - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node - + - - Don't accept connections from outside - + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + - - Don't bootstrap list of peers using DNS - + + Find peers using DNS lookup (default: 1) + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - - Don't attempt to use UPnP to map the listening port - + + Use Universal Plug and Play to map the listening port (default: 1) + - - Attempt to use UPnP to map the listening port - + + Use Universal Plug and Play to map the listening port (default: 0) + - - Fee per kB to add to transactions you send - + + Detach block and address databases. Increases shutdown time (default: 0) + - + + Fee per KB to add to transactions you send + + + + Accept command line and JSON-RPC commands - + - + Run in the background as a daemon and accept commands - + - + Use the test network - + - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections - + - + Password for JSON-RPC connections - + - + Listen for JSON-RPC connections on <port> (default: 8332) - + - + Allow JSON-RPC connections from specified IP address - + - + Send commands to node running on <ip> (default: 127.0.0.1) - + - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) - + - + Rescan the block chain for missing wallet transactions - + - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin 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) - + - + This help message - + - + + Usage + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + + Bitcoin + + + + Loading addresses... - + - + Error loading addr.dat - + - + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + - + Wallet needed to be rewritten: restart Bitcoin to complete - + - + Error loading wallet.dat - + - - Loading block index... - + + Cannot downgrade wallet + - - Loading wallet... - + + Cannot initialize keypool + + + + + Cannot write default address + - + Rescanning... - + - + Done loading - + - + Invalid -proxy address - + - + Invalid amount for -paytxfee=<amount> - + - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + - + Error: CreateThread(StartNode) failed - + - - Warning: Disk space is low - - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - - - - - beta - + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fr_FR.ts b/src/qt/locale/bitcoin_fr_FR.ts index 08cea95b93..5101fb761c 100644 --- a/src/qt/locale/bitcoin_fr_FR.ts +++ b/src/qt/locale/bitcoin_fr_FR.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> version - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -93,42 +95,42 @@ Ce produit inclut des logiciels développés par OpenSSL Project pour utilisatio &Supprimer - + Copy address Copier l'adresse - + Copy label Copier l'étiquette - + Edit Éditer - + Delete Effacer - + Export Address Book Data Exporter les données du carnet d'adresses - + Comma separated file (*.csv) Valeurs séparées par des virgules (*.csv) - + Error exporting Erreur lors de l'exportation - + Could not write to file %1. Impossible d'écrire sur le fichier %1. @@ -136,17 +138,17 @@ Ce produit inclut des logiciels développés par OpenSSL Project pour utilisatio AddressTableModel - + Label Étiquette - + Address Adresse - + (no label) (aucune étiquette) @@ -159,23 +161,22 @@ Ce produit inclut des logiciels développés par OpenSSL Project pour utilisatio Dialogue - - + TextLabel TextLabel - + Enter passphrase Entrez la phrase de passe - + New passphrase Nouvelle phrase de passe - + Repeat new passphrase Répétez la phrase de passe @@ -242,6 +243,23 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin va à présent se fermer pour terminer la procédure de cryptage. N'oubliez pas que le chiffrement de votre porte-monnaie ne peut pas fournir une protection totale contre le vol par des logiciels malveillants qui infecteraient votre ordinateur. + + + + + The passphrase entered for the wallet decryption was incorrect. + La phrase de passe entrée pour décrypter le porte-monnaie était incorrecte. + + + + Wallet decryption failed + Le décryptage du porte-monnaie a échoué + + + + Wallet passphrase was successfully changed. + La phrase de passe du porte-monnaie a été modifiée avec succès. + @@ -272,299 +290,304 @@ Are you sure you wish to encrypt your wallet? Wallet unlock failed Le déverrouillage du porte-monnaie a échoué - - - - - The passphrase entered for the wallet decryption was incorrect. - La phrase de passe entrée pour décrypter le porte-monnaie était incorrecte. - - - - Wallet decryption failed - Le décryptage du porte-monnaie a échoué - - - - Wallet passphrase was succesfully changed. - La phrase de passe du porte-monnaie a été modifiée avec succès. - BitcoinGUI - + Bitcoin Wallet Porte-monnaie Bitcoin - - - Synchronizing with network... - Synchronisation avec le réseau... + + Show/Hide &Bitcoin + + + + + Show or hide the Bitcoin window + Afficher la fenêtre de Bitcoin - - Block chain synchronization in progress - Synchronisation de la chaîne de blocs en cours + + Synchronizing with network... + Synchronisation avec le réseau... - + &Overview &Vue d'ensemble - + Show general overview of wallet Affiche une vue d'ensemble du porte-monnaie - + &Transactions &Transactions - + Browse transaction history Permet de parcourir l'historique des transactions - + &Address Book Carnet d'&adresses - + Edit the list of stored addresses and labels Éditer la liste des adresses et des étiquettes stockées - + &Receive coins &Recevoir des pièces - + Show the list of addresses for receiving payments Affiche la liste des adresses pour recevoir des paiements - + &Send coins &Envoyer des pièces - + Send coins to a bitcoin address Envoyer des pièces à une adresse bitcoin - + Sign &message Signer un &message - + Prove you control an address Prouver que vous contrôlez une adresse - + E&xit Q&uitter - + Quit application Quitter l'application - + &About %1 &À propos de %1 - + Show information about Bitcoin Afficher des informations à propos de Bitcoin - + About &Qt À propos de &Qt - + Show information about Qt Afficher des informations sur Qt - + &Options... &Options... - + Modify configuration options for bitcoin Modifier les options de configuration pour bitcoin - - - Open &Bitcoin - Ouvrir &Bitcoin + + + ~%n block(s) remaining + + + + - - Show the Bitcoin window - Afficher la fenêtre de Bitcoin + + Downloaded %1 of %2 blocks of transaction history (%3% done). + %1 blocs de l'historique des transactions téléchargés sur un total de %2 (%3% done). - + &Export... &Exporter... - + Export the data in the current tab to a file Exporter les données de l'onglet courant vers un fichier - + &Encrypt Wallet &Chiffrer le porte-monnaie - + Encrypt or decrypt wallet Chiffrer ou décrypter le porte-monnaie - + &Backup Wallet &Sauvegarder le porte-monnaie - + Backup wallet to another location Sauvegarder le porte-monnaie à un autre emplacement - + &Change Passphrase &Modifier la phrase de passe - + Change the passphrase used for wallet encryption Modifier la phrase de passe utilisée pour le cryptage du porte-monnaie - + &File &Fichier - + &Settings &Réglages - + &Help &Aide - + Tabs toolbar Barre d'outils des onglets - + Actions toolbar Barre d'outils des actions - + [testnet] [testnet] - + + Bitcoin client + + + + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n connexion active avec le réseau Bitcoin%n connexions actives avec le réseau Bitcoin - - - - Downloaded %1 of %2 blocks of transaction history. - %1 blocs de l'historique des transactions téléchargés sur un total de %2. + + %n connexion active avec le réseau Bitcoin + %n connexions actives avec le réseau Bitcoin + - + Downloaded %1 blocks of transaction history. %1 blocs de l'historique de transaction téléchargé. - + %n second(s) ago - il y a %n secondeil y a %n secondes + + il y a %n seconde + il y a %n secondes + - + %n minute(s) ago - il y a %n minuteil y a %n minutes + + il y a %n minute + il y a %n minutes + - + %n hour(s) ago - il y a %n heureil y a %n heures + + il y a %n heure + il y a %n heures + - + %n day(s) ago - il y a %n jouril y a %n jours + + il y a %n jour + il y a %n jours + - + Up to date À jour - + Catching up... Rattrapage... - + Last received block was generated %1. Le dernier bloc reçu a é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 de taille. Vous pouvez quand-même l'envoyer en vous acquittant de frais d'un montant de %1, qui iront aux nœuds qui traitent la transaction et aideront à soutenir le réseau. Voulez-vous payer les frais ? - + Sending... Envoi en cours... - + Sent transaction Transaction envoyée - + Incoming transaction Transaction entrante - + Date: %1 Amount: %2 Type: %3 @@ -577,52 +600,62 @@ Adresse : %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Le porte-monnaie est <b>chiffré</b> et est actuellement <b>déverrouillé</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Le porte-monnaie est <b>chiffré</b> et est actuellement <b>verrouillé</b> - + Backup Wallet Sauvegarder le porte-monnaie - + Wallet Data (*.dat) Données de porte-monnaie (*.dat) - + Backup Failed La sauvegarde a échoué - + There was an error trying to save the wallet data to the new location. Une erreur est survenue lors de l'enregistrement des données de porte-monnaie à un autre emplacement. + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage - + &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 - - Display addresses in transaction list - Afficher les adresses dans la liste des transactions + + &Display addresses in transaction list + &Afficher les adresses dans la liste des transactions + + + + Whether to show Bitcoin addresses in the transaction list + @@ -696,87 +729,92 @@ Adresse : %4 MainOptionsPage - + &Start Bitcoin on window system startup &Démarrer Bitcoin avec le système de fenêtres - + Automatically start Bitcoin after the computer is turned on Lancer automatiquement Bitcoin lorsque l'ordinateur est allumé - + &Minimize to the tray instead of the taskbar &Minimiser dans la barre système au lieu de la barre des tâches - + Show only a tray icon after minimizing the window Montrer uniquement une icône système après minimisation - + Map port using &UPnP Ouvrir le port avec l'&UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Ouvrir le port du client Bitcoin automatiquement sur le routeur. Cela ne fonctionne que si votre routeur supporte l'UPnP et si la fonctionnalité est activée. - + M&inimize on close M&inimiser lors de la fermeture - + 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 quitter l'application lorsque la fenêtre est fermée. Lorsque cette option est activée, l'application ne pourra être fermée qu'en sélectionnant Quitter dans le menu déroulant. - + &Connect through SOCKS4 proxy: &Connexion à travers un proxy SOCKS4 : - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Connexion au réseau Bitcoin à travers un proxy SOCKS4 (par ex. lors d'une connexion via Tor) - + Proxy &IP: &IP du proxy : - + IP address of the proxy (e.g. 127.0.0.1) Adresse IP du proxy (par ex. 127.0.0.1) - + &Port: &Port : - + Port of the proxy (e.g. 1234) Port du proxy (par ex. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Frais de transaction optionnels par ko qui aident à garantir un traitement rapide des transactions. La plupart des transactions occupent 1 ko. Des frais de 0.01 sont recommandés. - - - + Pay transaction &fee Payer des &frais de transaction - + + Detach databases at shutdown + + + + + 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. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Frais de transaction optionnels par ko qui aident à garantir un traitement rapide des transactions. La plupart des transactions occupent 1 ko. Des frais de 0.01 sont recommandés. @@ -795,8 +833,8 @@ Adresse : %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - L'adresse à laquelle le paiement sera envoyé (par ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Entez une adresse Bitcoin (par ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -840,8 +878,8 @@ Adresse : %4 - Copy the currently selected address to the system clipboard - Copier l'adresse surlignée dans votre presse-papiers + Copy the current signature to the system clipboard + @@ -874,17 +912,17 @@ Adresse : %4 OptionsDialog - + Main Principal - + Display Affichage - + Options Options @@ -901,11 +939,6 @@ Adresse : %4 Balance: Solde : - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -922,25 +955,12 @@ Adresse : %4 Non confirmé : - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Porte-monnaie</span></p></body></html> + + Wallet + Porte-monnaie - + <b>Recent transactions</b> <b>Transactions récentes</b> @@ -973,42 +993,52 @@ p, li { white-space: pre-wrap; } QR Code - + Request Payment Demande de paiement - + Amount: Montant : - + BTC BTC - + Label: Étiquette : - + Message: Message : - + &Save As... &Enregistrer sous... - + + Error encoding URI into QR Code. + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + Save Image... Enregistrer l'image... - + PNG Images (*.png) Images PNG (*.png) @@ -1017,13 +1047,13 @@ p, li { white-space: pre-wrap; } SendCoinsDialog - - - - - - - + + + + + + + Send Coins Envoyer des pièces @@ -1068,58 +1098,58 @@ p, li { white-space: pre-wrap; } &Envoyer - + <b>%1</b> to %2 (%3) <b>%1</b> à %2 (%3) - + Confirm send coins Confirmez l'envoi des pièces - + Are you sure you want to send %1? Êtes-vous sûr de vouloir envoyer %1 ? - + and et - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance - Le montant dépasse votre solde + + The amount exceeds your balance. + Le montant dépasse votre solde. - - Total exceeds your balance when the %1 transaction fee is included - Le total dépasse votre solde lorsque les frais de transaction de %1 sont inclus + + The total exceeds your balance when the %1 transaction fee is included. + Le total dépasse votre solde lorsque les frais de transaction de %1 sont inclus. - - Duplicate address found, can only send to each address once in one send operation - Adresse dupliquée trouvée, un seul envoi par adresse est possible à chaque opération d'envoi + + Duplicate address found, can only send to each address once per send operation. + Adresse dupliquée trouvée, un seul envoi par adresse est possible à chaque opération d'envoi. - - Error: Transaction creation failed - Erreur : échec de la création de la transaction + + Error: Transaction creation failed. + Erreur : échec 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. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 arriver si certaines pièces de votre porte-monnaie ont déjà été dépensées, par exemple si vous avez utilisé une copie de wallet.dat et si des pièces ont été dépensées avec cette copie sans être marquées comme telles ici. @@ -1190,140 +1220,140 @@ p, li { white-space: pre-wrap; } TransactionDesc - + Open for %1 blocks Ouvert pour %1 blocs - + Open until %1 Ouvert jusqu'à %1 - + %1/offline? %1/hors ligne ? - + %1/unconfirmed %1/non confirmée - + %1 confirmations %1 confirmations - + <b>Status:</b> <b>État :</b> - + , has not been successfully broadcast yet , n'a pas encore été diffusée avec succès - + , broadcast through %1 node , diffusée à travers %1 nœud - + , broadcast through %1 nodes , diffusée à travers %1 nœuds - + <b>Date:</b> <b>Date :</b> - + <b>Source:</b> Generated<br> <b>Source :</b> Généré<br> - - + + <b>From:</b> <b>De :</b> - + unknown inconnue - - - + + + <b>To:</b> <b>À :</b> - + (yours, label: (vôtre, étiquette : - + (yours) (vôtre) - - - - + + + + <b>Credit:</b> <b>Crédit : </b> - + (%1 matures in %2 more blocks) (%1 sera considérée comme mûre suite à %2 blocs de plus) - + (not accepted) (pas accepté) - - - + + + <b>Debit:</b> <b>Débit : </b> - + <b>Transaction fee:</b> <b>Frais de transaction :</b> - + <b>Net amount:</b> <b>Montant net :</b> - + Message: Message : - + Comment: Commentaire : - + Transaction ID: ID de la transaction : - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Les pièces générées doivent attendre 120 blocs avant de pouvoir être dépensées. Lorsque vous avez généré ce bloc, il a été diffusé sur le réseau pour être ajouté à la chaîne des blocs. S'il échoue a intégrer la chaîne, il sera modifié en « pas accepté » et il ne sera pas possible de le dépenser. Cela peut arriver occasionnellement si un autre nœud génère un bloc quelques secondes avant ou après vous. @@ -1344,117 +1374,123 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Date - + Type Type - + Address Adresse - + Amount Montant - + Open for %n block(s) - Ouvert pour %n blocOuvert pour %n blocs + + Ouvert pour %n bloc + Ouvert pour %n blocs + - + Open until %1 Ouvert jusqu'à %1 - + Offline (%1 confirmations) Hors ligne (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) Non confirmée (%1 confirmations sur un total de %2) - + Confirmed (%1 confirmations) Confirmée (%1 confirmations) - + Mined balance will be available in %n more blocks - Le solde d'extraction (mined) sera disponible dans %n blocLe solde d'extraction (mined) sera disponible dans %n blocs + + Le solde d'extraction (mined) sera disponible dans %n bloc + Le solde d'extraction (mined) sera disponible dans %n blocs + - + 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 Extraction - + (n/a) (indisponible) - + 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é au ou enlevé du solde. @@ -1558,67 +1594,67 @@ p, li { white-space: pre-wrap; } Afficher les détails... - + Export Transaction Data Exporter les données de 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'exportation - + Could not write to file %1. Impossible d'écrire sur le fichier %1. - + Range: Intervalle : - + to à @@ -1626,7 +1662,7 @@ p, li { white-space: pre-wrap; } WalletModel - + Sending... Envoi en cours... @@ -1634,346 +1670,485 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Version de bitcoin - + Usage: Utilisation : - + Send command to -server or bitcoind Envoyer une commande à -server ou à bitcoind - + List commands Lister les commandes - + Get help for a command Obtenir de l'aide pour une commande - + Options: Options : - + Specify configuration file (default: bitcoin.conf) Spécifier le fichier de configuration (par défaut : bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Spécifier le fichier pid (par défaut : bitcoind.pid) - + Generate coins Générer des pièces - + Don't generate coins Ne pas générer de pièces - + Start minimized Démarrer sous forme minimisée - + + Show splash screen on startup (default: 1) + + + + Specify data directory Spécifier le répertoire de données - + + Set database cache size in megabytes (default: 25) + + + + + Set database disk log size in megabytes (default: 100) + + + + Specify connection timeout (in milliseconds) Spécifier le délai d'expiration de la connexion (en millisecondes) - + Connect through socks4 proxy Connexion via un proxy socks4 - + Allow DNS lookups for addnode and connect Autoriser les recherches DNS pour l'ajout de nœuds et la connexion - + Listen for connections on <port> (default: 8333 or testnet: 18333) Écouter les connexions sur le <port> (par défaut : 8333 ou testnet : 18333) - + 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 - Ajouter un nœud auquel se connecter - - - + Connect only to the specified node Ne se connecter qu'au nœud spécifié - - Don't accept connections from outside - Ne pas accepter les connexion depuis l'extérieur + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + - - Don't bootstrap list of peers using DNS - Ne pas amorcer la liste des pairs en utilisant le DNS + + Find peers using DNS lookup (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) - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) Tampon maximal de réception par connexion, <n>*1000 octets (par défaut : 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Tampon maximal d'envoi par connexion, <n>*1000 octets (par défaut : 10000) - - Don't attempt to use UPnP to map the listening port - Ne pas tenter d'utiliser l'UPnP pour ouvrir le port d'écoute + + Detach block and address databases. Increases shutdown time (default: 0) + - - Attempt to use UPnP to map the listening port - Essayer d'utiliser l'UPnP pour ouvrir le port d'écoute - - - - Fee per kB to add to transactions you send - Frais par ko à ajouter aux transactions que vous enverrez - - - + 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 Informations de débogage supplémentaires - + Prepend debug output with timestamp Faire précéder les données de débogage par un horodatage - + 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 au débogueur - + 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: 8332) Écouter les connexions JSON-RPC sur le <port> (par défaut : 8332) - + 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 à <ip> (par défaut : 127.0.0.1) - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) Régler la taille de la plage 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 porte-monnaie manquantes - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) Options SSL : (cf. le wiki Bitcoin pour les réglages SSL) - + 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) Clefs de chiffrement acceptables (par défaut : TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Ce message d'aide - + + Usage + Utilisation + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Impossible d'obtenir un verrou sur le répertoire de données %s. Bitcoin fonctionne probablement déjà. - + + Bitcoin + + + + Loading addresses... Chargement des adresses... - + Error loading addr.dat Erreur lors du chargement de addr.dat - + Error loading blkindex.dat Erreur lors du chargement de blkindex.dat - + Error loading wallet.dat: Wallet corrupted Erreur lors du chargement de wallet.dat : porte-monnaie corrompu - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Erreur lors du chargement de wallet.dat : le porte-monnaie nécessite une version plus récente de Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete Le porte-monnaie nécessitait une réécriture. Veuillez redémarrer Bitcoin pour terminer l'opération - + Error loading wallet.dat Erreur lors du chargement de wallet.dat - + Loading block index... Chargement de l'index des blocs... - + + Error: Wallet locked, 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 + Cette transaction dépasse la limite de taille. Vous pouvez quand-même l'envoyer en vous acquittant de frais d'un montant de %1, qui iront aux nœuds qui traitent la transaction et aideront à soutenir le réseau. Voulez-vous payer les frais ? + + + + Error: Transaction creation failed + Erreur : échec de la création de la transaction + + + + Sending... + Envoi en cours... + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 arriver si certaines pièces de votre porte-monnaie ont déjà été dépensées, par exemple si vous avez utilisé une copie de wallet.dat et si des pièces ont été dépensées avec cette copie sans être marquées comme telles ici. + + + + Invalid amount + Montant invalide + + + + Insufficient funds + + + + + 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=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + + + + + Error + + + + + An error occurred while setting up the RPC port %i for listening: %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. + + + + Loading wallet... Chargement du porte-monnaie... - + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + Rescanning... Nouvelle analyse... - + Done loading Chargement terminé - + Invalid -proxy address Adresse -proxy invalide - + Invalid amount for -paytxfee=<amount> Montant invalide pour -paytxfee=<montant> - + 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. - + Error: CreateThread(StartNode) failed Erreur : CreateThread(StartNode) a échoué - - Warning: Disk space is low - Attention : l'espace disque est faible - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Impossible de s'attacher au port %d sur cet ordinateur. Bitcoin fonctionne probablement déjà. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Attention : veuillez vérifier que l'heure et la date de votre ordinateur sont corrects. Si votre horloge n'est pas à l'heure, Bitcoin ne fonctionnera pas correctement. - - beta - bêta + + Warning: Disk space is low + Attention : l'espace disque est faible + + + + Add a node to connect to and attempt to keep the connection open + Ajouter un nœud auquel se connecter and attempt to keep the connection open + + + + Use Universal Plug and Play to map the listening port (default: 1) + Essayer d'utiliser l'UPnP pour ouvrir le port d'écoute (default: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Essayer d'utiliser l'UPnP pour ouvrir le port d'écoute (default: 0) + + + + Fee per KB to add to transactions you send + Frais par ko à ajouter aux transactions que vous enverrez - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_he.ts b/src/qt/locale/bitcoin_he.ts index 627245092a..b946fa4e39 100644 --- a/src/qt/locale/bitcoin_he.ts +++ b/src/qt/locale/bitcoin_he.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ גרסת <b>ביטקוין</b> - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -93,42 +95,42 @@ This product includes software developed by the OpenSSL Project for use in the O &מחיקה - + Copy address העתק כתובת - + Copy label העתק תוית - + Edit ערוך - + Delete מחק - + Export Address Book Data יצוא נתוני פנקס כתובות - + Comma separated file (*.csv) קובץ מופרד בפסיקים (*.csv) - + Error exporting שגיאה ביצוא - + Could not write to file %1. לא מסוגל לכתוב לקובץ %1. @@ -136,17 +138,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label תוית - + Address כתובת - + (no label) (ללא כתובת) @@ -154,31 +156,25 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - - Dialog - שיח - - - - - TextLabel - טקסטתוית - - - + Enter passphrase הכנס סיסמא - + New passphrase סיסמה חדשה - + Repeat new passphrase חזור על הסיסמה החדשה + + + Dialog + שיח + 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>. @@ -194,6 +190,11 @@ This product includes software developed by the OpenSSL Project for use in the O This operation needs your wallet passphrase to unlock the wallet. הפעולה הזו דורשת את סיסמת הארנק שלך בשביל לפתוח את הארנק. + + + TextLabel + טקסטתוית + Unlock wallet @@ -224,13 +225,6 @@ This product includes software developed by the OpenSSL Project for use in the O Confirm wallet encryption אשר הצפנת ארנק - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - אזהרה: אם תצפין את הארנק שלך ותאבד את הסיסמה אתה <b>תאבד את כל הביטקוין שלך</b>! -אתה בטוח שברצונך להצפין את הארנק? - @@ -242,20 +236,6 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. ביטקוין ייסגר עכשיו כדי להשלים את תהליך ההצפנה. זכור שהצפנת הארנק שלך אינו יכול להגן באופן מלא על הביטקוינים שלך מתוכנות זדוניות המושתלות על המחשב. - - - - Warning: The Caps Lock key is on. - אזהרה: מקש Caps Lock מופעל. - - - - - - - Wallet encryption failed - הצפנת הארנק נכשלה - Wallet encryption failed due to an internal error. Your wallet was not encrypted. @@ -284,287 +264,297 @@ Are you sure you wish to encrypt your wallet? Wallet decryption failed פענוח הארנק נכשל + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + אזהרה: אם תצפין את הארנק שלך ותאבד את הסיסמה אתה <b>תאבד את כל הביטקוין שלך</b>! +אתה בטוח שברצונך להצפין את הארנק? + - Wallet passphrase was succesfully changed. - סיסמת הארנק שונתה בהצלחה. + Wallet passphrase was successfully changed. + סיסמת הארנק שונתה בהצלחה. + + + + + Warning: The Caps Lock key is on. + אזהרה: מקש Caps Lock מופעל. + + + + + + + Wallet encryption failed + הצפנת הארנק נכשלה BitcoinGUI - - Bitcoin Wallet - ארנק ביטקוין - - - - - Synchronizing with network... - מסתנכרן עם הרשת... + + Show information about Bitcoin + הצג מידע על ביטקוין - - Block chain synchronization in progress - סנכרון עם שרשרת הבלוקים בעיצומו + + Actions toolbar + סרגל כלים פעולות - + &Overview &סקירה - + Show general overview of wallet הצג סקירה כללית של הארנק - + &Transactions &פעולות - + Browse transaction history דפדף בהיסטוריית הפעולות - - &Address Book - פנקס &כתובות + + About &Qt + אודות Qt - + Edit the list of stored addresses and labels ערוך את רשימת הכתובות והתויות - - &Receive coins - &קבלת מטבעות - - - - Show the list of addresses for receiving payments - הצג את רשימת הכתובות לקבלת תשלומים + + Export the data in the current tab to a file + יצוא הנתונים בטאב הנוכחי לקובץ - + &Send coins &שלח מטבעות - - Send coins to a bitcoin address - שלח מטבעות לכתובת ביטקוין - - - - Sign &message - חתום על הו&דעה - - - - Prove you control an address - הוכח שאתה שולט בכתובת - - - + E&xit י&ציאה - + Quit application סגור תוכנה + + + %n day(s) ago + + לפני יום + לפני %n ימים + + - + &About %1 &אודות %1 - - Show information about Bitcoin - הצג מידע על ביטקוין + + Wallet is <b>encrypted</b> and currently <b>locked</b> + הארנק <b>מוצפן</b> וכרגע <b>נעול</b> - - About &Qt - אודות Qt + + &File + &קובץ - - Show information about Qt - הצג מידע על Qt + + &Settings + ה&גדרות - - &Options... - &אפשרויות + + Tabs toolbar + סרגל כלים טאבים - - Modify configuration options for bitcoin - שנה הגדרות עבור ביטקוין + + Sending... + שולח... - - Open &Bitcoin - פתח את &ביטקוין + + &Receive coins + &קבלת מטבעות - - Show the Bitcoin window - הצג את חלון ביטקוין + + Bitcoin Wallet + ארנק ביטקוין - - &Export... - י&צא + + Send coins to a bitcoin address + שלח מטבעות לכתובת ביטקוין - - Export the data in the current tab to a file - יצוא הנתונים בטאב הנוכחי לקובץ + + Show the list of addresses for receiving payments + הצג את רשימת הכתובות לקבלת תשלומים - + + Modify configuration options for bitcoin + שנה הגדרות עבור ביטקוין + + + &Encrypt Wallet הצ&פן ארנק - - Encrypt or decrypt wallet - הצפן או פענח ארנק + + &Change Passphrase + שנה &סיסמה - - &Backup Wallet - &גיבוי ארנק + + Last received block was generated %1. + הבלוק האחרון שהתקבל נוצר ב-%1. - - Backup wallet to another location - גיבוי הארנק למקום אחר + + 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, שמגיעה לצמתים שמעבדים את הפעולה ועוזרת לתמוך ברשת. האם אתה מעוניין לשלם את העמלה? - - &Change Passphrase - שנה &סיסמה + + &Help + &עזרה + + + + [testnet] + [רשת-בדיקה] + + + + Bitcoin client + תוכנת ביטקוין + + + + &Address Book + פנקס &כתובות - Change the passphrase used for wallet encryption - שנה את הסיסמה להצפנת הארנק + Show or hide the Bitcoin window + הצג או הסתר את חלון ביטקוין. - - &File - &קובץ + + Encrypt or decrypt wallet + הצפן או פענח ארנק - - &Settings - ה&גדרות + + Backup wallet to another location + גיבוי הארנק למקום אחר - - &Help - &עזרה + + Show information about Qt + הצג מידע על Qt - - Tabs toolbar - סרגל כלים טאבים + + Change the passphrase used for wallet encryption + שנה את הסיסמה להצפנת הארנק - - Actions toolbar - סרגל כלים פעולות + + &Options... + &אפשרויות - - [testnet] - [רשת-בדיקה] + + Show/Hide &Bitcoin + הצג/הסתר את &ביטקוין - - bitcoin-qt - bitcoin-qt + + &Export... + י&צא לקובץ - + %n active connection(s) to Bitcoin network - חיבור פעיל אחד לרשת הביטקוין%n חיבורים פעילים לרשת הביטקוין - - - - Downloaded %1 of %2 blocks of transaction history. - הורדו %1 מתוך %2 בלוקים של היסטוריית פעולות. + + חיבור פעיל אחד לרשת הביטקוין + %n חיבורים פעילים לרשת הביטקוין + - + Downloaded %1 blocks of transaction history. הורדו %1 בלוקים של היסטוריית פעולות. - + %n second(s) ago - לפני שניהלפני %n שניות + + לפני שניה + לפני %n שניות + - + %n minute(s) ago - לפני דקהלפני %n דקות + + לפני דקה + לפני %n דקות + - + %n hour(s) ago - לפני שעהלפני %n שעות - - - - %n day(s) ago - לפני יוםלפני %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, שמגיעה לצמתים שמעבדים את הפעולה ועוזרת לתמוך ברשת. האם אתה מעוניין לשלם את העמלה? - - - - Sending... - שולח... - - - + Sent transaction פעולה שנשלחה - + Incoming transaction פעולה שהתקבלה - + Date: %1 Amount: %2 Type: %3 @@ -576,64 +566,117 @@ Address: %4 כתובת: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> הארנק <b>מוצפן</b> וכרגע <b>פתוח</b> - - Wallet is <b>encrypted</b> and currently <b>locked</b> - הארנק <b>מוצפן</b> וכרגע <b>נעול</b> + + Synchronizing with network... + מסתנכרן עם הרשת... - + + Sign &message + חתום על הו&דעה + + + + Prove you control an address + הוכח שאתה שולט בכתובת + + + + &Backup Wallet + &גיבוי ארנק + + + + bitcoin-qt + bitcoin-qt + + + + ~%n block(s) remaining + + בלוק אחד נותר + ~%n בלוקים נותרו + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + הורדו %1 בלוקים של היסטוריית פעולות מתוך %2 (הושלם %3% מהסה"כ). + + + 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. Bitcoin can no longer continue safely and will quit. + + DisplayOptionsPage - + &Unit to show amounts in: &יחידת מדידה להציג בה כמויות: - + Choose the default subdivision unit to show in the interface, and when sending coins בחר את יחידת החלוקה להצגה בממשק, ובעת שליחת מטבעות - - Display addresses in transaction list - הצג כתובות ברשימת הפעולות + + &Display addresses in transaction list + &הצג כתובות ברשימת הפעולות + + + + Whether to show Bitcoin addresses in the transaction list + האם להציג כתובות ביטקוין ברשימת הפעולות או לא. EditAddressDialog - - Edit Address - ערוך כתובת + + Edit sending address + ערוך כתובת לשליחה - - &Label + + New key generation failed. + יצירת מפתח חדש נכשלה. + + + + Edit Address + ערוך כתובת + + + + &Label ת&וית @@ -666,11 +709,6 @@ Address: %4 Edit receiving address ערוך כתובת לקבלה - - - Edit sending address - ערוך כתובת לשליחה - The entered address "%1" is already in the address book. @@ -686,96 +724,96 @@ Address: %4 Could not unlock wallet. פתיחת הארנק נכשלה. - - - New key generation failed. - יצירת מפתח חדש נכשלה. - MainOptionsPage - + &Start Bitcoin on window system startup התח&ל את ביטקוין בהפעלת מערכת חלונות - + Automatically start Bitcoin after the computer is turned on התחל את ביטקוין אוטומטית כשהמחשב נדלק - + &Minimize to the tray instead of the taskbar מ&זער למגש במקום לשורת המשימות - + Show only a tray icon after minimizing the window הצג אייקון מגש בלבד לאחר מזעור החלון - + Map port using &UPnP מיפוי פורט באמצעות UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. פתח את פורט ביטקוין בנתב באופן אוטומטי. עובד רק אם UPnP מאופשר ונתמך ע"י הנתב. - + M&inimize on close מז&ער בעת סגירה - + 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. מזער את התוכנה במקום לצאת ממנה כשהחלון נסגר. כשאפשרות זו פעילה, התוכנה תיסגר רק לאחר בחירת יציאה מהתפריט. - + &Connect through SOCKS4 proxy: התח&בר דרך פרוקסי SOCKS4: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - התחבר לרשת הביטקוין דרך פרוקסי SOCKS4 (למשל, בעת חיבור דרך Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + התחבר לרשת הביטקוין דרך פרוקסי SOCKS4 (למשל, בעת חיבור דרך Tor) - + Proxy &IP: IP של פרוקסי: - + IP address of the proxy (e.g. 127.0.0.1) כתובת האינטרנט של הפרוקסי (למשל 127.0.0.1) - + &Port: &פורט: - + Port of the proxy (e.g. 1234) הפורט של הפרוקסי (למשל 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - עמלת פעולה אופציונלית לכל kB תבטיח שהפעולה שלך תעובד בזריזות. רוב הפעולות הן 1 kB. מומלצת עמלה בסך 0.01. - - - + Pay transaction &fee שלם &עמלת פעולה - + + Detach databases at shutdown + נתק מסדי נתונים בעת סגירה + + + + 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. + נתק מסדי נתונים של בלוקים וכתובות בעת סגירה. משמעות הדבר היא שניתן להזיז אותם לתיקיית נתונים אחרת, אבל הסגירה תהיה איטית יותר. הארנק תמיד מנותק. + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. עמלת פעולה אופציונלית לכל kB תבטיח שהפעולה שלך תעובד בזריזות. רוב הפעולות הן 1 kB. מומלצת עמלה בסך 0.01. @@ -794,8 +832,8 @@ Address: %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - הכתובת אליה יישלח התשלום (למשל 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + הכנס כתובת ביטקוין (למשל 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -839,8 +877,8 @@ Address: %4 - Copy the currently selected address to the system clipboard - העתק את הכתובת שסומנה ללוח המערכת + Copy the current signature to the system clipboard + העתק את החתימה הנוכחית ללוח המערכת @@ -873,17 +911,17 @@ Address: %4 OptionsDialog - + Main ראשי - + Display תצוגה - + Options אפשרויות @@ -901,128 +939,120 @@ Address: %4 יתרה: - - 123.456 BTC - 123.456 ביטקוין - - - - Number of transactions: - מספר פעולות: + + Wallet + ארנק - - 0 - 0 + + Your current balance + היתרה הנוכחית שלך Unconfirmed: ממתין לאישור: - - - 0 BTC - 0 ביטקוין - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - - - - <b>Recent transactions</b> - <b>פעולות אחרונות</b> - - - - Your current balance - היתרה הנוכחית שלך - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance הסכום הכולל של פעולות שטרם אושרו, ועוד אינן נספרות בחישוב היתרה הנוכחית + + + Number of transactions: + מספר פעולות: + Total number of transactions in wallet המספר הכולל של פעולות בארנק - - - QRCodeDialog - - - Dialog - שיח - - - QR Code - קוד QR + + <b>Recent transactions</b> + <b>פעולות אחרונות</b> - - Request Payment - בקש תשלום + + 0 + 0 + + + QRCodeDialog - + Amount: כמות: - - BTC - ביטקוין - - - + Label: תוית: - + Message: הודעה: - - &Save As... - &שמור בשם... + + Error encoding URI into QR Code. + שגיאה בקידוד URI לקוד QR + + + + Resulting URI too long, try to reduce the text for label / message. + המזהה המתקבל ארוך מדי, נסה להפחית את הטקסט בתוית / הודעה. - + Save Image... שמור תמונה... - + PNG Images (*.png) תמונות PNG (*.png) + + + &Save As... + &שמור בשם... + + + + Dialog + שיח + + + + QR Code + קוד QR + + + + Request Payment + בקש תשלום + + + + BTC + ביטקוין + SendCoinsDialog - - - - - - - + + + + + + + Send Coins שלח מטבעות @@ -1031,11 +1061,6 @@ p, li { white-space: pre-wrap; } Send to multiple recipients at once שלח למספר מקבלים בו-זמנית - - - &Add recipient... - &הוסף מקבל... - Remove all transaction fields @@ -1067,59 +1092,64 @@ p, li { white-space: pre-wrap; } &שלח - + <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 recepient address is not valid, please recheck. - כתובת המקבל אינה תקינה, אנא בדוק שנית. + + The recipient address is not valid, please recheck. + כתובת המקבל אינה תקינה, אנא בדוק שנית. - + The amount to pay must be larger than 0. הכמות לשלם חייבת להיות גדולה מ-0. - - Amount exceeds your balance - הכמות חורגת מהיתרה שלך. + + The amount exceeds your balance. + הכמות עולה על המאזן שלך. - - Total exceeds your balance when the %1 transaction fee is included - הסכום חורג מהיתרה לאחר הכללת עמלת פעולה בסך %1. + + The total exceeds your balance when the %1 transaction fee is included. + הכמות הכוללת, ובכללה עמלת פעולה בסך %1, עולה על המאזן שלך. - - Duplicate address found, can only send to each address once in one 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. - שגיאה: הפעולה נדחתה. זה עשוי לקרות אם חלק מהמטבעות בארנק שלך כבר נוצלו, למשל אם השתמשת בעותק של הקובץ 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. + שגיאה: הפעולה נדחתה. זה עשוי לקרות עם חלק מהמטבעות בארנק שלך כבר נוצלו, למשל אם השתמשת בעותק של wallet.dat ומטבעות נוצלו בעותק אך לא סומנו כמנוצלות כאן. + + + + &Add recipient... + &הוסף מקבל... @@ -1189,271 +1219,277 @@ p, li { white-space: pre-wrap; } TransactionDesc - + Open for %1 blocks פתוח למשך %1 בלוקים - + Open until %1 פתוח עד %1 - - %1/offline? - %1/לא מחובר? - - - + %1/unconfirmed %1/ממתין לאישור - + %1 confirmations %1 אישורים - - <b>Status:</b> - <b>מצב:</b> + + %1/offline? + %1/לא מחובר? - - , has not been successfully broadcast yet - , טרם שודר בהצלחה + + <b>Status:</b> + <b>מצב:</b> - + , broadcast through %1 node , שודר דרך צומת %1 - + , broadcast through %1 nodes , שודר דרך %1 צמתים - + <b>Date:</b> <b>תאריך:</b> - + <b>Source:</b> Generated<br> <b>מקור:</b> נוצר<br> - - + + <b>From:</b> <b>מאת:</b> - - unknown - לא ידוע - - - - - + + + <b>To:</b> <b>אל:</b> - + (yours, label: (שלך, תוית: - + (yours) (שלך) - - - - + + + + <b>Credit:</b> <b>זיכוי:</b> - + (%1 matures in %2 more blocks) (%1 יבגור עוד %2 בלוקים) - + (not accepted) (לא התקבל) - - - + + + <b>Debit:</b> <b<חיוב:</b> - + <b>Transaction fee:</b> <b>עמלת פעולה:</b> - + <b>Net amount:</b> <b>כמות נטו:</b> - + Message: הודעה: - + Comment: הערה: - + Transaction ID: מזהה פעולה: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. מטבעות שנוצרו חייבים לחכות 120 בלוקים לפני שניתן לנצל אותם. כשיצרת את הבלוק הזה, הוא שודר לרשת כדי להתווסף לשרשרת הבלוקים. אם הוא אינו מצליח להיכנס לשרשרת, הוא ישתנה ל"לא התקבל" ולא ניתן יהיה לנצל אותו. זה יכול לקרות מדי פעם אם צומת אחר מייצר בלוק בהפרש של מספר שניות מהבלוק שלך. + + + , has not been successfully broadcast yet + , טרם שודר בהצלחה + + + + unknown + לא ידוע + TransactionDescDialog - - - Transaction details - פרטי הפעולה - This pane shows a detailed description of the transaction חלונית זו מציגה תיאור מפורט של הפעולה + + + Transaction details + פרטי הפעולה + TransactionTableModel - + Date תאריך - + Type סוג - + Address כתובת - + Amount כמות - + Open for %n block(s) - פתוח למשך בלוק אחדפתוח למשך %n בלוקים + + פתוח למשך בלוק אחד + פתוח למשך %n בלוקים + - + Open until %1 פתוח עד %1 - + Offline (%1 confirmations) לא מחובר (%1 אישורים) - + Unconfirmed (%1 of %2 confirmations) ממתין לאישור (%1 מתוך %2 אישורים) - + Confirmed (%1 confirmations) מאושר (%1 אישורים) - + Mined balance will be available in %n more blocks - יתרה שנכרתה תהיה זמינה עוד בלוק אחדיתרה שנכרתה תהיה זמינה עוד %n בלוקים + + יתרה שנכרתה תהיה זמינה עוד בלוק אחד + יתרה שנכרתה תהיה זמינה עוד %n בלוקים + - + 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. כתובת היעד של הפעולה. - + + Transaction status. Hover over this field to show number of confirmations. + מצב הפעולה. השהה את הסמן מעל שדה זה כדי לראות את מספר האישורים. + + + Amount removed from or added to balance. הכמות שהתווספה או הוסרה מהיתרה. @@ -1461,60 +1497,19 @@ p, li { white-space: pre-wrap; } TransactionView - - - All - הכל + + Last month + החודש שעבר - - Today - היום + + Received with + התקבל עם - - This week - השבוע - - - - This month - החודש - - - - Last month - החודש שעבר - - - - This year - השנה - - - - Range... - טווח... - - - - Received with - התקבל עם - - - - Sent to - נשלח ל - - - - To yourself - לעצמך - - - - Mined - נכרה + + To yourself + לעצמך @@ -1547,431 +1542,619 @@ p, li { white-space: pre-wrap; } העתק כמות - - Edit label - ערוך תוית - - - - Show 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. - + + to + אל + + + + Error exporting + שגיאה ביצוא + + + Range: טווח: - - to - אל + + Edit label + ערוך תוית - - - WalletModel - - Sending... - שולח... + + Confirmed + מאושר - - - bitcoin-core - - Bitcoin version - גרסת ביטקוין + + + All + הכל - - Usage: - שימוש: + + Today + היום - - Send command to -server or bitcoind - שלח פקודה ל -server או bitcoind + + This week + השבוע - - List commands - רשימת פקודות + + This month + החודש - - Get help for a command - קבל עזרה עבור פקודה + + This year + השנה - - Options: - אפשרויות: + + Range... + טווח... - - Specify configuration file (default: bitcoin.conf) - ציין קובץ הגדרות (ברירת מחדל: bitcoin.conf) + + Sent to + נשלח ל - - Specify pid file (default: bitcoind.pid) - ציין קובץ pid (ברירת מחדל: bitcoind.pid) + + Mined + נכרה - - Generate coins - צור מטבעות + + Show details... + הצג פרטים... + + + WalletModel - - Don't generate coins - אל תייצר מטבעות + + Sending... + שולח... + + + bitcoin-core - - Start minimized - התחל ממוזער + + Bitcoin version + גרסת ביטקוין - - Specify data directory - ציין תיקיית נתונים + + Specify pid file (default: bitcoind.pid) + ציין קובץ pid (ברירת מחדל: bitcoind.pid) - + Specify connection timeout (in milliseconds) ציין הגבלת זמן לחיבור (במילישניות) - - Connect through socks4 proxy - התחבר דרך פרוקסי socks4 + + Cannot downgrade wallet + לא יכול להוריד דרגת הארנק - - Allow DNS lookups for addnode and connect - אפשר עיון ב-DNS להוספת צומת וחיבור + + Wallet needed to be rewritten: restart Bitcoin to complete + יש לכתוב מחדש את הארנק: אתחל את ביטקוין לסיום - - Listen for connections on <port> (default: 8333 or testnet: 18333) - האזן לחיבורים ב<פורט> (ברירת מחדל: 8333 או ברשת הבדיקה: 18333) + + Upgrade wallet to latest format + שדרג את הארנק לפורמט העדכני - - Maintain at most <n> connections to peers (default: 125) - החזק לכל היותר <n> חיבורים לעמיתים (ברירת מחדל: 125) + + Error loading wallet.dat: Wallet corrupted + שגיאה בטעינת הקובץ wallet.dat: הארנק מושחת - - Add a node to connect to - הוסף צומת להתחבר אליו + + Specify configuration file (default: bitcoin.conf) + ציין קובץ הגדרות (ברירת מחדל: bitcoin.conf) - - Connect only to the specified node - התחבר רק לצומת המצוין + + Generate coins + צור מטבעות - - Don't accept connections from outside - אל תקבל חיבורים מבחוץ + + Don't generate coins + אל תייצר מטבעות - - Don't bootstrap list of peers using DNS - אל תשתמש ב-DNS לאתחול רשימת עמיתים + + Specify data directory + ציין תיקיית נתונים - + 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: 10000) - חוצץ מירבי לקבלה לכל חיבור, <n>*1000 בתים (ברירת מחדל: 10000) - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - חוצץ מירבי לשליחה לכל חיבור, <n>*1000 בתים (ברירת מחדל: 10000) - - - - Don't attempt to use UPnP to map the listening port - אל תנסה להשתמש ב-UPnP כדי למפות את הפורט להאזנה - - - - Attempt to use UPnP to map the listening port - נסה להשתמש ב-UPnP כדי למפות את הפורט להאזנה - - - - Fee per kB to add to transactions you send - עמלה לכל kB להוסיף לפעולות שאתה שולח - - - + 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 - פלוט מידע דיבאג נוסף - - - + Prepend debug output with timestamp הוסף חותמת זמן לפני פלט דיבאג - + 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 + + Allow JSON-RPC connections from specified IP address + אפשר חיבורי JSON-RPC מכתובת האינטרנט המצוינת - - Listen for JSON-RPC connections on <port> (default: 8332) - האזן לחיבורי JSON-RPC ב<פורט> (ברירת מחדל: 8332) + + Cannot write default address + לא יכול לכתוב את כתובת ברירת המחדל - - Allow JSON-RPC connections from specified IP address - אפשר חיבורי JSON-RPC מכתובת האינטרנט המצוינת + + Fee per KB to add to transactions you send + עמלה להוסיף לפעולות שאתה שולח עבור כל KB - + + An error occurred while setting up the RPC port %i for listening: %s + + + + + Find peers using internet relay chat (default: 0) + מצא עמיתים תוך שימוש ב-IRC (ברירת מחדל: 0) + + + + Find peers using DNS lookup (default: 1) + + + + + Use Universal Plug and Play to map the listening port (default: 1) + השתמש ב-UPnP כדי למפות את הפורט להאזנה (ברירת מחדל: 1 בעת האזנה) + + + + Use Universal Plug and Play to map the listening port (default: 0) + השתמש ב-UPnP כדי למפות את הפורט להאזנה (ברירת מחדל: 0) + + + Send commands to node running on <ip> (default: 127.0.0.1) שלח פקודות לצומת ב-<ip> (ברירת מחדל: 127.0.0.1) - + Set key pool size to <n> (default: 100) קבע את גודל המאגר ל -<n> (ברירת מחדל: 100) - + Rescan the block chain for missing wallet transactions סרוק מחדש את שרשרת הבלוקים למציאת פעולות חסרות בארנק - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - אפשרויות SSL: (ראה את הויקי של ביטקוין עבור הוראות להתקנת SSL) - - - + 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 הודעת העזרה הזו - + + Usage + שימוש + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. אינו מסוגל לנעול את תיקיית הנתונים %s. כנראה שביטקוין כבר רץ. - + Loading addresses... טוען כתובות... - - Error loading addr.dat - שגיאה בטעינת הקובץ addr.dat + + Loading block index... + טוען את אינדקס הבלוקים... - - Error loading blkindex.dat - שגיאה בטעינת הקובץ blkindex.dat + + Loading wallet... + טוען ארנק... - - Error loading wallet.dat: Wallet corrupted - שגיאה בטעינת הקובץ wallet.dat: הארנק מושחת + + Rescanning... + סורק מחדש... - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - שגיאה בטעינת הקובץ wallet.dat: הארנק דורש גרסה חדשה יותר של ביטקוין + + Done loading + טעינה הושלמה - - Wallet needed to be rewritten: restart Bitcoin to complete - יש לכתוב מחדש את הארנק: אתחל את ביטקוין לסיום + + Listen for connections on <port> (default: 8333 or testnet: 18333) + האזן לחיבורים ב<פורט> (ברירת מחדל: 8333 או ברשת הבדיקה: 18333) - + + Maintain at most <n> connections to peers (default: 125) + החזק לכל היותר <n> חיבורים לעמיתים (ברירת מחדל: 125) + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + שגיאה בטעינת הקובץ wallet.dat: הארנק דורש גרסה חדשה יותר של ביטקוין + + + Error loading wallet.dat שגיאה בטעינת הקובץ wallet.dat - - Loading block index... - טוען את אינדקס הבלוקים... + + Usage: + שימוש: - - Loading wallet... - טוען ארנק... + + 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 +אם הקובץ אינו קיים, צור אותו עם הרשאות קריאה לבעלים בלבד. - - Rescanning... - סורק מחדש... + + Send command to -server or bitcoind + שלח פקודה ל -server או bitcoind - - Done loading - טעינה הושלמה + + List commands + רשימת פקודות + + + + Get help for a command + קבל עזרה עבור פקודה + + + + Options: + אפשרויות: + + + + Add a node to connect to and attempt to keep the connection open + הוסף צומת להתחברות ונסה לשמור את החיבור פתוח + + + + Start minimized + התחל ממוזער + + + + Bitcoin + ביטקוין + + + + Connect through socks4 proxy + התחבר דרך פרוקסי socks4 + + + + Allow DNS lookups for addnode and connect + אפשר עיון ב-DNS להוספת צומת וחיבור + + + + Cannot initialize keypool + לא יכול לאתחל את מאגר המפתחות + + + + Connect only to the specified node + התחבר רק לצומת המצוין + + + + Detach block and address databases. Increases shutdown time (default: 0) + נתק מסדי נתונים של בלוקים וכתובות. מגדיל את זמן הסגירה (ברירת מחדל: 0) + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + חוצץ מירבי לקבלה לכל חיבור, <n>*1000 בתים (ברירת מחדל: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + חוצץ מירבי לשליחה לכל חיבור, <n>*1000 בתים (ברירת מחדל: 10000) + + + + Error + שגיאה + + + + Error: Transaction creation failed + שגיאה: יצירת הפעולה נכשלה + + + + Error: Wallet locked, unable to create transaction + שגיאה: הארנק נעול, לא ניתן ליצור פעולה + + + + Output extra debugging information + פלוט מידע דיבאג נוסף + + + + 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) + + + + Insufficient funds + אין מספיק כספים + + + + Invalid amount + כמות לא תקינה + + + + Password for JSON-RPC connections + סיסמה לחיבורי JSON-RPC + + + + Sending... + שולח... + + + + To use the %s option + להשתמש באפשרות %s + + + + Set database cache size in megabytes (default: 25) + קבע את גודל המטמון של מסד הנתונים במגהבייט (ברירת מחדל: 25) + + + + Set database disk log size in megabytes (default: 100) + קבע את גודל יומן פעילות מסד הנתונים במגהבייט (ברירת מחדל: 100) + + + + Listen for JSON-RPC connections on <port> (default: 8332) + האזן לחיבורי JSON-RPC ב<פורט> (ברירת מחדל: 8332) + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + אפשרויות SSL: (ראה את הויקי של ביטקוין עבור הוראות להתקנת SSL) + + + + Error loading addr.dat + שגיאה בטעינת הקובץ addr.dat + + + Invalid -proxy address כתובת פרוקסי לא תקינה - + Invalid amount for -paytxfee=<amount> כמות לא תקינה בפרמטר -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. אזהרה: ערך גבוה מדי הושם בפרמטר -paytxfee. זו העמלה שתשלם אם אתה שולח פעולה. - + Error: CreateThread(StartNode) failed שגיאה: כישלון ב- CreateThread(StartNode) - - Warning: Disk space is low - אזהרה: מעט מקום בדיסק - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. לא מסוגל להיקשר לפורט %d במחשב הזה. כנראה שביטקוין כבר רץ. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. אזהרה: אנא בדוק שהתאריך והשעה של המחשב הזה נכונים. אם השעון שלך שגוי ביטקוין לא יפעל כהלכה. - - beta - בטא + + Set language, for example "de_DE" (default: system locale) + קבע שפה, למשל "he_il" (ברירת מחדל: שפת המערכת) + + + + Show splash screen on startup (default: 1) + הצג מסך פתיחה בעת הפעלה (ברירת מחדל: 1) + + + + Error loading blkindex.dat + שגיאה בטעינת הקובץ blkindex.dat + + + + Accept connections from outside (default: 1) + קבל חיבורים מבחוץ (ברירת מחדל: 1 ללא -proxy או -connect) + + + + Warning: Disk space is low + אזהרה: מעט מקום בדיסק + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + בצע פקודה זו כשהבלוק הטוב ביותר משתנה (%s בפקודה יוחלף בגיבוב הבלוק) + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + שגיאה: הפעולה דורשת עמלת פעולה של לפחות %s מפאת הכמות, המורכבות, או השימוש בכספים שהתקבלו לאחרונה + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + שגיאה: הפעולה נדחתה. זה עשוי לקרות אם חלק מהמטבעות בארנק שלך כבר נוצלו, למשל אם השתמשת בעותק של הקובץ wallet.dat ומטבעות נוצלו בהעתק אך לא סומנו כמנוצלות כאן. + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + %s, עליך לקבוע את rpcpassword בקובץ ההגדרות: +%s +מומלץ להשתמש בסיסמה האקראית הבאה: +rpcuser=bitcoinrpc +rpcpassword=%s +(אין צורך לזכור סיסמה זו) +אם הקובץ אינו קיים, צור אותו עם הרשאות קריאה לבעלים בלבד. - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_hr.ts b/src/qt/locale/bitcoin_hr.ts index 9d9e2695ae..3f38712554 100644 --- a/src/qt/locale/bitcoin_hr.ts +++ b/src/qt/locale/bitcoin_hr.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> verzija - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -64,17 +66,17 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code - + Prikaži &QR Kôd Sign a message to prove you own this address - + &Sign Message - + &Potpišite poruku @@ -87,42 +89,42 @@ This product includes software developed by the OpenSSL Project for use in the O &Brisanje - + Copy address Kopirati adresu - + Copy label Kopirati oznaku - + Edit - + - + Delete - + Brisanje - + Export Address Book Data Izvoz podataka adresara - + Comma separated file (*.csv) Datoteka vrijednosti odvojenih zarezom (*. csv) - + Error exporting Pogreška kod izvoza - + Could not write to file %1. Ne mogu pisati u datoteku %1. @@ -130,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Oznaka - + Address Adresa - + (no label) (bez oznake) @@ -153,26 +155,37 @@ This product includes software developed by the OpenSSL Project for use in the O Dijalog - - - TextLabel - TekstualnaOznaka - - - + Enter passphrase Unesite lozinku - + New passphrase Nova lozinka - + Repeat new passphrase Ponovite novu lozinku + + + TextLabel + TekstualnaOznaka + + + + 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. + 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>. @@ -208,16 +221,6 @@ This product includes software developed by the OpenSSL Project for use in the O 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 BITCOINS</b>! @@ -226,21 +229,36 @@ Are you sure you wish to encrypt your wallet? Jeste li sigurni da želite šifrirati svoj novčanik? - - - Wallet encrypted - Novčanik šifriran + + Wallet decryption failed + Dešifriranje novčanika nije uspjelo - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + + Wallet passphrase was successfully changed. + Lozinka novčanika je uspješno promijenjena. Warning: The Caps Lock key is on. - + + + + + Enter the old and new passphrase to the wallet. + Unesite staru i novu lozinku za novčanik. + + + + Confirm wallet encryption + Potvrdi šifriranje novčanika + + + + + Wallet encrypted + Novčanik šifriran @@ -262,303 +280,223 @@ Jeste li sigurni da želite šifrirati svoj novčanik? 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. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin će se sada zatvoriti kako bi dovršio postupak šifriranja. Zapamtite da šifriranje vašeg novčanika ne može u potpunosti zaštititi vaše bitcoine od krađe preko zloćudnog softvera koji bi bio na vašem računalu. + + + BitcoinGUI - - Wallet decryption failed - Dešifriranje novčanika nije uspjelo + + E&xit + &Izlaz - - Wallet passphrase was succesfully changed. - Lozinka novčanika je uspješno promijenjena. + + Quit application + Izlazak iz programa - - - BitcoinGUI - - Bitcoin Wallet - Bitcoin novčanik + + Show information about Bitcoin + Prikaži informacije o Bitcoinu - - - Synchronizing with network... - Usklađivanje s mrežom ... + + &Options... + &Postavke - - Block chain synchronization in progress - Sinkronizacija lanca blokova u tijeku + + Backup Wallet + Backup novčanika - - &Overview - &Pregled + + Wallet Data (*.dat) + Podaci novčanika (*.dat) - - Show general overview of wallet - Prikaži opći pregled novčanika + + Backup Failed + Backup nije uspio - + &Transactions &Transakcije - + Browse transaction history Pretraži povijest transakcija - - &Address Book - &Adresar - - - + Edit the list of stored addresses and labels Uređivanje popisa pohranjenih adresa i oznaka - - &Receive coins - &Primanje novca - - - + Show the list of addresses for receiving payments Prikaži popis adresa za primanje isplate - + &Send coins &Pošalji novac - - Send coins to a bitcoin address - Slanje novca na bitcoin adresu - - - - Sign &message - - - - - Prove you control an address - - - - - E&xit - &Izlaz + + &About %1 + &Više o %1 - - Quit application - Izlazak iz programa + + Send coins to a bitcoin address + Slanje novca na bitcoin adresu - - &About %1 - &Više o %1 + + &Change Passphrase + &Promijena lozinke - - Show information about Bitcoin - Prikaži informacije o Bitcoinu + + Change the passphrase used for wallet encryption + Promijenite lozinku za šifriranje novčanika - - About &Qt - + + &File + &Datoteka - - Show information about Qt - + + &Settings + &Konfiguracija - - &Options... - &Postavke + + &Help + &Pomoć - - Modify configuration options for bitcoin - Promijeni postavke konfiguracije za bitcoin + + Sent transaction + Poslana transakcija - - Open &Bitcoin - Otvori &Bitcoin + + Incoming transaction + Dolazna transakcija - - Show the Bitcoin window - Prikaži Bitcoin prozor + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Novčanik je <b>šifriran</b> i trenutno <b>otključan</b> - - &Export... - &Izvoz... + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b> - - Export the data in the current tab to a file - + + Bitcoin Wallet + Bitcoin novčanik - - &Encrypt Wallet - &Šifriraj novčanik + + Sign &message + &Potpišite poruku - - Encrypt or decrypt wallet - Šifriranje ili dešifriranje novčanika + + Prove you control an address + - &Backup Wallet - - - - - Backup wallet to another location - + Modify configuration options for bitcoin + Promijeni postavke konfiguracije za bitcoin - &Change Passphrase - &Promijena lozinke + Show/Hide &Bitcoin + - Change the passphrase used for wallet encryption - Promijenite lozinku za šifriranje novčanika - - - - &File - &Datoteka - - - - &Settings - &Konfiguracija + Show or hide the Bitcoin window + Prikaži Bitcoin prozor - - &Help - &Pomoć - - - - Tabs toolbar - Traka kartica + + &Encrypt Wallet + &Šifriraj novčanik - - Actions toolbar - Traka akcija + + &Backup Wallet + &Backup novčanika - - [testnet] - [testnet] + + Bitcoin client + - + bitcoin-qt bitcoin-qt - - %n active connection(s) to Bitcoin network - %n aktivna veza na Bitcoin mrežu%n aktivne veze na Bitcoin mrežu%n aktivnih veza na Bitcoin mrežu - - - - Downloaded %1 of %2 blocks of transaction history. - Preuzeto %1 od %2 blokova povijesti transakcije. + + ~%n block(s) remaining + + + + + - - Downloaded %1 blocks of transaction history. - Preuzeto %1 blokova povijesti transakcije. - - - - %n second(s) ago - prije %n sekundeprije %n sekundeprije %n sekundi + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Preuzeto %1 od %2 blokova povijesti transakcije (%3% done). - + %n minute(s) ago - prije %n minuteprije %n minuteprije %n minuta - - - - %n hour(s) ago - prije %n sataprije %n sataprije %n sati - - - - %n day(s) ago - prije %n danaprije %n danaprije %n dana + + prije %n minute + prije %n minute + prije %n minuta + - + Up to date Ažurno - + Catching up... Ažuriranje... - + Last received block was generated %1. Zadnji primljeni blok je generiran %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? Ova transakcija je preko ograničenja veličine. Možete ju ipak poslati za naknadu od %1, koja se daje čvorovima koji procesiraju vaše transakcije i tako podržavate mrežu. Želite li platiti naknadu? - - Sending... - Slanje... - - - - Sent transaction - Poslana transakcija - - - - Incoming transaction - Dolazna transakcija - - - + Date: %1 Amount: %2 Type: %3 @@ -571,52 +509,153 @@ Adresa:%4 - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Novčanik je <b>šifriran</b> i trenutno <b>otključan</b> + + Sending... + Slanje... - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b> + + Synchronizing with network... + Usklađivanje s mrežom ... - - Backup Wallet - + + &Overview + &Pregled - - Wallet Data (*.dat) - + + Encrypt or decrypt wallet + Šifriranje ili dešifriranje novčanika - - Backup Failed - + + &Receive coins + &Primanje novca - - There was an error trying to save the wallet data to the new location. - + + Downloaded %1 blocks of transaction history. + Preuzeto %1 blokova povijesti transakcije. - - - DisplayOptionsPage - + + About &Qt + Više o &Qt + + + + Show information about Qt + Prikaži informacije o Qt + + + + There was an error trying to save the wallet data to the new location. + Došlo je do pogreške kod spremanja podataka novčanika na novu lokaciju. + + + + Show general overview of wallet + Prikaži opći pregled novčanika + + + + &Address Book + &Adresar + + + + &Export... + &Izvoz... + + + + Export the data in the current tab to a file + Izvoz podataka iz trenutnog taba u datoteku + + + + Backup wallet to another location + Napravite sigurnosnu kopiju novčanika na drugoj lokaciji + + + + Tabs toolbar + Traka kartica + + + + Actions toolbar + Traka akcija + + + + [testnet] + [testnet] + + + + %n active connection(s) to Bitcoin network + + %n aktivna veza na Bitcoin mrežu + %n aktivne veze na Bitcoin mrežu + %n aktivnih veza na Bitcoin mrežu + + + + + %n second(s) ago + + prije %n sekunde + prije %n sekunde + prije %n sekundi + + + + + %n hour(s) ago + + prije %n sata + prije %n sata + prije %n sati + + + + + %n day(s) ago + + prije %n dana + prije %n dana + prije %n dana + + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + + + + + DisplayOptionsPage + + &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. - - Display addresses in transaction list - Prikaži adrese u popisu transakcija + + &Display addresses in transaction list + &Prikaži adrese u popisu transakcija + + + + Whether to show Bitcoin addresses in the transaction list + @@ -690,89 +729,94 @@ Adresa:%4 MainOptionsPage - + &Start Bitcoin on window system startup &Pokreni Bitcoin kod pokretanja sustava - + Automatically start Bitcoin after the computer is turned on Automatski pokreni Bitcoin kad se uključi računalo - + &Minimize to the tray instead of the taskbar &Minimiziraj u sistemsku traku umjesto u traku programa - + Show only a tray icon after minimizing the window Prikaži samo ikonu u sistemskoj traci nakon minimiziranja prozora - + Map port using &UPnP Mapiraj port koristeći &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Automatski otvori port Bitcoin klijenta na ruteru. To radi samo ako ruter podržava UPnP i ako je omogućen. - + M&inimize on close M&inimiziraj kod zatvaranja - + 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. - + &Connect through SOCKS4 proxy: &Povezivanje putem SOCKS4 proxy-a: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Spojite se na Bitcon mrežu putem SOCKS4 proxy-a (npr. kod povezivanja kroz Tor) - + Proxy &IP: Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) IP adresa proxy-a (npr. 127.0.0.1) - + &Port: &Port: - + Port of the proxy (e.g. 1234) Port od proxy-a (npr. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - - - + Pay transaction &fee Plati &naknadu za transakciju - + + Detach databases at shutdown + + + + + 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. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + Neobavezna naknada za transakciju po kB koja omogućuje da se vaša transakcija obavi brže. Većina transakcija ima 1 kB. Preporučena naknada je 0.01. @@ -780,17 +824,17 @@ Adresa:%4 Message - + Poruka 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adresa za slanje plaćanja (npr. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Unesite Bitcoin adresu (npr. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -815,27 +859,27 @@ Adresa:%4 Enter the message you want to sign here - + Upišite poruku koju želite potpisati ovdje Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + &Potpišite poruku - Copy the currently selected address to the system clipboard - Kopiraj trenutno odabranu adresu u međuspremnik + Copy the current signature to the system clipboard + @@ -847,44 +891,59 @@ Adresa:%4 Error signing - + %1 is not a valid address. - + Upisana adresa "%1" nije valjana bitcoin adresa. Private key for %1 is not available. - + Sign failed - + OptionsDialog - + Main Glavno - + Display Prikaz - + Options Postavke OverviewPage + + + Unconfirmed: + Nepotvrđene: + + + + Wallet + Novčanik + + + + <b>Recent transactions</b> + <b>Nedavne transakcije</b> + Form @@ -895,54 +954,21 @@ Adresa:%4 Balance: Stanje: - - - 123.456 BTC - 123,456 BTC - Number of transactions: Broj transakcija: - - - 0 - 0 - - - - Unconfirmed: - Nepotvrđene: - - - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Lisnica</span></p></body></html> - - - - <b>Recent transactions</b> - <b>Nedavne transakcije</b> - Your current balance Vaše trenutno stanje računa + + + 0 + 0 + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance @@ -951,11 +977,31 @@ p, li { white-space: pre-wrap; } Total number of transactions in wallet - Ukupni broj tansakcija u lisnici + Ukupni broj tansakcija u novčaniku QRCodeDialog + + + Error encoding URI into QR Code. + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + PNG Images (*.png) + PNG slike (*.png) + + + + Save Image... + + Dialog @@ -964,62 +1010,72 @@ p, li { white-space: pre-wrap; } QR Code - + QR Kôd - + Request Payment - + Zatraži plaćanje - + Amount: - + Iznos: - + BTC - + - + Label: - + Oznaka - + Message: Poruka: - + &Save As... - + &Spremi kao... + + + SendCoinsDialog - - Save Image... - + + Remove all transaction fields + Obriši sva polja transakcija - - PNG Images (*.png) - + + Balance: + Stanje: + + + + 123.456 BTC + 123,456 BTC + + + + Confirm the send action + Potvrdi akciju slanja - - - SendCoinsDialog - - - - - - - + + + + + + + Send Coins - Pošalji novac + Slanje novca @@ -1031,89 +1087,69 @@ p, li { white-space: pre-wrap; } &Add recipient... &Dodaj primatelja... - - - Remove all transaction fields - - Clear all Obriši sve - - - Balance: - Stanje: - - - - 123.456 BTC - 123,456 BTC - - - - Confirm the send action - Potvrdi akciju slanja - &Send &Pošalji - + <b>%1</b> to %2 (%3) <b>%1</b> do %2 (%3) - + Confirm send coins Potvrdi slanje novca - + Are you sure you want to send %1? Jeste li sigurni da želite poslati %1? - + and i - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance - Iznos je veći od stanja računa + + The amount exceeds your balance. + Iznos je veći od stanja računa. - - 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 + + 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 in one send operation - Pronašli smo adresu koja se ponavlja. U svakom plaćanju program može svaku adresu koristiti samo jedanput + + 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 - Greška: priprema transakcije nije uspjela + + Error: Transaction creation failed. + Greška: priprema transakcije nije uspjela. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. Generirani novčići moraju pričekati nastanak 120 blokova prije nego što ih je moguće potrošiti. Kad ste generirali taj blok, on je bio emitiran u mrežu kako bi bio dodan postojećim lancima blokova. Ako ne uspije biti dodan, njegov status bit će promijenjen u "nije prihvatljiv" i on neće biti potrošiv. S vremena na vrijeme tako nešto se može desiti ako neki drugi nod približno istovremeno generira blok. @@ -1184,140 +1220,140 @@ p, li { white-space: pre-wrap; } TransactionDesc - + Open for %1 blocks Otvori za %1 blokova - + Open until %1 Otvoren do %1 - - %1/offline? - %1 nije dostupan? + + %1 confirmations + %1 potvrda - %1/unconfirmed - %1/nepotvrđeno + %1/offline? + %1 nije dostupan? - %1 confirmations - %1 potvrda + %1/unconfirmed + %1/nepotvrđeno - + <b>Status:</b> <b>Status:</b> - + , has not been successfully broadcast yet , još nije bio uspješno emitiran - + , broadcast through %1 node , emitiran kroz nod %1 - + , broadcast through %1 nodes , emitiran kroz nodove %1 - + <b>Date:</b> <b>Datum:</b> - + <b>Source:</b> Generated<br> <b>Izvor:</b> Generirano<br> - - + + <b>From:</b> <b>Od:</b> - + unknown nepoznato - - - + + + <b>To:</b> <b>Za:</b> - + (yours, label: (tvoje, oznaka: - + (yours) (tvoje) - - - - + + + + <b>Credit:</b> <b>Uplaćeno:</b> - + (%1 matures in %2 more blocks) (%1 stasava za %2 dodatna bloka) - + (not accepted) (Nije prihvaćeno) - - - + + + <b>Debit:</b> <b>Potrošeno:</b> - + <b>Transaction fee:</b> <b>Naknada za transakciju:</b> - + <b>Net amount:</b> <b>Neto iznos:</b> - + Message: Poruka: - + Comment: Komentar: - + Transaction ID: - + - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Generirani novčići moraju pričekati nastanak 120 blokova prije nego što ih je moguće potrošiti. Kad ste generirali taj blok, on je bio emitiran u mrežu kako bi bio dodan postojećim lancima blokova. Ako ne uspije biti dodan, njegov status bit će promijenjen u "nije prihvaćen" i on neće biti potrošiv. S vremena na vrijeme tako nešto se može desiti ako neki drugi nod generira blok u približno isto vrijeme. @@ -1338,127 +1374,195 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + + Amount removed from or added to balance. + Iznos odbijen od ili dodan k saldu. + + + + Confirmed (%1 confirmations) + Potvrđen (%1 potvrda) + + + Date Datum - + Type Tip - + Address Adresa - + Amount Iznos - + Open for %n block(s) - Otvoren za %n blokaOtvoren za %n blokovaOtvoren za %n blokova + + + + + - + Open until %1 Otvoren do %1 - + Offline (%1 confirmations) Nije na mreži (%1 potvrda) - + Unconfirmed (%1 of %2 confirmations) Nepotvrđen (%1 od %2 potvrda) - - - Confirmed (%1 confirmations) - Potvrđen (%1 potvrda) - - + Mined balance will be available in %n more blocks - Saldo iskovanih novčićća bit de dostupan nakon %n dodatnog blokaSaldo iskovanih novčićća bit de dostupan nakon %n dodatnih blokovaSaldo iskovanih novčićća bit de dostupan nakon %n dodatnih blokova + + + + + - + 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 - + (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. - TransactionView - - - All + + Export Transaction Data + Izvoz podataka transakcija + + + + 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 + Izvoz pogreške + + + + Could not write to file %1. + Ne mogu pisati u datoteku %1. + + + + Range: + Raspon: + + + + + All Sve @@ -1536,11 +1640,6 @@ p, li { white-space: pre-wrap; } Copy label Kopirati oznaku - - - Copy amount - - Edit label @@ -1552,421 +1651,505 @@ p, li { white-space: pre-wrap; } Prikazati detalje... - - Export Transaction Data - Izvoz podataka transakcija + + Copy amount + Kopiraj iznos - - Comma separated file (*.csv) - Datoteka podataka odvojenih zarezima (*.csv) + + to + za + + + WalletModel - - Confirmed - Potvrđeno + + Sending... + Slanje... + + + bitcoin-core - - Date - Datum + + Password for JSON-RPC connections + Lozinka za JSON-RPC veze - - Type - Tip + + Set key pool size to <n> (default: 100) + Podesi memorijski prostor za ključeve na <n> (ugrađeni izbor: 100) - - Label - Oznaka + + Rescan the block chain for missing wallet transactions + Ponovno pretraži lanac blokova za transakcije koje nedostaju - - Address - Adresa + + Use OpenSSL (https) for JSON-RPC connections + Koristi OpenSSL (https) za JSON-RPC povezivanje - - Amount - Iznos + + Server certificate file (default: server.cert) + Uslužnikov SSL certifikat (ugrađeni izbor: server.cert) - - ID - ID + + Server private key (default: server.pem) + Uslužnikov privatni ključ (ugrađeni izbor: server.pem) - - Error exporting - Izvoz pogreške + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Prihvaljivi načini šifriranja (ugrađeni izbor: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Could not write to file %1. - Ne mogu pisati u datoteku %1. + + Get help for a command + Potraži pomoć za komandu - - Range: - Raspon: + + Specify connection timeout (in milliseconds) + Odredi vremenski prozor za spajanje na mrežu (u milisekundama) - - to - za + + Accept command line and JSON-RPC commands + Prihvati komande iz tekst moda i JSON-RPC - - - WalletModel - - Sending... - Slanje... + + Run in the background as a daemon and accept commands + Izvršavaj u pozadini kao uslužnik i prihvaćaj komande + + + + Use the test network + Koristi test mrežu - - - bitcoin-core - + + Username for JSON-RPC connections + Korisničko ime za JSON-RPC veze + + + + Listen for JSON-RPC connections on <port> (default: 8332) + Prihvaćaj JSON-RPC povezivanje na portu broj <port> (ugrađeni izbor: 8332) + + + + 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) + + + + This help message + Ova poruka za pomoć + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Program ne može pristupiti direktoriju s datotekama %s. Bitcoin program je vjerojatno već pokrenut. + + + + Loading addresses... + Učitavanje adresa... + + + + Loading block index... + Učitavanje indeksa blokova... + + + + Loading wallet... + Učitavanje novčanika... + + + + Rescanning... + Rescaniranje + + + + Done loading + Učitavanje gotovo + + + Bitcoin version Bitcoin verzija - + + Error: Wallet locked, 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 + Ova transakcija je preko ograničenja veličine. Možete ju ipak poslati za naknadu od %1, koja se daje čvorovima koji procesiraju vaše transakcije i tako podržavate mrežu. Želite li platiti naknadu? + + + + Invalid amount + Nevaljali iznos za opciju + + + + 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=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + + + + + Error + + + + + An error occurred while setting up the RPC port %i for listening: %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. + + + + Usage: Upotreba: - + Send command to -server or bitcoind Pošalji komandu usluzi -server ili bitcoind - + List commands Prikaži komande - - Get help for a command - Potraži pomoć za komandu - - - + Options: Postavke: - + Specify configuration file (default: bitcoin.conf) Odredi konfiguracijsku datoteku (ugrađeni izbor: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Odredi proces ID datoteku (ugrađeni izbor: bitcoin.pid) - + Generate coins Generiraj novčiće - + Don't generate coins Ne generiraj novčiće - + Start minimized Pokreni minimiziran - + + Show splash screen on startup (default: 1) + + + + Specify data directory Odredi direktorij za datoteke - - Specify connection timeout (in milliseconds) - Odredi vremenski prozor za spajanje na mrežu (u milisekundama) + + Set database cache size in megabytes (default: 25) + - + + Set database disk log size in megabytes (default: 100) + + + + Connect through socks4 proxy Poveži se kroz socks4 proxy - + Allow DNS lookups for addnode and connect Dozvoli DNS upite za dodavanje nodova i povezivanje - - Listen for connections on <port> (default: 8333 or testnet: 18333) - - - - - Maintain at most <n> connections to peers (default: 125) - - - - - Add a node to connect to - Unesite nod s kojim se želite spojiti - - - + Connect only to the specified node Poveži se samo sa određenim nodom - - Don't accept connections from outside - Ne prihvaćaj povezivanje izvana + + Find peers using internet relay chat (default: 0) + - - Don't bootstrap list of peers using DNS - + + Accept connections from outside (default: 1) + - - Threshold for disconnecting misbehaving peers (default: 100) - + + Set language, for example "de_DE" (default: system locale) + - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + + Find peers using DNS lookup (default: 1) + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - - Don't attempt to use UPnP to map the listening port - Ne pokušaj koristiti UPnP da otvoriš port za uslugu + + Detach block and address databases. Increases shutdown time (default: 0) + - - Attempt to use UPnP to map the listening port - Pokušaj koristiti UPnP da otvoriš port za uslugu + + Output extra debugging information + - - Fee per kB to add to transactions you send - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Accept command line and JSON-RPC commands - Prihvati komande iz tekst moda i JSON-RPC + + Upgrade wallet to latest format + - - Run in the background as a daemon and accept commands - Izvršavaj u pozadini kao uslužnik i prihvaćaj komande + + How many blocks to check at startup (default: 2500, 0 = all) + - - Use the test network - Koristi test mrežu + + How thorough the block verification is (0-6, default: 1) + - - Output extra debugging information - + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL postavke: (za detalje o podešavanju SSL opcija vidi Bitcoin Wiki) - - Prepend debug output with timestamp - + + Usage + Upotreba - - Send trace/debug info to console instead of debug.log file - + + Cannot downgrade wallet + - - Send trace/debug info to debugger - + + Cannot initialize keypool + - - Username for JSON-RPC connections - Korisničko ime za JSON-RPC veze + + Cannot write default address + - - Password for JSON-RPC connections - Lozinka za JSON-RPC veze + + Invalid -proxy address + Nevaljala -proxy adresa - - Listen for JSON-RPC connections on <port> (default: 8332) - Prihvaćaj JSON-RPC povezivanje na portu broj <port> (ugrađeni izbor: 8332) + + Invalid amount for -paytxfee=<amount> + Nevaljali iznos za opciju -paytxfee=<amount> - - Allow JSON-RPC connections from specified IP address - Dozvoli JSON-RPC povezivanje s određene IP adrese + + 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. - - 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) + + Error: CreateThread(StartNode) failed + Greška: CreateThread(StartNode) nije uspjela - - Set key pool size to <n> (default: 100) - Podesi memorijski prostor za ključeve na <n> (ugrađeni izbor: 100) + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Program ne može koristiti port %d na ovom računalu. Bitcoin program je vjerojatno već pokrenut. - - Rescan the block chain for missing wallet transactions - Ponovno pretraži lanac blokova za transakcije koje nedostaju + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Upozorenje: Molimo provjerite jesu li datum i vrijeme na vašem računalu točni. Ako vaš sat ide krivo, Bitcoin neće raditi ispravno. - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL postavke: (za detalje o podešavanju SSL opcija vidi Bitcoin Wiki) + + Error loading addr.dat + Greška kod učitavanja addr.dat - - Use OpenSSL (https) for JSON-RPC connections - Koristi OpenSSL (https) za JSON-RPC povezivanje + + 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) - - Server certificate file (default: server.cert) - Uslužnikov SSL certifikat (ugrađeni izbor: server.cert) + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Slušaj na <port>u (default: 8333 ili testnet: 18333) - - Server private key (default: server.pem) - Uslužnikov privatni ključ (ugrađeni izbor: server.pem) + + Maintain at most <n> connections to peers (default: 125) + Održavaj najviše <n> veza sa članovima (default: 125) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Prihvaljivi načini šifriranja (ugrađeni izbor: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Bitcoin + Bitcoin - - This help message - Ova poruka za pomoć + + Insufficient funds + Nedovoljna sredstva - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Program ne može pristupiti direktoriju s datotekama %s. Bitcoin program je vjerojatno već pokrenut. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Generirani novčići moraju pričekati nastanak 120 blokova prije nego što ih je moguće potrošiti. Kad ste generirali taj blok, on je bio emitiran u mrežu kako bi bio dodan postojećim lancima blokova. Ako ne uspije biti dodan, njegov status bit će promijenjen u "nije prihvatljiv" i on neće biti potrošiv. S vremena na vrijeme tako nešto se može desiti ako neki drugi nod približno istovremeno generira blok. - - Loading addresses... - Učitavanje adresa... + + Error loading blkindex.dat + Greška kod učitavanja blkindex.dat - - Error loading addr.dat - + + Fee per KB to add to transactions you send + Naknada posredniku po KB-u koja će biti dodana svakoj transakciji koju pošalješ - - Error loading blkindex.dat - + + Error loading wallet.dat + Greška kod učitavanja wallet.dat - + Error loading wallet.dat: Wallet corrupted - + Greška kod učitavanja wallet.dat: Novčanik pokvaren - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + Greška kod učitavanja wallet.dat: Novčanik zahtjeva noviju verziju Bitcoina - Wallet needed to be rewritten: restart Bitcoin to complete - - - - - Error loading wallet.dat - - - - - Loading block index... - Učitavanje indeksa blokova... - - - - Loading wallet... - Učitavanje novčanika... + Threshold for disconnecting misbehaving peers (default: 100) + Prag za odspajanje članova koji se čudno ponašaju (default: 100) - - Rescanning... - Rescaniranje + + Error: Transaction creation failed + Greška: priprema transakcije nije uspjela - - Done loading - Učitavanje gotovo + + Prepend debug output with timestamp + Dodaj izlaz debuga na početak sa vremenskom oznakom - - Invalid -proxy address - Nevaljala -proxy adresa + + Send trace/debug info to console instead of debug.log file + Šalji trace/debug informacije na konzolu umjesto u debug.log datoteku - - Invalid amount for -paytxfee=<amount> - Nevaljali iznos za opciju -paytxfee=<amount> + + Send trace/debug info to debugger + Pošalji trace/debug informacije u debugger - - 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. + + Wallet needed to be rewritten: restart Bitcoin to complete + Novčanik je trebao prepravak: ponovo pokrenite Bitcoin - - Error: CreateThread(StartNode) failed - Greška: CreateThread(StartNode) nije uspjela + + Sending... + Slanje... - - Warning: Disk space is low + + Warning: Disk space is low Upozorenje: Malo diskovnog prostora - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Program ne može koristiti port %d na ovom računalu. Bitcoin program je vjerojatno već pokrenut. + + 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 - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Upozorenje: Molimo provjerite jesu li datum i vrijeme na vašem računalu točni. Ako vaš sat ide krivo, Bitcoin neće raditi ispravno. + + Use Universal Plug and Play to map the listening port (default: 1) + Pokušaj koristiti UPnP da otvoriš port za uslugu (default: 1) - - beta - beta + + Use Universal Plug and Play to map the listening port (default: 0) + Pokušaj koristiti UPnP da otvoriš port za uslugu (default: 0) - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index 7a66fa6c10..a044fbfa53 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> verzió - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,12 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Szerzői jog © 2009-2012 Bitcoin Developers + +Ez egy kísérleti program. +MIT/X11 szoftverlicenc alatt kiadva, lásd a mellékelt fájlt license.txt vagy http://www.opensource.org/licenses/mit-license.php. + +Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (http://www.openssl.org/) és kriptográfiai szoftvertben való felhasználásra, írta Eric Young (eay@cryptsoft.com) és UPnP szoftver, írta Thomas Bernard. @@ -46,6 +53,16 @@ This product includes software developed by the OpenSSL Project for use in the O Create a new address Új cím létrehozása + + + Comma separated file (*.csv) + Vesszővel elválasztott fájl (*. csv) + + + + Could not write to file %1. + %1 nevű fájl nem írható. + &New Address... @@ -64,17 +81,17 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + @@ -87,60 +104,50 @@ This product includes software developed by the OpenSSL Project for use in the O &Törlés - + Copy address Cím másolása - + Copy label Címke másolása - + Edit - + - + Delete - + Törlés - + Export Address Book Data Címjegyzék adatainak exportálása - - Comma separated file (*.csv) - Vesszővel elválasztott fájl (*. csv) - - - + Error exporting Hiba exportálás közben - - - Could not write to file %1. - %1 nevű fájl nem írható. - AddressTableModel - - Label - Címke - - - + Address Cím - + + Label + Címke + + + (no label) (nincs címke) @@ -148,40 +155,56 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - - Dialog - Párbeszéd + + Enter passphrase + Add meg a jelszót - - - TextLabel - SzövegCímke + + Encrypt wallet + Tárca kódolása - - Enter passphrase - Add meg a jelszót + + Change passphrase + Jelszó megváltoztatása + + + + Dialog + Párbeszéd - + New passphrase Új jelszó - + Repeat new passphrase Új jelszó újra - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Írd be az új jelszót a tárcához.<br/>Használj legalább 10<br/>véletlenszerű karaktert</b> vagy <b>legalább nyolc szót</b>. + + TextLabel + SzövegCímke - - Encrypt wallet - Tárca kódolása + + + Wallet encrypted + Tárca kódolva + + + + + The supplied passphrases do not match. + A megadott jelszavak nem egyeznek. + + + + Wallet unlock failed + Tárca megnyitása sikertelen @@ -189,35 +212,53 @@ This product includes software developed by the OpenSSL Project for use in the O A tárcád megnyitásához a műveletnek szüksége van a tárcád jelszavára. - - Unlock wallet - Tárca megnyitása + + + + + Wallet encryption failed + Tárca kódolása sikertelen. This operation needs your wallet passphrase to decrypt the wallet. A tárcád dekódolásához a műveletnek szüksége van a tárcád jelszavára. + + + Wallet decryption failed + Dekódolás sikertelen. + + + + Enter the old and new passphrase to the wallet. + Írd be a tárca régi és új jelszavát. + Decrypt wallet Tárca dekódolása - - Change passphrase - Jelszó megváltoztatása + + Unlock wallet + Tárca megnyitása - - Enter the old and new passphrase to the wallet. - Írd be a tárca régi és új jelszavát. + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Tárca kódolása belső hiba miatt sikertelen. A tárcád nem lett kódolva. Confirm wallet encryption Biztosan kódolni akarod a tárcát? + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Írd be az új jelszót a tárcához.<br/>Használj legalább 10<br/>véletlenszerű karaktert</b> vagy <b>legalább nyolc szót</b>. + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! @@ -225,47 +266,6 @@ Are you sure you wish to encrypt your wallet? FIGYELEM: Ha kódolod a tárcát, és elveszíted a jelszavad, akkor <b>AZ ÖSSZES BITCOINODAT IS EL FOGOD VESZÍTENI!</b> Biztosan kódolni akarod a tárcát? - - - - Wallet encrypted - Tárca kódolva - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - - Warning: The Caps Lock key is on. - - - - - - - - Wallet encryption failed - Tárca kódolása sikertelen. - - - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Tárca kódolása belső hiba miatt sikertelen. A tárcád nem lett kódolva. - - - - - The supplied passphrases do not match. - A megadott jelszavak nem egyeznek. - - - - Wallet unlock failed - Tárca megnyitása sikertelen - @@ -274,291 +274,318 @@ Biztosan kódolni akarod a tárcát? Hibás jelszó. - - Wallet decryption failed - Dekódolás sikertelen. + + + Warning: The Caps Lock key is on. + + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Jelszó megváltoztatva. BitcoinGUI - - Bitcoin Wallet - Bitcoin-tárca + + &Transactions + &Tranzakciók - - - Synchronizing with network... - Szinkronizálás a hálózattal... + + Send coins to a bitcoin address + Érmék küldése megadott címre - - Block chain synchronization in progress - Blokklánc-szinkronizálás folyamatban + + &Encrypt Wallet + Tárca &kódolása - - &Overview - &Áttekintés + + Synchronizing with network... + Szinkronizálás a hálózattal... - + Show general overview of wallet Tárca általános áttekintése - - &Transactions - &Tranzakciók - - - - Browse transaction history - Tranzakciótörténet megtekintése + + Bitcoin Wallet + Bitcoin-tárca - + &Address Book Cím&jegyzék - + Edit the list of stored addresses and labels Tárolt címek és címkék listájának szerkesztése - + &Receive coins Érmék &fogadása - + Show the list of addresses for receiving payments Kiizetést fogadó címek listája - + &Send coins Érmék &küldése - - Send coins to a bitcoin address - Érmék küldése megadott címre - - - + Sign &message - + - + Prove you control an address - - - - - E&xit - &Kilépés + - + Quit application Kilépés - + &About %1 &A %1-ról - + Show information about Bitcoin Információk a Bitcoinról - + About &Qt - + A &Qt-ról - + Show information about Qt - + Információk a Qt ról - + &Options... &Opciók... - + Modify configuration options for bitcoin Bitcoin konfigurációs opciók - - Open &Bitcoin - A &Bitcoin megnyitása + + Show/Hide &Bitcoin + - - Show the Bitcoin window - A Bitcoin-ablak mutatása + + Show or hide the Bitcoin window + A Bitcoin-ablak mutatása - - &Export... - &Exportálás... + + Export the data in the current tab to a file + Jelenlegi nézet exportálása fájlba - - Export the data in the current tab to a file - + + &Backup Wallet + - - &Encrypt Wallet - Tárca &kódolása + + Backup wallet to another location + - - Encrypt or decrypt wallet - Tárca kódolása vagy dekódolása + + &Change Passphrase + Jelszó &megváltoztatása - - &Backup Wallet - + + Backup Wallet + - - Backup wallet to another location - + + Wallet Data (*.dat) + - - &Change Passphrase - Jelszó &megváltoztatása + + Backup Failed + - - Change the passphrase used for wallet encryption - Tárcakódoló jelszó megváltoztatása + + There was an error trying to save the wallet data to the new location. + - - &File - &Fájl + + &Overview + &Áttekintés - + + Browse transaction history + Tranzakciótörténet megtekintése + + + + E&xit + &Kilépés + + + + &Export... + &Exportálás... + + + &Settings &Beállítások - + &Help &Súgó - - Tabs toolbar - Fül eszköztár - - - - Actions toolbar - Parancsok eszköztár + + Encrypt or decrypt wallet + Tárca kódolása vagy dekódolása - + [testnet] [teszthálózat] - - bitcoin-qt - bitcoin-qt + + &File + &Fájl - + %n active connection(s) to Bitcoin network - %n aktív kapcsolat a Bitcoin-hálózattal%n aktív kapcsolat a Bitcoin-hálózattal - - - - Downloaded %1 of %2 blocks of transaction history. - %1 blokk letöltve a tranzakciótörténet %2 blokkjából. + + %n aktív kapcsolat a Bitcoin-hálózattal + - + Downloaded %1 blocks of transaction history. %1 blokk letöltve a tranzakciótörténetből. + + + Actions toolbar + Parancsok eszköztár + + + + Bitcoin client + + + + + bitcoin-qt + bitcoin-qt + + + + ~%n block(s) remaining + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + %1 blokk letöltve a tranzakciótörténet %2 blokkjából (%3% done). + - + %n second(s) ago - %n másodperccel ezelőtt%n másodperccel ezelőtt + + %n másodperccel ezelőtt + - + %n minute(s) ago - %n perccel ezelőtt%n perccel ezelőtt + + %n perccel ezelőtt + - + %n hour(s) ago - %n órával ezelőtt%n órával ezelőtt + + %n órával ezelőtt + - + %n day(s) ago - %n nappal ezelőtt%n nappal ezelőtt + + %n nappal ezelőtt + - + Up to date Naprakész - + Catching up... Frissítés... - + Last received block was generated %1. Az utolsóként kapott blokk generálva: %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? Ez a tranzakció túllépi a mérethatárt, de %1 tranzakciós díj ellenében így is elküldheted. Ezt a plusz összeget a tranzakcióidat feldolgozó csomópontok kapják, így magát a hálózatot támogatod vele. Hajlandó vagy megfizetni a díjat? - - Sending... - Küldés... - - - + Sent transaction Tranzakció elküldve. - + Incoming transaction Beérkező tranzakció - + Date: %1 Amount: %2 Type: %3 @@ -571,52 +598,57 @@ Cím: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Tárca <b>kódolva</b> és jelenleg <b>nyitva</b>. - + Wallet is <b>encrypted</b> and currently <b>locked</b> Tárca <b>kódolva</b> és jelenleg <b>zárva</b>. - - Backup Wallet - + + Sending... + Küldés... - - Wallet Data (*.dat) - + + Change the passphrase used for wallet encryption + Tárcakódoló jelszó megváltoztatása - - Backup Failed - + + Tabs toolbar + Fül eszköztár - - There was an error trying to save the wallet data to the new location. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: &Mértékegység: - + Choose the default subdivision unit to show in the interface, and when sending coins Válaszd ki az interfészen és érmék küldésekor megjelenítendő alapértelmezett alegységet. - - Display addresses in transaction list - Címek megjelenítése a tranzakciólistában + + &Display addresses in transaction list + &Címek megjelenítése a tranzakciólistában + + + + Whether to show Bitcoin addresses in the transaction list + @@ -671,11 +703,6 @@ Cím: %4 The entered address "%1" is already in the address book. A megadott "%1" cím már szerepel a címjegyzékben. - - - The entered address "%1" is not a valid bitcoin address. - A megadott "%1" cím nem egy érvényes Bitcoin-cím. - Could not unlock wallet. @@ -686,111 +713,126 @@ Cím: %4 New key generation failed. Új kulcs generálása sikertelen + + + The entered address "%1" is not a valid bitcoin address. + A megadott "%1" cím nem egy érvényes Bitcoin-cím. + MainOptionsPage - + + IP address of the proxy (e.g. 127.0.0.1) + Proxy IP címe (pl.: 127.0.0.1) + + + + &Port: + &Port: + + + &Start Bitcoin on window system startup &Induljon el a számítógép bekapcsolásakor - + Automatically start Bitcoin after the computer is turned on Induljon el a Bitcoin a számítógép bekapcsolásakor - + &Minimize to the tray instead of the taskbar &Kicsinyítés a tálcára az eszköztár helyett - + Show only a tray icon after minimizing the window Kicsinyítés után csak eszköztár-ikont mutass - + Map port using &UPnP &UPnP port-feltérképezés - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. A Bitcoin-kliens portjának automatikus megnyitása a routeren. Ez csak akkor működik, ha a routered támogatja az UPnP-t és az engedélyezve is van rajta. - + + Detach databases at shutdown + + + + + 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. + + + + M&inimize on close K&icsinyítés záráskor - + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Az alkalmazásból való kilépés helyett az eszköztárba kicsinyíti az alkalmazást az ablak bezárásakor. Ez esetben az alkalmazás csak a Kilépés menüponttal zárható be. - + &Connect through SOCKS4 proxy: &Csatlakozás SOCKS4 proxyn keresztül: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) SOCKS4 proxyn keresztüli csatlakozás a Bitcoin hálózatához (pl. Tor-on keresztüli csatlakozás esetén) - + Proxy &IP: Proxy &IP: - - IP address of the proxy (e.g. 127.0.0.1) - Proxy IP címe (pl.: 127.0.0.1) - - - - &Port: - &Port: - - - + Port of the proxy (e.g. 1234) Proxy portja (pl.: 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Opcionális, kB-onkénti tranzakciós díj a tranzakcióid minél gyorsabb feldolgozásának elősegítésére. A legtöbb tranzakció 1 kB-os. 0,01 BTC ajánlott. - + Pay transaction &fee Tranzakciós &díj fizetése - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - MessagePage + + + &Copy to Clipboard + &Másolás a vágólapra + Message - + Üzenet 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Címzett címe (pl.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L ) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adj meg egy Bitcoin-címet (pl.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L ) @@ -815,70 +857,65 @@ Cím: %4 Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - A kiválasztott cím másolása a vágólapra + Copy the current signature to the system clipboard + - - &Copy to Clipboard - &Másolás a vágólapra + + %1 is not a valid address. + A megadott "%1" cím nem egy érvényes Bitcoin-cím. Error signing - - - - - %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + OptionsDialog - + Main - + Display Megjelenítés - + Options Opciók @@ -895,11 +932,6 @@ Cím: %4 Balance: Egyenleg: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -916,25 +948,12 @@ Cím: %4 Megerősítetlen: - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + Tárca - + <b>Recent transactions</b> <b>Legutóbbi tranzakciók</b> @@ -956,6 +975,11 @@ p, li { white-space: pre-wrap; } QRCodeDialog + + + Message: + Üzenet: + Dialog @@ -964,93 +988,56 @@ p, li { white-space: pre-wrap; } QR Code - + - + Request Payment - + - + Amount: - + Összeg: - + BTC - + - + Label: - + Címke: - - Message: - Üzenet: + + &Save As... + - - &Save As... - + + Error encoding URI into QR Code. + + + + + Resulting URI too long, try to reduce the text for label / message. + - + Save Image... - + - + PNG Images (*.png) - + SendCoinsDialog - - - - - - - - - - Send Coins - Érmék küldése - - - - Send to multiple recipients at once - Küldés több címzettnek egyszerre - - - - &Add recipient... - &Címzett hozzáadása ... - - - - Remove all transaction fields - - - - - Clear all - Mindent töröl - - - - Balance: - Egyenleg: - - - - 123.456 BTC - 123.456 BTC - Confirm the send action @@ -1062,59 +1049,101 @@ p, li { white-space: pre-wrap; } &Küldés - + <b>%1</b> to %2 (%3) <b>%1</b> %2-re (%3) - + Confirm send coins Küldés megerősítése - + Are you sure you want to send %1? Valóban el akarsz küldeni %1-t? - + and és - - The recepient 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. - - Amount exceeds your balance + + The amount exceeds your balance. Nincs ennyi bitcoin az egyenlegeden. - - 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. - - Duplicate address found, can only send to each address once in one send operation - Többször szerepel ugyanaz a cím. Egy küldési műveletben egy címre csak egyszer lehet küldeni. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. + + + + + + - Error: Transaction creation failed - Hiba: nem sikerült létrehozni a tranzakciót + + Send Coins + Érmék küldése - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból - például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. + + Send to multiple recipients at once + Küldés több címzettnek egyszerre + + + + Remove all transaction fields + + + + + Clear all + Mindent töröl + + + + Balance: + Egyenleg: + + + + 123.456 BTC + 123.456 BTC + + + + &Add recipient... + &Címzett hozzáadása ... + + + + The recipient address is not valid, please recheck. + A címzett címe érvénytelen, kérlek, ellenőrizd. + + + + Error: Transaction creation failed. + Hiba: nem sikerült létrehozni a tranzakciót. + + + + 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. @@ -1130,9 +1159,9 @@ p, li { white-space: pre-wrap; } Összeg: - - Pay &To: - Címzett: + + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adj meg egy Bitcoin-címet (pl.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L ) @@ -1166,159 +1195,159 @@ p, li { white-space: pre-wrap; } Paste address from clipboard Cím beillesztése a vágólapról - - - Alt+P - Alt+P - Remove this recipient Címzett eltávolítása - - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adj meg egy Bitcoin-címet (pl.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L ) + + Pay &To: + Címzett: + + + + Alt+P + Alt+P TransactionDesc - - Open for %1 blocks - Megnyitva %1 blokkra + + <b>Status:</b> + <b>Állapot:</b> - + Open until %1 Megnyitva %1-ig - + + %1 confirmations + %1 megerősítés + + + + Open for %1 blocks + Megnyitva %1 blokkra + + + %1/offline? %1/offline? - + %1/unconfirmed %1/megerősítetlen - - %1 confirmations - %1 megerősítés + + , broadcast through %1 node + , %1 csomóponton keresztül elküldve. - - <b>Status:</b> - <b>Állapot:</b> + + , broadcast through %1 nodes + , elküldve %1 csomóponton keresztül. - + + (yours, label: + (tiéd, címke: + + + , has not been successfully broadcast yet , még nem sikerült elküldeni. - - , broadcast through %1 node - , %1 csomóponton keresztül elküldve. + + (yours) + (tiéd) - - , broadcast through %1 nodes - , elküldve %1 csomóponton keresztül. + + unknown + ismeretlen - + <b>Date:</b> <b>Dátum:</b> - + <b>Source:</b> Generated<br> - <b>Forrás:</b> Generálva <br> + <b>Forrás:</b> Generálva<br> - - + + <b>From:</b> <b>Űrlap:</b> - - unknown - ismeretlen - - - - - + + + <b>To:</b> <b>Címzett:</b> - - (yours, label: - (tiéd, címke: - - - - (yours) - (tiéd) - - - - - - + + + + <b>Credit:</b> <b>Jóváírás</b> - + (%1 matures in %2 more blocks) (%1, %2 múlva készül el) - + (not accepted) (elutasítva) - - - + + + <b>Debit:</b> <b>Terhelés</b> - + <b>Transaction fee:</b> <b>Tranzakciós díj:</b> - + <b>Net amount:</b> <b>Nettó összeg:</b> - + Message: Üzenet: - + Comment: Megjegyzés: - + Transaction ID: - + - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. A frissen generált érméket csak 120 blokkal később tudod elkölteni. Ez a blokk nyomban szétküldésre került a hálózatba, amint legeneráltad, hogy hozzáadhassák a blokklánchoz. Ha nem kerül be a láncba, úgy az állapota "elutasítva"-ra módosul, és nem költheted el az érméket. Ez akkor következhet be időnként, ha egy másik csomópont mindössze néhány másodperc különbséggel generált le egy blokkot a tiédhez képest. @@ -1339,123 +1368,187 @@ p, li { white-space: pre-wrap; } TransactionTableModel - - Date - Dátum - - - + Type Típus - - Address - Cím - - - + Amount Összeg - + Open for %n block(s) - %n blokkra megnyitva%n blokkra megnyitva + + %n blokkra megnyitva + - + Open until %1 %1-ig megnyitva - + Offline (%1 confirmations) Offline (%1 megerősítés) - - Unconfirmed (%1 of %2 confirmations) - Megerősítetlen (%1 %2 megerősítésből) - - - + Confirmed (%1 confirmations) Megerősítve (%1 megerősítés) - - - Mined balance will be available in %n more blocks - %n blokk múlva lesz elérhető a bányászott egyenleg.%n blokk múlva lesz elérhető a bányászott egyenleg. + + + Date + Dátum + + + + Address + Cím + + + + Unconfirmed (%1 of %2 confirmations) + Megerősítetlen (%1 %2 megerősítésből) - + This block was not received by any other nodes and will probably not be accepted! Ezt a blokkot egyetlen másik csomópont sem kapta meg, így valószínűleg nem lesz elfogadva! - + Generated but not accepted Legenerálva, de még el nem fogadva. - + Received with Erre a címre - - Received from - - - - + Sent to Erre a címre - + Payment to yourself Magadnak kifizetve - + Mined Kibányászva - + (n/a) (nincs) - + Transaction status. Hover over this field to show number of confirmations. Tranzakció állapota. Húzd ide a kurzort, hogy lásd a megerősítések számát. - + Date and time that the transaction was received. Tranzakció fogadásának dátuma és időpontja. - + Type of transaction. Tranzakció típusa. - + Destination address of transaction. A tranzakció címzettjének címe. - + Amount removed from or added to balance. Az egyenleghez jóváírt vagy ráterhelt összeg. + + + Mined balance will be available in %n more blocks + + %n blokk múlva lesz elérhető a bányászott egyenleg. + + + + + Received from + Erről az + TransactionView + + + Edit label + Címke szerkesztése + + + + Confirmed + Megerősítve + + + + Date + Dátum + + + + Type + Típus + + + + Label + Címke + + + + Address + Cím + + + + Amount + Összeg + + + + ID + Azonosító + + + + Error exporting + Hiba lépett fel exportálás közben + + + + Range: + Tartomány: + + + + Export Transaction Data + Tranzakció adatainak exportálása + + + + Show details... + Részletek... + @@ -1488,9 +1581,9 @@ p, li { white-space: pre-wrap; } Ebben az évben - - Range... - Tartomány ... + + To yourself + Magadnak @@ -1502,21 +1595,11 @@ p, li { white-space: pre-wrap; } Sent to Erre a címre - - - To yourself - Magadnak - Mined Kibányászva - - - Other - Más - Enter address or label to search @@ -1532,342 +1615,382 @@ p, li { white-space: pre-wrap; } Copy address Cím másolása - - - Copy label - Címke másolása - Copy amount - + - - Edit label - Címke szerkesztése + + Could not write to file %1. + %1 fájlba való kiírás sikertelen. - - Show details... - Részletek... + + to + meddig - - Export Transaction Data - Tranzakció adatainak exportálása + + Range... + Tartomány ... + + + + Other + Más - + + Copy label + Címke másolása + + + Comma separated file (*.csv) Vesszővel elválasztott fájl (*.csv) + + + WalletModel - - Confirmed - Megerősítve + + Sending... + Küldés ... + + + bitcoin-core - - Date - Dátum + + Bitcoin version + Bitcoin verzió - - Type - Típus + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Az %s adatkönyvtár nem zárható. A Bitcoin valószínűleg fut már. - - Label - Címke + + Rescanning... + Újraszkennelés... - - Address - Cím + + 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. - - Amount - Összeg + + Error: CreateThread(StartNode) failed + Hiba: CreateThread(StartNode) sikertelen - - ID - Azonosító + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Figyelem: Ellenőrizd, hogy helyesen van-e beállítva a gépeden a dátum és az idő. A Bitcoin nem fog megfelelően működni, ha rosszul van beállítvaaz órád. - - Error exporting - Hiba lépett fel exportálás közben + + Error: Wallet locked, unable to create transaction + - - Could not write to file %1. - %1 fájlba való kiírás sikertelen. + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Ez a tranzakció túllépi a mérethatárt, de %1 tranzakciós díj ellenében így is elküldheted. Ezt a plusz összeget a tranzakcióidat feldolgozó csomópontok kapják, így magát a hálózatot támogatod vele. Hajlandó vagy megfizetni a díjat? - - Range: - Tartomány: + + Invalid amount + - - to - meddig + + To use the %s option + - - - WalletModel - - Sending... - Küldés ... - - - - bitcoin-core - - - Bitcoin version - Bitcoin verzió - - - - Usage: - Használat: + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + - - Send command to -server or bitcoind - Parancs küldése a -serverhez vagy a bitcoindhez - + + Error + - - List commands - Parancsok kilistázása - + + An error occurred while setting up the RPC port %i for listening: %s + - - Get help for a command - Segítség egy parancsról - + + 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: Opciók - + Specify configuration file (default: bitcoin.conf) Konfigurációs fájl (alapértelmezett: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) pid-fájl (alapértelmezett: bitcoind.pid) - + Generate coins Érmék generálása - + Don't generate coins Bitcoin-generálás leállítása - - Start minimized - Indítás lekicsinyítve - + + Show splash screen on startup (default: 1) + - + Specify data directory Adatkönyvtár - - Specify connection timeout (in milliseconds) - Csatlakozás időkerete (milliszekundumban) - + + Set database cache size in megabytes (default: 25) + - - Connect through socks4 proxy - Csatlakozás SOCKS4 proxyn keresztül - + + Set database disk log size in megabytes (default: 100) + - - Allow DNS lookups for addnode and connect - DNS-kikeresés engedélyezése az addnode-nál és a connect-nél + + Specify connection timeout (in milliseconds) + Csatlakozás időkerete (milliszekundumban) - - Listen for connections on <port> (default: 8333 or testnet: 18333) - - - - + Maintain at most <n> connections to peers (default: 125) - + - - Add a node to connect to - Elérendő csomópont megadása - + + Find peers using internet relay chat (default: 0) + - - Connect only to the specified node - Csatlakozás csak a megadott csomóponthoz - + + Accept connections from outside (default: 1) + - - Don't accept connections from outside - Külső csatlakozások elutasítása - + + Set language, for example "de_DE" (default: system locale) + - - Don't bootstrap list of peers using DNS - + + Find peers using DNS lookup (default: 1) + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - - Don't attempt to use UPnP to map the listening port - UPnP-használat letiltása a figyelő port feltérképezésénél - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Attempt to use UPnP to map the listening port - UPnP-használat engedélyezése a figyelő port feltérképezésénél - + + Output extra debugging information + - - Fee per kB to add to transactions you send - + + Prepend debug output with timestamp + - - Accept command line and JSON-RPC commands - Parancssoros és JSON-RPC parancsok elfogadása - + + Send trace/debug info to console instead of debug.log file + - - Run in the background as a daemon and accept commands - Háttérben futtatás daemonként és parancsok elfogadása - + + Send trace/debug info to debugger + - - Use the test network - Teszthálózat használata - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Output extra debugging information - + + Upgrade wallet to latest format + - - Prepend debug output with timestamp - + + 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 - + + Usage + Használat + + + + Wallet needed to be rewritten: restart Bitcoin to complete + + + + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + - + + Invalid -proxy address + Érvénytelen -proxy cím + + + Username for JSON-RPC connections Felhasználói név JSON-RPC csatlakozásokhoz - + Password for JSON-RPC connections Jelszó JSON-RPC csatlakozásokhoz - + Listen for JSON-RPC connections on <port> (default: 8332) JSON-RPC csatlakozásokhoz figyelendő <port> (alapértelmezett: 8332) - + Allow JSON-RPC connections from specified IP address JSON-RPC csatlakozások engedélyezése meghatározott IP-címről - + + Accept command line and JSON-RPC commands + Parancssoros és JSON-RPC parancsok elfogadá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) - + Set key pool size to <n> (default: 100) Kulcskarika mérete <n> (alapértelmezett: 100) - - Rescan the block chain for missing wallet transactions - Blokklánc újraszkennelése hiányzó tárca-tranzakciók után + + Use OpenSSL (https) for JSON-RPC connections + OpenSSL (https) használata JSON-RPC csatalkozásokhoz - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Elfogadható rejtjelkulcsok (alapértelmezett: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH ) + + + + + Allow DNS lookups for addnode and connect + DNS-kikeresés engedélyezése az addnode-nál és a connect-nél + + + + + Connect through socks4 proxy + Csatlakozás SOCKS4 proxyn keresztül + + + + + Connect only to the specified node + Csatlakozás csak a megadott csomóponthoz + + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1875,134 +1998,179 @@ SSL-opciók: (lásd a Bitcoin Wiki SSL-beállítási instrukcióit) - - Use OpenSSL (https) for JSON-RPC connections - OpenSSL (https) használata JSON-RPC csatalkozásokhoz - + + Usage: + Használat: - - Server certificate file (default: server.cert) - Szervertanúsítvány-fájl (alapértelmezett: server.cert) - + + Loading addresses... + Címek betöltése... - - Server private key (default: server.pem) - Szerver titkos kulcsa (alapértelmezett: server.pem) + + Loading block index... + Blokkindex betöltése... + + + + Loading wallet... + Tárca betöltése... + + + + Send command to -server or bitcoind + Parancs küldése a -serverhez vagy a bitcoindhez - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Elfogadható rejtjelkulcsok (alapértelmezett: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH ) + + List commands + Parancsok kilistázása - - This help message - Ez a súgó-üzenet + + Get help for a command + Segítség egy parancsról - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Az %s adatkönyvtár nem zárható. A Bitcoin valószínűleg fut már. + + Done loading + Betöltés befejezve. - - Loading addresses... - Címek betöltése... + + Invalid amount for -paytxfee=<amount> + Étvénytelen -paytxfee=<összeg> összeg + + + + Warning: Disk space is low + Figyelem: kevés a hely a lemezen + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + A %d port nem elérhető ezen a gépen. A Bitcoin valószínűleg fut már. + + + + Start minimized + Indítás lekicsinyítve + + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Csatlakozásokhoz figyelendő <port> (alapértelmezett: 8333 or testnet: 18333) - Error loading addr.dat - + 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 - - Error loading blkindex.dat - + + Use Universal Plug and Play to map the listening port (default: 1) + UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 1) - - Error loading wallet.dat: Wallet corrupted - + + Use Universal Plug and Play to map the listening port (default: 0) + UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 0) - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - + + Fee per KB to add to transactions you send + kB-onként felajánlandó díj az általad küldött tranzakciókhoz - - Wallet needed to be rewritten: restart Bitcoin 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 - + + Use the test network + Teszthálózat használata + - - Loading block index... - Blokkindex betöltése... + + Rescan the block chain for missing wallet transactions + Blokklánc újraszkennelése hiányzó tárca-tranzakciók után + - - Loading wallet... - Tárca betöltése... + + Server certificate file (default: server.cert) + Szervertanúsítvány-fájl (alapértelmezett: server.cert) + - - Rescanning... - Újraszkennelés... + + Server private key (default: server.pem) + Szerver titkos kulcsa (alapértelmezett: server.pem) + - - Done loading - Betöltés befejezve. + + This help message + Ez a súgó-üzenet + - - Invalid -proxy address - Érvénytelen -proxy cím + + Error loading addr.dat + Hiba az addr.dat betöltése közben - - Invalid amount for -paytxfee=<amount> - Étvénytelen -paytxfee=<összeg> összeg + + Error loading blkindex.dat + Hiba az blkindex.dat betöltése közben - - 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. + + Error loading wallet.dat: Wallet corrupted + Hiba a wallet.dat betöltése közben: meghibásodott tárca - - Error: CreateThread(StartNode) failed - Hiba: CreateThread(StartNode) sikertelen + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Hiba a wallet.dat betöltése közben: ehhez a tárcához újabb verziójú Bitcoin-kliens szükséges - - Warning: Disk space is low - Figyelem: kevés a hely a lemezen. + + Error loading wallet.dat + Hiba az wallet.dat betöltése közben - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - A %d port nem elérhető ezen a gépen. A Bitcoin valószínűleg fut már. + + Bitcoin + Bitcoin - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Figyelem: Ellenőrizd, hogy helyesen van-e beállítva a gépeden a dátum és az idő. A Bitcoin nem fog megfelelően működni, ha rosszul van beállítvaaz órád. + + Insufficient funds + Nincs elég bitcoinod. - - beta - béta + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból - például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. + + + + Error: Transaction creation failed + Hiba: nem sikerült létrehozni a tranzakciót + + + + Sending... + Küldés... - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts index 98dc47e5ed..903557aca2 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ Versione di <b>Bitcoin</b> - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -72,11 +74,6 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Show &QR Code Mostra il codice &QR - - - Sign a message to prove you own this address - Firma un messaggio per dimostrare di possedere questo indirizzo - &Sign Message @@ -93,63 +90,68 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso &Cancella - + + Comma separated file (*.csv) + Testo CSV (*.csv) + + + + Error exporting + Errore nell'esportazione + + + + Sign a message to prove you own this address + Firma un messaggio per dimostrare di possedere questo indirizzo + + + Copy address Copia l'indirizzo - + Copy label Copia l'etichetta - + Edit Modifica - + Delete Cancella - - Export Address Book Data - Esporta gli indirizzi della rubrica - - - - Comma separated file (*.csv) - Testo CSV (*.csv) - - - - Error exporting - Errore nell'esportazione - - - + Could not write to file %1. Impossibile scrivere sul file %1. + + + Export Address Book Data + Esporta gli indirizzi della rubrica + AddressTableModel - + + (no label) + (nessuna etichetta) + + + Label Etichetta - + Address Indirizzo - - - (no label) - (nessuna etichetta) - AskPassphraseDialog @@ -159,55 +161,50 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Dialogo - - - TextLabel - Etichetta - - - - Enter passphrase - Inserisci la passphrase - - - + New passphrase Nuova passphrase - - Repeat new passphrase - Ripeti la passphrase + + This operation needs your wallet passphrase to unlock the wallet. + Quest'operazione necessita della passphrase per sbloccare il portamonete. - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Inserisci la passphrase per il portamonete.<br/>Per piacere usare unapassphrase di <b>10 o più caratteri casuali</b>, o <b>otto o più parole</b>. + + Decrypt wallet + Decifra il portamonete - - Encrypt wallet - Cifra il portamonete + + + The supplied passphrases do not match. + Le passphrase inserite non corrispondono. - - This operation needs your wallet passphrase to unlock the wallet. - Quest'operazione necessita della passphrase per sbloccare il portamonete. + + TextLabel + Etichetta - - Unlock wallet - Sblocca il portamonete + + + + The passphrase entered for the wallet decryption was incorrect. + La passphrase inserita per la decifrazione del portamonete è errata. - - This operation needs your wallet passphrase to decrypt the wallet. - Quest'operazione necessita della passphrase per decifrare il portamonete, + + + + + Wallet encryption failed + Cifratura del portamonete fallita - - Decrypt wallet - Decifra il portamonete + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Inserisci la passphrase per il portamonete.<br/>Per piacere usare unapassphrase di <b>10 o più caratteri casuali</b>, o <b>otto o più parole</b>. @@ -231,6 +228,16 @@ Are you sure you wish to encrypt your wallet? ATTENZIONE: se si cifra il portamonete e si perde la frase d'ordine, <b>SI PERDERANNO TUTTI I PROPRI BITCOIN</b>! Si è sicuri di voler cifrare il portamonete? + + + Unlock wallet + Sblocca il portamonete + + + + Encrypt wallet + Cifra il portamonete + @@ -242,43 +249,21 @@ Si è sicuri di voler cifrare il portamonete? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin verrà ora chiuso per finire il processo di crittazione. Ricorda che criptare il tuo portamonete non può fornire una protezione totale contro furti causati da malware che dovessero infettare il tuo computer. - - - - Warning: The Caps Lock key is on. - Attenzione: tasto Blocco maiuscole attivo. - - - - - - - Wallet encryption failed - Cifratura del portamonete fallita - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Cifratura del portamonete fallita a causa di un errore interno. Il portamonete non è stato cifrato. - - - The supplied passphrases do not match. - Le passphrase inserite non corrispondono. + + This operation needs your wallet passphrase to decrypt the wallet. + Quest'operazione necessita della passphrase per decifrare il portamonete, Wallet unlock failed Sblocco del portamonete fallito - - - - - The passphrase entered for the wallet decryption was incorrect. - La passphrase inserita per la decifrazione del portamonete è errata. - Wallet decryption failed @@ -286,285 +271,333 @@ Si è sicuri di voler cifrare il portamonete? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Passphrase del portamonete modificata con successo. + + + + Warning: The Caps Lock key is on. + Attenzione: tasto Blocco maiuscole attivo. + + + + Enter passphrase + Inserisci la passphrase + + + + Repeat new passphrase + Ripeti la passphrase + BitcoinGUI - - Bitcoin Wallet - Portamonete di bitcoin + + &Receive coins + &Ricevi monete + + + + Show the list of addresses for receiving payments + Mostra la lista di indirizzi su cui ricevere pagamenti + + + + Bitcoin client + Bitcoin client + + + + Show or hide the Bitcoin window + Mostra o nascondi la finestra Bitcoin + + + + About &Qt + Informazioni su &Qt + + + + Export the data in the current tab to a file + Esporta i dati nella tabella corrente su un file + + + + Encrypt or decrypt wallet + Cifra o decifra il portamonete + + + + &Backup Wallet + Backup Portamonete - - + + 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 + + + + ~%n block(s) remaining + + ~%n blocco rimanente + ~%n blocchi rimanenti + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Scaricati %1 di %2 blocchi dello storico delle transazioni ( il %3% ) + + + Synchronizing with network... Sto sincronizzando con la rete... - - Block chain synchronization in progress - sincronizzazione della catena di blocchi in corso + + Backup Wallet + Backup Portamonete - - &Overview - &Sintesi + + Wallet Data (*.dat) + Dati Portamonete (*.dat) - - Show general overview of wallet - Mostra lo stato generale del portamonete + + Backup Failed + Backup fallito - - &Transactions - &Transazioni + + There was an error trying to save the wallet data to the new location. + C'è stato un errore tentanto di salvare i dati del portamonete in un'altra locazione - - Browse transaction history - Cerca nelle transazioni + + Bitcoin Wallet + Portamonete di bitcoin - - &Address Book - &Rubrica + + &Overview + &Sintesi - - Edit the list of stored addresses and labels - Modifica la lista degli indirizzi salvati e delle etichette + + &Transactions + &Transazioni - - &Receive coins - &Ricevi monete + + &Address Book + &Rubrica - - Show the list of addresses for receiving payments - Mostra la lista di indirizzi su cui ricevere pagamenti + + Edit the list of stored addresses and labels + Modifica la lista degli indirizzi salvati e delle etichette - + &Send coins &Invia monete - + Send coins to a bitcoin address Invia monete ad un indirizzo bitcoin - + Sign &message Firma il &messaggio - + Prove you control an address Dimostra di controllare un indirizzo - + E&xit &Esci - + Quit application Chiudi applicazione - - &About %1 - &Informazioni su %1 - - - + Show information about Bitcoin Mostra informazioni su Bitcoin - - About &Qt - Informazioni su &Qt - - - - Show information about Qt - Mostra informazioni su Qt - - - + &Options... &Opzioni... - + Modify configuration options for bitcoin Modifica configurazione opzioni per bitcoin - - Open &Bitcoin - Apri &Bitcoin + + Show general overview of wallet + Mostra lo stato generale del portamonete - - Show the Bitcoin window - Mostra la finestra Bitcoin + + Browse transaction history + Cerca nelle transazioni + + + + Show information about Qt + Mostra informazioni su Qt - + &Export... &Esporta... - - Export the data in the current tab to a file - + + &File + &File - - &Encrypt Wallet - &Cifra il portamonete + + &Settings + &Impostazioni - - Encrypt or decrypt wallet - Cifra o decifra il portamonete - - - - &Backup Wallet - - - - - Backup wallet to another location - - - - - &Change Passphrase - &Cambia la passphrase - - - - Change the passphrase used for wallet encryption - Cambia la passphrase per la cifratura del portamonete - - - - &File - &File - - - - &Settings - &Impostazioni - - - + &Help &Aiuto - + + &About %1 + &Informazioni su %1 + + + Tabs toolbar Barra degli strumenti "Tabs" - + Actions toolbar Barra degli strumenti "Azioni" - + [testnet] [testnet] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network - %n connessione attiva alla rete Bitcoin%n connessioni attive alla rete Bitcoin + + %n connessione attiva alla rete Bitcoin + %n connessioni attive alla rete Bitcoin + - - Downloaded %1 of %2 blocks of transaction history. - Scaricati %1 dei %2 blocchi dello storico transazioni. + + &Encrypt Wallet + &Cifra il portamonete - + Downloaded %1 blocks of transaction history. Scaricati %1 blocchi dello storico transazioni. + + + &Change Passphrase + &Cambia la passphrase + - + %n second(s) ago - %n secondo fa%n secondi fa + + %n secondo fa + %n secondi fa + - + %n minute(s) ago - %n minuto fa%n minuti fa + + %n minuto fa + %n minuti fa + - + %n hour(s) ago - %n ora fa%n ore fa + + %n ora fa + %n ore fa + - + %n day(s) ago - %n giorno fa%n giorni fa + + %n giorno fa + %n giorni fa + - + Up to date Aggiornato - + Catching up... In aggiornamento... - + Last received block was generated %1. L'ultimo blocco ricevuto è stato generato %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? - Questa transazione è superiore al limite di dimensione. È comunque possibile inviarla con una commissione di %1, che va ai nodi che processano la tua transazione e contribuisce a sostenere la rete. Vuoi pagare la commissione? + + bitcoin-qt + bitcoin-qt - - Sending... - Invio... + + 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? + Questa transazione è superiore al limite di dimensione. È comunque possibile inviarla con una commissione di %1, che va ai nodi che processano la tua transazione e contribuisce a sostenere la rete. Vuoi pagare la commissione? - + Sent transaction Transazione inviata - + Incoming transaction Transazione ricevuta - + Date: %1 Amount: %2 Type: %3 @@ -578,52 +611,52 @@ 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> - - Backup Wallet - - - - - Wallet Data (*.dat) - + + Sending... + Invio... - - Backup Failed - + + Show/Hide &Bitcoin + Mostra/Nascondi &Bitcoin - - There was an error trying to save the wallet data to the new location. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: &Unità di misura degli importi in: - + Choose the default subdivision unit to show in the interface, and when sending coins Scegli l'unità di suddivisione di default per l'interfaccia e per l'invio di monete - - Display addresses in transaction list - Mostra gli indirizzi nella lista delle transazioni + + &Display addresses in transaction list + &Mostra gli indirizzi nella lista delle transazioni + + + + Whether to show Bitcoin addresses in the transaction list + @@ -663,26 +696,11 @@ Indirizzo: %4 New sending address Nuovo indirizzo d'invio - - - Edit receiving address - Modifica indirizzo di ricezione - - - - Edit sending address - Modifica indirizzo d'invio - The entered address "%1" is already in the address book. L'indirizzo inserito "%1" è già in rubrica. - - - The entered address "%1" is not a valid bitcoin address. - L'indirizzo inserito "%1" non è un indirizzo bitcoin valido. - Could not unlock wallet. @@ -693,97 +711,144 @@ Indirizzo: %4 New key generation failed. Generazione della nuova chiave non riuscita. + + + Edit receiving address + Modifica indirizzo di ricezione + + + + Edit sending address + Modifica indirizzo d'invio + + + + The entered address "%1" is not a valid bitcoin address. + L'indirizzo inserito "%1" non è un indirizzo bitcoin valido. + MainOptionsPage - + &Start Bitcoin on window system startup &Fai partire Bitcoin all'avvio del sistema - + Automatically start Bitcoin after the computer is turned on Avvia automaticamente Bitcoin all'accensione del computer - + &Minimize to the tray instead of the taskbar &Minimizza sul tray invece che sulla barra delle applicazioni - + Show only a tray icon after minimizing the window Mostra solo un'icona nel tray quando si minimizza la finestra - + Map port using &UPnP Mappa le porte tramite l'&UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Apri automaticamente la porta del client Bitcoin sul router. Questo funziona solo se il router supporta UPnP ed è abilitato. - + + Detach databases at shutdown + + + + + 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. + + + + M&inimize on close M&inimizza alla chiusura - + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Riduci ad icona, invece di uscire dall'applicazione quando la finestra viene chiusa. Quando questa opzione è attivata, l'applicazione verrà chiusa solo dopo aver selezionato Esci nel menu. - + &Connect through SOCKS4 proxy: &Collegati tramite SOCKS4 proxy: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Connettiti alla rete Bitcon attraverso un proxy SOCKS4 (ad esempio quando ci si collega via Tor) - - - - Proxy &IP: - &IP del proxy: - - - + IP address of the proxy (e.g. 127.0.0.1) Indirizzo IP del proxy (ad esempio 127.0.0.1) - - &Port: - &Porta: - - - + Port of the proxy (e.g. 1234) Porta del proxy (es. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. - + Pay transaction &fee Paga la &commissione - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. + + Proxy &IP: + &IP del proxy: + + + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connettiti alla rete Bitcon attraverso un proxy SOCKS4 (ad esempio quando ci si collega via Tor) + + + + &Port: + &Porta: MessagePage + + + Alt+P + Alt+P + + + + + + Error signing + Errore nel firmare + + + + %1 is not a valid address. + %1 non è un indirizzo valido. + + + + Private key for %1 is not available. + La chiave privata per %1 non è disponibile. + + + + Sign failed + Firma non riuscita + Message @@ -792,12 +857,12 @@ Indirizzo: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + Puoi firmare messeggi con i tuoi indirizzi per dimostrare che sono tuoi. Fai attenzione a non firmare niente di vago, visto che gli attacchi di phishing potrebbero cercare di spingerti a mettere la tua firma su di loro. Firma solo dichiarazioni completamente dettagliate con cui sei d'accordo. - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - L'indirizzo del beneficiario cui inviare il pagamento (ad esempio 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Inserisci un indirizzo Bitcoin (ad esempio 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -814,11 +879,6 @@ Indirizzo: %4 Paste address from clipboard Incollare l'indirizzo dagli appunti - - - Alt+P - Alt+P - Enter the message you want to sign here @@ -841,57 +901,40 @@ Indirizzo: %4 - Copy the currently selected address to the system clipboard - Copia l'indirizzo attualmente selezionato nella clipboard + Copy the current signature to the system clipboard + &Copy to Clipboard &Copia nella clipboard - - - - - Error signing - Errore nel firmare - - - - %1 is not a valid address. - %1 non è un indirizzo valido. - - - - Private key for %1 is not available. - La chiave privata per %1 non è disponibile. - - - - Sign failed - Firma non riuscita - OptionsDialog - + Main Principale - + Display Mostra - + Options Opzioni OverviewPage + + + Total number of transactions in wallet + Numero delle transazioni effettuate + Form @@ -902,11 +945,6 @@ Indirizzo: %4 Balance: Saldo - - - 123.456 BTC - 123,456 BTC - Number of transactions: @@ -923,25 +961,12 @@ Indirizzo: %4 Non confermato: - - 0 BTC - 0 BTC + + Wallet + Portamonete - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;">⏎ -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - - - + <b>Recent transactions</b> <b>Transazioni recenti</b> @@ -955,77 +980,82 @@ p, li { white-space: pre-wrap; }⏎ Total of transactions that have yet to be confirmed, and do not yet count toward the current balance Totale delle transazioni in corso di conferma, che non sono ancora incluse nel saldo attuale - - - Total number of transactions in wallet - Numero delle transazioni effettuate - QRCodeDialog - - Dialog - Dialogo + + Message: + Messaggio: - - QR Code - Codice QR + + Error encoding URI into QR Code. + - - Request Payment - Richiedi pagamento + + Resulting URI too long, try to reduce the text for label / message. + L'URI risulta troppo lungo, prova a ridurre il testo nell'etichetta / messaggio. - - Amount: - Importo: + + PNG Images (*.png) + Immagini PNG (*.png) - - BTC - BTC + + Save Image... + + + + + Request Payment + Richiedi pagamento - + Label: Etichetta: - - Message: - Messaggio: + + Dialog + Dialogo - - &Save As... - &Salva come... + + QR Code + Codice QR - - Save Image... - + + Amount: + Importo: - - PNG Images (*.png) - + + BTC + BTC + + + + &Save As... + &Salva come... SendCoinsDialog - - - - - - - - Send Coins + + + + + + + + Send Coins Spedisci Bitcoin @@ -1033,31 +1063,16 @@ p, li { white-space: pre-wrap; }⏎ Send to multiple recipients at once Spedisci a diversi beneficiari in una volta sola - - - &Add recipient... - &Aggiungi beneficiario... - Remove all transaction fields Rimuovi tutti i campi della transazione - - - Clear all - Cancella tutto - Balance: Saldo: - - - 123.456 BTC - 123,456 BTC - Confirm the send action @@ -1069,67 +1084,97 @@ p, li { white-space: pre-wrap; }⏎ &Spedisci - + <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) - + Confirm send coins Conferma la spedizione di bitcoin - + Are you sure you want to send %1? Si è sicuri di voler spedire %1? - + and e - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance - L'importo è superiore al saldo attuale + + The amount exceeds your balance. + L'importo è superiore al saldo attuale. - - Total exceeds your balance when the %1 transaction fee is included - Il totale è superiore al saldo attuale includendo la commissione %1 + + 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 in one send operation + + 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. - - Error: Transaction creation failed - Errore: creazione della transazione fallita + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Errore: la transazione è stata rifiutata. Ciò accade se alcuni bitcoin nel portamonete sono stati già spesi, ad esempio se è stata usata una copia del file wallet.dat e i bitcoin sono stati spesi dalla copia ma non segnati come spesi qui. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Errore: la transazione è stata rifiutata. Ciò accade se alcuni bitcoin nel portamonete sono stati già spesi, ad esempio se è stata usata una copia del file wallet.dat e i bitcoin sono stati spesi dalla copia ma non segnati come spesi qui. + + &Add recipient... + &Aggiungi beneficiario... + + + + Clear all + Cancella tutto + + + + 123.456 BTC + 123,456 BTC + + + + Error: Transaction creation failed. + Hiba: nem sikerült létrehozni a tranzakciót. SendCoinsEntry - - Form - Modulo + + Pay &To: + Paga &a: + + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + L'indirizzo del beneficiario cui inviare il pagamento (ad esempio 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Choose address from address book + Scegli l'indirizzo dalla rubrica + + + + Remove this recipient + Rimuovere questo beneficiario @@ -1137,9 +1182,9 @@ p, li { white-space: pre-wrap; }⏎ &Importo: - - Pay &To: - Paga &a: + + Form + Modulo @@ -1150,37 +1195,22 @@ p, li { white-space: pre-wrap; }⏎ &Label: - &Etichetta - - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - L'indirizzo del beneficiario cui inviare il pagamento (ad esempio 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - - Choose address from address book - Scegli l'indirizzo dalla rubrica + &Etichetta: Alt+A Alt+A - - - Paste address from clipboard - Incollare l'indirizzo dagli appunti - Alt+P Alt+P - - Remove this recipient - Rimuovere questo beneficiario + + Paste address from clipboard + Incollare l'indirizzo dagli appunti @@ -1191,277 +1221,308 @@ p, li { white-space: pre-wrap; }⏎ TransactionDesc - - Open for %1 blocks - Aperto per %1 blocchi + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Bisogna attendere 120 blocchi prima di spendere I bitcoin generati. Quando è stato generato questo blocco, è stato trasmesso alla rete per aggiungerlo alla catena di blocchi. Se non riesce a entrare nella catena, verrà modificato in "non accettato" e non sarà spendibile. Questo può accadere a volte, se un altro nodo genera un blocco entro pochi secondi del tuo. - + Open until %1 Aperto fino a %1 - - %1/offline? - %1/offline? + + Open for %1 blocks + Megnyitva %1 blokkra - %1/unconfirmed - %1/non confermato + %1/offline? + %1/offline? - %1 confirmations - %1 conferme + %1/unconfirmed + %1/non confermato - + <b>Status:</b> <b>Stato:</b> - - , has not been successfully broadcast yet - , non è stato ancora trasmesso con successo - - - + , broadcast through %1 node , trasmesso attraverso %1 nodo - + , broadcast through %1 nodes , trasmesso attraverso %1 nodi - + <b>Date:</b> <b>Data:</b> - + <b>Source:</b> Generated<br> <b>Fonte:</b> Generato<br> - - + + <b>From:</b> <b>Da:</b> - - unknown - sconosciuto - - - - - + + + <b>To:</b> <b>Per:</b> - + (yours, label: (vostro, etichetta: - + (yours) - (vostro) + (tiéd) - - - + + + <b>Debit:</b> + <b>Debito:</b> + + + + Transaction ID: + ID della transazione: + + + + %1 confirmations + %1 conferme + + + + , has not been successfully broadcast yet + , non è stato ancora trasmesso con successo + + + + + + <b>Credit:</b> <b>Credito:</b> - + (%1 matures in %2 more blocks) (%1 matura in altri %2 blocchi) - - (not accepted) - (non accettate) + + unknown + sconosciuto - - - - <b>Debit:</b> - <b>Debito:</b> + + (not accepted) + (non accettate) - + <b>Transaction fee:</b> - <b>Commissione:</b> + <b>Tranzakciós díj:</b> - + <b>Net amount:</b> <b>Importo netto:</b> - + Message: Messaggio: - + Comment: Commento: - - - Transaction ID: - ID della transazione: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Bisogna attendere 120 blocchi prima di spendere I bitcoin generati. Quando è stato generato questo blocco, è stato trasmesso alla rete per aggiungerlo alla catena di blocchi. Se non riesce a entrare nella catena, verrà modificato in "non accettato" e non sarà spendibile. Questo può accadere a volte, se un altro nodo genera un blocco entro pochi secondi del tuo. - TransactionDescDialog - - - Transaction details - Dettagli sulla transazione - This pane shows a detailed description of the transaction Questo pannello mostra una descrizione dettagliata della transazione + + + Transaction details + Dettagli sulla transazione + TransactionTableModel - + Date Data - + Type Tipo - + Address Indirizzo - + Amount Importo - + Open for %n block(s) - Aperto per %n bloccoAperto per %n blocchi + + Aperto per %n blocco + Aperto per %n blocchi + - + Open until %1 Aperto fino a %1 - + Offline (%1 confirmations) Offline (%1 conferme) - + Unconfirmed (%1 of %2 confirmations) Non confermati (%1 su %2 conferme) - + Confirmed (%1 confirmations) Confermato (%1 conferme) - - - Mined balance will be available in %n more blocks - Il saldo generato sarà disponibile tra %n altro bloccoIl saldo generato sarà disponibile tra %n altri blocchi - - + This block was not received by any other nodes and will probably not be accepted! Questo blocco non è stato ricevuto da altri nodi e probabilmente non sarà accettato! - + 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 - + 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. + + + Mined balance will be available in %n more blocks + + Il saldo generato sarà disponibile tra %n altro blocco + Il saldo generato sarà disponibile tra %n altri blocchi + + TransactionView + + + Date + Data + + + + ID + ID + + + + Show details... + Mostra i dettagli... + + + + Label + Etichetta + + + + Error exporting + Errore nell'esportazione + @@ -1493,6 +1554,26 @@ p, li { white-space: pre-wrap; }⏎ This year Quest'anno + + + Type + Tipo + + + + Amount + Importo + + + + Could not write to file %1. + Impossibile scrivere sul file %1. + + + + Range: + Intervallo: + Range... @@ -1554,326 +1635,359 @@ p, li { white-space: pre-wrap; }⏎ Modifica l'etichetta - - Show details... - Mostra i dettagli... - - - + Export Transaction Data Esporta i dati della transazione - + Comma separated file (*.csv) Testo CSV (*.csv) - + Confirmed Confermato - - Date - Data + + to + a - - Type - Tipo - + + Address + Indirizzo + + + + WalletModel - - Label - Etichetta + + Sending... + Invio... + + + bitcoin-core - - Address - Indirizzo + + Usage: + Utilizzo: - - Amount - Importo + + Find peers using internet relay chat (default: 0) + - - ID - ID + + Accept connections from outside (default: 1) + - - Error exporting - Errore nell'esportazione + + Set language, for example "de_DE" (default: system locale) + - - Could not write to file %1. - Impossibile scrivere sul file %1. + + Find peers using DNS lookup (default: 1) + - - Range: - Intervallo: + + Detach block and address databases. Increases shutdown time (default: 0) + - - to - a + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - - WalletModel - - Sending... - Invio... + + How thorough the block verification is (0-6, default: 1) + - - - bitcoin-core - - Bitcoin version - Versione di Bitcoin + + Usage + Utilizzo - - Usage: - Utilizzo: + + Loading addresses... + Caricamento indirizzi... - - Send command to -server or bitcoind - Manda il comando a -server o bitcoind - + + Loading wallet... + Caricamento portamonete... - - List commands - Lista comandi - + + Cannot downgrade wallet + - - Get help for a command - Aiuto su un comando - + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Rescanning... + Ripetere la scansione... + + + + Invalid -proxy address + Indirizzo -proxy non valido + + + + 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 Bitcoin will not work properly. + Attenzione: si prega di controllare che la data del computer e l'ora siano corrette. Se il vostro orologio è sbagliato Bitcoin non funziona correttamente. + Error: Wallet locked, 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 + Questa transazione è superiore al limite di dimensione. È comunque possibile inviarla con una commissione di %1, che va ai nodi che processano la tua transazione e contribuisce a sostenere la rete. Vuoi pagare la commissione? + + + + Invalid amount + Importo non valido + + + + 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=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + + + + + An error occurred while setting up the RPC port %i for listening: %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. + + + + Options: Opzioni: - + Specify configuration file (default: bitcoin.conf) Specifica il file di configurazione (di default: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Specifica il file pid (default: bitcoind.pid) - + Generate coins Genera Bitcoin - + Don't generate coins Non generare Bitcoin - - Start minimized - Parti in icona - - - - + Specify data directory Specifica la cartella dati - - Specify connection timeout (in milliseconds) - Specifica il timeout di connessione (in millisecondi) - + + Set database cache size in megabytes (default: 25) + Imposta la dimensione cache del database in megabyte (default: 25) - - Connect through socks4 proxy - Connessione tramite socks4 proxy - + + Set database disk log size in megabytes (default: 100) + - - Allow DNS lookups for addnode and connect - Consenti ricerche DNS per aggiungere nodi e collegare + + Specify connection timeout (in milliseconds) + Specifica il timeout di connessione (in millisecondi) - + Listen for connections on <port> (default: 8333 or testnet: 18333) Ascolta le connessioni JSON-RPC su <porta> (default: 8333 o testnet: 18333) - + Maintain at most <n> connections to peers (default: 125) Mantieni al massimo <n> connessioni ai peer (default: 125) - - Add a node to connect to - Aggiungi un nodo e connetti a - + + Fee per KB to add to transactions you send + Commissione per KB da aggiungere alle transazioni in uscita - - Connect only to the specified node - Connetti solo al nodo specificato - + + Threshold for disconnecting misbehaving peers (default: 100) + Soglia di disconnessione dei peer di cattiva qualità (default: 100) - - Don't accept connections from outside - Non accettare connessioni dall'esterno + + Server private key (default: server.pem) + Chiave privata del server (default: server.pem) - - Don't bootstrap list of peers using DNS - Non avviare la lista dei peer usando il DNS - - - - Threshold for disconnecting misbehaving peers (default: 100) - Soglia di disconnessione dei peer di cattiva qualità (default: 100) + + Error loading wallet.dat: Wallet corrupted + Errore caricamento wallet.dat: Wallet corrotto - - 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 (default: 86400) + + Set key pool size to <n> (default: 100) + Impostare la quantità di chiavi di riserva a <n> (default: 100) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Buffer di ricezione massimo per connessione, <n>*1000 byte (default: 10000) + + Server certificate file (default: server.cert) + File certificato del server (default: server.cert) + - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Buffer di invio massimo per connessione, <n>*1000 byte (default: 10000) + + Error loading blkindex.dat + Errore caricamento blkindex.dat - - Don't attempt to use UPnP to map the listening port - Non usare l'UPnP per mappare la porta - + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Errore caricamento wallet.dat: il wallet richiede una versione nuova di Bitcoin - - Attempt to use UPnP to map the listening port - Prova ad usare l'UPnp per mappare la porta + + This help message + Questo messaggio di aiuto - - Fee per kB to add to transactions you send - Commissione per kB da aggiungere alle transazioni in uscita + + Error: Transaction creation failed + Errore: creazione della transazione fallita - - Accept command line and JSON-RPC commands - Accetta da linea di comando e da comandi JSON-RPC + + Use OpenSSL (https) for JSON-RPC connections + Utilizzare OpenSSL (https) per le connessioni JSON-RPC - - Run in the background as a daemon and accept commands - Esegui in background come demone e accetta i comandi - + + Error loading wallet.dat + Errore caricamento wallet.dat - + Use the test network Utilizza la rete di prova - - Output extra debugging information - Produci informazioni extra utili al debug - - - + Prepend debug output with timestamp Anteponi all'output di debug una marca temporale - - 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 - Invia le informazioni di trace/debug al debugger + + Connect only to the specified node + Connetti solo al nodo specificato + - - Username for JSON-RPC connections - Nome utente per connessioni JSON-RPC + + Allow DNS lookups for addnode and connect + Consenti ricerche DNS per aggiungere nodi e collegare - - Password for JSON-RPC connections - Password per connessioni JSON-RPC + + Allow JSON-RPC connections from specified IP address + Consenti connessioni JSON-RPC dall'indirizzo IP specificato - - Listen for JSON-RPC connections on <port> (default: 8332) - Attendi le connessioni JSON-RPC su <porta> (default: 8332) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Buffer di ricezione massimo per connessione, <n>*1000 byte (default: 10000) - - Allow JSON-RPC connections from specified IP address - Consenti connessioni JSON-RPC dall'indirizzo IP specificato - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Buffer di invio massimo per connessione, <n>*1000 byte (default: 10000) - - Send commands to node running on <ip> (default: 127.0.0.1) - Inviare comandi al nodo in esecuzione su <ip> (default: 127.0.0.1) + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Cifrari accettabili (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Set key pool size to <n> (default: 100) - Impostare la quantità di chiavi di riserva a <n> (default: 100) - + + Wallet needed to be rewritten: restart Bitcoin to complete + Il portamonete deve essere riscritto: riavviare Bitcoin per completare - - Rescan the block chain for missing wallet transactions - Ripeti analisi della catena dei blocchi per cercare le transazioni mancanti dal portamonete - + + Output extra debugging information + Produci informazioni extra utili al debug - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1881,134 +1995,191 @@ Opzioni SSL: (vedi il wiki di Bitcoin per le istruzioni di configurazione SSL) - - Use OpenSSL (https) for JSON-RPC connections - Utilizzare OpenSSL (https) per le connessioni JSON-RPC - + + Error loading addr.dat + Errore caricamento addr.dat - - Server certificate file (default: server.cert) - File certificato del server (default: server.cert) + + Bitcoin version + Versione di Bitcoin + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Non è possibile ottenere i dati sulla directory %s. Probabilmente Bitcoin è già in esecuzione. + + + + Loading block index... + Caricamento dell'indice del blocco... + + + + Done loading + Caricamento completato + + + + Invalid amount for -paytxfee=<amount> + Importo non valido per -paytxfee=<amount> + + + + Get help for a command + Aiuto su un comando - - Server private key (default: server.pem) - Chiave privata del server (default: server.pem) + + Error: CreateThread(StartNode) failed + Errore: CreateThread(StartNode) non riuscito + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Impossibile collegarsi alla porta %d su questo computer. Probabilmente Bitcoin è già in esecuzione. + + + + Send command to -server or bitcoind + Manda il comando a -server o bitcoind - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Cifrari accettabili (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Warning: Disk space is low + Attenzione: lo spazio su disco è scarso + + + + List commands + Lista comandi - - This help message - Questo messaggio di aiuto + + Start minimized + Parti in icona - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Non è possibile ottenere i dati sulla directory %s. Probabilmente Bitcoin è già in esecuzione. + + Show splash screen on startup (default: 1) + Mostra finestra di presentazione all'avvio (default: 1) - - Loading addresses... - Caricamento indirizzi... + + Connect through socks4 proxy + Connessione tramite socks4 proxy + - Error loading addr.dat - Errore caricamento addr.dat + 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 - - Error loading blkindex.dat - Errore caricamento blkindex.dat + + 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 (default: 86400) - - Error loading wallet.dat: Wallet corrupted - Errore caricamento wallet.dat: Wallet corrotto + + Use Universal Plug and Play to map the listening port (default: 1) + UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 1) - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Errore caricamento wallet.dat: il wallet richiede una versione nuova di Bitcoin + + Use Universal Plug and Play to map the listening port (default: 0) + UPnP-használat engedélyezése a figyelő port feltérképezésénél (default: 0) - - Wallet needed to be rewritten: restart Bitcoin to complete - Il portamonete deve essere riscritto: riavviare Bitcoin per completare + + Accept command line and JSON-RPC commands + Accetta da linea di comando e da comandi JSON-RPC + - - Error loading wallet.dat - Errore caricamento wallet.dat + + Run in the background as a daemon and accept commands + Esegui in background come demone e accetta i comandi + - - Loading block index... - Caricamento dell'indice del blocco... + + 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 - - Loading wallet... - Caricamento portamonete... + + Send trace/debug info to debugger + Invia le informazioni di trace/debug al debugger - - Rescanning... - Ripetere la scansione... + + Username for JSON-RPC connections + Nome utente per connessioni JSON-RPC + - - Done loading - Caricamento completato + + Password for JSON-RPC connections + Password per connessioni JSON-RPC + - - Invalid -proxy address - Indirizzo -proxy non valido + + Listen for JSON-RPC connections on <port> (default: 8332) + Attendi le connessioni JSON-RPC su <porta> (default: 8332) + - - Invalid amount for -paytxfee=<amount> - Importo non valido per -paytxfee=<amount> + + Send commands to node running on <ip> (default: 127.0.0.1) + Inviare comandi al nodo in esecuzione su <ip> (default: 127.0.0.1) + - - 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. + + Upgrade wallet to latest format + Aggiorna il wallet all'ultimo formato - - Error: CreateThread(StartNode) failed - Errore: CreateThread(StartNode) non riuscito + + Rescan the block chain for missing wallet transactions + Ripeti analisi della catena dei blocchi per cercare le transazioni mancanti dal portamonete + - - Warning: Disk space is low - Attenzione: lo spazio su disco è scarso + + How many blocks to check at startup (default: 2500, 0 = all) + Quanti blocchi da controllare all'avvio (default: 2500, 0 = tutti) - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Impossibile collegarsi alla porta %d su questo computer. Probabilmente Bitcoin è già in esecuzione. + + Bitcoin + Bitcoin - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Attenzione: si prega di controllare che la data del computer e l'ora siano corrette. Se il vostro orologio è sbagliato Bitcoin non funziona correttamente. + + Insufficient funds + Fondi insufficienti - - beta - beta + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Errore: la transazione è stata rifiutata. Ciò accade se alcuni bitcoin nel portamonete sono stati già spesi, ad esempio se è stata usata una copia del file wallet.dat e i bitcoin sono stati spesi dalla copia ma non segnati come spesi qui. + + + + Sending... + Invio... + + + + Error + Errore - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_lt.ts b/src/qt/locale/bitcoin_lt.ts index d733f1a725..5d97592411 100644 --- a/src/qt/locale/bitcoin_lt.ts +++ b/src/qt/locale/bitcoin_lt.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> versija - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -94,42 +96,42 @@ Platinama pagal licenziją MIT/X11, papildomą informaciją rasite faile license &D Pašalinti - + Copy address Copijuoti adresą - + Copy label Kopijuoti žymę - + Edit Redaguoti - + Delete Pašalinti - + Export Address Book Data Eksportuoti adresų knygelės duomenis - + Comma separated file (*.csv) Kableliais išskirtas failas (*.csv) - + Error exporting Eksportavimo klaida - + Could not write to file %1. Nepavyko įrašyti į failą %1. @@ -137,17 +139,17 @@ Platinama pagal licenziją MIT/X11, papildomą informaciją rasite faile license AddressTableModel - + Label Žymė - + Address Adresas - + (no label) (nėra žymės) @@ -160,23 +162,22 @@ Platinama pagal licenziją MIT/X11, papildomą informaciją rasite faile license Dialogas - - + TextLabel Teksto žymė - + Enter passphrase Įvesti slaptažodį - + New passphrase Naujas slaptažodis - + Repeat new passphrase Pakartoti naują slaptažodį @@ -243,6 +244,11 @@ Ar jūs tikrai norite užšifruoti savo piniginę? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin dabar užsidarys šifravimo proceso pabaigai. Atminkite, kad piniginės šifravimas negali pilnai apsaugoti bitcoinų vagysčių kai tinkle esančios kenkėjiškos programos patenka į jūsų kompiuterį. + + + Wallet passphrase was successfully changed. + Sėkmingai pakeistas piniginės slaptažodis. + @@ -285,344 +291,377 @@ Ar jūs tikrai norite užšifruoti savo piniginę? Wallet decryption failed Nepavyko iššifruoti piniginę - - - Wallet passphrase was succesfully changed. - Sėkmingai pakeistas piniginės slaptažodis - BitcoinGUI - + Bitcoin Wallet Bitkoinų piniginė - - - Synchronizing with network... - Sinchronizavimas su tinklu ... + + Show/Hide &Bitcoin + + + + + Show or hide the Bitcoin window + Rodyti Bitcoin langą - - Block chain synchronization in progress - Vyksta blokų grandinės sinchronizavimas + + Synchronizing with network... + Sinchronizavimas su tinklu ... - + &Overview &O Apžvalga - + Show general overview of wallet Rodyti piniginės bendrą apžvalgą - + &Transactions &T Sandoriai - + Browse transaction history Apžvelgti sandorių istoriją - + &Address Book &Adresų knygelė - + Edit the list of stored addresses and labels Redaguoti išsaugotus adresus bei žymes - + &Receive coins &R Gautos monetos - + Show the list of addresses for receiving payments Parodyti adresų sąraša mokėjimams gauti - + &Send coins &Siųsti monetas - + Send coins to a bitcoin address Siųsti monetas bitkoinų adresu - + Sign &message Registruoti praneši&mą - + Prove you control an address Įrodyti, kad jūs valdyti adresą - + E&xit &x išėjimas - + Quit application Išjungti programą - + &About %1 &Apie %1 - + Show information about Bitcoin Rodyti informaciją apie Bitkoiną - + About &Qt Apie &Qt - + Show information about Qt Rodyti informaciją apie Qt - + &Options... &Opcijos... - + Modify configuration options for bitcoin Keisti bitcoin konfigūracijos galimybes - - Open &Bitcoin - Atidaryti &Bitcoin + + Backup Wallet + Backup piniginę - - Show the Bitcoin window - Rodyti Bitcoin langą + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to the new location. + - + &Export... &Eksportas... - + Export the data in the current tab to a file - + - + &Encrypt Wallet &E Užšifruoti piniginę - + Encrypt or decrypt wallet Užšifruoti ar iššifruoti piniginę - + &Backup Wallet - + &Backup piniginę - + Backup wallet to another location - + - + &Change Passphrase &C Pakeisti slaptažodį - + Change the passphrase used for wallet encryption Pakeisti slaptažodį naudojamą piniginės užšifravimui - + &File &Failas - + &Settings Nu&Statymai - + &Help &H Pagelba - + Tabs toolbar Tabs įrankių juosta - + Actions toolbar Veiksmų įrankių juosta - + [testnet] [testavimotinklas] - + + Bitcoin client + + + + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n Bitcoin tinklo aktyvus ryšys%n Bitcoin tinklo aktyvūs ryšiai%n Bitcoin tinklo aktyvūs ryšiai - - - - Downloaded %1 of %2 blocks of transaction history. - Atsisiuntė %1 iš %2 sandorių istorijos blokų + + %n Bitcoin tinklo aktyvus ryšys + %n Bitcoin tinklo aktyvūs ryšiai + %n Bitcoin tinklo aktyvūs ryšiai + - + Downloaded %1 blocks of transaction history. Atsisiuntė %1 iš %2 sandorių istorijos blokų - + %n second(s) ago - Prieš %n sekundęPrieš %n sekundesPrieš %n sekundžių + + Prieš %n sekundę + Prieš %n sekundes + Prieš %n sekundžių + - + %n minute(s) ago - Prieš %n minutęPrieš %n minutesPrieš %n minutčių + + Prieš %n minutę + Prieš %n minutes + Prieš %n minutčių + - + %n hour(s) ago - Prieš %n valandąPrieš %n valandasPrieš %n valandų + + Prieš %n valandą + Prieš %n valandas + Prieš %n valandų + - + %n day(s) ago - Prieš %n dienąPrieš %n dienasPrieš %n dienų + + Prieš %n dieną + Prieš %n dienas + Prieš %n dienų + - + Up to date Iki šiol - + Catching up... Gaudo... - + Last received block was generated %1. Paskutinis gautas blokas buvo sukurtas %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? Šis sandoris viršija leistiną dydį. Jūs galite įvykdyti jį papildomai sumokėję %1 mokesčių, kurie bus išsiųsti tais pačiais mazgais kuriais vyko sandoris ir padės palaikyti tinklą. Ar jūs norite apmokėti papildomą mokestį? - + Sending... Siunčiama... - + Sent transaction Sandoris nusiųstas - + Incoming transaction Ateinantis sandoris - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Data: %1 -Suma: %2 -Tipas: %3 -Adresas: %4 + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Piniginė <b>užšifruota</b> ir šiuo metu <b>užrakinta</b> - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Piniginė <b>užšifruota</b> ir šiuo metu <b>atrakinta</b> - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Piniginė <b>užšifruota</b> ir šiuo metu <b>užrakinta</b> - - - - Backup Wallet - + + + ~%n block(s) remaining + + + + + - - Wallet Data (*.dat) - + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Atsisiuntė %1 iš %2 sandorių istorijos blokų (%3% done). - - Backup Failed - + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1 +Suma: %2 +Tipas: %3 +Adresas: %4 - - There was an error trying to save the wallet data to the new location. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: &U vienetų rodyti sumas: - + Choose the default subdivision unit to show in the interface, and when sending coins Rodomų ir siunčiamų monetų kiekio matavimo vienetai - - Display addresses in transaction list - Rodyti adresus sandorių sąraše + + &Display addresses in transaction list + &Rodyti adresus sandorių sąraše + + + + Whether to show Bitcoin addresses in the transaction list + @@ -696,87 +735,92 @@ Adresas: %4 MainOptionsPage - + &Start Bitcoin on window system startup &S Paleisti Bitcoin programą su window sistemos paleidimu - + Automatically start Bitcoin after the computer is turned on Automatiškai paleisti Bitkoin programą kai yra įjungiamas kompiuteris - + &Minimize to the tray instead of the taskbar &M sumažinti langą bet ne užduočių juostą - + Show only a tray icon after minimizing the window Po programos lango sumažinimo rodyti tik programos ikoną. - + Map port using &UPnP Prievado struktūra naudojant & UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Automatiškai atidaryti Bitcoin kliento maršrutizatoriaus prievadą. Tai veikia tik tada, kai jūsų maršrutizatorius palaiko UPnP ir ji įjungta. - + M&inimize on close &i Sumažinti uždarant - + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Uždarant langą neuždaryti programos. Kai ši parinktis įjungta, programa bus uždaryta tik pasirinkus meniu komandą Baigti. - + &Connect through SOCKS4 proxy: &C Jungtis per socks4 proxy: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Jungtis į Bitkoin tinklą per socks4 proxy (pvz. jungiantis per Tor) - + Proxy &IP: Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) IP adresas proxy (pvz. 127.0.0.1) - + &Port: &Prievadas: - + Port of the proxy (e.g. 1234) Proxy prievadas (pvz. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Neprivaloma sandorio mokestis už KB, kuris padeda įsitikinti, kad jūsų sandoriai tvarkomi greitai. Daugelis sandorių yra tik 1KB dydžio. Rekomenduojamas 0,01 mokestis. - - - + Pay transaction &fee &f Mokėti sandorio mokestį - + + Detach databases at shutdown + + + + + 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. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Neprivaloma sandorio mokestis už KB, kuris padeda įsitikinti, kad jūsų sandoriai tvarkomi greitai. Daugelis sandorių yra tik 1KB dydžio. Rekomenduojamas 0,01 mokestis. @@ -791,12 +835,12 @@ Adresas: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Nurodyti adresą mokėjimui siųsti (pvz. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Įveskite bitkoinų adresą (pvz. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -840,8 +884,8 @@ Adresas: %4 - Copy the currently selected address to the system clipboard - Kopijuoti pasirinktą adresą į sistemos mainų atmintį + Copy the current signature to the system clipboard + @@ -874,37 +918,37 @@ Adresas: %4 OptionsDialog - + + Options + Opcijos + + + Main Pagrindinis - + Display Ekranas - - - Options - Opcijos - OverviewPage - - - Form - Forma - Balance: Balansas - - 123.456 BTC - 123.456 BTC + + Your current balance + Jūsų einamasis balansas + + + + Form + Forma @@ -916,114 +960,116 @@ Adresas: %4 0 0 + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Iš viso sandorių, įskaitant tuos kurie dar turi būti patvirtinti, ir jie dar nėra įskaičiuotii į einamosios sąskaitos balansą + + + + Total number of transactions in wallet + Bandras sandorių kiekis piniginėje + Unconfirmed: Nepatvirtinti: - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + Piniginė - + <b>Recent transactions</b> <b>Naujausi sandoris</b> - - - Your current balance - Jūsų einamasis balansas - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Iš viso sandorių, įskaitant tuos kurie dar turi būti patvirtinti, ir jie dar nėra įskaičiuotii į einamosios sąskaitos balansą - - - - Total number of transactions in wallet - Bandras sandorių kiekis piniginėje - QRCodeDialog - - - Dialog - Dialogas - QR Code QR kodas - - Request Payment - Prašau išmokėti - - - + Amount: Suma: - + BTC BTC - + Label: Žymė: - + Message: Žinutė: - + &Save As... &S išsaugoti kaip... - + + Dialog + Dialogas + + + + Request Payment + Prašau išmokėti + + + + Error encoding URI into QR Code. + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + Save Image... - + - + PNG Images (*.png) - + SendCoinsDialog + + + &Send + &Siųsti + + + + Confirm send coins + Patvirtinti siuntimui monetas + - - - - - - - + + + + + + + Send Coins Siųsti monetas @@ -1032,113 +1078,103 @@ p, li { white-space: pre-wrap; } Send to multiple recipients at once Siųsti keliems gavėjams vienu metu - - - &Add recipient... - &A Pridėti gavėją - Remove all transaction fields Pašalinti visus sandorio laukus - - Clear all - Ištrinti viską - - - - Balance: - Balansas: - - - - 123.456 BTC - 123.456 BTC - - - - Confirm the send action - Patvirtinti siuntimo veiksmą - - - - &Send - &Siųsti - - - + <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) - - Confirm send coins - Patvirtinti siuntimui monetas - - - + Are you sure you want to send %1? Ar esate įsitikinę, kad norite siųsti %1? - + and ir - - The recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. Negaliojantis gavėjo adresas. Patikrinkite. - + The amount to pay must be larger than 0. Apmokėjimo suma turi būti didesnė negu 0. - - Amount exceeds your balance - Suma viršija jūsų balansą + + The amount exceeds your balance. + Suma viršija jūsų balansą. - - Total exceeds your balance when the %1 transaction fee is included - Jei pridedame sandorio mokestį %1 bendra suma viršija jūsų balansą + + The total exceeds your balance when the %1 transaction fee is included. + Jei pridedame sandorio mokestį %1 bendra suma viršija jūsų balansą. - - Duplicate address found, can only send to each address once in one send operation - Rastas adreso dublikatas + + Duplicate address found, can only send to each address once per send operation. + Rastas adreso dublikatas. - - Error: Transaction creation failed - KLAIDA:nepavyko sudaryti sandorio + + Error: Transaction creation failed. + KLAIDA:nepavyko sudaryti sandorio. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. Klaida: sandoris buvo atmestas.Tai gali įvykti, jei kai kurios monetos iš jūsų piniginėje jau buvo panaudotos, pvz. jei naudojote wallet.dat kopiją ir monetos buvo išleistos kopijoje, bet nepažymėtos kaip skirtos išleisti čia. - - - SendCoinsEntry - - Form - Forma + + &Add recipient... + &A Pridėti gavėją - - A&mount: - Su&ma: + + Clear all + Ištrinti viską - - Pay &To: - Mokėti &T gavėjui: + + Balance: + Balansas: + + + + 123.456 BTC + 123.456 BTC + + + + Confirm the send action + Patvirtinti siuntimo veiksmą + + + + SendCoinsEntry + + + Form + Forma + + + + A&mount: + Su&ma: + + + + Pay &To: + Mokėti &T gavėjui: @@ -1190,140 +1226,140 @@ p, li { white-space: pre-wrap; } TransactionDesc - + Open for %1 blocks Atidaryta %1 blokams - + Open until %1 Atidaryta iki %1 - - %1/offline? - %1/atjungtas? - - - + %1/unconfirmed %1/nepatvirtintas - + %1 confirmations %1 patvirtinimai - + + %1/offline? + %1/atjungtas? + + + <b>Status:</b> <b>Būsena:</b> - + , has not been successfully broadcast yet , transliavimas dar nebuvo sėkmingas - + , broadcast through %1 node , transliuota per %1 mazgą - + , broadcast through %1 nodes , transliuota per %1 mazgus - + <b>Date:</b> <b>Data:</b> - + <b>Source:</b> Generated<br> <b>Šaltinis:</b> Sukurta<br> - - + + <b>From:</b> <b>Nuo:</b> - + unknown nežinomas - - - + + + <b>To:</b> <b>Skirta:</b> - + (yours, label: (jūsų, žymė: - + (yours) (jūsų) - - - - + + + + <b>Credit:</b> <b>Kreditas:</b> - + (%1 matures in %2 more blocks) (%1 apmokėtinas %2 daugiau blokais) - + (not accepted) (nepriimta) - - - + + + <b>Debit:</b> <b>Debitas:</b> - + <b>Transaction fee:</b> <b>Sandorio mokestis:</b> - + <b>Net amount:</b> <b>Neto suma:</b> - + Message: Žinutė: - + Comment: Komentaras: - + Transaction ID: Sandorio ID: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Išgautos monetos turi sulaukti 120 blokų, kol jos gali būti naudojamos. Kai sukūrėte šį bloką, jis buvo transliuojamas tinkle ir turėjo būti įtrauktas į blokų grandinę. Jei nepavyksta patekti į grandinę, bus pakeista į "nepriėmė", o ne "vartojamas". Tai kartais gali atsitikti, jei kitas mazgas per keletą sekundžių sukuria bloką po jūsų bloko. @@ -1344,123 +1380,201 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Data - - Type - Tipas + + Unconfirmed (%1 of %2 confirmations) + Nepatvirtintos (%1 iš %2 patvirtinimų) - - Address - Adresas + + Open until %1 + Atidaryta kol %n - - Amount - Suma + + Offline (%1 confirmations) + Atjungta (%1 patvirtinimai) - - Open for %n block(s) - Atidaryta %n blokuiAtidaryta %n blokamsAtidaryta %n blokų + + Mined balance will be available in %n more blocks + + Išgautas balansas bus pasiekiamas po %n bloko + Išgautas balansas bus pasiekiamas po %n blokų + Išgautas balansas bus pasiekiamas po %n blokų + - - Open until %1 - Atidaryta kol %n + + Confirmed (%1 confirmations) + Patvirtinta (%1 patvirtinimai) - - Offline (%1 confirmations) - Atjungta (%1 patvirtinimai) + + Type + Tipas - - Unconfirmed (%1 of %2 confirmations) - Nepatvirtintos (%1 iš %2 patvirtinimų) + + Address + Adresas - - Confirmed (%1 confirmations) - Patvirtinta (%1 patvirtinimai) + + Amount + Suma - - Mined balance will be available in %n more blocks - Išgautas balansas bus pasiekiamas po %n blokoIšgautas balansas bus pasiekiamas po %n blokųIšgautas balansas bus pasiekiamas po %n blokų + + Open for %n block(s) + + + + + - + This block was not received by any other nodes and will probably not be accepted! Šis blokas negautas nė vienu iš mazgų ir matomai nepriimtas - + Generated but not accepted Išgauta bet nepriimta - + Received with Gauta su - + Received from Gauta iš - + Sent to Siųsta - + Payment to yourself Mokėjimas sau - + Mined Išgauta - + (n/a) nepasiekiama - + Transaction status. Hover over this field to show number of confirmations. Sandorio būklė. Užvedus pelės žymeklį ant šios srities matysite patvirtinimų skaičių. - + Date and time that the transaction was received. Sandorio gavimo data ir laikas - + Type of transaction. Sandorio tipas - + Destination address of transaction. Sandorio paskirties adresas - + Amount removed from or added to balance. Suma pridėta ar išskaičiuota iš balanso TransactionView + + + Copy amount + Kopijuoti sumą + + + + Edit label + Taisyti žymę + + + + Export Transaction Data + Sandorio duomenų eksportavimas + + + + 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 + Eksportavimo klaida + + + + Range: + Grupė: + + + + to + skirta + @@ -1542,437 +1656,506 @@ p, li { white-space: pre-wrap; } Copy label Kopijuoti žymę - - - Copy amount - Kopijuoti sumą - - - - Edit label - Taisyti žymę - Show details... Parodyti išsamiai - - Export Transaction Data - Sandorio duomenų eksportavimas + + Could not write to file %1. + Neįmanoma įrašyti į failą %1. + + + WalletModel - - Comma separated file (*.csv) - Kableliais atskirtų duomenų failas (*.csv) + + Sending... + Siunčiama + + + bitcoin-core - - Confirmed - Patvirtintas + + Loading wallet... + Užkraunama piniginė... - - Date - Data + + List commands + Komandų sąrašas - - Type - Tipas + + Error: Wallet locked, unable to create transaction + - - Label - Žymė + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Šis sandoris viršija leistiną dydį. Jūs galite įvykdyti jį papildomai sumokėję %1 mokesčių, kurie bus išsiųsti tais pačiais mazgais kuriais vyko sandoris ir padės palaikyti tinklą. Ar jūs norite apmokėti papildomą mokestį? - - Address - Adresas + + Invalid amount + Neteisinga suma - - Amount - Suma + + Insufficient funds + - - ID - ID + + To use the %s option + - - Error exporting - Eksportavimo klaida + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + - - Could not write to file %1. - Neįmanoma įrašyti į failą %1. + + Error + - - Range: - Grupė: + + An error occurred while setting up the RPC port %i for listening: %s + - - to - skirta + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - - WalletModel - - Sending... - Siunčiama + + Specify pid file (default: bitcoind.pid) + Nurodyti pid failą (pagal nutylėjimą: bitcoind.pid) - - - bitcoin-core - - Bitcoin version - Bitcoin versija + + Generate coins + Sukurti monetas - - Usage: - Naudojimas: + + Show splash screen on startup (default: 1) + - - Send command to -server or bitcoind - Siųsti komandą serveriui arba bitcoind + + Set database cache size in megabytes (default: 25) + - - List commands - Komandų sąrašas + + Set database disk log size in megabytes (default: 100) + - - Get help for a command - Suteikti pagalba komandai + + 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 - - Options: - Opcijos: - - - - Specify configuration file (default: bitcoin.conf) - Nurodyti konfigūracijos failą (pagal nutylėjimąt: bitcoin.conf) - - - - Specify pid file (default: bitcoind.pid) - Nurodyti pid failą (pagal nutylėjimą: bitcoind.pid) - - - - Generate coins - Sukurti monetas - - - - Don't generate coins - Neišgavinėti monetų - - - - Start minimized - Pradžia sumažinta - - - - Specify data directory - Nustatyti duomenų direktoriją - - - - Specify connection timeout (in milliseconds) - Nustatyti sujungimo trukmę (milisekundėmis) - - - - Connect through socks4 proxy - Prisijungti per socks4 proxy - - - - Allow DNS lookups for addnode and connect - Leisti DNS paiešką sujungimui ir mazgo pridėjimui - - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Sujungimo klausymas prijungčiai <port> (pagal nutylėjimą: 8333 arba testnet: 18333) - - - - Maintain at most <n> connections to peers (default: 125) - Palaikyti ne daugiau <n> jungčių kolegoms (pagal nutylėjimą: 125) - - - - Add a node to connect to - Pridėti mazgą prie sujungti su - - - - Connect only to the specified node - Prisijungti tik prie nurodyto mazgo - - - - Don't accept connections from outside - Nepriimti išorinio sujungimo - - - - Don't bootstrap list of peers using DNS - Neleisti kolegų sąrašo naudojant DNS - - - - Threshold for disconnecting misbehaving peers (default: 100) - Atjungimo dėl netinkamo kolegų elgesio riba (pagal nutylėjimą: 100) + + Find peers using internet relay chat (default: 0) + - - 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) + + Accept connections from outside (default: 1) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maksimalus buferis priėmimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 10000) + + Set language, for example "de_DE" (default: system locale) + - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maksimalus buferis siuntimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 10000) + + Find peers using DNS lookup (default: 1) + - - Don't attempt to use UPnP to map the listening port - Nenaudoti UPnP klausymo prievado struktūros + + Use Universal Plug and Play to map the listening port (default: 1) + Bandymas naudoti UPnP struktūra klausymosi prievadui (default: 1) - - Attempt to use UPnP to map the listening port - Bandymas naudoti UPnP struktūra klausymosi prievadui + + Use Universal Plug and Play to map the listening port (default: 0) + Bandymas naudoti UPnP struktūra klausymosi prievadui (default: 0) - - Fee per kB to add to transactions you send - Įtraukti mokestį už kB siunčiamiems sandoriams + + Detach block and address databases. Increases shutdown time (default: 0) + - + Accept command line and JSON-RPC commands Priimti komandinę eilutę ir JSON-RPC komandas - + Run in the background as a daemon and accept commands Dirbti fone kaip šešėlyje ir priimti komandas - + Use the test network Naudoti testavimo tinklą - - Output extra debugging information - Išėjimo papildomas derinimo informacija - - - + Prepend debug output with timestamp Prideėti laiko žymę derinimo rezultatams - + Send trace/debug info to console instead of debug.log file Siųsti atsekimo/derinimo info į konsolę vietoj debug.log failo - + Send trace/debug info to debugger Siųsti sekimo/derinimo info derintojui - - Username for JSON-RPC connections - Vartotojo vardas JSON-RPC jungimuisi - - - + Password for JSON-RPC connections Slaptažodis JSON-RPC sujungimams - + Listen for JSON-RPC connections on <port> (default: 8332) Klausymas JSON-RPC sujungimui prijungčiai <port> (pagal nutylėjimą: 8332) - + Allow JSON-RPC connections from specified IP address Leisti JSON-RPC tik iš nurodytų IP adresų - + Send commands to node running on <ip> (default: 127.0.0.1) Siųsti komandą mazgui dirbančiam <ip> (pagal nutylėjimą: 127.0.0.1) - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) Nustatyti rakto apimties dydį <n> (pagal nutylėjimą: 100) - + Rescan the block chain for missing wallet transactions Ieškoti prarastų piniginės sandorių blokų grandinėje - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL opcijos (žr.e Bitcoin Wiki for SSL setup instructions) + + How many blocks to check at startup (default: 2500, 0 = all) + - + + How thorough the block verification is (0-6, default: 1) + + + + Use OpenSSL (https) for JSON-RPC connections Naudoti OpenSSL (https) jungimuisi JSON-RPC - + Server certificate file (default: server.cert) Serverio sertifikato failas (pagal nutylėjimą: server.cert) - + Server private key (default: server.pem) Serverio privatus raktas (pagal nutylėjimą: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Priimtini šifrai (pagal nutylėjimą: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + This help message Pagelbos žinutė - + + Usage + Naudojimas + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Negali gauti duomenų katalogo %s rakto. Bitcoin tikriausiai jau veikia. - - Loading addresses... - Užkraunami adresai... + + Bitcoin + - - Error loading addr.dat - addr.dat pakrovimo klaida + + Loading addresses... + Užkraunami adresai... - - Error loading blkindex.dat - blkindex.dat pakrovimo klaida + + Loading block index... + Užkraunami blokų indeksai... - + Error loading wallet.dat: Wallet corrupted wallet.dat pakrovimo klaida, wallet.dat sugadintas - + Error loading wallet.dat: Wallet requires newer version of Bitcoin wallet.dat pakrovimo klaida, wallet.dat reikalauja naujasnės Bitcoin versijos - + Wallet needed to be rewritten: restart Bitcoin to complete Piniginė turi būti prrašyta: įvykdymui perkraukite Bitcoin - + Error loading wallet.dat wallet.dat pakrovimo klaida - - Loading block index... - Užkraunami blokų indeksai... + + Cannot downgrade wallet + - - Loading wallet... - Užkraunama piniginė... + + Cannot initialize keypool + + + + + Cannot write default address + - + Rescanning... Peržiūra - + Done loading Pakrovimas baigtas + + + Bitcoin version + Bitcoin versija + + + + Usage: + Naudojimas: + + + + Send command to -server or bitcoind + Siųsti komandą serveriui arba bitcoind + + + + Get help for a command + Suteikti pagalba komandai + + + + Options: + Opcijos: + + + + Specify configuration file (default: bitcoin.conf) + Nurodyti konfigūracijos failą (pagal nutylėjimąt: bitcoin.conf) + + + + Start minimized + Pradžia sumažinta + + + + Specify data directory + Nustatyti duomenų direktoriją + + + + Specify connection timeout (in milliseconds) + Nustatyti sujungimo trukmę (milisekundėmis) + + + + Connect through socks4 proxy + Prisijungti per socks4 proxy + + + + Allow DNS lookups for addnode and connect + Leisti DNS paiešką sujungimui ir mazgo pridėjimui + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Sujungimo klausymas prijungčiai <port> (pagal nutylėjimą: 8333 arba testnet: 18333) + + + + Maintain at most <n> connections to peers (default: 125) + Palaikyti ne daugiau <n> jungčių kolegoms (pagal nutylėjimą: 125) + + + + Connect only to the specified node + Prisijungti tik prie nurodyto mazgo + + + + Threshold for disconnecting misbehaving peers (default: 100) + Atjungimo dėl netinkamo kolegų elgesio riba (pagal nutylėjimą: 100) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Sekundžių kiekis eikiamas palaikyti ryšį dėl lygiarangių nestabilumo (pagal nutylėjimą: 86.400) + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maksimalus buferis priėmimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 10000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maksimalus buferis siuntimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 10000) + + + + Output extra debugging information + Išėjimo papildomas derinimo informacija + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL opcijos (žr.e Bitcoin Wiki for SSL setup instructions) + + + + Error loading addr.dat + addr.dat pakrovimo klaida + + + Invalid -proxy address Neteisingas proxy adresas - + Invalid amount for -paytxfee=<amount> Neteisinga suma -paytxfee=<amount> - + 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į. - + Error: CreateThread(StartNode) failed Klaida: nepasileidžia CreateThread(StartNode) - - Warning: Disk space is low - Įspėjimas: nepakanka vietos diske - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Nepavyko susieti šiame kompiuteryje prievado %d. Bitcoin tikriausiai jau veikia. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Įspėjimas: Patikrinkite, kad kompiuterio data ir laikas yra teisingi.Jei Jūsų laikrodis neteisingai nustatytas Bitcoin, veiks netinkamai. - - beta - beta + + Fee per KB to add to transactions you send + Įtraukti mokestį už kB siunčiamiems sandoriams + + + + Error loading blkindex.dat + blkindex.dat pakrovimo klaida + + + + Don't generate coins + Neišgavinėti monetų + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Klaida: sandoris buvo atmestas.Tai gali įvykti, jei kai kurios monetos iš jūsų piniginėje jau buvo panaudotos, pvz. jei naudojote wallet.dat kopiją ir monetos buvo išleistos kopijoje, bet nepažymėtos kaip skirtos išleisti čia. + + + + Error: Transaction creation failed + KLAIDA:nepavyko sudaryti sandorio + + + + Sending... + Siunčiama + + + + Username for JSON-RPC connections + Vartotojo vardas JSON-RPC jungimuisi + + + + Warning: Disk space is low + Įspėjimas: nepakanka vietos diske - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index eac291c846..b6f446fb26 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> versjon - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -55,7 +57,7 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &New Address... - &Ny adresse... + &Ny adresse... @@ -67,11 +69,6 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &Copy to Clipboard &Kopier til utklippstavle - - - Show &QR Code - Vis &QR Kode - Sign a message to prove you own this address @@ -93,91 +90,118 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &Slett - + + Show &QR Code + Vis &QR Kode + + + + Export Address Book Data + Eksporter adressebok + + + Copy address Kopier adresse - + Copy label Kopier merkelapp - + Edit Rediger - + Delete Slett - - Export Address Book Data - Eksporter adressebok - - - - Comma separated file (*.csv) - Kommaseparert fil (*.csv) - - - + Error exporting Feil ved eksportering - + Could not write to file %1. Kunne ikke skrive til filen %1. + + + Comma separated file (*.csv) + Kommaseparert fil (*.csv) + AddressTableModel - + Label Merkelapp - + Address Adresse - + (no label) (ingen merkelapp) AskPassphraseDialog + + + + The supplied passphrases do not match. + De angitte adgangsfrasene er ulike. + + + + Wallet unlock failed + Opplåsing av lommebok feilet + + + + New passphrase + Ny adgangsfrase + + + + Repeat new passphrase + Gjenta ny adgangsfrase + Dialog Dialog - - + TextLabel Merkelapp - + Enter passphrase Angi adgangsfrase - - New passphrase - Ny adgangsfrase + + Decrypt wallet + Dekrypter lommebok - - Repeat new passphrase - Gjenta ny adgangsfrase + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ADVARSEL: Hvis du krypterer lommeboken og mister adgangsfrasen vil du <b>MISTE ALLE DINE BITCOINS</b>! +Er du sikker på at du vil kryptere lommeboken? @@ -190,46 +214,47 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Krypter lommebok - - This operation needs your wallet passphrase to unlock the wallet. - Denne operasjonen krever adgangsfrasen til lommeboken for å låse den opp. + + Enter the old and new passphrase to the wallet. + Skriv inn gammel og ny adgangsfrase for lommeboken. - - Unlock wallet - Lås opp lommebok + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. + + + + + + + Wallet encryption failed + Kryptering av lommebok feilet This operation needs your wallet passphrase to decrypt the wallet. Denne operasjonen krever adgangsfrasen til lommeboken for å dekryptere den. - - - Decrypt wallet - Dekrypter lommebok - Change passphrase Endre adgangsfrase - - - Enter the old and new passphrase to the wallet. - Skriv inn gammel og ny adgangsfrase for lommeboken. - Confirm wallet encryption Bekreft kryptering av lommebok - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ADVARSEL: Hvis du krypterer lommeboken og mister adgangsfrasen vil du <b>MISTE ALLE DINE BITCOINS</b>! -Er du sikker på at du vil kryptere lommeboken? + + This operation needs your wallet passphrase to unlock the wallet. + Denne operasjonen krever adgangsfrasen til lommeboken for å låse den opp. + + + + Unlock wallet + Lås opp lommebok @@ -237,40 +262,15 @@ Er du sikker på at du vil kryptere lommeboken? Wallet encrypted Lommebok kryptert - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. - - - - - Warning: The Caps Lock key is on. - Advarsel: Caps lock tasten er på. - - - - - - - Wallet encryption failed - Kryptering av lommebok feilet - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Kryptering av lommebok feilet på grunn av en intern feil. Din lommebok ble ikke kryptert. - - - The supplied passphrases do not match. - De angitte adgangsfrasene er ulike. - - - - Wallet unlock failed - Opplåsing av lommebok feilet + + Wallet decryption failed + Dekryptering av lommebok feilet @@ -280,291 +280,278 @@ Er du sikker på at du vil kryptere lommeboken? Adgangsfrasen angitt for dekryptering av lommeboken var feil. - - Wallet decryption failed - Dekryptering av lommebok feilet + + Wallet passphrase was successfully changed. + Adgangsfrase for lommebok endret. - - Wallet passphrase was succesfully changed. - Lommebokens adgangsfrase ble endret. + + + Warning: The Caps Lock key is on. + Advarsel: Caps lock tasten er på. BitcoinGUI - - Bitcoin Wallet - Bitcoin Lommebok + + Edit the list of stored addresses and labels + Rediger listen over adresser og deres merkelapper - - - Synchronizing with network... - Synkroniserer med nettverk... + + &Receive coins + &Motta bitcoins - - Block chain synchronization in progress - Synkronisering av blokk-kjede igang + + &Address Book + &Adressebok - - &Overview - &Oversikt + + &File + &Fil + + + + &Send coins + &Send bitcoins + + + + Synchronizing with network... + Synkroniserer med nettverk... - + Show general overview of wallet Vis generell oversikt over lommeboken - - &Transactions - &Transaksjoner + + Bitcoin Wallet + Bitcoin Lommebok - - Browse transaction history - Vis transaksjonshistorikk + + Show the list of addresses for receiving payments + Vis listen over adresser for mottak av betalinger - - &Address Book - &Adressebok + + Prove you control an address + Bevis at du kontrollerer en adresse - - Edit the list of stored addresses and labels - Rediger listen over adresser og deres merkelapper + + Show/Hide &Bitcoin + Gjem/vis &Bitcoin - - &Receive coins - &Motta bitcoins + + Show or hide the Bitcoin window + Vis eller gjem Bitcoinvinduet - - Show the list of addresses for receiving payments - Vis listen over adresser for mottak av betalinger + + &Export... + &Eksporter... - - &Send coins - &Send bitcoins + + Export the data in the current tab to a file + Eksporter data fra nåværende fane til fil - - Send coins to a bitcoin address - Send bitcoins til en adresse + + Backup wallet to another location + Sikkerhetskopiér lommebok til annet sted - - Sign &message - Signér &melding + + &Change Passphrase + &Endre Adgangsfrase - - Prove you control an address - Bevis at du kontrollerer en adresse + + Change the passphrase used for wallet encryption + Endre adgangsfrasen brukt for kryptering av lommebok - - E&xit - &Avslutt + + &Help + &Hjelp - - Quit application - Avslutt applikasjonen + + Bitcoin client + Bitcoinklient - - &About %1 - &Om %1 + + Backup Wallet + Sikkerhetskopiér Lommebok - - Show information about Bitcoin - Vis informasjon om Bitcoin + + Wallet Data (*.dat) + Lommeboksdata (*.dat) - - About &Qt - Om &Qt + + &Transactions + &Transaksjoner - - Show information about Qt - Vis informasjon om Qt + + Browse transaction history + Vis transaksjonshistorikk - - &Options... - &Innstillinger... + + Send coins to a bitcoin address + Send bitcoins til en adresse - - Modify configuration options for bitcoin - Endre innstillinger for bitcoin + + E&xit + &Avslutt - Open &Bitcoin - Åpne &Bitcoin - - - - Show the Bitcoin window - Vis Bitcoin-vinduet + &About %1 + &Om %1 - - &Export... - &Eksporter... + + Sending... + Sender... - Export the data in the current tab to a file - + About &Qt + Om &Qt - &Encrypt Wallet - &Krypter Lommebok + Show information about Qt + Vis informasjon om Qt - - Encrypt or decrypt wallet - Krypter eller dekrypter lommebok + + Quit application + Avslutt applikasjonen - - &Backup Wallet - + + Tabs toolbar + Verktøylinje for faner - - Backup wallet to another location - - - - - &Change Passphrase - &Endre Adgangsfrase + + Show information about Bitcoin + Vis informasjon om Bitcoin - - - Change the passphrase used for wallet encryption - Endre adgangsfrasen brukt for kryptering av lommebok + + + %n active connection(s) to Bitcoin network + + %n aktiv forbindelse til Bitcoin-nettverket + %n aktive forbindelser til Bitcoin-nettverket + - - &File - &Fil + + Encrypt or decrypt wallet + Krypter eller dekrypter lommebok - - &Settings - &Innstillinger + + Downloaded %1 blocks of transaction history. + Lastet ned %1 blokker med transaksjonshistorikk. - - &Help - &Hjelp + + &Encrypt Wallet + &Krypter Lommebok - - - Tabs toolbar - Verktøylinje for faner + + + %n minute(s) ago + + for %n minutt siden + for %n minutter siden + - + Actions toolbar Verktøylinje for handlinger - - [testnet] - [testnett] - - - - bitcoin-qt - bitcoin-qt - - - - %n active connection(s) to Bitcoin network - %n aktiv forbindelse til Bitcoin-nettverket%n aktive forbindelser til Bitcoin-nettverket - - - - Downloaded %1 of %2 blocks of transaction history. - Lastet ned %1 av %2 blokker med transaksjonshistorikk. + + &Backup Wallet + Lag &Sikkerhetskopi av Lommebok - - Downloaded %1 blocks of transaction history. - Lastet ned %1 blokker med transaksjonshistorikk. - - - - %n second(s) ago - for %n sekund sidenfor %n sekunder siden - - - - %n minute(s) ago - for %n minutt sidenfor %n minutter siden + + Last received block was generated %1. + Siste mottatte blokk ble generert %1. - + %n hour(s) ago - for %n time sidenfor %n timer siden + + for %n time siden + for %n timer siden + - + %n day(s) ago - for %n dag sidenfor %n dager siden + + for %n dag siden + for %n dager siden + - + Up to date Ajour - + Catching up... Kommer ajour... - - Last received block was generated %1. - Siste mottatte blokk ble generert %1. + + &Overview + &Oversikt - + 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 transaksjonen overstiger størrelsesbegrensningen. Du kan likevel sende den med et gebyr på %1, som går til nodene som prosesserer transaksjonen din og støtter nettverket. Vil du betale gebyret? - - Sending... - Sender... + + Sign &message + Signér &melding - + Sent transaction Sendt transaksjon - + Incoming transaction Innkommende transaksjon - + Date: %1 Amount: %2 Type: %3 @@ -577,52 +564,98 @@ Adresse: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Lommeboken er <b>kryptert</b> og for tiden <b>ulåst</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Lommeboken er <b>kryptert</b> og for tiden <b>låst</b> - - Backup Wallet - + + &Options... + &Innstillinger... - - Wallet Data (*.dat) - + + Modify configuration options for bitcoin + Endre innstillinger for bitcoin + + + + &Settings + &Innstillinger + + + + [testnet] + [testnett] + + + + bitcoin-qt + bitcoin-qt + + + + %n second(s) ago + + for %n sekund siden + for %n sekunder siden + + + + + ~%n block(s) remaining + + ~%n blokk gjenstår + ~%n blokker gjenstår + - + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Lastet ned %1 av %2 blokker med transaksjonshistorikk (%3% ferdig). + + + Backup Failed - + Sikkerhetskopiering feilet - + There was an error trying to save the wallet data to the new location. - + En feil oppstod ved lagring av lommebok til nytt sted + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + En fatal feil har inntruffet. Det er ikke trygt å fortsette og Bitcoin må derfor avslutte. DisplayOptionsPage - + &Unit to show amounts in: &Enhet for å vise beløp i: - + Choose the default subdivision unit to show in the interface, and when sending coins Velg standard underenhet som skal vises i grensesnittet og ved sending av mynter - - Display addresses in transaction list - Vis adresser i transaksjonslisten + + &Display addresses in transaction list + &Vis adresser i transaksjonslisten + + + + Whether to show Bitcoin addresses in the transaction list + Om Bitcoin-adresser skal vises i transaksjonslisten eller ikke @@ -677,11 +710,6 @@ Adresse: %4 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 bitcoin address. - en oppgitte adressen "%1" er ikke en gyldig bitcoin-adresse. - Could not unlock wallet. @@ -692,93 +720,103 @@ Adresse: %4 New key generation failed. Generering av ny nøkkel feilet. + + + The entered address "%1" is not a valid bitcoin address. + en oppgitte adressen "%1" er ikke en gyldig bitcoin-adresse. + MainOptionsPage - + &Start Bitcoin on window system startup &Start Bitcoin ved oppstart - + Automatically start Bitcoin after the computer is turned on Start Bitcoin automatisk når datamaskinen blir slått på - + &Minimize to the tray instead of the taskbar &Minimer til systemkurv istedenfor oppgavelinjen - + Show only a tray icon after minimizing the window Vis kun ikon i systemkurv etter minimering av vinduet - - Map port using &UPnP - Sett opp port vha. &UPnP - - - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Åpne automatisk Bitcoin klientporten på ruteren. Dette virker kun om din ruter støtter UPnP og dette er påslått. - + M&inimize on close M&inimér ved lukking - + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimerer vinduet istedenfor å avslutte applikasjonen når vinduet lukkes. Når dette er slått på avsluttes applikasjonen kun ved å velge avslutt i menyen. - + + Map port using &UPnP + Sett opp port vha. &UPnP + + + &Connect through SOCKS4 proxy: &Koble til gjennom SOCKS4 proxy: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Koble til Bitcoin nettverket gjennom en SOCKS4 mellomtjener (f.eks. for tilkobling gjennom Tor) - + Proxy &IP: Mellomtjeners &IP: - - IP address of the proxy (e.g. 127.0.0.1) - IP-adresse for mellomtjener (f.eks. 127.0.0.1) - - - - &Port: - &Port: - - - + Port of the proxy (e.g. 1234) Port for mellomtjener (f.eks. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. - + Pay transaction &fee Betal transaksjons&gebyr - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. + + Detach databases at shutdown + Koble fra databaser ved avslutning + + + + 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. + Koble fra blokk og adresse databaser ved avslutning. Dette betyr at de kan flyttes til en annen mappe, men det gir en tregere avslutning. Lommeboken blir alltid koblet fra. + + + + IP address of the proxy (e.g. 127.0.0.1) + IP-adresse for mellomtjener (f.eks. 127.0.0.1) + + + + &Port: + &Port: @@ -788,15 +826,30 @@ Adresse: %4 Message Melding + + + Enter the message you want to sign here + Skriv inn meldingen du vil signere her + + + + %1 is not a valid address. + %1 er ikke en gyldig adresse + + + + Sign failed + Signering feilet + You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + Du kan signere meldinger med dine adresser for å bevise at du eier dem. Ikke signér vage meldinger da phishing-angrep kan prøve å lure deg til å signere din identitet over til andre. Signér kun fullt detaljerte utsagn som du er enig i. - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adressen betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adressen for signering av meldingen (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -818,11 +871,6 @@ Adresse: %4 Alt+P Alt+P - - - Enter the message you want to sign here - Skriv inn meldingen du vil signere her - Click "Sign Message" to get signature @@ -840,8 +888,8 @@ Adresse: %4 - Copy the currently selected address to the system clipboard - Kopier den valgte adressen til systemets utklippstavle + Copy the current signature to the system clipboard + Kopier valgt signatur til utklippstavle @@ -855,42 +903,47 @@ Adresse: %4 Error signing Feil ved signering - - - %1 is not a valid address. - %1 er ikke en gyldig adresse - Private key for %1 is not available. Privat nøkkel for %1 er ikke tilgjengelig. - - - Sign failed - Signering feilet - OptionsDialog - + + Options + Innstillinger + + + Main Hoved - + Display Visning - - - Options - Innstillinger - OverviewPage + + + Unconfirmed: + Ubekreftet + + + + Your current balance + Din nåværende saldo + + + + Total number of transactions in wallet + Totalt antall transaksjoner i lommeboken + Form @@ -901,129 +954,106 @@ Adresse: %4 Balance: Saldo: - - - 123.456 BTC - 123.456 BTC - - - - Number of transactions: - Antall transaksjoner: - 0 0 - - Unconfirmed: - Ubekreftet - - - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Lommebok</span></p></body></html> + + Wallet + Lommebok - + <b>Recent transactions</b> <b>Siste transaksjoner</b> - - - Your current balance - Din nåværende saldo - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance Totalt antall ubekreftede transaksjoner som ikke telles med i saldo enda - - Total number of transactions in wallet - Totalt antall transaksjoner i lommeboken + + Number of transactions: + Antall transaksjoner: QRCodeDialog - - Dialog - Dialog - - - - QR Code - QR Kode - - - + Request Payment Etterspør Betaling - + Amount: Beløp: - - BTC - BTC - - - + Label: Merkelapp: - - Message: - Melding: + + Error encoding URI into QR Code. + Feil ved koding av URI i QR kode. - + + Save Image... + + + + &Save As... &Lagre Som... - - Save Image... - + + BTC + BTC + + + + Message: + Melding: + + + + Dialog + Dialog + + + + QR Code + QR Kode - + PNG Images (*.png) - + PNG bilder (*.png) + + + + Resulting URI too long, try to reduce the text for label / message. + Resulterende URI for lang, prøv å redusere teksten for merkelapp / melding. SendCoinsDialog - - - - - - - + + + + + + + Send Coins Send Bitcoins @@ -1037,16 +1067,6 @@ p, li { white-space: pre-wrap; } &Add recipient... &Legg til mottaker... - - - Remove all transaction fields - Fjern alle transaksjonsfelter - - - - Clear all - Fjern alle - Balance: @@ -1063,68 +1083,93 @@ p, li { white-space: pre-wrap; } Bekreft sending - - &Send - &Send - - - + <b>%1</b> to %2 (%3) <b>%1</b> til %2 (%3) - - Confirm send coins - Bekreft sending av bitcoins - - - + Are you sure you want to send %1? Er du sikker på at du vil sende %1? - + and og - - The recepient address is not valid, please recheck. - Mottaksadressen er ugyldig, prøv igjen. - - - + The amount to pay must be larger than 0. Beløpen som skal betales må være over 0. - - Amount exceeds your balance - Beløpet overstiger saldoen din + + Clear all + Fjern alle - - Total exceeds your balance when the %1 transaction fee is included - Totalen overgår din saldo når transaksjonsgebyret på %1 tas med + + Remove all transaction fields + Fjern alle transaksjonsfelter - - Duplicate address found, can only send to each address once in one send operation - Duplikate adresser funnet, kan kun sende til hver adresse en gang i hver sendeoperasjon + + &Send + &Send - - Error: Transaction creation failed - Feil: Opprettelse av transaksjon feilet + + Confirm send coins + Bekreft sending av bitcoins - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Feil: Transaksjonen ble avvist. Dette kan skje hvis noen av myntene i lommeboken allerede var brukt, f.eks. hvis du kopierte wallet.dat og mynter ble brukt i kopien uten å bli markert brukt her. + + The recipient address is not valid, please recheck. + Adresse for mottaker er ugyldig. + + + + 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. + + + + Error: Transaction creation failed. + Feil: Opprettelse av transaksjon feilet. + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Feil: Transaksjonen ble avvist. Dette kan skje om noe av beløpet allerede var brukt, f.eks. hvis du kopierte wallet.dat og noen bitcoins ble brukt i kopien men ikke ble markert som brukt her. SendCoinsEntry + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adressen betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Alt+P + Alt+P + + + + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Skriv inn en Bitcoin adresse (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Form @@ -1151,179 +1196,164 @@ p, li { white-space: pre-wrap; } &Label: &Merkelapp: - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adressen betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - - 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 - - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Skriv inn en Bitcoin adresse (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + Choose address from address book + Velg adresse fra adresseboken + + + + Paste address from clipboard + Lim inn adresse fra utklippstavlen TransactionDesc - + + Transaction ID: + Transaksjons-ID: + + + Open for %1 blocks Åpen for %1 blokker - + Open until %1 Åpen til %1 - + %1/offline? %1/frakoblet? - + %1/unconfirmed %1/ubekreftet - + %1 confirmations %1 bekreftelser - + <b>Status:</b> <b>Status:</b> - - , has not been successfully broadcast yet - , har ikke blitt kringkastet uten problemer enda. - - - + , broadcast through %1 node , kringkast gjennom %1 node - + , broadcast through %1 nodes , kringkast gjennom %1 noder - + <b>Date:</b> <b>Dato:</b> - + <b>Source:</b> Generated<br> <b>Kilde:</b> Generert<br> - - + + <b>From:</b> <b>Fra:</b> - + unknown ukjent - - - + + + + <b>Debit:</b> + <b>Debet:</b> + + + + <b>Transaction fee:</b> + <b>Transaksjonsgebyr:</b> + + + + <b>Net amount:</b> + <b>Nettobeløp:</b> + + + + , has not been successfully broadcast yet + , har ikke blitt kringkastet uten problemer enda. + + + + + <b>To:</b> <b>Til:</b> - + (yours, label: (din, merkelapp: - + (yours) (din) - - - - + + + + <b>Credit:</b> <b>Kredit:</b> - + (%1 matures in %2 more blocks) (%1 modnes om %2 flere blokker) - + (not accepted) (ikke akseptert) - - - - <b>Debit:</b> - <b>Debet:</b> - - - - <b>Transaction fee:</b> - <b>Transaksjonsgebyr:</b> - - - - <b>Net amount:</b> - <b>Nettobeløp:</b> - - - + Message: Melding: - + Comment: Kommentar: - - Transaction ID: - Transaksjons-ID: - - - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Genererte mynter må vente 120 blokker før de kan brukes. Da du genererte denne blokken ble den kringkastet på nettverket for å bli lagt til i kjeden av blokker. Hvis den ikke kommer med i kjeden vil den endre seg til "ikke akseptert og pengene vil ikke kunne brukes. Dette vil noen ganger skje hvis en annen node genererer en blokk noen sekunder i tid fra din egen. @@ -1344,208 +1374,244 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Dato - + Type Type - + Address Adresse - + Amount Beløp - - - Open for %n block(s) - Åpen for %n blokkÅpen for %n blokker - - - - Open until %1 - Åpen til %1 - - - - Offline (%1 confirmations) - Frakoblet (%1 bekreftelser) - - + Unconfirmed (%1 of %2 confirmations) Ubekreftet (%1 av %2 bekreftelser) - + Confirmed (%1 confirmations) Bekreftet (%1 bekreftelser) - - - Mined balance will be available in %n more blocks - Utvunnet saldo vil bli tilgjengelig om %n blokkUtvunnet saldo vil bli tilgjengelig om %n blokker - - + 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 - + 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. + + + Open for %n block(s) + + Åpen for %n blokk + Åpen for %n blokker + + + + + Offline (%1 confirmations) + Frakoblet (%1 bekreftelser) + + + + Open until %1 + Åpen til %1 + + + + Mined balance will be available in %n more blocks + + Utvunnet saldo vil bli tilgjengelig om %n blokk + Utvunnet saldo vil bli tilgjengelig om %n blokker + + TransactionView - - - All - Alle + + Sent to + Sendt til - - Today - I dag + + To yourself + Til deg selv - - This week - Denne uken + + Mined + Utvunnet - - This month - Denne måneden + + Other + Andre - - Last month - Forrige måned + + Enter address or label to search + Skriv inn adresse eller merkelapp for søk - - This year - Dette året + + Min amount + Minimumsbeløp - - Range... - Intervall... + + Copy address + Kopier adresse - - Received with - Mottatt med + + Copy label + Kopier merkelapp - - Sent to - Sendt til + + Type + Type - - To yourself - Til deg selv + + Amount + Beløp - - Mined - Utvunnet + + ID + ID - - Other - Andre + + Error exporting + Feil ved eksport - - Enter address or label to search - Skriv inn adresse eller merkelapp for søk + + Could not write to file %1. + Kunne ikke skrive til filen %1. - - Min amount - Minimumsbeløp + + + All + Alle - - Copy address - Kopier adresse + + Range: + Intervall: - - Copy label - Kopier merkelapp + + Today + I dag - - Copy amount - Kopiér beløp + + to + til + + + + This week + Denne uken + + + + This month + Denne måneden + + + + Last month + Forrige måned + + + + This year + Dette året + + + + Range... + Intervall... + + + + Received with + Mottatt med @@ -1553,80 +1619,50 @@ p, li { white-space: pre-wrap; } Rediger merkelapp - - Show details... - Vis detaljer... - - - + Export Transaction Data Eksporter transaksjonsdata - + 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 ved eksport - - - - Could not write to file %1. - Kunne ikke skrive til filen %1. - - - - Range: - Intervall: + + Copy amount + Kopiér beløp - - to - til + + Show details... + Vis detaljer... WalletModel - + Sending... Sender... @@ -1634,347 +1670,495 @@ p, li { white-space: pre-wrap; } bitcoin-core - - Bitcoin version - Bitcoin versjon + + Loading addresses... + Laster adresser... - - Usage: - Bruk: + + Cannot initialize keypool + Kan ikke initialisere nøkkellager - - Send command to -server or bitcoind - Send kommando til -server eller bitcoind + + Cannot write default address + Kan ikke skrive standardadresse - - List commands - List opp kommandoer + + Options: + Innstillinger: - + Get help for a command Vis hjelpetekst for en kommando - - Options: - Innstillinger: + + Set database cache size in megabytes (default: 25) + Sett størrelse på mellomlager for database i megabytes (standardverdi: 25) - - Specify configuration file (default: bitcoin.conf) - Angi konfigurasjonsfil (standardverdi: bitcoin.conf) + + Don't generate coins + Ikke generér bitcoins - - Specify pid file (default: bitcoind.pid) - Angi pid-fil (standardverdi: bitcoind.pid) + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Lytt etter tilkoblinger på <port> (standardverdi: 8333 eller testnet: 18333) - - Generate coins - Generér bitcoins + + Maintain at most <n> connections to peers (default: 125) + Hold maks <n> koblinger åpne til andre noder (standardverdi: 125) - - Don't generate coins - Ikke generér bitcoins + + Add a node to connect to and attempt to keep the connection open + Legg til node for tilkobling og hold forbindelsen åpen - - Start minimized - Start minimert - + + Find peers using internet relay chat (default: 0) + Finn andre noder via internet relay chat (standardverdi: 0) - - Specify data directory - Angi mappe for datafiler + + 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) - - Specify connection timeout (in milliseconds) - Angi tidsavbrudd for forbindelse (i millisekunder) + + Fee per KB to add to transactions you send + Gebyr per KB for transaksjoner du sender - - Connect through socks4 proxy - Koble til gjennom socks4 proxy + + Password for JSON-RPC connections + Passord for JSON-RPC forbindelser - - Allow DNS lookups for addnode and connect - Tillat DNS-oppslag for addnode og connect + + Listen for JSON-RPC connections on <port> (default: 8332) + Lytt etter JSON-RPC tilkoblinger på <port> (standardverdi: 8332) - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Lytt etter tilkoblinger på <port> (standardverdi: 8333 eller testnet: 18333) + + Allow JSON-RPC connections from specified IP address + Tillat JSON-RPC tilkoblinger fra angitt IP-adresse - - Maintain at most <n> connections to peers (default: 125) - Hold maks <n> koblinger åpne til andre noder (standardverdi: 125) + + Send commands to node running on <ip> (default: 127.0.0.1) + Send kommandoer til node på <ip> (standardverdi: 127.0.0.1) - - Add a node to connect to - Legg til node for tilkobling + + Set key pool size to <n> (default: 100) + Angi størrelse på nøkkel-lager til <n> (standardverdi: 100) - - Connect only to the specified node - Koble kun til angitt node + + Rescan the block chain for missing wallet transactions + Se gjennom blokk-kjeden etter manglende lommeboktransaksjoner - - Don't accept connections from outside - Ikke ta imot tilkoblinger fra omverden + + Use OpenSSL (https) for JSON-RPC connections + Bruk OpenSSL (https) for JSON-RPC forbindelser - - Don't bootstrap list of peers using DNS - Ikke lag initiell nodeliste ved hjelp av DNS + + Server certificate file (default: server.cert) + Servers sertifikat (standardverdi: server.cert) - - Threshold for disconnecting misbehaving peers (default: 100) - Grenseverdi for å koble fra noder med dårlig oppførsel (standardverdi: 100) + + Server private key (default: server.pem) + Servers private nøkkel (standardverdi: server.pem) - - 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) + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Akseptable krypteringsmetoder (standardverdi: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maksimum mottaksbuffer per tilkobling, <n>*1000 bytes (standardverdi: 10000) + + This help message + Denne hjelpemeldingen - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maksimum sendebuffer per tilkobling, <n>*1000 bytes (standardverdi: 10000) + + Usage + Bruk - - Don't attempt to use UPnP to map the listening port - Ikke sett opp port vha. UPnP + + Error loading blkindex.dat + Feil ved lasting av blkindex.dat - - Attempt to use UPnP to map the listening port - Sett opp port vha. UPnP + + Error loading wallet.dat + Feil ved lasting av wallet.dat - - Fee per kB to add to transactions you send - Gebyr per kB for transaksjoner du sender + + Cannot downgrade wallet + Kan ikke nedgradere lommebok - + 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 - Gi ut ekstra debuginformasjon - - - + Prepend debug output with timestamp Sett tidsstempel på debugmeldinger - + 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 Send spor/debug informasjon til debugger - - Username for JSON-RPC connections - Brukernavn for JSON-RPC forbindelser + + Invalid -proxy address + Ugyldig -proxy adresse for mellomtjener - - Password for JSON-RPC connections - Passord for JSON-RPC forbindelser + + Invalid amount for -paytxfee=<amount> + Ugyldig gebyrbeløp for -paytxfee=<beløp> - - Listen for JSON-RPC connections on <port> (default: 8332) - Lytt etter JSON-RPC tilkoblinger på <port> (standardverdi: 8332) + + Error: CreateThread(StartNode) failed + Feil: CreateThread(StartNode) feilet - - Allow JSON-RPC connections from specified IP address - Tillat JSON-RPC tilkoblinger fra angitt IP-adresse + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Klarer ikke binde til port %d på denne datamaskinen. Bitcoin kjører sannsynligvis allerede. - - Send commands to node running on <ip> (default: 127.0.0.1) - Send kommandoer til node på <ip> (standardverdi: 127.0.0.1) + + Error loading wallet.dat: Wallet corrupted + Feil ved lasting av wallet.dat: Lommeboken er skadet - - Set key pool size to <n> (default: 100) - Angi størrelse på nøkkel-lager til <n> (standardverdi: 100) + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Feil ved lasting av wallet.dat: Lommeboken krever en nyere versjon av Bitcoin - - Rescan the block chain for missing wallet transactions - Se gjennom blokk-kjeden etter manglende lommeboktransaksjoner + + Wallet needed to be rewritten: restart Bitcoin to complete + Lommeboken måtte skrives om: start Bitcoin på nytt for å fullføre - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL innstillinger: (se Bitcoin Wiki for instruksjoner om SSL oppsett) + + Connect through socks4 proxy + Koble til gjennom socks4 proxy - - Use OpenSSL (https) for JSON-RPC connections - Bruk OpenSSL (https) for JSON-RPC forbindelser + + Allow DNS lookups for addnode and connect + Tillat DNS-oppslag for addnode og connect - - Server certificate file (default: server.cert) - Servers sertifikat (standardverdi: server.cert) + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maksimum mottaksbuffer per tilkobling, <n>*1000 bytes (standardverdi: 10000) - - Server private key (default: server.pem) - Servers private nøkkel (standardverdi: server.pem) + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maksimum sendebuffer per tilkobling, <n>*1000 bytes (standardverdi: 10000) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Akseptable krypteringsmetoder (standardverdi: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Username for JSON-RPC connections + Brukernavn for JSON-RPC forbindelser - - This help message - Denne hjelpemeldingen + + Output extra debugging information + Gi ut ekstra debuginformasjon - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kunne ikke låse datamappen %s. Bitcoin kjører sannsynligvis allerede. + + Bitcoin version + Bitcoin versjon - - Loading addresses... - Laster adresser... + + Run in the background as a daemon and accept commands + Kjør i bakgrunnen som daemon og ta imot kommandoer - - Error loading addr.dat - Feil ved lasting av addr.dat + + Send command to -server or bitcoind + Send kommando til -server eller bitcoind - - Error loading blkindex.dat - Feil ved lasting av blkindex.dat + + Set database disk log size in megabytes (default: 100) + Sett størrelse på disklogg for database i megabytes (standardverdi: 100) - - Error loading wallet.dat: Wallet corrupted - Feil ved lasting av wallet.dat: Lommeboken er skadet + + Specify configuration file (default: bitcoin.conf) + Angi konfigurasjonsfil (standardverdi: bitcoin.conf) - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Feil ved lasting av wallet.dat: Lommeboken krever en nyere versjon av Bitcoin + + Specify connection timeout (in milliseconds) + Angi tidsavbrudd for forbindelse (i millisekunder) + + + + Specify data directory + Angi mappe for datafiler + + + + Specify pid file (default: bitcoind.pid) + Angi pid-fil (standardverdi: bitcoind.pid) - Wallet needed to be rewritten: restart Bitcoin to complete - Lommeboken måtte skrives om: start Bitcoin på nytt for å fullføre + Threshold for disconnecting misbehaving peers (default: 100) + Grenseverdi for å koble fra noder med dårlig oppførsel (standardverdi: 100) - - Error loading wallet.dat - Feil ved lasting av wallet.dat + + Usage: + Bruk: - + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL innstillinger: (se Bitcoin Wiki for instruksjoner om SSL oppsett) + + + + Error loading addr.dat + Feil ved lasting av addr.dat + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kunne ikke låse datamappen %s. Bitcoin kjører sannsynligvis allerede. + + + Loading block index... Laster blokkindeks... - + Loading wallet... Laster lommebok... - + Rescanning... Leser gjennom... - + Done loading Ferdig med lasting - - Invalid -proxy address - Ugyldig -proxy adresse for mellomtjener + + 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 en transaksjon. - - Invalid amount for -paytxfee=<amount> - Ugyldig gebyrbeløp for -paytxfee=<beløp> + + Generate coins + Generér bitcoins + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Advarsel: Vennligst sjekk at dato og klokke er riktig innstilt på datamaskinen. Hvis klokken er feil vil ikke Bitcoin fungere ordentlig. + + + + List commands + List opp kommandoer + + + + Warning: Disk space is low + Advarsel: Lite ledig diskplass + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + %s, du må sette et rpcpassord i konfigurasjonsfilen: + %s +Det anbefales at du bruker følgende tilfeldige passord: +rpcuser=bitcoinrpc +rpcpassword=%s +(du trenger ikke huske dette passordet) +Hvis filen ikke finnes, opprett den med leserettighet kun for eier av filen. + + + + + Start minimized + Start minimert + + + + + Show splash screen on startup (default: 1) + Vis splashskjerm ved oppstart (standardverdi: 1) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Koble fra blokk og adresse databaser. Gir tregere avslutning (standardverdi: 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. + Feil: Transaksjonen ble avvist. Dette kan skje hvis noen av myntene i lommeboken allerede var brukt, f.eks. hvis du kopierte wallet.dat og mynter ble brukt i kopien uten å bli markert brukt her. + + + + Connect only to the specified node + Koble kun til angitt node + + + + Accept connections from outside (default: 1) + Ta imot tilkoblinger fra utsiden (standardverdi: 1) + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Feil: Denne transaksjonen krever et gebyr på minst %s pga. beløpet, kompleksiteten, eller bruk av nylig mottatte midler + + + + Set language, for example "de_DE" (default: system locale) + Sett språk, for eksempel "nb_NO" (standardverdi: fra operativsystem) + + + + Find peers using DNS lookup (default: 1) + Finn andre noder gjennom DNS-oppslag (standardverdi: 1) - 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 en transaksjon. + Use Universal Plug and Play to map the listening port (default: 1) + Bruk UPnP for lytteport (standardverdi: 1) - - Error: CreateThread(StartNode) failed - Feil: CreateThread(StartNode) feilet + + Use Universal Plug and Play to map the listening port (default: 0) + Bruk UPnP for lytteport (standardverdi: 0) - - Warning: Disk space is low - Advarsel: Lite ledig diskplass + + 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. - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Klarer ikke binde til port %d på denne datamaskinen. Bitcoin kjører sannsynligvis allerede. + + 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) - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Advarsel: Vennligst sjekk at dato og klokke er riktig innstilt på datamaskinen. Hvis klokken er feil vil ikke Bitcoin fungere ordentlig. + + Upgrade wallet to latest format + Oppgradér lommebok til nyeste format - - beta - beta + + How many blocks to check at startup (default: 2500, 0 = all) + Hvor mange blokker som skal sjekkes ved oppstart (standardverdi: 2500, 0 = alle) + + + + How thorough the block verification is (0-6, default: 1) + Hvor grundig verifisering av blokker gjøres (0-6, standardverdi: 1) + + + + An error occurred while setting up the RPC port %i for listening: %s + En feil oppstod ved opprettelse av RPC port %i for lytting: %s + + + + Bitcoin + Bitcoin + + + + Error + Feil + + + + Error: Transaction creation failed + Feil: Opprettelse av transaksjon feilet + + + + Error: Wallet locked, unable to create transaction + Feil: Lommebok låst, kan ikke opprette transaksjon + + + + Insufficient funds + Utilstrekkelige midler + + + + Invalid amount + Ugyldig beløp + + + + Sending... + Sender... + + + + To use the %s option + For å bruke %s opsjonen - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index 7425d21563..f7969acaf4 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -14,7 +16,7 @@ <b>Bitcoin</b> versie - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -73,11 +75,6 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Show &QR Code Toon &QR-Code - - - Sign a message to prove you own this address - Onderteken een bericht om te bewijzen dat u dit adres bezit - &Sign Message @@ -88,48 +85,53 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Delete the currently selected address from the list. Only sending addresses can be deleted. Verwijder het huidige geselecteerde adres van de lijst. Alleen zend-adressen kunnen verwijderd worden, niet uw ontvangstadressen. + + + Error exporting + Fout bij exporteren + + + + Sign a message to prove you own this address + Onderteken een bericht om te bewijzen dat u dit adres bezit + &Delete &Verwijder - + Copy address Kopieer adres - + Copy label Kopieer label - + Edit Bewerk - + Delete Verwijder - + Export Address Book Data Exporteer Gegevens van het Adresboek - + Comma separated file (*.csv) Kommagescheiden bestand (*.csv) - - Error exporting - Fout bij exporteren - - - + Could not write to file %1. Kon niet schrijven naar bestand %1. @@ -137,59 +139,58 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d AddressTableModel - + + (no label) + (geen label) + + + Label Label - + Address Adres - - - (no label) - (geen label) - AskPassphraseDialog + + + New passphrase + Nieuwe wachtwoord + Dialog Dialoog - - - TextLabel - TekstLabel - - - + Enter passphrase Huidig wachtwoord - - New passphrase - Nieuwe wachtwoord - - - + Repeat new passphrase Herhaal wachtwoord - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Vul een nieuw wachtwoord in voor uw portemonnee. <br/> Gebruik een wachtwoord van <b>10 of meer lukrake karakters</b>, of <b> acht of meer woorden</b> . - Encrypt wallet Versleutel portemonnee + + + Wallet passphrase was successfully changed. + Portemonneewachtwoord is met succes gewijzigd. + + + + TextLabel + TekstLabel + This operation needs your wallet passphrase to unlock the wallet. @@ -220,35 +221,6 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d 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 BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - WAARSCHUWING: Wanneer uw portemonnee wordt versleuteld en u verliest uw wachtwoord, dan verliest u<b>AL UW BITCOINS</b>! -Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? - - - - - Wallet encrypted - Portemonnee versleuteld - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. - - - - - Warning: The Caps Lock key is on. - Waarschuwing: De Caps-Lock-toets staat aan. - @@ -262,16 +234,16 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Portemonneeversleuteling mislukt door een interne fout, Uw portemonnee is niet versleuteld. + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. + The supplied passphrases do not match. - Het opgegeven wachtwoord is niet correct - - - - Wallet unlock failed - Portemonnee openen mislukt + De opgegeven wachtwoorden komen niet overeen @@ -286,286 +258,256 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Portemonnee-ontsleuteling mislukt - - Wallet passphrase was succesfully changed. - Portemonneewachtwoord is succesvol gewijzigd + + + Warning: The Caps Lock key is on. + Waarschuwing: De Caps-Lock-toets staat aan. - - - BitcoinGUI - - Bitcoin Wallet - Bitcoin-portemonnee + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + WAARSCHUWING: Wanneer uw portemonnee wordt versleuteld en u verliest uw wachtwoord, dan verliest u<b>AL UW BITCOINS</b>! +Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? - - - Synchronizing with network... - Synchroniseren met netwerk... + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Vul een nieuw wachtwoord in voor uw portemonnee. <br/> Gebruik een wachtwoord van <b>10 of meer lukrake karakters</b>, of <b> acht of meer woorden</b> . + + + + Confirm wallet encryption + Bevestig versleuteling van de portemonnee - - Block chain synchronization in progress - Bezig met blokkenketen-synchronisatie + + + Wallet encrypted + Portemonnee versleuteld - - &Overview - &Overzicht + + Wallet unlock failed + Portemonnee openen mislukt + + + BitcoinGUI - - Show general overview of wallet - Toon algemeen overzicht van de portemonnee + + &Overview + &Overzicht - + &Transactions &Transacties - - Browse transaction history - Blader door transactieverleden + + Change the passphrase used for wallet encryption + wijzig het wachtwoord voor uw portemonneversleuteling - - &Address Book - &Adresboek + + Send coins to a bitcoin address + Verstuur munten naar een bitcoin-adres - - Edit the list of stored addresses and labels - Bewerk de lijst van opgeslagen adressen en labels + + E&xit + &Afsluiten - - &Receive coins - &Ontvang munten + + &Change Passphrase + &Wijzig Wachtwoord - - Show the list of addresses for receiving payments - Toon lijst van adressen om betalingen mee te ontvangen + + Sending... + Versturen... - - &Send coins - &Verstuur munten + + About &Qt + Over &Qt - - Send coins to a bitcoin address - Verstuur munten naar een bitcoin-adres + + Bitcoin Wallet + Bitcoin-portemonnee - - Sign &message - &Onderteken Bericht + + Synchronizing with network... + Synchroniseren met netwerk... - - Prove you control an address - Bewijs dat u een adres bezit + + Show general overview of wallet + Toon algemeen overzicht van de portemonnee - - E&xit - &Afsluiten + + Browse transaction history + Blader door transactieverleden - - Quit application - Programma afsluiten + + Show the list of addresses for receiving payments + Toon lijst van adressen om betalingen mee te ontvangen - - &About %1 - &Over %1 + + &Address Book + &Adresboek - - Show information about Bitcoin - Laat informatie zien over Bitcoin + + Edit the list of stored addresses and labels + Bewerk de lijst van opgeslagen adressen en labels - - About &Qt - Over &Qt + + &Receive coins + &Ontvang munten - - Show information about Qt - Toon informatie over Qt + + Quit application + Programma afsluiten - - &Options... - &Opties... + + Show information about Qt + Toon informatie over Qt - - Modify configuration options for bitcoin - Wijzig instellingen van Bitcoin + + Show information about Bitcoin + Laat informatie zien over Bitcoin - - Open &Bitcoin - Open &Bitcoin + + &Options... + O&pties... - - Show the Bitcoin window - Toon Bitcoin-venster + + Tabs toolbar + Tab-werkbalk - + &Export... &Exporteer... - + Export the data in the current tab to a file Exporteer de data in de huidige tab naar een bestand - - &Encrypt Wallet - &Versleutel Portemonnee - - - - Encrypt or decrypt wallet - Versleutel of ontsleutel 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 - - - + &File &Bestand - + &Settings &Instellingen - - &Help - &Hulp - - - - Tabs toolbar - Tab-werkbalk - - - - Actions toolbar - Actie-werkbalk - - - + [testnet] [testnetwerk] - - bitcoin-qt - bitcoin-qt - - - - %n active connection(s) to Bitcoin network - %n actieve connectie naar Bitcoinnetwerk%n actieve connecties naar Bitcoinnetwerk - - - - Downloaded %1 of %2 blocks of transaction history. - %1 van %2 blokken van transactiehistorie opgehaald. - - - + Downloaded %1 blocks of transaction history. %1 blokken van transactiehistorie opgehaald. - + %n second(s) ago - %n seconde geleden%n seconden geleden + + %n seconde geleden + %n seconden geleden + - + %n minute(s) ago - %n minuut geleden%n minuten geleden + + %n minuut geleden + %n minuten geleden + - + %n hour(s) ago - %n uur geleden%n uur geleden + + %n uur geleden + %n uur geleden + - + %n day(s) ago - %n dag geleden%n dagen geleden + + %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 %1 gegenereerd. - + + &About %1 + &Over %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? Deze transactie overschrijdt de groottelimiet. Om de transactie alsnog te versturen kunt u transactiekosten betalen van %1. Deze transactiekosten gaan naar de nodes die uw transactie verwerken en het helpt op deze manier bij het ondersteunen van het netwerk. Wilt u de transactiekosten betalen? - - Sending... - Versturen... + + Modify configuration options for bitcoin + Wijzig instellingen van Bitcoin - + Sent transaction Verzonden transactie - + Incoming transaction Binnenkomende transactie - + Date: %1 Amount: %2 Type: %3 @@ -578,52 +520,143 @@ Adres: %4 - + + &Encrypt Wallet + &Versleutel Portemonnee + + + + &Send coins + &Verstuur munten + + + + Sign &message + &Onderteken Bericht + + + + Prove you control an address + Bewijs dat u een adres bezit + + + + Show/Hide &Bitcoin + &Toon/Verberg Bitcoin + + + + Encrypt or decrypt wallet + Versleutel of ontsleutel portemonnee + + + + &Backup Wallet + Backup &Portemonnee + + + + bitcoin-qt + bitcoin-qt + + + 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-data (*.dat) - + Backup Failed Backup Mislukt - + There was an error trying to save the wallet data to the new location. Er is een fout opgetreden bij het wegschrijven van de portemonnee-data naar de nieuwe locatie. + + + Show or hide the Bitcoin window + Toon of verberg Bitcoin venster + + + + &Help + &Hulp + + + + Actions toolbar + Actie-werkbalk + + + + Bitcoin client + Bitcoin client + + + + %n active connection(s) to Bitcoin network + + %n actieve connectie naar Bitcoinnetwerk + %n actieve connecties naar Bitcoinnetwerk + + + + + ~%n block(s) remaining + + ~%n blok resterend + ~%n blokken resterend + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + %1 van %2 blokken van transactiehistorie opgehaald (%3% klaar). + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Er is een fatale fout opgetreden. Bitcoin kan niet meer veilig doorgaan en zal nu afgesloten worden. + DisplayOptionsPage - + &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 - - Display addresses in transaction list - Toon adressen in uw transactielijst + + &Display addresses in transaction list + &Toon adressen in uw transactielijst + + + + Whether to show Bitcoin addresses in the transaction list + Of Bitcoinadressen getoond worden in de transactielijst @@ -651,7 +684,7 @@ Adres: %4 The address associated with this address book entry. This can only be modified for sending addresses. - Het adres dat geassocieerd is met deze adresboek-opgave. Dit kan alleen worden veranderd voor zend-adressen. + Het adres dat geassocieerd is met deze inschrijving in het adresboek. Dit kan alleen worden veranderd voor zend-adressen. @@ -678,11 +711,6 @@ Adres: %4 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 bitcoin address. - Het opgegeven adres "%1" is een ongeldig bitcoinadres - Could not unlock wallet. @@ -693,93 +721,103 @@ Adres: %4 New key generation failed. Genereren nieuwe sleutel mislukt. + + + The entered address "%1" is not a valid bitcoin address. + Het opgegeven adres "%1" is een ongeldig bitcoinadres + MainOptionsPage - + &Start Bitcoin on window system startup Start &Bitcoin wanneer het systeem opstart - + Automatically start Bitcoin after the computer is turned on Start Bitcoin automatisch wanneer de computer wordt aangezet - + &Minimize to the tray instead of the taskbar &Minimaliseer naar het systeemvak in plaats van de taakbalk - + Show only a tray icon after minimizing the window Laat alleen een systeemvak-icoon zien wanneer het venster geminimaliseerd is - + Map port using &UPnP Portmapping via &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Open de Bitcoin-poort automatisch op de router. Dit werkt alleen als de router UPnP ondersteunt. - + M&inimize on close Minimaliseer bij &sluiten van het venster - + 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. - + &Connect through SOCKS4 proxy: &Verbind via SOCKS4 proxy: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Verbind met het Bitcoin-netwerk door een SOCKS4 proxy (bijv. wanneer Tor gebruikt wordt) - + 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. 1234) Poort waarop de proxy luistert (bijv. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Optionele transactiekosten per kB die helpen om uw transacties snel te verwerken. De meeste transacties zijn 1 kB. Transactiekosten van 0,01 wordt aangeraden - - Pay transaction &fee - Betaal &transactiekosten + + Detach databases at shutdown + Ontkoppel databases bij afsluiten - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Optionele transactiekosten per kB die helpen om uw transacties snel te verwerken. De meeste transacties zijn 1 kB. Transactiekosten van 0,01 wordt aangeraden + + 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. + Ontkoppel blok- en adresdatabases bij afsluiten. Dit betekent dat ze verplaatst kunnen worden naar een andere map, maar het vertraagt het afsluiten. De portemonnee wordt altijd ontkoppeld. + + + + Pay transaction &fee + Betaal &transactiekosten @@ -794,10 +832,25 @@ Adres: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. 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 voor de gek kunnen houden om zo uw identiteit te stelen. Onderteken alleen berichten waarmee u het volledig eens bent. + + + Private key for %1 is not available. + Geheime sleutel voor %1 is niet beschikbaar. + + + + Sign failed + Ondertekenen mislukt + + + + Click "Sign Message" to get signature + Klik "Onderteken Bericht" om de handtekening te verkrijgen + - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Het adres waaraan u wilt betalen (bijv. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Het adres om het bericht mee te ondertekenen (Vb.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -824,11 +877,6 @@ Adres: %4 Enter the message you want to sign here Typ hier het bericht dat u wilt ondertekenen - - - Click "Sign Message" to get signature - Klik "Onderteken Bericht" om de handtekening te verkrijgen - Sign a message to prove you own this address @@ -841,8 +889,8 @@ Adres: %4 - Copy the currently selected address to the system clipboard - Kopieer het huidig geselecteerde adres naar het klembord + Copy the current signature to the system clipboard + Kopieer de huidige handtekening naar het systeemklembord @@ -861,34 +909,24 @@ Adres: %4 %1 is not a valid address. %1 is geen geldig adres. - - - Private key for %1 is not available. - Geheime sleutel voor %1 is niet beschikbaar. - - - - Sign failed - Ondertekenen mislukt - OptionsDialog - - Main - Algemeen - - - + Display Beeldscherm - + Options Opties + + + Main + Algemeen + OverviewPage @@ -897,53 +935,30 @@ Adres: %4 Form Vorm - - - Balance: - Saldo: - - - - 123.456 BTC - 123.456 BTC - - - - Number of transactions: - Aantal transacties: - 0 0 - - Unconfirmed: - Onbevestigd: + + Wallet + Portemonnee - - 0 BTC - 0 BTC + + Balance: + Saldo: - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Portemonnee</span></p></body></html> + + Unconfirmed: + Onbevestigd: - - <b>Recent transactions</b> - <b>Recente transacties</b> + + Number of transactions: + Aantal transacties: @@ -953,16 +968,51 @@ p, li { white-space: pre-wrap; } Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Totaal aantal transacties dat nog moet worden bevestigd, en nog niet is meegeteld in uw huidige saldo + Totaal van de transacties die nog moeten worden bevestigd en nog niet zijn meegeteld in uw huidige saldo Total number of transactions in wallet Totaal aantal transacties in uw portemonnee + + + <b>Recent transactions</b> + <b>Recente transacties</b> + QRCodeDialog + + + Request Payment + Vraag betaling aan + + + + PNG Images (*.png) + PNG-Afbeeldingen (*.png) + + + + Message: + Bericht: + + + + Error encoding URI into QR Code. + Fout tijdens encoderen URI in QR-code + + + + &Save As... + &Opslaan Als... + + + + Save Image... + Afbeelding Opslaan... + Dialog @@ -974,57 +1024,37 @@ p, li { white-space: pre-wrap; } QR-code - - Request Payment - Vraag betaling aan - - - + Amount: Bedrag: - - BTC - BTC - - - + Label: Label: - - Message: - Bericht: - - - - &Save As... - &Opslaan Als... - - - - Save Image... - Afbeelding Opslaan... + + BTC + BTC - - PNG Images (*.png) - PNG-Afbeeldingen (*.png) + + 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. SendCoinsDialog - - - - - - - + + + + + + + Send Coins Verstuur munten @@ -1033,26 +1063,11 @@ p, li { white-space: pre-wrap; } Send to multiple recipients at once Verstuur aan verschillende ontvangers ineens - - - &Add recipient... - Voeg &ontvanger toe... - Remove all transaction fields Verwijder alle transactievelden - - - Clear all - Verwijder alles - - - - Balance: - Saldo: - 123.456 BTC @@ -1069,63 +1084,83 @@ p, li { white-space: pre-wrap; } &Verstuur - + <b>%1</b> to %2 (%3) <b>%1</b> aan %2 (%3) - + Confirm send coins Bevestig versturen munten - - Are you sure you want to send %1? - Weet u zeker dat u %1 wil versturen? + + &Add recipient... + Voeg &ontvanger toe... - - and - en - + + Clear all + Verwijder alles + - - The recepient address is not valid, please recheck. - Het ontvangstadres is niet geldig, controleer uw opgave. + + Balance: + Saldo: - + + Are you sure you want to send %1? + Weet u zeker dat u %1 wil versturen? + + + + 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 gedrag moet groter zijn dan 0. - - Amount exceeds your balance - Bedrag overschrijdt uw huidige saldo + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Fout: De transactie was afgewezen. Dit kan gebeuren als u eerder uitgegeven munten opnieuw wilt versturen, zoals wanneer u een kopie van uw portemonneebestand (wallet.dat) heeft gebruikt en in de kopie deze munten zijn uitgegeven, maar in de huidige portemonnee deze nog niet als zodanig zijn gemarkeerd. - - Total exceeds your balance when the %1 transaction fee is included - Totaal overschrijdt uw huidige saldo wanneer de %1 transactiekosten worden meegerekend + + The amount exceeds your balance. + Bedrag is hoger dan uw huidige saldo - - Duplicate address found, can only send to each address once in one send operation - Dubbel adres gevonden, u kunt slechts eenmaal naar een bepaald adres verzenden per verstuurtransactie + + The total exceeds your balance when the %1 transaction fee is included. + Totaal overschrijdt uw huidige saldo wanneer de %1 transactiekosten worden meegerekend - - Error: Transaction creation failed - Fout: Aanmaak transactie mislukt + + 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: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Fout: De transactie was afgewezen. Dit kan gebeuren als u eerder uitgegeven munten opnieuw wilt versturen, zoals wanneer u een kopie van uw wallet.dat heeft gebruikt en in de kopie deze munten zijn gemarkeerd als uitgegeven, maar in de huidige nog niet. + + Error: Transaction creation failed. + Fout: Aanmaak transactie mislukt SendCoinsEntry + + + Remove this recipient + Verwijder deze ontvanger + Form @@ -1141,22 +1176,11 @@ p, li { white-space: pre-wrap; } 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Het adres waaraan u wilt betalen (bijv. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose address from address book @@ -1167,6 +1191,17 @@ p, li { white-space: pre-wrap; } Alt+A Alt+A + + + + 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 + + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Het adres waaraan u wilt betalen (bijv. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Paste address from clipboard @@ -1177,11 +1212,6 @@ p, li { white-space: pre-wrap; } Alt+P Alt+P - - - Remove this recipient - Verwijder deze ontvanger - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1191,140 +1221,140 @@ p, li { white-space: pre-wrap; } TransactionDesc - + Open for %1 blocks Openen voor %1 blokken - - Open until %1 - Openen totdat %1 - - - + %1/offline? %1/niet verbonden? - - %1/unconfirmed - %1/onbevestigd - - - - %1 confirmations - %1 bevestigingen - - - + <b>Status:</b> <b>Status:</b> - - , has not been successfully broadcast yet - , is nog niet succesvol uitgezonden - - - + , broadcast through %1 node , uitgezonden naar %1 node - + , broadcast through %1 nodes , uitgezonden naar %1 nodes - + <b>Date:</b> <b>Datum:</b> - + <b>Source:</b> Generated<br> <b>Bron:</b>Gegenereerd<br> - - + + <b>From:</b> - <b>Van:</b> - - - - unknown - onbekend + <b>Van:</b> - - - + + + <b>To:</b> - <b> Aan:</b> + <b>Aan:</b> - + (yours, label: (Uw adres, label: - + (yours) (uw) - - - - + + Open until %1 + Openen totdat %1 + + + + %1/unconfirmed + %1/onbevestigd + + + + %1 confirmations + %1 bevestigingen + + + + , has not been successfully broadcast yet + , is nog niet met succes uitgezonden + + + + unknown + onbekend + + + + + + <b>Credit:</b> <b>Bij:</b> - + (%1 matures in %2 more blocks) (%1 komt beschikbaar na %2 blokken) - + (not accepted) (niet geaccepteerd) - - - + + + <b>Debit:</b> - <b>Af:</b> + <b>Af:</b> - + <b>Transaction fee:</b> <b>Transactiekosten:</b> - + <b>Net amount:</b> <b>Netto bedrag:</b> - + Message: Bericht: - + Comment: Opmerking: - + Transaction ID: Transactie-ID: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Gegeneerde munten moeten 120 blokken wachten voor ze kunnen worden uitgegeven. Uw net gegenereerde blok is uitgezonden aan het netwerk om te worden toegevoegd aan de blokkenketen. Als het niet wordt geaccepteerd in de keten, zal het blok als "ongeldig" worden aangemerkt en kan het niet worden uitgegeven. Dit kan soms gebeuren als een andere node net iets sneller een blok heeft gegenereerd; een paar seconden voor het uwe. @@ -1345,184 +1375,129 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Datum - + Type Type - + Address Adres - + Amount Bedrag - + Open for %n block(s) - Open gedurende %n blokOpen gedurende %n blokken + + Open gedurende %n blok + Open gedurende %n blokken + - + Open until %1 Open tot %1 - + Offline (%1 confirmations) Niet verbonden (%1 bevestigingen) - + Unconfirmed (%1 of %2 confirmations) Onbevestigd (%1 van %2 bevestigd) - + Confirmed (%1 confirmations) Bevestigd (%1 bevestigingen) - - - Mined balance will be available in %n more blocks - Ontgonnen saldo komt beschikbaar na %n blokOntgonnen saldo komt beschikbaar na %n blokken - - + 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 Ontgonnen - + (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 + + + Mined balance will be available in %n more blocks + + Ontgonnen saldo komt beschikbaar na %n blok + Ontgonnen saldo komt beschikbaar na %n blokken + + 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 - Ontgonnen - - - - Other - Anders - Enter address or label to search @@ -1539,9 +1514,9 @@ p, li { white-space: pre-wrap; } Kopieer adres - - Copy label - Kopieer label + + This month + Deze maand @@ -1554,325 +1529,582 @@ p, li { white-space: pre-wrap; } Bewerk label - - Show details... - Toon details... - - - + Export Transaction Data Exporteer transactiegegevens - + 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. Kon niet schrijven naar bestand %1. - + Range: Bereik: - + to naar - - - WalletModel - - Sending... - Versturen... + + Today + Vandaag - - - bitcoin-core - - Bitcoin version - Bitcoinversie + + This week + Deze week - - Usage: - Gebruik: + + This year + Dit jaar - - Send command to -server or bitcoind - Stuur commando naar -server of bitcoind - + + Range... + Bereik... - - List commands - List van commando's - + + Received with + Ontvangen met - - Get help for a command - Toon hulp voor een commando - + + Sent to + Verzonden aan - - Options: - Opties: + + To yourself + Aan uzelf + + + + Mined + Ontgonnen + + + + Other + Anders + + + + Copy label + Kopieer label + + + + Show details... + Toon details... + + + + Label + Label + + + + + All + Alles + + + + Last month + Vorige maand + + + + WalletModel + + + Sending... + Versturen... + + + + bitcoin-core + + + Usage: + Gebruik: + + + + Loading addresses... + Adressen aan het laden... + + + + Loading wallet... + Portemonnee aan het laden... + + + + Cannot initialize keypool + Kan sleutel-pool niet initialiseren + + + + Cannot write default address + Kan standaard adres niet schrijven + + + + List commands + List van commando's - + Specify configuration file (default: bitcoin.conf) Specifieer configuratiebestand (standaard: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Specifieer pid-bestand (standaard: bitcoind.pid) - + + Specify data directory + Stel datamap in + + + + Generate coins Genereer munten - - Don't generate coins - Genereer geen munten + + Specify connection timeout (in milliseconds) + Specificeer de time-out tijd (in milliseconden) - - Start minimized - Geminimaliseerd starten - + + Add a node to connect to and attempt to keep the connection open + Voeg een knooppunt om te verbinden toe en probeer de verbinding open te houden - - Specify data directory - Stel datamap in - + + Set database cache size in megabytes (default: 25) + Stel databankcachegrootte in in megabytes (standaard: 25) - - Specify connection timeout (in milliseconds) - Specificeer de time-out tijd (in milliseconden) - + + Find peers using internet relay chat (default: 0) + Vind anderen door middel van Internet Relay Chat (standaard: 0) - - Connect through socks4 proxy - Verbind via socks4 proxy + + Cannot downgrade wallet + Kan portemonnee niet downgraden + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Aantal seconden dat zich misdragende peers niet opnieuw mogen verbinden (standaard: 86400) + + + + Accept command line and JSON-RPC commands + Aanvaard commandoregel en JSON-RPC commando's - - Allow DNS lookups for addnode and connect - Sta DNS-naslag toe voor addnode en connect + + Fee per KB to add to transactions you send + Kosten per KB om aan transacties toe te voegen die u verstuurt + + + + 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 + + + + 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. + + + + Error: CreateThread(StartNode) failed + Fout: CreateThread(StartNode) is mislukt + + + + Password for JSON-RPC connections + Wachtwoord voor JSON-RPC verbindingen - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Luister voor verbindingen op <poort> (standaard: 8333 of testnet: 18333) + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Waarschuwing: Controleer dat de datum en tijd op uw computer correct zijn ingesteld. Als uw klok fout staat zal Bitcoin niet correct werken. - - Maintain at most <n> connections to peers (default: 125) - Onderhoud maximaal <n> verbindingen naar peers (standaard: 125) + + Send trace/debug info to debugger + Stuur trace/debug-info naar debugger - - Add a node to connect to - Voeg een node toe om mee te verbinden + + Allow JSON-RPC connections from specified IP address + Sta JSON-RPC verbindingen van opgegeven IP adres toe - - Connect only to the specified node - Verbind alleen met deze node + + 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) + + + + Use OpenSSL (https) for JSON-RPC connections + Gebruik OpenSSL (https) voor JSON-RPC verbindingen - - Don't accept connections from outside - Sta geen verbindingen van buitenaf toe + + Server private key (default: server.pem) + Geheime sleutel voor server (standaard: server.pem) - - Don't bootstrap list of peers using DNS - Gebruik geen DNS om de lijst met peers op te starten + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Aanvaardbare ciphers (standaard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Threshold for disconnecting misbehaving peers (default: 100) - Drempel om verbinding te verbreken naar zich misdragende peers (standaard: 100) + + How thorough the block verification is (0-6, default: 1) + De grondigheid van de blokverificatie (0-6, standaard: 1) - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Aantal seconden dat zich misdragende peers niet opnieuw mogen verbinden (standaard: 86400) + + Use the test network + Gebruik het testnetwerk + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maximale ontvangstbuffer per connectie, <n>*1000 bytes (standaard: 10000) + + Error loading wallet.dat: Wallet corrupted + Fout bij laden wallet.dat: Portemonnee corrupt + + + + Error loading wallet.dat + Fout bij laden wallet.dat + + + + Threshold for disconnecting misbehaving peers (default: 100) + Drempel om verbinding te verbreken naar zich misdragende peers (standaard: 100) - + + Maintain at most <n> connections to peers (default: 125) + Onderhoud maximaal <n> verbindingen naar peers (standaard: 125) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Maximale zendbuffer per connectie, <n>*1000 bytes (standaard: 10000) - - Don't attempt to use UPnP to map the listening port - Probeer geen UPnP te gebruiken om de poort waarop geluisterd wordt te mappen + + Error loading addr.dat + Fout bij laden addr.dat + + + + Bitcoin version + Bitcoinversie + + + + Usage + Gebruik + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kan geen lock op de datamap %s verkrijgen. Bitcoin draait vermoedelijk reeds. + + + + Loading block index... + Blokindex aan het laden... + + + + Rescanning... + Opnieuw aan het scannen ... + + + + Done loading + Klaar met laden + + + + Invalid -proxy address + Foutief -proxy adres + + + + Invalid amount for -paytxfee=<amount> + Ongeldig bedrag voor -paytxfee=<bedrag> + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Kan niet binden aan poort %d op deze computer. Bitcoin draait vermoedelijk reeds. + + + + Warning: Disk space is low + Waarschuwing: Weinig schijfruimte over + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + %s, u moet een rpcpassword instellen in het configuratiebestand: + %s +Het wordt aangeraden het volgende willekeurige wachtwoord te gebruiken: +rpcuser=bitcoinrpc +rpcpassword=%s +(U hoeft het wachtwoord niet te onthouden) +Als het bestand niet bestaat, maak het aan met een alleen-lezen-permissie. - - Attempt to use UPnP to map the listening port - Probeer UPnP te gebruiken om de poort waarop geluisterd wordt te mappen + + Send command to -server or bitcoind + Stuur commando naar -server of bitcoind - - Fee per kB to add to transactions you send - Transactiekosten per kB om toe te voegen aan transacties die u verzendt + + Get help for a command + Toon hulp voor een commando + - - Accept command line and JSON-RPC commands - Aanvaard commandoregel en JSON-RPC commando's + + Options: + Opties: - - Run in the background as a daemon and accept commands - Draai in de achtergrond als daemon en aanvaard commando's + + Don't generate coins + Genereer geen munten - - Use the test network - Gebruik het testnetwerk + + Start minimized + Geminimaliseerd starten - - Output extra debugging information - Toon extra debuggingsinformatie + + Show splash screen on startup (default: 1) + Laat laadscherm zien bij het opstarten. (standaard: 1) - - Prepend debug output with timestamp - Voorzie de debuggingsuitvoer van een tijdsaanduiding + + Connect through socks4 proxy + Verbind via socks4 proxy + - - 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 + + Allow DNS lookups for addnode and connect + Sta DNS-naslag toe voor addnode en connect + - - Send trace/debug info to debugger - Stuur trace/debug-info naar debugger + + Detach block and address databases. Increases shutdown time (default: 0) + Ontkoppel blok- en adresdatabases. Verhoogt afsluittijd (standaard: 0) - - Username for JSON-RPC connections - Gebruikersnaam voor JSON-RPC verbindingen + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Luister voor verbindingen op <poort> (standaard: 8333 of testnet: 18333) + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Fout: De transactie was afgewezen. Dit kan gebeuren als u eerder uitgegeven munten opnieuw wilt versturen, zoals wanneer u een kopie van uw wallet.dat heeft gebruikt en in de kopie deze munten zijn gemarkeerd als uitgegeven, maar in de huidige nog niet. + + + + Connect only to the specified node + Verbind alleen met deze node - - Password for JSON-RPC connections - Wachtwoord voor JSON-RPC verbindingen + + Accept connections from outside (default: 1) + Accepteer verbindingen van buitenaf (standaard: 1) + + + + 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 heeft transactiekosten nodig van tenminste %s, vanwege zijn grootte, ingewikkeldheid, of het gebruik van onlangs ontvangen munten + + + + Set language, for example "de_DE" (default: system locale) + Stel taal in, bijvoorbeeld ''de_DE" (standaard: systeeminstellingen) + + + + Find peers using DNS lookup (default: 1) + Vind andere nodes d.m.v. DNS-naslag (standaard: 1) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maximale ontvangstbuffer per connectie, <n>*1000 bytes (standaard: 10000) + + + + Use Universal Plug and Play to map the listening port (default: 1) + Gebruik UPnP om de luisterende poort te mappen (standaard: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Gebruik UPnP om de luisterende poort te mappen (standaard: 0) + + + + Run in the background as a daemon and accept commands + Draai in de achtergrond als daemon en aanvaard commando's - - Listen for JSON-RPC connections on <port> (default: 8332) - Luister voor JSON-RPC verbindingen op <poort> (standaard: 8332) + + Output extra debugging information + Toon extra debuggingsinformatie + + + + Prepend debug output with timestamp + Voorzie de debuggingsuitvoer van een tijdsaanduiding + + + + Username for JSON-RPC connections + Gebruikersnaam voor JSON-RPC verbindingen - - Allow JSON-RPC connections from specified IP address - Sta JSON-RPC verbindingen van opgegeven IP adres toe + + Listen for JSON-RPC connections on <port> (default: 8332) + Luister voor JSON-RPC verbindingen op <poort> (standaard: 8332) - + 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) - + + 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. + + + + 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 blokkenketen op ontbrekende portemonnee-transacties - + + How many blocks to check at startup (default: 2500, 0 = all) + Het aantal blokken na te kijken bij opstarten (standaard: 2500, 0=alle) + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1880,133 +2112,81 @@ SSL opties: (zie de Bitcoin wiki voor SSL instructies) - - Use OpenSSL (https) for JSON-RPC connections - Gebruik OpenSSL (https) voor JSON-RPC verbindingen - + + An error occurred while setting up the RPC port %i for listening: %s + Er is een fout opgetreden tijdens het opzetten van de inkomende RPC-poort %i: %s - + 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 ciphers (standaard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Bitcoin + Bitcoin - + This help message Dit helpbericht - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kan geen lock op de gegevensdirectory %s verkrijgen. Bitcoin draait vermoedelijk reeds. - - - - Loading addresses... - Adressen aan het laden... - - - - Error loading addr.dat - Fout bij laden addr.dat - - - + Error loading blkindex.dat Fout bij laden blkindex.dat - - Error loading wallet.dat: Wallet corrupted - Fout bij laden wallet.dat: Portemonnee corrupt - - - + Error loading wallet.dat: Wallet requires newer version of Bitcoin Fout bij laden wallet.dat: Portemonnee vereist een nieuwere versie van Bitcoin - + Wallet needed to be rewritten: restart Bitcoin to complete Portemonnee moest herschreven worden: Herstart Bitcoin om te voltooien - - Error loading wallet.dat - Fout bij laden wallet.dat - - - - Loading block index... - Blokindex aan het laden... - - - - Loading wallet... - Portemonnee aan het laden... - - - - Rescanning... - Opnieuw aan het scannen ... - - - - Done loading - Klaar met laden - - - - Invalid -proxy address - Foutief -proxy adres + + Error + Fout - - Invalid amount for -paytxfee=<amount> - Ongeldig bedrag voor -paytxfee=<bedrag> + + Error: Transaction creation failed + Fout: Aanmaak transactie mislukt - - 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. + + Error: Wallet locked, unable to create transaction + Fout: Portemonnee gesloten, transactie maken niet mogelijk - - Error: CreateThread(StartNode) failed - Fout: CreateThread(StartNode) is mislukt + + Insufficient funds + Ontoereikend saldo - - Warning: Disk space is low - Waarschuwing: Weinig schijfruimte over + + Invalid amount + Ongeldig aantal - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Kan niet binden aan poort %d op deze computer. Bitcoin draait vermoedelijk reeds. + + Sending... + Aan het versturen... - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Waarschuwing: Controleer dat de datum en tijd op uw computer correct zijn ingesteld. Als uw klok fout staat zal Bitcoin niet correct werken. + + Set database disk log size in megabytes (default: 100) + Stel databankloggrootte in in megabytes (standaard: 100) - - beta - beta + + To use the %s option + Om de %s optie te gebruiken - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_pl.ts b/src/qt/locale/bitcoin_pl.ts index af42dc0249..f26b062786 100644 --- a/src/qt/locale/bitcoin_pl.ts +++ b/src/qt/locale/bitcoin_pl.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ Wersja <b>Bitcoin</b> - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -40,7 +42,7 @@ www.transifex.net/projects/p/bitcoin/ Address Book - Adresy + Książka Adresowa @@ -98,42 +100,42 @@ www.transifex.net/projects/p/bitcoin/ &Usuń - + Copy address Kopiuj adres - + Copy label Kopiuj etykietę - + Edit Edytuj - + Delete Usuń - + Export Address Book Data Eksportuj książkę adresową - + Comma separated file (*.csv) - CSV (rozdzielany przecinkami) + Plik *.CSV (rozdzielany przecinkami) - + Error exporting Błąd podczas eksportowania - + Could not write to file %1. Błąd zapisu do pliku %1. @@ -141,17 +143,17 @@ www.transifex.net/projects/p/bitcoin/ AddressTableModel - + Label Etykieta - + Address Adres - + (no label) (bez etykiety) @@ -159,31 +161,25 @@ www.transifex.net/projects/p/bitcoin/ AskPassphraseDialog - - Dialog - Dialog - - - - - TextLabel - TekstEtykiety - - - + Enter passphrase Wpisz hasło - + New passphrase Nowe hasło - + Repeat new passphrase Powtórz nowe hasło + + + Dialog + Dialog + 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>. @@ -204,6 +200,11 @@ www.transifex.net/projects/p/bitcoin/ Unlock wallet Odblokuj portfel + + + TextLabel + TekstEtykiety + This operation needs your wallet passphrase to decrypt the wallet. @@ -245,13 +246,7 @@ Czy na pewno chcesz zaszyfrować swój portfel? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - - Warning: The Caps Lock key is on. - Ostrzeżenie: Caps Lock jest włączony. + Program Bitcoin zamknie się aby dokończyć proces szyfrowania. Pamiętaj, że szyfrowanie portfela nie zabezpiecza w pełni Twoich bitcoinów przed kradzieżą przez wirusy lub trojany mogące zainfekować Twój komputer. @@ -284,292 +279,292 @@ Czy na pewno chcesz zaszyfrować swój portfel? The passphrase entered for the wallet decryption was incorrect. Wprowadzone hasło do odszyfrowania portfela jest niepoprawne. + + + Wallet passphrase was successfully changed. + Hasło portfela zostało pomyślnie zmienione. + + + + + Warning: The Caps Lock key is on. + Ostrzeżenie: Caps Lock jest włączony. + Wallet decryption failed Odszyfrowywanie portfela nie powiodło się - - - Wallet passphrase was succesfully changed. - Hasło do portfela zostało pomyślnie zmienione. - BitcoinGUI - - Bitcoin Wallet - Portfel Bitcoin + + About &Qt + O &Qt - - + Synchronizing with network... Synchronizacja z siecią... - - Block chain synchronization in progress - Synchronizacja bloku łańcucha w toku. + + Edit the list of stored addresses and labels + Edytuj listę zapisanych adresów i i etykiet - - &Overview - P&odsumowanie + + &Receive coins + Odbie&rz monety - + Show general overview of wallet Pokazuje ogólny zarys portfela - - &Transactions - &Transakcje + + Catching up... + Łapanie bloków... - + Browse transaction history Przeglądaj historię transakcji - + &Address Book Książka &adresowa - - Edit the list of stored addresses and labels - Edytuj listę zapisanych adresów i i etykiet + + Show information about Qt + Pokazuje informacje o Qt - - - &Receive coins - Odbie&rz monety + + + %n second(s) ago + + %n sekundę temu + %n sekundy temu + %n sekund temu + - - - Show the list of addresses for receiving payments - Pokaż listę adresów do otrzymywania płatności + + + %n hour(s) ago + + %n godzinę temu + %n godziny temu + %n godzin temu + - - &Send coins - Wy&syłka monet + + Incoming transaction + Transakcja przychodząca - - Send coins to a bitcoin address - Wyślij monety na adres bitcoin + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Portfel jest <b>zaszyfrowany</b> i obecnie <b>niezablokowany</b> - - Sign &message - Podpisz wiado&mość + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Portfel jest <b>zaszyfrowany</b> i obecnie <b>zablokowany</b> - - Prove you control an address - Udowodnij, że kontrolujesz adres + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Pobrano %1 z %2 bloków historii transakcji(%3% ukończono). - - E&xit - &Zakończ + + Up to date + Aktualny - - Quit application - Zamknij program + + 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? + Transakcja przekracza limit. Możesz wysłać ją płacąc prowizję %1, która zostaje przekazana do węzłów, które ją prześlą i pomoże wspierać sieć Bitcoin. Czy chcesz zapłacić prowizję? - - &About %1 - &O %1 + + &Send coins + Wy&syłka monet - - Show information about Bitcoin - Pokaż informację o Bitcoin + + &Settings + P&referencje - - About &Qt - O &Qt + + &Transactions + &Transakcje - - Show information about Qt - Pokazuje informacje o Qt + + Bitcoin Wallet + Portfel Bitcoin - - &Options... - &Opcje... + + &Overview + P&odsumowanie - - Modify configuration options for bitcoin - Zmienia opcje konfiguracji bitcoina + + Send coins to a bitcoin address + Wyślij monety na adres bitcoin - - Open &Bitcoin - Otwórz &Bitcoin + + Sign &message + Podpisz wiado&mość - - Show the Bitcoin window - Pokaż okno Bitcoin + + Prove you control an address + Udowodnij, że kontrolujesz adres - - &Export... - &Eksportuj... + + Show information about Bitcoin + Pokaż informację o Bitcoin - + Export the data in the current tab to a file - + Eksportuj dane z aktywnej karty do pliku - + &Encrypt Wallet Zaszyfruj portf&el - - Encrypt or decrypt wallet - Zaszyfruj lub odszyfruj portfel - - - + &Backup Wallet - + &Backup portfel - + Backup wallet to another location - + Zapasowy portfel w innej lokalizacji - + &Change Passphrase Zmień h&asło - + Change the passphrase used for wallet encryption Zmień hasło użyte do szyfrowania portfela - - &File - &Plik + + Show or hide the Bitcoin window + Pokaż lub ukryj okno Bitcoin - - &Settings - P&referencje + + Actions toolbar + Pasek akcji - - &Help - Pomo&c + + Last received block was generated %1. + Ostatnio otrzymany blok została wygenerowany %1. - - Tabs toolbar - Pasek zakładek + + E&xit + &Zakończ - - Actions toolbar - Pasek akcji + + Quit application + Zamknij program - + [testnet] [testnet] - - - bitcoin-qt - bitcoin-qt - - + %n active connection(s) to Bitcoin network - %n aktywne połączenie do sieci Bitcoin%n aktywne połączenia do sieci Bitcoin%n aktywnych połączeń do sieci Bitcoin - - - - Downloaded %1 of %2 blocks of transaction history. - Pobrano %1 z %2 bloków z historią transakcji. - - - - Downloaded %1 blocks of transaction history. - Pobrano %1 bloków z historią transakcji. - - - - %n second(s) ago - %n sekundę temu%n sekundy temu%n sekund temu + + %n aktywne połączenie do sieci Bitcoin + %n aktywne połączenia do sieci Bitcoin + %n aktywnych połączeń do sieci Bitcoin + - + %n minute(s) ago - %n minutę temu%n minuty temu%n minut temu - - - - %n hour(s) ago - %n godzinę temu%n godziny temu%n godzin temu + + %n minutę temu + %n minuty temu + %n minut temu + - - - %n day(s) ago - %n dzień temu%n dni temu%n dni temu + + + Show/Hide &Bitcoin + Pokaż/Ukryj &Bitcoin - - Up to date - Aktualny + + &Export... + &Eksportuj... - - Catching up... - Łapanie bloków... + + Sent transaction + Transakcja wysłana - - Last received block was generated %1. - Ostatnio otrzymany blok została wygenerowany %1. + + &Help + Pomo&c - - 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? - + + Tabs toolbar + Pasek zakładek - - Sending... - Wysyłanie... + + Bitcoin client + Bitcoin klient - - Sent transaction - Transakcja wysłana + + bitcoin-qt + bitcoin-qt - - Incoming transaction - Transakcja przychodząca + + &About %1 + &O %1 + + + + ~%n block(s) remaining + + + + + - + Date: %1 Amount: %2 Type: %3 @@ -582,59 +577,108 @@ 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> - - - + Backup Wallet - + Kopia Zapasowa Portfela - + Wallet Data (*.dat) - + Dane Portfela (*.dat) - + Backup Failed - + Kopia Zapasowa Nie Została Wykonana - + There was an error trying to save the wallet data to the new location. - + Wystąpił błąd podczas próby zapisu portfela do nowej lokalizacji. + + + + Modify configuration options for bitcoin + Zmienia opcje konfiguracji bitcoina + + + + Encrypt or decrypt wallet + Zaszyfruj lub odszyfruj portfel + + + + Show the list of addresses for receiving payments + Pokaż listę adresów do otrzymywania płatności + + + + &File + &Plik + + + + &Options... + &Opcje... + + + + %n day(s) ago + + %n dzień temu + %n dni temu + %n dni temu + + + + + Downloaded %1 blocks of transaction history. + Pobrano %1 bloków z historią transakcji. + + + + Sending... + Wysyłanie... + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Błąd krytyczny. Bitcoin nie może kontynuować bezpiecznie więc zostanie zamknięty. DisplayOptionsPage - + &Unit to show amounts in: &Jednostka pokazywana przy kwocie: - + Choose the default subdivision unit to show in the interface, and when sending coins Wybierz podział jednostki pokazywany w interfejsie oraz podczas wysyłania monet - - Display addresses in transaction list - Wyświetlaj adresy w liście transakcji + + &Display addresses in transaction list + &Wyświetlaj adresy w liście transakcji + + + + Whether to show Bitcoin addresses in the transaction list + EditAddressDialog - - Edit Address + + Edit sending address + Edytuj adres wysyłania + + + + Edit Address Edytuj adres @@ -672,11 +716,6 @@ Adres: %4 Edit receiving address Edytuj adres odbioru - - - Edit sending address - Edytuj adres wysyłania - The entered address "%1" is already in the address book. @@ -701,87 +740,92 @@ Adres: %4 MainOptionsPage - + &Start Bitcoin on window system startup Uruchom Bitcoin wraz ze &startem systemu okien - + Automatically start Bitcoin after the computer is turned on Automatyczne uruchamia Bitcoin po włączeniu komputera - + &Minimize to the tray instead of the taskbar &Minimalizuj do paska przy zegarku zamiast do paska zadań - + Show only a tray icon after minimizing the window Pokazuje tylko ikonę przy zegarku po zminimalizowaniu okna - + Map port using &UPnP Mapuj port używając &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Automatycznie otwiera port klienta Bitcoin na routerze. Ta opcja dzieła tylko jeśli twój router wspiera UPnP i jest ono włączone. - + M&inimize on close M&inimalizuj przy zamykaniu - + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimalizuje zamiast zakończyć działanie programu przy zamykaniu okna. Kiedy ta opcja jest włączona, program zakończy działanie po wybieraniu Zamknij w menu. - + &Connect through SOCKS4 proxy: Połącz przez proxy SO&CKS4: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Łączy się z siecią Bitcoin przez proxy SOCKS4 (np. kiedy łączysz się przez Tor) - + Proxy &IP: Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) Adres IP serwera proxy (np. 127.0.0.1) - + &Port: &Port: - + Port of the proxy (e.g. 1234) Port proxy (np. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Opcjonalna prowizja za transakcje za kB, wspomaga ona szybkość przebiegu transakcji. Większość transakcji jest 1 kB. Zalecana prowizja 0.01 . - - - + Pay transaction &fee Płać prowizję za t&ransakcje - + + Detach databases at shutdown + + + + + 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. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Opcjonalna prowizja za transakcje za kB, wspomaga ona szybkość przebiegu transakcji. Większość transakcji jest 1 kB. Zalecana prowizja 0.01 . @@ -796,12 +840,12 @@ Adres: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + Możesz podpisywać wiadomości swoimi adresami aby udowodnić, że jesteś ich właścicielem. Uważaj, aby nie podpisywać niczego co wzbudza Twoje podejrzenia, ponieważ ktoś może stosować phishing próbując nakłonić Cię do ich podpisania. Akceptuj i podpisuj tylko w pełni zrozumiałe komunikaty i wiadomości. - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adres do wysłania należności do (np. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Wprowadź adres Bitcoin (np. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -845,8 +889,8 @@ Adres: %4 - Copy the currently selected address to the system clipboard - Skopiuj aktualnie wybrany adres do schowka + Copy the current signature to the system clipboard + Kopiuje aktualny podpis do schowka systemowego @@ -879,23 +923,28 @@ Adres: %4 OptionsDialog - + Main Główny - + Display Wyświetlanie - + Options Opcje OverviewPage + + + Unconfirmed: + Niepotwierdzony: + Form @@ -906,11 +955,6 @@ Adres: %4 Balance: Saldo: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -922,30 +966,7 @@ Adres: %4 0 - - Unconfirmed: - Niepotwierdzony: - - - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Portfel</span></p></body></html> - - - + <b>Recent transactions</b> <b>Ostatnie transakcje</b> @@ -964,71 +985,86 @@ p, li { white-space: pre-wrap; } Total number of transactions in wallet Całkowita liczba transakcji w portfelu + + + Wallet + Portfel + QRCodeDialog - - Dialog - Dialog + + Error encoding URI into QR Code. + Błąd kodowania URI w Kodzie QR. - - QR Code - Kod QR + + Save Image... + + + + + Resulting URI too long, try to reduce the text for label / message. + Wynikowy URI jest zbyt długi, spróbuj zmniejszyć tekst etykiety / wiadomości + + + + PNG Images (*.png) + Obraz PNG (*.png) - + Request Payment Prośba o płatność - + Amount: Kwota: - - BTC - BTC - - - + Label: Etykieta: - + Message: Wiadomość: - + &Save As... Zapi&sz jako... - - Save Image... - + + Dialog + Dialog - - PNG Images (*.png) - + + QR Code + Kod QR + + + + BTC + BTC SendCoinsDialog - - - - - - - + + + + + + + Send Coins Wyślij płatność @@ -1038,9 +1074,14 @@ p, li { white-space: pre-wrap; } Wyślij do wielu odbiorców na raz - - &Add recipient... - Dod&aj odbiorcę... + + Confirm the send action + Potwierdź akcję wysyłania + + + + &Send + Wy&syłka @@ -1063,69 +1104,64 @@ p, li { white-space: pre-wrap; } 123.456 BTC - - Confirm the send action - Potwierdź akcję wysyłania - - - - &Send - Wy&syłka - - - + <b>%1</b> to %2 (%3) <b>%1</b> do %2 (%3) - + Confirm send coins Potwierdź wysyłanie monet - + + and + i + + + Are you sure you want to send %1? Czy na pewno chcesz wysłać %1? - - and - i + + The recipient address is not valid, please recheck. + Adres odbiorcy jest nieprawidłowy, proszę poprawić - - The recepient address is not valid, please recheck. - Adres odbiorcy jest niepoprawny, proszę go sprawdzić. + + The amount to pay must be larger than 0. + Kwota do zapłacenia musi być większa od 0. - - The amount to pay must be larger than 0. - Kwota do zapłacenie musi być większa od 0. + + The amount exceeds your balance. + Kwota przekracza twoje saldo. - - 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. - - 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. - - Duplicate address found, can only send to each address once in one send operation - Znaleziono powtórzony adres, można wysłać tylko raz na adres, w jednej operacji wysyłania + + Error: Transaction creation failed. + Błąd: Tworzenie transakcji nie powiodło się. - - Error: Transaction creation failed - Błąd: Tworzenie transakcji nie powiodło się + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Błąd: transakcja została odrzucona. Może się to zdarzyć, gdy monety z Twojego portfela zostały już wydane, na przykład gdy używałeś kopii wallet.dat i bitcoiny które tam wydałeś nie zostały jeszcze odjęte z portfela z którego teraz korzystasz. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - + + &Add recipient... + Dod&aj odbiorcę... @@ -1195,142 +1231,142 @@ p, li { white-space: pre-wrap; } TransactionDesc - - Open for %1 blocks - Otwórz dla %1 bloków + + %1 confirmations + %1 potwierdzeń - - Open until %1 - Otwórz do %1 + + <b>Date:</b> + <b>Data:</b> - - %1/offline? - %1/offline? + + <b>Source:</b> Generated<br> + <b>Źródło:</b> Wygenerowano<br> - - %1/unconfirmed - %1/niezatwierdzone + + + <b>From:</b> + <b>Od:</b> - - %1 confirmations - %1 potwierdzeń + + unknown + nieznany - - <b>Status:</b> - <b>Status:</b> + + (yours, label: + (twoje, etykieta: - - , has not been successfully broadcast yet - , nie został jeszcze pomyślnie wyemitowany + + (yours) + (twoje) - - , broadcast through %1 node - , emitowany przez %1 węzeł + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Wygenerowane monety muszą zaczekać 120 bloków zanim będzie można je wydać. Kiedy wygenerowałeś ten blok, został on wyemitowany do sieci, aby dodać go do łańcucha bloków. Jeśli to się nie powiedzie nie zostanie on zaakceptowany i wygenerowanych monet nie będzie można wysyłać. Może się to czasami zdarzyć jeśli inny węzeł wygeneruje blok tuż przed tobą. - - , broadcast through %1 nodes - , emitowany przez %1 węzły + + Open until %1 + Otwórz do %1 - - <b>Date:</b> - <b>Data:</b> + + Open for %1 blocks + Otwórz dla %1 bloków - - <b>Source:</b> Generated<br> - <b>Źródło:</b> Wygenerowano<br> + + %1/unconfirmed + %1/niezatwierdzone - - - <b>From:</b> - <b>Od:</b> + + %1/offline? + %1/offline? - - unknown - nieznany + + <b>Status:</b> + <b>Status:</b> - - - - <b>To:</b> - <b>Do:</b> + + , broadcast through %1 node + , emitowany przez %1 węzeł - - (yours, label: - (twoje, etykieta: + + , broadcast through %1 nodes + , emitowany przez %1 węzły - - (yours) - (twoje) + + + + <b>To:</b> + <b>Do:</b> - - - - + + + + <b>Credit:</b> <b>Przypisy:</b> - + (%1 matures in %2 more blocks) - + - + (not accepted) (niezaakceptowane) - - - + + + <b>Debit:</b> <b>Debet:</b> - + <b>Transaction fee:</b> <b>Prowizja transakcyjna:</b> - + <b>Net amount:</b> <b>Kwota netto:</b> - + Message: Wiadomość: - + Comment: Komentarz: - + Transaction ID: ID transakcji: - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Wygenerowane monety muszą zaczekać 120 bloków zanim będzie można je wydać. Kiedy wygenerowałeś ten blok, został on wyemitowany do sieci, aby dodać go do łańcucha bloków. Jeśli to się nie powiedzie nie zostanie on zaakceptowany i wygenerowanych monet nie będzie można wysyłać. Może się to czasami zdarzyć jeśli inny węzeł wygeneruje blok tuż przed tobą. + + , has not been successfully broadcast yet + , nie został jeszcze pomyślnie wyemitowany @@ -1349,117 +1385,125 @@ p, li { white-space: pre-wrap; } TransactionTableModel - - Date - Data - - - + Type Typ - + + Date + Data + + + Address Adres - + Amount Kwota - + Open for %n block(s) - Otwórz dla %n blokuOtwórz dla %n blokówOtwórz dla %n bloków + + Otwórz dla %n bloku + Otwórz dla %n bloków + Otwórz dla %n bloków + - + Open until %1 Otwórz do %1 - + Offline (%1 confirmations) Offline (%1 potwierdzeń) - + Unconfirmed (%1 of %2 confirmations) Niezatwierdzony (%1 z %2 potwierdzeń) - + Confirmed (%1 confirmations) Zatwierdzony (%1 potwierdzeń) - + Mined balance will be available in %n more blocks - Wydobyta kwota będzie dostępna za %n blokWydobyta kwota będzie dostępna za %n blokówWydobyta kwota będzie dostępna za %n bloki + + Wydobyta kwota będzie dostępna za %n blok + Wydobyta kwota będzie dostępna za %n bloków + Wydobyta kwota będzie dostępna za %n bloki + - + This block was not received by any other nodes and will probably not be accepted! Ten blok nie został odebrany przez jakikolwiek inny węzeł i prawdopodobnie nie zostanie zaakceptowany! - + Generated but not accepted Wygenerowano ale nie zaakceptowano - + Received with Otrzymane przez - + Received from Odebrano od - + Sent to Wysłano do - + Payment to yourself Płatność do siebie - + Mined Wydobyto - + (n/a) (brak) - + Transaction status. Hover over this field to show number of confirmations. Status transakcji. Najedź na pole, aby zobaczyć liczbę potwierdzeń. - + Date and time that the transaction was received. Data i czas odebrania transakcji. - + Type of transaction. Rodzaj transakcji. - + Destination address of transaction. Adres docelowy transakcji. - + Amount removed from or added to balance. Kwota usunięta z lub dodana do konta. @@ -1467,45 +1511,9 @@ p, li { white-space: pre-wrap; } 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 + + Received with + Otrzymane przez @@ -1532,11 +1540,6 @@ p, li { white-space: pre-wrap; } Enter address or label to search Wprowadź adres albo etykietę żeby wyszukać - - - Min amount - Min suma - Copy address @@ -1547,438 +1550,619 @@ p, li { white-space: pre-wrap; } Copy label Kopiuj etykietę - - - Copy amount - Kopiuj kwotę - Edit label Edytuj etykietę - - Show details... - Pokaż szczegóły... - - - + Export Transaction Data Eksportuj Dane Transakcyjne - + 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 podczas eksportowania - + Could not write to file %1. Błąd zapisu do pliku %1. - + Range: Zakres: - + to do - - - WalletModel - - Sending... - Wysyłanie... + + Min amount + Min suma - - - bitcoin-core - - Bitcoin version - Wersja Bitcoin + + Type + Typ - - Usage: - Użycie: + + + All + Wszystko - - Send command to -server or bitcoind - Wyślij polecenie do -server lub bitcoind + + Today + Dzisiaj - - List commands - Lista poleceń + + This week + W tym tygodniu - - Get help for a command - Uzyskaj pomoc do polecenia + + This month + W tym miesiącu - - Options: - Opcje: + + Last month + W zeszłym miesiącu - - Specify configuration file (default: bitcoin.conf) - Wskaż plik konfiguracyjny (domyślnie: bitcoin.conf) + + This year + W tym roku - - Specify pid file (default: bitcoind.pid) - Wskaż plik pid (domyślnie: bitcoin.pid) + + Range... + Zakres... - - Generate coins - Generuj monety + + Copy amount + Kopiuj kwotę - - Don't generate coins - Nie generuj monet + + Show details... + Pokaż szczegóły... + + + WalletModel - - Start minimized - Uruchom zminimalizowany + + Sending... + Wysyłanie... + + + + bitcoin-core + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Nie można zablokować folderu danych %s. Bitcoin prawdopodobnie już działa. - + Specify data directory Wskaż folder danych - + Specify connection timeout (in milliseconds) Wskaż czas oczekiwania bezczynności połączenia (w milisekundach) - - Connect through socks4 proxy - Łączy przez proxy socks4 - - - - Allow DNS lookups for addnode and connect - - - - + Listen for connections on <port> (default: 8333 or testnet: 18333) Nasłuchuj połączeń na <port> (domyślnie: 8333 lub testnet: 18333) - + 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 - Dodaj węzeł do łączenia się - - - - Connect only to the specified node - Łącz tylko do wskazanego węzła + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Aceptowalne szyfry (domyślnie: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Don't accept connections from outside - Nie akceptuj połączeń zewnętrznych + + Use OpenSSL (https) for JSON-RPC connections + Użyj OpenSSL (https) do połączeń JSON-RPC - - Don't bootstrap list of peers using DNS - + + Server certificate file (default: server.cert) + Plik certyfikatu serwera (domyślnie: server.cert) - - Threshold for disconnecting misbehaving peers (default: 100) - + + Server private key (default: server.pem) + Klucz prywatny serwera (domyślnie: server.pem) - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + + This help message + Ta wiadomość pomocy - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maksymalny bufor odbioru na połączenie, <n>*1000 bajtów (domyślnie: 10000) + + Loading addresses... + Wczytywanie adresów... - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maksymalny bufor wysyłu na połączenie, <n>*1000 bajtów (domyślnie: 10000) + + Error loading blkindex.dat + Błąd ładownia blkindex.dat - - Don't attempt to use UPnP to map the listening port - Nie próbuj używać UPnP do mapowania portu nasłuchu + + Error loading wallet.dat: Wallet corrupted + Błąd ładowania wallet.dat: Uszkodzony portfel - - Attempt to use UPnP to map the listening port - Próbuj używać UPnP do mapowania portu nasłuchu + + Upgrade wallet to latest format + Zaktualizuj portfel do najnowszego formatu. - - Fee per kB to add to transactions you send - Prowizja za kB dodawana do wysyłanej transakcji + + Allow JSON-RPC connections from specified IP address + Przyjmuj połączenia JSON-RPC ze wskazanego adresu IP - + 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 - + + Username for JSON-RPC connections + Nazwa użytkownika dla połączeń JSON-RPC - - Prepend debug output with timestamp - + + Password for JSON-RPC connections + Hasło do połączeń JSON-RPC - - Send trace/debug info to console instead of debug.log file - + + Listen for JSON-RPC connections on <port> (default: 8332) + Nasłuchuj połączeń JSON-RPC na <port> (domyślnie: 8332) - - Send trace/debug info to debugger - + + 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) - - Username for JSON-RPC connections - Nazwa użytkownika dla połączeń JSON-RPC + + Set key pool size to <n> (default: 100) + Ustaw rozmiar puli kluczy na <n> (domyślnie: 100) - - Password for JSON-RPC connections - Hasło do połączeń JSON-RPC + + Rescan the block chain for missing wallet transactions + Przeskanuj blok łańcuchów żeby znaleźć zaginione transakcje portfela + + + + Loading block index... + Ładowanie indeksu bloku... + + + + Loading wallet... + Wczytywanie portfela... + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Portfel wymaga przepisania: zrestartuj Bitcoina żeby ukończyć + + + + Error loading wallet.dat + Błąd ładowania wallet.dat + + + + Rescanning... + Ponowne skanowanie... + + + + Done loading + Wczytywanie zakończone - Listen for JSON-RPC connections on <port> (default: 8332) - Nasłuchuj połączeń JSON-RPC na <port> (domyślnie: 8332) + Usage: + Użycie: + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Transakcja przekracza limit. Możesz wysłać ją płacąc prowizję %1, która zostaje przekazana do węzłów, które ją prześlą i pomoże wspierać sieć Bitcoin. Czy chcesz zapłacić prowizję? + + + + Error: Transaction creation failed + Błąd: Tworzenie transakcji nie powiodło się + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +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. + + + + + Bitcoin version + Wersja Bitcoin - Allow JSON-RPC connections from specified IP address - Przyjmuj połączenia JSON-RPC ze wskazanego adresu IP + Send command to -server or bitcoind + Wyślij polecenie do -server lub bitcoind - 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) + List commands + Lista poleceń - Set key pool size to <n> (default: 100) - Ustaw rozmiar puli kluczy na <n> (domyślnie: 100) + Get help for a command + Uzyskaj pomoc do polecenia - Rescan the block chain for missing wallet transactions - Przeskanuj blok łańcuchów żeby znaleźć zaginione transakcje portfela + Options: + Opcje: - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -opcje SSL: (sprawdź Bitcoin Wiki dla instrukcje konfiguracji SSL) + Specify configuration file (default: bitcoin.conf) + Wskaż plik konfiguracyjny (domyślnie: bitcoin.conf) + + + + Specify pid file (default: bitcoind.pid) + Wskaż plik pid (domyślnie: bitcoin.pid) + + + + Generate coins + Generuj monety - Use OpenSSL (https) for JSON-RPC connections - Użyj OpenSSL (https) do połączeń JSON-RPC + Don't generate coins + Nie generuj monet - Server certificate file (default: server.cert) - Plik certyfikatu serwera (domyślnie: server.cert) + Start minimized + Uruchom zminimalizowany - Server private key (default: server.pem) - Klucz prywatny serwera (domyślnie: server.pem) + Show splash screen on startup (default: 1) + Pokazuj okno powitalne przy starcie (domyślnie: 1) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Aceptowalne szyfry (domyślnie: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Connect through socks4 proxy + Łączy przez proxy socks4 - - This help message - Ta wiadomość pomocy + + Allow DNS lookups for addnode and connect + - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Nie można zablokować folderu danych %s. Bitcoin prawdopodobnie już działa. + + Connect only to the specified node + Łącz tylko do wskazanego węzła - - Loading addresses... - Wczytywanie adresów... + + Find peers using DNS lookup (default: 1) + - - Error loading addr.dat - Błąd ładowania addr.dat + + Threshold for disconnecting misbehaving peers (default: 100) + - - Error loading blkindex.dat - Błąd ładownia blkindex.dat + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Error loading wallet.dat: Wallet corrupted - Błąd ładowania wallet.dat: Uszkodzony portfel + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maksymalny bufor odbioru na połączenie, <n>*1000 bajtów (domyślnie: 10000) - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Błąd ładowania wallet.dat: Portfel wymaga nowszej wersji Bitcoin + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maksymalny bufor wysyłu na połączenie, <n>*1000 bajtów (domyślnie: 10000) - - Wallet needed to be rewritten: restart Bitcoin to complete - Portfel wymaga przepisania: zrestartuj Bitcoina żeby ukończyć + + Detach block and address databases. Increases shutdown time (default: 0) + - - Error loading wallet.dat - Błąd ładowania wallet.dat + + Output extra debugging information + - - Loading block index... - Ładowanie indeksu bloku... + + Prepend debug output with timestamp + - - Loading wallet... - Wczytywanie portfela... + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Rescanning... - Ponowne skanowanie... + + How thorough the block verification is (0-6, default: 1) + - - Done loading - Wczytywanie zakończone + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +opcje SSL: (sprawdź Bitcoin Wiki dla instrukcje konfiguracji SSL) - + + Usage + Użycie + + + + Error loading addr.dat + Błąd ładowania addr.dat + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + Invalid -proxy address Nieprawidłowy adres -proxy - + Invalid amount for -paytxfee=<amount> Nieprawidłowa kwota dla -paytxfee=<amount> - + 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. - + Error: CreateThread(StartNode) failed Błąd: CreateThread(StartNode) nie powiodło się - - Warning: Disk space is low - Ostrzeżenie: kończy się miejsce na dysku - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. Nie można przywiązać portu %d na tym komputerze. Bitcoin prawdopodobnie już działa. - + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Ostrzeżenie: Proszę sprawdzić poprawność czasu i daty na tym komputerze. Jeśli czas jest zły Bitcoin może nie działać prawidłowo. + + + An error occurred while setting up the RPC port %i for listening: %s + Wystąpił błąd podczas ustawiania portu RPC %i w tryb nasłuchu: %s + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Błąd ładowania wallet.dat: Portfel wymaga nowszej wersji Bitcoin + + + + Send trace/debug info to console instead of debug.log file + Wyślij informację/raport do konsoli zamiast do pliku debug.log. + - beta - beta + Send trace/debug info to debugger + Wyślij informację/raport do debuggera. + + + + Bitcoin + Bitcoin + + + + How many blocks to check at startup (default: 2500, 0 = all) + Ile bloków sprawdzać przy uruchomieniu (domyślnie: 2500, 0 = wszystkie) + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Błąd: transakcja została odrzucona. Może się to zdarzyć, gdy monety z Twojego portfela zostały już wydane, na przykład gdy używałeś kopii wallet.dat i bitcoiny które tam wydałeś nie zostały jeszcze odjęte z portfela z którego teraz korzystasz. + + + + Set database cache size in megabytes (default: 25) + Ustaw rozmiar w megabajtach cache-u bazy danych (domyślnie: 25) + + + + Error: Wallet locked, unable to create transaction + Błąd: Zablokowany portfel, nie można utworzyć transakcji + + + + Set database disk log size in megabytes (default: 100) + Ustaw rozmiar w megabajtach logu dyskowego bazy danych (domyślnie: 100) + + + + Insufficient funds + Niewystarczające środki + + + + Invalid amount + Nieprawidłowa kwota + + + + Sending... + Wysyłanie... + + + + Cannot downgrade wallet + Nie można dezaktualizować portfela + + + + Fee per KB to add to transactions you send + + + + + + Find peers using internet relay chat (default: 0) + Znajdź peery używające IRC (domyślnie: 0) + + + + To use the %s option + Aby użyć opcji %s + + + + Error + Błąd + + + + 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 + + + + Accept connections from outside (default: 1) + Akceptuj połączenia z zewnątrz (domyślnie: 1) + + + + Set language, for example "de_DE" (default: system locale) + Ustaw Język, na przykład "pl_PL" (domyślnie: systemowy) + + + + Use Universal Plug and Play to map the listening port (default: 1) + Używaj UPnP do mapowania portu nasłuchu (domyślnie: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Używaj UPnP do mapowania portu nasłuchu (domyślnie: 0) + + + + Warning: Disk space is low + Uwaga: Mało miejsca na dysku - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index 69568f4a94..2ad6a845a5 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> versão - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -46,6 +48,11 @@ This product includes software developed by the OpenSSL Project for use in the O Create a new address Criar um novo endereço + + + Comma separated file (*.csv) + Arquivo separado por vírgulas (*. csv) + &New Address... @@ -64,17 +71,17 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code - + Mostrar &QR Code Sign a message to prove you own this address - + &Sign Message - + &Assinar Mensagem @@ -84,66 +91,61 @@ This product includes software developed by the OpenSSL Project for use in the O &Delete - &amp; Excluir + &Excluir - + Copy address Copy address - + Copy label Copy label - + Edit - + Editar - + Delete - - - - - Export Address Book Data - Exportação de dados do Catálogo de Endereços + Excluir - - Comma separated file (*.csv) - Arquivo separado por vírgulas (*. csv) - - - + Error exporting Erro ao exportar - + Could not write to file %1. Could not write to file %1. + + + Export Address Book Data + Exportação de dados do Catálogo de Endereços + AddressTableModel - - Label - Rótulo - - - + Address Endereço - + (no label) (Sem rótulo) + + + Label + Rótulo + AskPassphraseDialog @@ -153,71 +155,46 @@ This product includes software developed by the OpenSSL Project for use in the O Diálogo - - - TextLabel - TextoDoRótulo + + New passphrase + Nova frase de segurança - + Enter passphrase Digite a frase de segurança - - New passphrase - Nova frase de segurança - - - + Repeat new passphrase Repita a nova frase de segurança - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Digite a nova frase de seguraça da sua carteira. <br/> Por favor, use uma frase de <b>10 ou mais caracteres aleatórios,</b> ou <b>oito ou mais palavras.</b> - - - - Encrypt wallet - Criptografar carteira - - - - This operation needs your wallet passphrase to unlock the wallet. - Esta operação precisa de sua frase de segurança para desbloquear a carteira. + + TextLabel + TextoDoRótulo - - Unlock wallet - Desbloquear carteira + + + The supplied passphrases do not match. + A frase de segurança fornecida não confere. - - This operation needs your wallet passphrase to decrypt the wallet. - Esta operação precisa de sua frase de segurança para descriptografar a carteira. + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + A criptografia da carteira falhou devido a um erro interno. Sua carteira não estava criptografada. Decrypt wallet Descriptografar carteira - - - Change passphrase - Alterar frase de segurança - Enter the old and new passphrase to the wallet. Digite a frase de segurança antiga e nova para a carteira. - - - Confirm wallet encryption - Confirmar criptografia da carteira - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! @@ -225,21 +202,30 @@ Are you sure you wish to encrypt your wallet? AVISO: Se você criptografar sua carteira e perder sua senha, você vai <b>perder todos os seus BITCOINS!</b> Tem certeza de que deseja criptografar sua carteira? - - - Wallet encrypted - Carteira criptografada + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Digite a nova frase de seguraça da sua carteira. <br/> Por favor, use uma frase de <b>10 ou mais caracteres aleatórios,</b> ou <b>oito ou mais palavras.</b> - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + + Change passphrase + Alterar frase de segurança - - - Warning: The Caps Lock key is on. - + + This operation needs your wallet passphrase to decrypt the wallet. + Esta operação precisa de sua frase de segurança para descriptografar a carteira. + + + + Encrypt wallet + Criptografar carteira + + + + + Wallet encrypted + Carteira criptografada @@ -249,17 +235,6 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed A criptografia da carteira falhou - - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - A criptografia da carteira falhou devido a um erro interno. Sua carteira não estava criptografada. - - - - - The supplied passphrases do not match. - A frase de segurança fornecida não confere. - Wallet unlock failed @@ -279,285 +254,338 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. A frase de segurança da carteira foi alterada com êxito. - - - BitcoinGUI - - Bitcoin Wallet - Carteira Bitcoin + + + Warning: The Caps Lock key is on. + - - - Synchronizing with network... - Sincronizando com a rede... + + This operation needs your wallet passphrase to unlock the wallet. + Esta operação precisa de sua frase de segurança para desbloquear a carteira. + + + + Unlock wallet + Desbloquear carteira - - Block chain synchronization in progress - Sincronização da corrente de blocos em andamento + + Confirm wallet encryption + Confirmar criptografia da carteira + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + O Bitcoin irá fechar agora para finalizar o processo de encriptação. Lembre-se de que encriptar sua carteira não protege totalmente suas bitcoins de serem roubadas por malwares que tenham infectado o seu computador. + + + BitcoinGUI - + &Overview &Visão geral - + Show general overview of wallet Mostrar visão geral da carteira - - &Transactions - &Transações - - - - Browse transaction history - Navegar pelo histórico de transações + + &Receive coins + &Receber moedas - - &Address Book - &Catálogo de endereços + + &Export... + &Exportar... - - Edit the list of stored addresses and labels - Editar a lista de endereços e rótulos + + Encrypt or decrypt wallet + Criptografar ou decriptogravar carteira - - &Receive coins - &Receber moedas + + &Encrypt Wallet + &Criptografar Carteira - - Show the list of addresses for receiving payments - Mostrar a lista de endereços para receber pagamentos + + Change the passphrase used for wallet encryption + Mudar a frase de segurança utilizada na criptografia da carteira - - &Send coins - &Enviar moedas + + &File + &amp; Arquivo - - Send coins to a bitcoin address - Enviar moedas para um endereço bitcoin + + &Address Book + &Catálogo de endereços - - Sign &message - + + Edit the list of stored addresses and labels + Editar a lista de endereços e rótulos - - Prove you control an address - + + Show the list of addresses for receiving payments + Mostrar a lista de endereços para receber pagamentos - + E&xit E&xit - + Quit application Sair da aplicação - - &About %1 - &About %1 - - - - Show information about Bitcoin - Mostrar informação sobre Bitcoin + + Modify configuration options for bitcoin + Modificar opções de configuração para bitcoin - + About &Qt - + Sobre &Qt - + Show information about Qt - - - - - &Options... - &Opções... + Mostrar informações sobre o Qt - - Modify configuration options for bitcoin - Modificar opções de configuração para bitcoin + + &Help + &Ajuda - - Open &Bitcoin - Abrir &Bitcoin + + Synchronizing with network... + Sincronizando com a rede... - - Show the Bitcoin window - Mostrar a janela Bitcoin + + &Transactions + &Transações - - &Export... - &Exportar... + + Browse transaction history + Navegar pelo histórico de transações - - Export the data in the current tab to a file - + + &Send coins + &Enviar moedas - - &Encrypt Wallet - &Criptografar Carteira + + Bitcoin client + Cliente Bitcoin - - Encrypt or decrypt wallet - Criptografar ou decriptogravar carteira + + Show or hide the Bitcoin window + Exibir ou ocultar a janela Bitcoin - - &Backup Wallet - + + Sign &message + &Assinar Mensagem - - Backup wallet to another location - + + Prove you control an address + - - &Change Passphrase - &Mudar frase de segurança + + &About %1 + &About %1 - - Change the passphrase used for wallet encryption - Mudar a frase de segurança utilizada na criptografia da carteira + + Export the data in the current tab to a file + Exportar os dados na aba atual para um arquivo - - &File - &amp; Arquivo + + &Backup Wallet + &Backup Carteira - - &Settings - E configurações + + Backup wallet to another location + Fazer cópia de segurança da carteira para uma outra localização - - &Help - &amp; Ajuda + + &Change Passphrase + &Mudar frase de segurança - - - Tabs toolbar - Barra de ferramentas + + + %n active connection(s) to Bitcoin network + + %n conexão ativa na rede Bitcoin + %n conexões ativas na rede Bitcoin + - - - Actions toolbar - Barra de ações + + + ~%n block(s) remaining + + + + - - [testnet] - [testnet] + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Carregados %1 de %2 blocos do histórico de transações (%3% done). - - - bitcoin-qt - bitcoin-qt + + + %n second(s) ago + + %n segundo atrás + %n segundos atrás + - - %n active connection(s) to Bitcoin network - %n conexão ativa na rede Bitcoin%n conexões ativas na rede Bitcoin + + %n minute(s) ago + + %n minutos atrás + %n minutos atrás + + + + + %n day(s) ago + + %n dia atrás + %n dias atrás + - - Downloaded %1 of %2 blocks of transaction history. - Carregados %1 de %2 blocos do histórico de transações. + + Backup Wallet + Fazer cópia de segurança da Carteira - - Downloaded %1 blocks of transaction history. - Carregados %1 blocos do histórico de transações. + + Wallet Data (*.dat) + Dados da Carteira (*.dat) - - - %n second(s) ago - %n segundo atrás%n segundos atrás + + + Backup Failed + Cópia de segurança Falhou - - - %n minute(s) ago - %n minutos atrás%n minutos atrás + + + There was an error trying to save the wallet data to the new location. + Houve um erro ao tentar salvar os dados da carteira para uma nova localização. - - - %n hour(s) ago - %n hora atrás%n horas atrás + + + &Settings + E configurações + + + + Tabs toolbar + Barra de ferramentas + + + + Actions toolbar + Barra de ações + + + + [testnet] + [testnet] + + + + Bitcoin Wallet + Carteira Bitcoin + + + + Downloaded %1 blocks of transaction history. + Carregados %1 blocos do histórico de transações. - - %n day(s) ago - %n dia atrás%n dias atrás + + %n hour(s) ago + + %n hora atrás + %n horas atrás + - + Up to date Atualizado - + Catching up... Recuperando o atraso ... - + Last received block was generated %1. Last received block was generated %1. - + + Send coins to a bitcoin address + Enviar moedas para um endereço bitcoin + + + 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? 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? - - Sending... - Sending... + + Show information about Bitcoin + Mostrar informação sobre Bitcoin + + + + &Options... + &Opções... - + Sent transaction Sent transaction - + Incoming transaction Incoming transaction - + Date: %1 Amount: %2 Type: %3 @@ -569,52 +597,57 @@ Tipo: %3 Endereço: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Wallet is <b>encrypted</b> and currently <b>locked</b> - - Backup Wallet - + + bitcoin-qt + bitcoin-qt - - Wallet Data (*.dat) - + + Sending... + Sending... - - Backup Failed - + + Show/Hide &Bitcoin + Exibir/Ocultar &Bitcoin - - There was an error trying to save the wallet data to the new location. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &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 - - Display addresses in transaction list - Display addresses in transaction list + + &Display addresses in transaction list + + + + + Whether to show Bitcoin addresses in the transaction list + @@ -688,89 +721,94 @@ Endereço: %4 MainOptionsPage - - &Start Bitcoin on window system startup - &Start Bitcoin on window system startup - - - - Automatically start Bitcoin after the computer is turned on - Automatically start Bitcoin after the computer is turned on - - - + &Minimize to the tray instead of the taskbar &Minimize to the tray instead of the taskbar - + Show only a tray icon after minimizing the window Show only a tray icon after minimizing the window - + Map port using &UPnP Map port using &UPnP - - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - - - + M&inimize on close M&inimize on close - + + &Start Bitcoin on window system startup + &Start Bitcoin on window system startup + + + + Automatically start Bitcoin after the computer is turned on + Automatically start Bitcoin after the computer is turned on + + + 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. - + + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + + + &Connect through SOCKS4 proxy: &Connect through SOCKS4 proxy: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) - + 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. 1234) Port of the proxy (e.g. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Taxa opcional de transações por kB que ajuda a garantir que suas transações serão processadas rapidamente. A maior parte das transações é de 1 kB. Taxa de 0.01 recomendada. - + 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 0.01 recommended. - + + Detach databases at shutdown + + + + + 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. + @@ -778,17 +816,12 @@ Endereço: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -810,79 +843,89 @@ Endereço: %4 Alt+P Alt+P - - - Enter the message you want to sign here - - Click "Sign Message" to get signature - + Sign a message to prove you own this address - - - - - &Sign Message - + - Copy the currently selected address to the system clipboard - Copie o endereço selecionado para a área de transferência do sistema + Copy the current signature to the system clipboard + &Copy to Clipboard &amp; Copie para a área de transferência do sistema + + + You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + Você pode assinar mensagens com seus endereços para provar que você é o dono deles. Seja cuidadoso para não assinar algo vago, pois ataques de pishing podem tentar te enganar para dar sua assinatura de identidade para eles. Apenas assine afirmações completamente detalhadas com as quais você concorda. + + + + Enter the message you want to sign here + Entre a mensagem que você quer assinar aqui + + + + &Sign Message + &Assinar Mensagem + Error signing - + %1 is not a valid address. - + The entered address "%1" is not a valid bitcoin address. Private key for %1 is not available. - + Sign failed - + OptionsDialog - + Main Main - + Display Display - + Options Options OverviewPage + + + <b>Recent transactions</b> + <b>Recent transactions</b> + Form @@ -893,16 +936,6 @@ Endereço: %4 Balance: Balance: - - - 123.456 BTC - 123.456 BTC - - - - Number of transactions: - Number of transactions: - 0 @@ -914,27 +947,14 @@ Endereço: %4 Unconfirmed: - - 0 BTC - 0 BTC + + Wallet + Carteira - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - - - - <b>Recent transactions</b> - <b>Recent transactions</b> + + Number of transactions: + Number of transactions: @@ -955,90 +975,73 @@ p, li { white-space: pre-wrap; } QRCodeDialog - - Dialog - Diálogo + + Error encoding URI into QR Code. + - - QR Code - + + Resulting URI too long, try to reduce the text for label / message. + URI resultante muito longa. Tente reduzir o texto do rótulo ou da mensagem. + + + + PNG Images (*.png) + Imagens PNG (*.png) + + + + Save Image... + - + Request Payment - + Requisitar Pagamento - + Amount: - + Quantia: - - BTC - + + Label: + Etiqueta: - - Label: - + + Dialog + Diálogo - - Message: - Message: + + QR Code + - - &Save As... - + + BTC + - - Save Image... - + + Message: + Message: - - PNG Images (*.png) - + + &Save As... + &Salvar como... SendCoinsDialog - - - - - - - - - - Send Coins - Send Coins - Send to multiple recipients at once Send to multiple recipients at once - - - &Add recipient... - &Add recipient... - - - - Remove all transaction fields - - - - - Clear all - Clear all - Balance: @@ -1049,82 +1052,104 @@ p, li { white-space: pre-wrap; } 123.456 BTC 123.456 BTC - - - Confirm the send action - Confirm the send action - &Send &Send - - <b>%1</b> to %2 (%3) - <b>%1</b> to %2 (%3) - - - - Confirm send coins - Confirm send coins + + Confirm the send action + Confirm the send action - + Are you sure you want to send %1? Are you sure you want to send %1? - - and - and - - - - The recepient address is not valid, please recheck. - The recepient 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. - - Amount exceeds your balance - Amount exceeds your balance + + The amount exceeds your balance. + - - Total exceeds your balance when the %1 transaction fee is included - 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 in one send operation - Duplicate address found, can only send to each address once in one send operation + + Duplicate address found, can only send to each address once per send operation. + - - Error: Transaction creation failed - 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 coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + - - - SendCoinsEntry - - Form - Form + + &Add recipient... + &Add recipient... - - A&mount: + + Remove all transaction fields + Remover todos os campos da transação + + + + Clear all + Clear all + + + + + + + + + + + Send Coins + Send Coins + + + + <b>%1</b> to %2 (%3) + <b>%1</b> to %2 (%3) + + + + Confirm send coins + Confirm send coins + + + + and + and + + + + SendCoinsEntry + + + A&mount: A&mount: @@ -1138,11 +1163,6 @@ p, li { white-space: pre-wrap; } 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1153,16 +1173,26 @@ p, li { white-space: pre-wrap; } Choose address from address book Choose address from address book - - - Alt+A - Alt+A - Paste address from clipboard Paste address from clipboard + + + &Label: + &Label: + + + + Form + Form + + + + Alt+A + Alt+A + Alt+P @@ -1182,140 +1212,140 @@ p, li { white-space: pre-wrap; } TransactionDesc - + + %1/unconfirmed + %1/unconfirmed + + + + , broadcast through %1 nodes + , broadcast through %1 nodes + + + + + + <b>To:</b> + <b>To:</b> + + + + , has not been successfully broadcast yet + , has not been successfully broadcast yet + + + Open for %1 blocks Open for %1 blocks - + Open until %1 Open until %1 - + %1/offline? %1/offline? - - %1/unconfirmed - %1/unconfirmed - - - + %1 confirmations %1 confirmations - + <b>Status:</b> <b>Status:</b> - - , has not been successfully broadcast yet - , has not been successfully broadcast yet - - - + , broadcast through %1 node , broadcast through %1 node - - , broadcast through %1 nodes - , broadcast through %1 nodes - - - + <b>Date:</b> <b>Date:</b> - + <b>Source:</b> Generated<br> <b>Source:</b> Generated<br> - - + + <b>From:</b> <b>From:</b> - + unknown unknown - - - - <b>To:</b> - <b>To:</b> - - - + (yours, label: (yours, label: - + (yours) (yours) - - - - + + + + <b>Credit:</b> <b>Credit:</b> - + (%1 matures in %2 more blocks) (%1 matures in %2 more blocks) - + (not accepted) (not accepted) - - - + + + <b>Debit:</b> <b>Debit:</b> - + <b>Transaction fee:</b> <b>Transaction fee:</b> - + <b>Net amount:</b> <b>Net amount:</b> - + Message: Message: - + Comment: Comment: - + Transaction ID: - + - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. @@ -1336,134 +1366,129 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Date - + Type Type - + Address Address - + Amount Amount - - - Open for %n block(s) - Open for %n blockOpen for %n blocks - - - - Open until %1 - Open until %1 - - + Offline (%1 confirmations) Offline (%1 confirmations) - + Unconfirmed (%1 of %2 confirmations) Unconfirmed (%1 of %2 confirmations) - + Confirmed (%1 confirmations) Confirmed (%1 confirmations) - - - Mined balance will be available in %n more blocks - Mined balance will be available in %n more blockMined balance will be available in %n more blocks - - + 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 - - - - + Sent to Sent to - + Payment to yourself Payment to yourself - + 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 + + + Open for %n block(s) + + Open for %n block + Open for %n blocks + + - - - All - All + + Open until %1 + Open until %1 + + + + Mined balance will be available in %n more blocks + + Mined balance will be available in %n more block + Mined balance will be available in %n more blocks + - - Today - Today + + Received from + Recebido de + + + TransactionView This week @@ -1534,91 +1559,102 @@ p, li { white-space: pre-wrap; } Copy label Copy label - - - Copy amount - - Edit label Edit label - - Show details... - Show details... - - - - Export Transaction Data - Export Transaction Data + + Label + Label - - Comma separated file (*.csv) - Comma separated file (*.csv) + + Address + Address - - Confirmed - Confirmed + + Copy amount + Copiar quantia - - Date - Date + + + All + All - - Type - Type + + Today + Today - - Label - Label + + Export Transaction Data + Export Transaction Data - - Address - Address + + Confirmed + Confirmed - - Amount - Amount + + Date + Date - + ID ID - + + Show details... + Show details... + + + Error exporting Error exporting - + Could not write to file %1. Could not write to file %1. - + Range: Range: - + to to + + + Type + Type + + + + Amount + Amount + + + + Comma separated file (*.csv) + Comma separated file (*.csv) + WalletModel - + Sending... Sending... @@ -1626,380 +1662,515 @@ p, li { white-space: pre-wrap; } bitcoin-core - + Bitcoin version Bitcoin version - + Usage: Usage: - - Send command to -server or bitcoind - Send command to -server or bitcoind - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - - List commands - List commands - + + Done loading + Done loading - - Get help for a command - Get help for a command - + + Loading addresses... + Loading addresses... - - Options: - Options: - + + Error loading addr.dat + - - Specify configuration file (default: bitcoin.conf) - Specify configuration file (default: bitcoin.conf) - + + Cannot downgrade wallet + - - Specify pid file (default: bitcoind.pid) - Specify pid file (default: bitcoind.pid) + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Invalid -proxy address + Invalid -proxy address + + + + Invalid amount for -paytxfee=<amount> + Invalid amount for -paytxfee=<amount> + + + + Error: CreateThread(StartNode) failed + Error: CreateThread(StartNode) failed + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Unable to bind to port %d on this computer. Bitcoin is probably already running. + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + + + Rescanning... + Rescanning... + + + + Error loading wallet.dat + Erro ao carregar wallet.dat + + + + Wallet needed to be rewritten: restart Bitcoin to complete + A Carteira precisou ser reescrita: reinicie o Bitcoin para completar + + + + Send command to -server or bitcoind + Send command to -server or bitcoind - - Generate coins - Generate coins + + List commands + List commands - - Don't generate coins - Don't generate coins + + Specify configuration file (default: bitcoin.conf) + Specify configuration file (default: bitcoin.conf) - - Start minimized - Start minimized + + Get help for a command + Get help for a command - - Specify data directory - Specify data directory + + Accept command line and JSON-RPC commands + Accept command line and JSON-RPC commands - + Specify connection timeout (in milliseconds) Specify connection timeout (in milliseconds) - - Connect through socks4 proxy - Connect through socks4 proxy + + Specify pid file (default: bitcoind.pid) + Specify pid file (default: bitcoind.pid) - - Allow DNS lookups for addnode and connect - Allow DNS lookups for addnode and connect + + Options: + Options: - - Listen for connections on <port> (default: 8333 or testnet: 18333) - + + 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) - + + Invalid amount + - Add a node to connect to - Add a node to connect to - + Warning: Disk space is low + - Connect only to the specified node - Connect only to the specified node - + To use the %s option + - Don't accept connections from outside - Don't accept connections from outside - + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + - - Don't bootstrap list of peers using DNS - + + Error + - - Threshold for disconnecting misbehaving peers (default: 100) - + + An error occurred while setting up the RPC port %i for listening: %s + - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + + Generate coins + Generate coins + - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + + Show splash screen on startup (default: 1) + - - Don't attempt to use UPnP to map the listening port - Don't attempt to use UPnP to map the listening port + + Specify data directory + Specify data directory - - Attempt to use UPnP to map the listening port - Attempt to use UPnP to map the listening port - + + Set database cache size in megabytes (default: 25) + Definir o tamanho do cache do banco de dados em megabytes (padrão: 25) - - Fee per kB to add to transactions you send - + + Set database disk log size in megabytes (default: 100) + - - Accept command line and JSON-RPC commands - Accept command line and JSON-RPC commands - + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Procurar por conexões em <port> (padrão: 8333 ou testnet:18333) - - Run in the background as a daemon and accept commands - Run in the background as a daemon and accept commands - + + Add a node to connect to and attempt to keep the connection open + - - Use the test network - Use the test network - + + Find peers using internet relay chat (default: 0) + - - Output extra debugging information - + + Accept connections from outside (default: 1) + - - Prepend debug output with timestamp - + + Set language, for example "de_DE" (default: system locale) + - - Send trace/debug info to console instead of debug.log file - + + Find peers using DNS lookup (default: 1) + - - Send trace/debug info to debugger - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + - - Username for JSON-RPC connections - Username for JSON-RPC connections - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + - - Password for JSON-RPC connections - Password for JSON-RPC connections - + + Use Universal Plug and Play to map the listening port (default: 1) + - - Listen for JSON-RPC connections on <port> (default: 8332) - Listen for JSON-RPC connections on <port> (default: 8332) - + + Use Universal Plug and Play to map the listening port (default: 0) + - - Allow JSON-RPC connections from specified IP address - Allow JSON-RPC connections from specified IP address - + + Detach block and address databases. Increases shutdown time (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) + + Run in the background as a daemon and accept commands + Run in the background as a daemon and accept commands - - Set key pool size to <n> (default: 100) - Set key pool size to <n> (default: 100) + + Fee per KB to add to transactions you send + Fee per KB to add to transactions you send + + + + Prepend debug output with timestamp + Pré anexar a saída de debug com estampa de tempo + + + + Send commands to node running on <ip> (default: 127.0.0.1) + Send commands to node running on <ip> (default: 127.0.0.1) - + Rescan the block chain for missing wallet transactions Rescan the block chain for missing wallet transactions - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Upgrade wallet to latest format + Atualizar carteira para o formato mais recente - - Use OpenSSL (https) for JSON-RPC connections - Use OpenSSL (https) for JSON-RPC connections + + Threshold for disconnecting misbehaving peers (default: 100) + Limite para desconectar peers mal comportados (padrão: 100) + + + + How many blocks to check at startup (default: 2500, 0 = all) + Quantos blocos verificar ao iniciar (padrão: 2500, 0 = todos) + + + + Password for JSON-RPC connections + Password for JSON-RPC connections - - Server certificate file (default: server.cert) - Server certificate file (default: server.cert) + + Allow JSON-RPC connections from specified IP address + Allow JSON-RPC connections from specified IP address - + Server private key (default: server.pem) Server private key (default: server.pem) - + + Error loading blkindex.dat + Erro ao carregar blkindex.dat + + + + Connect through socks4 proxy + Connect through socks4 proxy + + + + + Username for JSON-RPC connections + Username for JSON-RPC connections + + + + 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 + + Allow DNS lookups for addnode and connect + Allow DNS lookups for addnode and connect - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + + Error loading wallet.dat: Wallet corrupted + Erro ao carregar wallet.dat: Carteira corrompida - - Loading addresses... - Loading addresses... + + Loading wallet... + Loading wallet... - - Error loading addr.dat - + + Loading block index... + Loading block index... - - Error loading blkindex.dat - + + 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. - - Error loading wallet.dat: Wallet corrupted - + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Erro ao carregar wallet.dat: Carteira requer uma versão mais nova do Bitcoin - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - + + Don't generate coins + Don't generate coins + - - Wallet needed to be rewritten: restart Bitcoin to complete - + + Start minimized + Start minimized + - - Error loading wallet.dat - + + Maintain at most <n> connections to peers (default: 125) + Manter no máximo <n> conexões aos peers (padrão: 125) - Loading block index... - Loading block index... + Connect only to the specified node + Connect only to the specified node + - - Loading wallet... - Loading wallet... + + 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) - - Rescanning... - Rescanning... + + Use the test network + Use the test network + - - Done loading - Done loading + + Output extra debugging information + - - Invalid -proxy address - Invalid -proxy address + + 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 - - Invalid amount for -paytxfee=<amount> - Invalid amount for -paytxfee=<amount> + + Send trace/debug info to debugger + Mandar informação de trace/debug para o debugger - - 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. + + Listen for JSON-RPC connections on <port> (default: 8332) + Listen for JSON-RPC connections on <port> (default: 8332) + - - Error: CreateThread(StartNode) failed - Error: CreateThread(StartNode) failed + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Warning: Disk space is low - Warning: Disk space is low + + Set key pool size to <n> (default: 100) + Set key pool size to <n> (default: 100) + - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Unable to bind to port %d on this computer. Bitcoin is probably already running. + + How thorough the block verification is (0-6, default: 1) + - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + - - beta - beta + + 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) + + + + + Usage + + + + + Bitcoin + Bitcoin + + + + Insufficient funds + Insufficient funds + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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: Wallet locked, unable to create transaction + Erro: Carteira bloqueada, incapaz de criar transação + + + + Error: Transaction creation failed + Error: Transaction creation failed + + + + This help message + This help message + + + + + Sending... + Enviando... - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ro_RO.ts b/src/qt/locale/bitcoin_ro_RO.ts index 17c71e48f6..9f17df8cc1 100644 --- a/src/qt/locale/bitcoin_ro_RO.ts +++ b/src/qt/locale/bitcoin_ro_RO.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> versiunea - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -64,17 +66,17 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + @@ -87,42 +89,42 @@ This product includes software developed by the OpenSSL Project for use in the O &Șterge - + Copy address Copiază adresa - + Copy label Copiază eticheta - + Edit - + Editează - + Delete - + Șterge - + Export Address Book Data Exportă Lista de adrese - + Comma separated file (*.csv) Fisier csv: valori separate prin virgulă (*.csv) - + Error exporting Eroare la exportare. - + Could not write to file %1. Eroare la scrierea în fişerul %1. @@ -130,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Etichetă - + Address Adresă - + (no label) (fără etichetă) @@ -153,23 +155,22 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog - - + TextLabel Textul etichetei - + Enter passphrase Introduceți fraza de acces. - + New passphrase Frază de acces nouă - + Repeat new passphrase Repetaţi noua frază de acces @@ -234,13 +235,7 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - - Warning: The Caps Lock key is on. - + @@ -280,339 +275,383 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Parola portofelului electronic a fost schimbată. + + + + Warning: The Caps Lock key is on. + + BitcoinGUI - + Bitcoin Wallet Portofel electronic Bitcoin - - - Synchronizing with network... - Se sincronizează cu reţeaua... + + Show/Hide &Bitcoin + + + + + Show or hide the Bitcoin window + Afişează fereastra Bitcoin - - Block chain synchronization in progress - Se sincronizează blocurile. + + Synchronizing with network... + Se sincronizează cu reţeaua... - + &Overview &Detalii - + Show general overview of wallet Afişează detalii despre portofelul electronic - + &Transactions &Tranzacţii - + Browse transaction history Istoricul tranzacţiilor - + &Address Book &Lista de adrese - + Edit the list of stored addresses and labels Editaţi lista de adrese şi etichete. - + &Receive coins &Primiţi Bitcoin - + Show the list of addresses for receiving payments Lista de adrese pentru recepţionarea plăţilor - + &Send coins &Trimiteţi Bitcoin - + Send coins to a bitcoin address &Trimiteţi Bitcoin către o anumită adresă - + Sign &message - + - + Prove you control an address - + - + E&xit - + - + Quit application Părăsiţi aplicaţia - + &About %1 - + &Despre %1 - + Show information about Bitcoin Informaţii despre Bitcoin - + About &Qt - + Despre &Qt - + Show information about Qt - + Informaţii despre Qt - + &Options... &Setări... - + Modify configuration options for bitcoin Modifică setările pentru Bitcoin + + + ~%n block(s) remaining + + + + + + - - Open &Bitcoin - Deschide &Bitcoin + + Downloaded %1 of %2 blocks of transaction history (%3% done). + S-au descărcat %1 din %2 blocuri din istoricul tranzaciilor (%3% done). - - Show the Bitcoin window - Afişează fereastra Bitcoin + + Backup Wallet + Backup portofelul electronic + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to the new location. + - + &Export... &Exportă... - + Export the data in the current tab to a file - + - + &Encrypt Wallet Criptează portofelul electronic - + Encrypt or decrypt wallet Criptează şi decriptează portofelul electronic - + &Backup Wallet - + &Backup portofelul electronic - + Backup wallet to another location - + - + &Change Passphrase &Schimbă parola - + Change the passphrase used for wallet encryption &Schimbă parola folosită pentru criptarea portofelului electronic - + &File &Fişier - + &Settings &Setări - + &Help &Ajutor - + Tabs toolbar Bara de ferestre de lucru - + Actions toolbar Bara de acţiuni - + [testnet] [testnet] - + + Bitcoin client + + + + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n active connections to Bitcoin network%n active connections to Bitcoin network%n active connections to Bitcoin network - - - - Downloaded %1 of %2 blocks of transaction history. - S-au descărcat %1 din %2 blocuri din istoricul tranzaciilor. + + %n active connections to Bitcoin network + %n active connections to Bitcoin network + %n active connections to Bitcoin network + - + Downloaded %1 blocks of transaction history. S-au descărcat %1 blocuri din istoricul tranzaciilor. - + %n second(s) ago - %n seconds ago%n seconds ago%n seconds ago + + %n seconds ago + %n seconds ago + %n seconds ago + - + %n minute(s) ago - Acum %n minutAcum %n minuteAcum %n minute + + Acum %n minut + Acum %n minute + Acum %n minute + - + %n hour(s) ago - Acum %n orăAcum %n oreAcum %n ore + + Acum %n oră + Acum %n ore + Acum %n ore + - + %n day(s) ago - Acum %n ziAcum %n zileAcum %n zile + + Acum %n zi + Acum %n zile + Acum %n zile + - + 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ă tranzacţie depăşeşte limita. Puteţi iniţia tranzacţia platind un comision de %1, de care vor beneficia nodurile care procesează tranzacţia şi ajută la menţinerea reţelei. Acceptaţi plata comisionului? - + Sending... Expediază... - + Sent transaction Tranzacţie expediată - + Incoming transaction Tranzacţie recepţionată - + Date: %1 Amount: %2 Type: %3 Address: %4 - + - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Portofelul electronic este <b>criptat</b> iar in momentul de faţă este <b>deblocat</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Portofelul electronic este <b>criptat</b> iar in momentul de faţă este <b>blocat</b> - - Backup Wallet - - - - - Wallet Data (*.dat) - - - - - Backup Failed - - - - - There was an error trying to save the wallet data to the new location. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &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. - - Display addresses in transaction list - Afişează adresele în lista de tranzacţii + + &Display addresses in transaction list + &Afişează adresele în lista de tranzacţii + + + + Whether to show Bitcoin addresses in the transaction list + @@ -686,89 +725,94 @@ Address: %4 MainOptionsPage - + &Start Bitcoin on window system startup &S Porneşte Bitcoin la pornirea sistemului - + Automatically start Bitcoin after the computer is turned on Porneşte automat programul Bitcoin la pornirea computerului. - + &Minimize to the tray instead of the taskbar &M Ascunde în tray în loc de taskbar - + Show only a tray icon after minimizing the window Afişează doar un icon in tray la ascunderea ferestrei - + Map port using &UPnP Mapeaza portul folosind &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Deschide automat în router portul aferent clientului Bitcoin. Funcţionează doar în cazul în care routerul e compatibil UPnP şi opţiunea e activată. - + M&inimize on close &i Ascunde fereastra în locul închiderii programului - + 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. - + &Connect through SOCKS4 proxy: &Conectează prin proxy SOCKS4: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Conectare la reţeaua Bitcoin folosind un proxy SOCKS4 (de exemplu, când conexiunea se stabileşte prin reţeaua Tor) - + Proxy &IP: Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) Adresa de IP a proxy serverului (de exemplu: 127.0.0.1) - + &Port: &Port: - + Port of the proxy (e.g. 1234) Portul pe care se concetează proxy serverul (de exemplu: 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + - + Pay transaction &fee Plăteşte comision pentru tranzacţie &f - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Detach databases at shutdown + + + + + 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. + @@ -776,17 +820,17 @@ Address: %4 Message - + Mesaj 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adresa către care se va face plata (de exemplu: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Introduceţi o adresă Bitcoin (de exemplu: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -811,27 +855,27 @@ Address: %4 Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - Copiați adresa selectată în clipboard + Copy the current signature to the system clipboard + @@ -843,38 +887,38 @@ Address: %4 Error signing - + Eroare %1 is not a valid address. - + Adresa introdusă "%1" nu este o adresă bitcoin valabilă. Private key for %1 is not available. - + Sign failed - + OptionsDialog - + Main Principal - + Display Afişare - + Options Setări @@ -887,19 +931,14 @@ Address: %4 Form - - Balance: - Balanţă: - - - - 123.456 BTC - 123.456 BTC + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Totalul tranzacţiilor care aşteaptă să fie confirmate şi care nu sunt încă luate în calcul la afişarea soldului contului. - - Number of transactions: - Număr total de tranzacţii: + + Total number of transactions in wallet + Numărul total de tranzacţii din portofelul electronic @@ -912,25 +951,12 @@ Address: %4 Neconfirmat: - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Wallet + Portofelul - + <b>Recent transactions</b> <b>Ultimele tranzacţii</b> @@ -940,18 +966,23 @@ p, li { white-space: pre-wrap; } Soldul contul - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Totalul tranzacţiilor care aşteaptă să fie confirmate şi care nu sunt încă luate în calcul la afişarea soldului contului. + + Balance: + Balanţă: - - Total number of transactions in wallet - Numărul total de tranzacţii din portofelul electronic + + Number of transactions: + Număr total de tranzacţii: QRCodeDialog + + + Message: + Mesaj: + Dialog @@ -960,60 +991,75 @@ p, li { white-space: pre-wrap; } QR Code - + - + Request Payment - + - + Amount: - + Sumă: - + BTC - + - + Label: - + Etichetă: - - Message: - Mesaj: + + &Save As... + - - &Save As... - + + Error encoding URI into QR Code. + - + + Resulting URI too long, try to reduce the text for label / message. + + + + Save Image... - + - + PNG Images (*.png) - + SendCoinsDialog + + + Confirm the send action + Confirmă operaţiunea de trimitere + + + + &Send + &S Trimite + - - - - - - - + + + + + + + Send Coins Trimite Bitcoin @@ -1030,12 +1076,7 @@ p, li { white-space: pre-wrap; } Remove all transaction fields - - - - - Clear all - Şterge tot + @@ -1048,68 +1089,63 @@ p, li { white-space: pre-wrap; } 123.456 BTC - - Confirm the send action - Confirmă operaţiunea de trimitere - - - - &Send - &S Trimite + + Clear all + Şterge tot - + <b>%1</b> to %2 (%3) <b>%1</b> la %2 (%3) - + + and + şi + + + Confirm send coins Confirmaţi trimiterea de bitcoin - + Are you sure you want to send %1? Sunteţi sigur că doriţi să trimiteţi %1? - - and - şi - - - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance + + The amount exceeds your balance. Suma depăşeşte soldul contului. - - Total exceeds your balance when the %1 transaction fee is included + + The total exceeds your balance when the %1 transaction fee is included. Total depăşeşte soldul contului in cazul plăţii comisionului de %1. - - Duplicate address found, can only send to each address once in one send operation + + 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: Tranyacţia nu a putut fi iniţiată + + Error: Transaction creation failed. + Eroare: Tranyacţia nu a putut fi iniţiată. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. Eroare: Tranyacţia a fost respinsă. Acesta poate fi rezultatul cheltuirii prealabile a unei sume de bitcoin din portofelul electronic, ca în cazul folosirii unei copii a fisierului wallet.dat, în care s-au efectuat tranzacţii neînregistrate în fisierul curent. @@ -1149,7 +1185,7 @@ p, li { white-space: pre-wrap; } Choose address from address book - + Alegeţi adresa din Listă @@ -1180,140 +1216,140 @@ p, li { white-space: pre-wrap; } TransactionDesc - + Open for %1 blocks Deschis pentru %1 blocuri - + Open until %1 Deschis până la %1 - - %1/offline? - %1/offline? + + %1 confirmations + %1 confirmări - %1/unconfirmed - %1/neconfirmat + %1/offline? + %1/offline? - %1 confirmations - %1 confirmări + %1/unconfirmed + %1/neconfirmat - + <b>Status:</b> <b>Stare:</b> - + , has not been successfully broadcast yet , nu s-a propagat încă - + , broadcast through %1 node , se propagă prin %1 nod - + , broadcast through %1 nodes , se propagă prin %1 noduri - + <b>Date:</b> <b>Data:</b> - + <b>Source:</b> Generated<br> <b>Sursă:</b> Generat<br> - - + + <b>From:</b> <b>De la:</b> - + unknown necunoscut - - - + + + <b>To:</b> <b>Către:</b> - + (yours, label: (propriu, etichetă: - + (yours) (propriu) - - - - + + + + <b>Credit:</b> <b>Credit:</b> - + (%1 matures in %2 more blocks) (%1 se definitivează peste %2 blocuri) - + (not accepted) (nu este acceptat) - - - + + + <b>Debit:</b> <b>Debit:</b> - + <b>Transaction fee:</b> <b>Comisionul tranzacţiei:</b> - + <b>Net amount:</b> <b>Suma netă:</b> - + Message: Mesaj: - + Comment: Comentarii: - + Transaction ID: - + - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Monedele bitcoin generate se pot cheltui dupa parcurgerea a 120 de blocuri. După ce a fost generat, s-a propagat în reţea, urmând să fie adăugat lanţului de blocuri. Dacă nu poate fi inclus in lanţ, starea sa va deveni "neacceptat" si nu va putea fi folosit la tranzacţii. Acest fenomen se întâmplă atunci cand un alt nod a generat un bloc la o diferenţa de câteva secunde. @@ -1334,117 +1370,125 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + + Unconfirmed (%1 of %2 confirmations) + Neconfirmat (%1 din %2 confirmări) + + + Date Data - + Type Tipul - + Address Adresa - + Amount Cantitate - + Open for %n block(s) - Deschis pentru for %n blocDeschis pentru %n blocuriDeschis pentru %n blocuri + + + + + - + Open until %1 Deschis până la %1 - + Offline (%1 confirmations) Neconectat (%1 confirmări) - - Unconfirmed (%1 of %2 confirmations) - Neconfirmat (%1 din %2 confirmări) - - - + Confirmed (%1 confirmations) Confirmat (%1 confirmări) - + Mined balance will be available in %n more blocks - Soldul de bitcoin produs va fi disponibil după încă %n blocSoldul de bitcoin produs va fi disponibil după încă %n blocuriSoldul de bitcoin produs va fi disponibil după încă %n blocuri + + + + + - + This block was not received by any other nodes and will probably not be accepted! Blocul nu a fost recepţionat de niciun alt nod şi e probabil că nu va fi acceptat. - + Generated but not accepted Generat, dar neacceptat - + Received with Recepţionat cu - + Received from - + - + Sent to Trimis către - + Payment to yourself Plată către un cont propriu - + Mined Produs - + (n/a) (n/a) - + Transaction status. Hover over this field to show number of confirmations. Starea tranzacţiei. Treceţi cu mouse-ul 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. @@ -1452,30 +1496,65 @@ p, li { white-space: pre-wrap; } TransactionView - - - All - Toate + + Range: + Interval: - - Today - Astăzi + + Label + Etichetă - - This week - Săptămâna aceasta + + Amount + Sumă - - This month - Luna aceasta + + ID + ID - - Last month - Luna trecută + + Error exporting + Eroare în timpul exportului + + + + Could not write to file %1. + Fisierul %1 nu a putut fi accesat pentru scriere. + + + + to + către + + + + This week + Săptămâna aceasta + + + + + All + Toate + + + + Today + Astăzi + + + + This month + Luna aceasta + + + + Last month + Luna trecută @@ -1535,7 +1614,7 @@ p, li { white-space: pre-wrap; } Copy amount - + Copiază sumă @@ -1543,426 +1622,530 @@ p, li { white-space: pre-wrap; } Editează eticheta - - Show details... - Afişează detalii... - - - + Export Transaction Data Exportă tranzacţiile - + 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ă + + Show details... + Afişează detalii... + + + WalletModel - - ID - ID + + Sending... + Se expediază... + + + bitcoin-core - - Error exporting - Eroare în timpul exportului + + Loading block index... + Încarc indice bloc... - - Could not write to file %1. - Fisierul %1 nu a putut fi accesat pentru scriere. + + Error loading blkindex.dat + - - Range: - Interval: + + Loading wallet... + Încarc portofel... - - to - către + + Error loading wallet.dat: Wallet corrupted + - - - WalletModel - - Sending... - Se expediază... + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + + + + + Wallet needed to be rewritten: restart Bitcoin to complete + + + + + Error loading wallet.dat + + + + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Rescanning... + Rescanez... - - - bitcoin-core - + + Done loading + Încărcare terminată + + + Bitcoin version versiunea Bitcoin - + + Error: Wallet locked, 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 + Această tranzacţie depăşeşte limita. Puteţi iniţia tranzacţia platind un comision de %1, de care vor beneficia nodurile care procesează tranzacţia şi ajută la menţinerea reţelei. Acceptaţi plata comisionului? + + + + Invalid amount + + + + + Warning: Disk space is low + + + + + 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=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + + + + + Error + + + + + An error occurred while setting up the RPC port %i for listening: %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. + + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + + + Usage: Uz: - + Send command to -server or bitcoind Trimite comanda la -server sau bitcoind - + List commands Listă de comenzi - + Get help for a command Ajutor pentru o comandă - + Options: Setări: - + Specify configuration file (default: bitcoin.conf) - + - + Specify pid file (default: bitcoind.pid) - + - + Generate coins - + - + Don't generate coins - + - + Start minimized - + - + + Show splash screen on startup (default: 1) + + + + Specify data directory - + - - Specify connection timeout (in milliseconds) - + + Set database cache size in megabytes (default: 25) + - - Connect through socks4 proxy - + + Set database disk log size in megabytes (default: 100) + - + + Specify connection timeout (in milliseconds) + + + + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - - Add a node to connect to - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node - + - - Don't accept connections from outside - + + Find peers using internet relay chat (default: 0) + - - Don't bootstrap list of peers using DNS - + + Accept connections from outside (default: 1) + - + + Set language, for example "de_DE" (default: system locale) + + + + + Find peers using DNS lookup (default: 1) + + + + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - - Don't attempt to use UPnP to map the listening port - + + Use Universal Plug and Play to map the listening port (default: 1) + - - Attempt to use UPnP to map the listening port - + + Use Universal Plug and Play to map the listening port (default: 0) + - - Fee per kB to add to transactions you send - + + Detach block and address databases. Increases shutdown time (default: 0) + - + + Fee per KB to add to transactions you send + + + + Accept command line and JSON-RPC commands - + - + Run in the background as a daemon and accept commands - + - + Use the test network - + - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections - + - + Password for JSON-RPC connections - + - + Listen for JSON-RPC connections on <port> (default: 8332) - + - + Allow JSON-RPC connections from specified IP address - + - + Send commands to node running on <ip> (default: 127.0.0.1) - + - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) - + - + Rescan the block chain for missing wallet transactions - + - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin 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) - + - + This help message - + - + + Usage + Uz + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + Loading addresses... Încarc adrese... - + Error loading addr.dat - - - - - Error loading blkindex.dat - - - - - Error loading wallet.dat: Wallet corrupted - + - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - - - - - Wallet needed to be rewritten: restart Bitcoin to complete - - - - - Error loading wallet.dat - - - - - Loading block index... - Încarc indice bloc... - - - - Loading wallet... - Încarc portofel... + + Invalid -proxy address + - - Rescanning... - Rescanez... + + Invalid amount for -paytxfee=<amount> + - - Done loading - Încărcare terminată + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + - - Invalid -proxy address - + + Error: CreateThread(StartNode) failed + - - Invalid amount for -paytxfee=<amount> - + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + + Connect through socks4 proxy + Conectează prin proxy SOCKS4 - - Error: CreateThread(StartNode) failed - + + Bitcoin + Bitcoin - - Warning: Disk space is low - + + Insufficient funds + Fonduri insuficiente - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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: Tranyacţia a fost respinsă. Acesta poate fi rezultatul cheltuirii prealabile a unei sume de bitcoin din portofelul electronic, ca în cazul folosirii unei copii a fisierului wallet.dat, în care s-au efectuat tranzacţii neînregistrate în fisierul curent. - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + + Error: Transaction creation failed + Eroare: Tranyacţia nu a putut fi iniţiată - - beta - + + Sending... + Transmitere... - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts index d706b33b97..4ae0d6c220 100644 --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> версия - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -40,7 +42,7 @@ This product includes software developed by the OpenSSL Project for use in the O These are your Bitcoin 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. - Здесь перечислены Ваши адреса для получения платежей. Вы можете использовать их для того, чтобы давать разным людям разные адреса и таким образом иметь возможность отслеживать кто и сколько Вам платил, а так же поддерживать бо́льшую анонимность.. + Здесь перечислены Ваши адреса для получения платежей. Вы можете использовать их для того, чтобы давать разным людям разные адреса и таким образом иметь возможность отслеживать кто и сколько Вам платил, а так же поддерживать бо́льшую анонимность. @@ -67,16 +69,6 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &Kопировать - - - Show &QR Code - Показать &QR код - - - - Sign a message to prove you own this address - Подпишите сообщение для доказательства - &Sign Message @@ -93,106 +85,103 @@ This product includes software developed by the OpenSSL Project for use in the O &Удалить - + + Show &QR Code + Показать &QR код + + + + Sign a message to prove you own this address + Подпишите сообщение для доказательства + + + Copy address Копировать адрес - + Copy label Копировать метку - + Edit Правка - + Delete Удалить - + Export Address Book Data Экспортировать адресную книгу - - Comma separated file (*.csv) - Текст, разделённый запятыми (*.csv) + + Could not write to file %1. + Невозможно записать в файл %1. - + Error exporting Ошибка экспорта - - Could not write to file %1. - Невозможно записать в файл %1. + + Comma separated file (*.csv) + Текст, разделённый запятыми (*.csv) AddressTableModel - + Label Метка - - Address - Адрес - - - + (no label) [нет метки] + + + Address + Адрес + AskPassphraseDialog + + + New passphrase + Новый пароль + Dialog Dialog - - - TextLabel - TextLabel - - - - Enter passphrase - Введите пароль - - - - New passphrase - Новый пароль - - - + Repeat new passphrase Повторите новый пароль - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Введите новый пароль для бумажника. <br/> Пожалуйста, используйте фразы из <b>10 или более случайных символов,</b> или <b>восьми и более слов.</b> - - - - Encrypt wallet - Зашифровать бумажник + + Enter passphrase + Введите пароль - - This operation needs your wallet passphrase to unlock the wallet. - Для выполнения операции требуется пароль вашего бумажника. + + + + + Wallet encryption failed + Не удалось зашифровать бумажник @@ -205,14 +194,19 @@ This product includes software developed by the OpenSSL Project for use in the O Для выполнения операции требуется пароль вашего бумажника. - - Decrypt wallet - Расшифровать бумажник + + Wallet decryption failed + Расшифрование бумажника не удалось - - Change passphrase - Сменить пароль + + This operation needs your wallet passphrase to unlock the wallet. + Для выполнения операции требуется пароль вашего бумажника. + + + + TextLabel + TextLabel @@ -220,16 +214,9 @@ This product includes software developed by the OpenSSL Project for use in the O Введите старый и новый пароль для бумажника. - - Confirm wallet encryption - Подтвердите шифрование бумажника - - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ВНИМАНИЕ: Если вы зашифруете бумажник и потеряете свой ​​пароль, вы <b>ПОТЕРЯЕТЕ ВСЕ ВАШИ БИТКОИНЫ!</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>. + Введите новый пароль для бумажника. <br/> Пожалуйста, используйте фразы из <b>10 или более случайных символов,</b> или <b>восьми и более слов.</b> @@ -238,28 +225,14 @@ Are you sure you wish to encrypt your wallet? Бумажник зашифрован - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши биткоины от кражи с помощью инфицирования вашего компьютера вредоносным ПО. - - - - - Warning: The Caps Lock key is on. - Внимание: Caps Lock включен. - - - - - - - Wallet encryption failed - Не удалось зашифровать бумажник + + Decrypt wallet + Расшифровать бумажник - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Шифрование бумажника не удалось из-за внутренней ошибки. Ваш бумажник не был зашифрован. + + Change passphrase + Сменить пароль @@ -280,291 +253,265 @@ Are you sure you wish to encrypt your wallet? Указанный пароль не подходит. - - Wallet decryption failed - Расшифрование бумажника не удалось + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Шифрование бумажника не удалось из-за внутренней ошибки. Ваш бумажник не был зашифрован. + + + + Confirm wallet encryption + Подтвердите шифрование бумажника + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши биткоины от кражи с помощью инфицирования вашего компьютера вредоносным ПО. + + + + Encrypt wallet + Зашифровать бумажник + + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ВНИМАНИЕ: Если вы зашифруете бумажник и потеряете свой ​​пароль, вы <b>ПОТЕРЯЕТЕ ВСЕ ВАШИ БИТКОИНЫ!</b> +Вы действительно хотите зашифровать ваш бумажник? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Пароль бумажника успешно изменён. + + + + Warning: The Caps Lock key is on. + Внимание: Caps Lock включен. + BitcoinGUI - - Bitcoin Wallet - Bitcoin-бумажник + + &Overview + О&бзор - - - Synchronizing with network... - Синхронизация с сетью... + + Show general overview of wallet + Показать общий обзор действий с бумажником - - Block chain synchronization in progress - Идёт синхронизация цепочки блоков + + &Receive coins + &Получение монет - - &Overview - О&бзор + + E&xit + В&ыход - - Show general overview of wallet - Показать общий обзор действий с бумажником + + Edit the list of stored addresses and labels + Изменить список сохранённых адресов и меток к ним + + + + &Export... + &Экспорт... + + + + Bitcoin client + Bitcoin клиент - + + Synchronizing with network... + Синхронизация с сетью... + + + &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 Отп&равка монет - + Send coins to a bitcoin address Отправить монеты на указанный адрес - + Sign &message Подписать &сообщение - - Prove you control an address - Доказать, что вы владеете адресом + + &About %1 + &О %1 - - E&xit - В&ыход + + Show or hide the Bitcoin window + Показать или скрыть окно Bitcoin - - Quit application - Закрыть приложение + + Export the data in the current tab to a file + Экспортировать данные из вкладки в файл - - &About %1 - &О %1 + + &Backup Wallet + &Сделать резервную копию бумажника - - Show information about Bitcoin - Показать информацию о Bitcoin'е + + Backup wallet to another location + Сделать резервную копию бумажника в другом месте - - About &Qt - О &Qt + + &File + &Файл - - Show information about Qt - Показать информацию о Qt + + &Help + &Помощь - - &Options... - Оп&ции... + + There was an error trying to save the wallet data to the new location. + При попытке сохранения данных бумажника в новое место произошла ошибка. - - Modify configuration options for bitcoin - Изменить настройки + + Quit application + Закрыть приложение - - Open &Bitcoin - &Показать бумажник + + [testnet] + [тестовая сеть] - Show the Bitcoin window - Показать окно бумажника + Show information about Bitcoin + Показать информацию о Bitcoin'е + + + + %n active connection(s) to Bitcoin network + + %n активное соединение с сетью + %n активных соединений с сетью + %n активных соединений с сетью + - - &Export... - &Экспорт... + + &Options... + Оп&ции... - - Export the data in the current tab to a file - + + Downloaded %1 blocks of transaction history. + Загружено %1 блоков истории транзакций. - + &Encrypt Wallet &Зашифровать бумажник + + + %n second(s) ago + + %n секунду назад + %n секунды назад + %n секунд назад + + - + Encrypt or decrypt wallet Зашифровать или расшифровать бумажник - - - &Backup Wallet - - - - - Backup wallet to another location - - - - - &Change Passphrase - &Изменить пароль - - - - Change the passphrase used for wallet encryption - Изменить пароль шифрования бумажника - - - - &File - &Файл + + + %n hour(s) ago + + %n час назад + %n часа назад + %n часов назад + - + &Settings &Настройки - - &Help - &Помощь - - - + Tabs toolbar Панель вкладок - - Actions toolbar - Панель действий - - - - [testnet] - [тестовая сеть] - - - - bitcoin-qt - bitcoin-qt - - - - %n active connection(s) to Bitcoin network - %n активное соединение с сетью%n активных соединений с сетью%n активных соединений с сетью - - - - Downloaded %1 of %2 blocks of transaction history. - Загружено %1 из %2 блоков истории транзакций. - - - - 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. - + + Bitcoin Wallet + Bitcoin-бумажник + + + 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, которая отправится тем узлам, которые обработают Вашу транзакцию и поможет поддержать сеть. Вы хотите добавить комиссию? + Данная транзакция превышает предельно допустимый размер. Но Вы можете всё равно совершить её, добавив комиссию в %1, которая отправится тем узлам, которые обработают Вашу транзакцию, и поможет поддержать сеть. Вы хотите добавить комиссию? - - Sending... - Отправка... + + Prove you control an address + Доказать, что вы владеете адресом - + Sent transaction Исходящая транзакция - + Incoming transaction Входящая транзакция - + Date: %1 Amount: %2 Type: %3 @@ -577,52 +524,144 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Бумажник <b>зашифрован</b> и в настоящее время <b>разблокирован</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> - - Backup Wallet - + + About &Qt + О &Qt - + Wallet Data (*.dat) - Данные Кошелька (*.dat) + Данные бумажника (*.dat) + + + + Modify configuration options for bitcoin + Изменить настройки + + + + &Change Passphrase + &Изменить пароль + + + + Change the passphrase used for wallet encryption + Изменить пароль шифрования бумажника + + + + Show information about Qt + Показать информацию о Qt + + + + Show/Hide &Bitcoin + Показать/Скрыть &Bitcoin + + + + Actions toolbar + Панель действий + + + + bitcoin-qt + bitcoin-qt + + + + %n minute(s) ago + + %n минуту назад + %n минуты назад + %n минут назад + + + + + %n day(s) ago + + %n день назад + %n дня назад + %n дней назад + + + + + ~%n block(s) remaining + + остался ~%n блок + осталось ~%n блоков + осталось ~%n блоков + + + + + Up to date + Синхронизированно + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Загружено %1 из %2 блоков истории операций (%3% завершено). + + + + Catching up... + Синхронизируется... + + + + Sending... + Отправка... + + + + Backup Wallet + Сделать резервную копию бумажника - + Backup Failed - + Резервное копирование не удалось - - There was an error trying to save the wallet data to the new location. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Произошла неисправимая ошибка. Bitcoin не может безопасно продолжать работу и будет закрыт. DisplayOptionsPage - + &Unit to show amounts in: &Измерять монеты в: - + Choose the default subdivision unit to show in the interface, and when sending coins Единица измерения количества монет при отображении и при отправке - - Display addresses in transaction list - Показывать адреса в списке транзакций + + &Display addresses in transaction list + &Показывать адреса в списке транзакций + + + + Whether to show Bitcoin addresses in the transaction list + Показывать ли адреса Bitcoin в списке транзакций @@ -677,6 +716,11 @@ Address: %4 The entered address "%1" is already in the address book. Введённый адрес «%1» уже находится в адресной книге. + + + New key generation failed. + Генерация нового ключа не удалась. + The entered address "%1" is not a valid bitcoin address. @@ -687,96 +731,96 @@ Address: %4 Could not unlock wallet. Не удается разблокировать бумажник. - - - New key generation failed. - Генерация нового ключа не удалась. - MainOptionsPage - + &Start Bitcoin on window system startup &Запускать бумажник при входе в систему - + Automatically start Bitcoin after the computer is turned on Автоматически запускать бумажник, когда включается компьютер - + &Minimize to the tray instead of the taskbar &Cворачивать в системный лоток вместо панели задач - + Show only a tray icon after minimizing the window Показывать только иконку в системном лотке при сворачивании окна - + Map port using &UPnP Пробросить порт через &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Автоматически открыть порт для Bitcoin-клиента на роутере. Работает ТОЛЬКО если Ваш роутер поддерживает UPnP и данная функция включена. - + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Подключаться к сети Bitcoin через SOCKS4 прокси (например, при использовании Tor) + + + + Port of the proxy (e.g. 1234) + Порт прокси-сервера (например 1234) + + + + Pay transaction &fee + Добавлять ко&миссию + + + + Detach databases at shutdown + Отключать базы данных при выходе + + + + 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. + Отключить базы данных блоков и адресов при выходе. Это означает, что их можно будет переместить в другой каталог данных, но завершение работы будет медленнее. Бумажник всегда отключается. + + + M&inimize on close С&ворачивать вместо закрытия - + 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. Сворачивать вместо закрытия. Если данная опция будет выбрана — приложение закроется только после выбора соответствующего пункта в меню. - + &Connect through SOCKS4 proxy: &Подключаться через SOCKS4 прокси: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Подключаться к сети Bitcoin через SOCKS4 прокси (например, при использовании Tor) - - - + 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. 1234) - Порт прокси-сервера (например 1234) - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработано быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. - - - - Pay transaction &fee - Добавлять ко&миссию - - - + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработано быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. @@ -788,15 +832,35 @@ Address: %4 Message Сообщение + + + Enter the message you want to sign here + Введите сообщение для подписи + + + + %1 is not a valid address. + %1 не является правильным адресом. + + + + Private key for %1 is not available. + Секретный ключ для %1 не доступен + + + + Sign failed + Подписание не удалось. + 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Адрес получателя платежа (например 1LA5FtQhnnWnkK6zjFfutR7Stiit4wKd63) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Адрес, которым вы хотите подписать сообщение (напр. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -818,11 +882,6 @@ Address: %4 Alt+P Alt+P - - - Enter the message you want to sign here - Введите сообщение для подписи - Click "Sign Message" to get signature @@ -840,8 +899,8 @@ Address: %4 - Copy the currently selected address to the system clipboard - Копировать текущий выделенный адрес в буфер обмена + Copy the current signature to the system clipboard + Скопировать текущую подпись в системный буфер обмена @@ -855,42 +914,47 @@ Address: %4 Error signing Ошибка создания подписи - - - %1 is not a valid address. - %1 не является правильным адресом. - - - - Private key for %1 is not available. - Секретный ключ для %1 не доступен - - - - Sign failed - Подписание не удалось. - OptionsDialog - + Main Основное - + Display Отображение - + Options Опции OverviewPage + + + Unconfirmed: + Не подтверждено: + + + + Your current balance + Ваш текущий баланс + + + + Total number of transactions in wallet + Общее количество транзакций в Вашем бумажнике + + + + Wallet + Бумажник + Form @@ -901,11 +965,6 @@ Address: %4 Balance: Баланс: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -917,136 +976,98 @@ Address: %4 0 - - Unconfirmed: - Не подтверждено: - - - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Бумажник</span></p></body></html> - - - + <b>Recent transactions</b> <b>Последние транзакции</b> - - - Your current balance - Ваш текущий баланс - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance Общая сумма всех транзакций, которые до сих пор не подтверждены, и до сих пор не учитываются в текущем балансе - - - Total number of transactions in wallet - Общее количество транзакций в Вашем бумажнике - QRCodeDialog - - Dialog - Dialog - - - - QR Code - QR код + + Label: + Метка: - + Request Payment Запросить платёж - - Amount: - Количество: + + Error encoding URI into QR Code. + Ошибка кодирования URI в QR-код - - BTC - BTC + + PNG Images (*.png) + PNG Изображения (*.png) - - Label: - Метка: + + &Save As... + &Сохранить как... - + Message: Сообщение: - - &Save As... - &Сохранить как... - - - + Save Image... Сохранить изображение... - - PNG Images (*.png) - + + Dialog + Dialog + + + + QR Code + QR код + + + + Amount: + Количество: + + + + BTC + BTC + + + + Resulting URI too long, try to reduce the text for label / message. + Получившийся URI слишком длинный, попробуйте сократить текст метки / сообщения. SendCoinsDialog - - - - - - - + + + + + + + Send Coins Отправка - - - Send to multiple recipients at once - Отправить нескольким получателям одновременно - &Add recipient... &Добавить получателя... - - - Remove all transaction fields - Удалить все поля транзакции - - - - Clear all - Очистить всё - Balance: @@ -1063,68 +1084,93 @@ p, li { white-space: pre-wrap; } Подтвердить отправку - - &Send - &Отправить - - - + <b>%1</b> to %2 (%3) <b>%1</b> адресату %2 (%3) - + Confirm send coins Подтвердите отправку монет - + + The amount to pay must be larger than 0. + Количество монет для отправки должно быть больше 0. + + + + Send to multiple recipients at once + Отправить нескольким получателям одновременно + + + + Clear all + Очистить всё + + + + &Send + &Отправить + + + + Remove all transaction fields + Удалить все поля транзакции + + + Are you sure you want to send %1? Вы уверены, что хотите отправить %1? - + and и - - The recepient address is not valid, please recheck. + + The recipient address is not valid, please recheck. Адрес получателя неверный, пожалуйста, перепроверьте. - - The amount to pay must be larger than 0. - Количество монет для отправки должно быть больше 0. - - - - Amount exceeds your balance + + The amount exceeds your balance. Количество отправляемых монет превышает Ваш баланс - - Total exceeds your balance when the %1 transaction fee is included - Сумма превысит Ваш баланс, если комиссия в %1 будет добавлена к транзакции + + The total exceeds your balance when the %1 transaction fee is included. + Сумма превысит Ваш баланс, если комиссия в размере %1 будет добавлена к транзакции - - Duplicate address found, can only send to each address once in one 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. - Ошибка: В транзакции отказано. Такое может произойти, если некоторые монеты уже были потрачены, например, если Вы используете одну копию бумажника (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. + Ошибка: В транзакции отказано. Такое может произойти, если некоторые монеты уже были потрачены, например, если Вы используете одну копию файла wallet.dat, а монеты были потрачены из другой копии, но не были отмечены как потраченные в этой. SendCoinsEntry + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Адрес получателя платежа (например 1LA5FtQhnnWnkK6zjFfutR7Stiit4wKd63) + + + + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Введите Bitcoin-адрес (например 1LA5FtQhnnWnkK6zjFfutR7Stiit4wKd63) + Form @@ -1151,26 +1197,11 @@ p, li { white-space: pre-wrap; } &Label: &Метка: - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Адрес получателя платежа (например 1LA5FtQhnnWnkK6zjFfutR7Stiit4wKd63) - - - - Choose address from address book - Выберите адрес из адресной книги - Alt+A Alt+A - - - Paste address from clipboard - Вставить адрес из буфера обмена - Alt+P @@ -1182,148 +1213,153 @@ p, li { white-space: pre-wrap; } Удалить этого получателя - - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Введите Bitcoin-адрес (например 1LA5FtQhnnWnkK6zjFfutR7Stiit4wKd63) + + Choose address from address book + Выберите адрес из адресной книги + + + + Paste address from clipboard + Вставить адрес из буфера обмена TransactionDesc - - Open for %1 blocks - Открыто до получения %1 блоков + + Transaction ID: + Идентификатор транзакции: - - Open until %1 - Открыто до %1 + + %1/unconfirmed + %1/не подтверждено - - %1/offline? - %1/оффлайн? + + unknown + неизвестно - - %1/unconfirmed - %1/не подтверждено + + , has not been successfully broadcast yet + , ещё не было успешно разослано - - %1 confirmations - %1 подтверждений + + Open for %1 blocks + Открыто до получения %1 блоков - - <b>Status:</b> - <b>Статус:</b> + + %1/offline? + %1/оффлайн? - - , has not been successfully broadcast yet - , ещё не было успешно разослано + + <b>Status:</b> + <b>Статус:</b> - + , broadcast through %1 node , разослано через %1 узел - + , broadcast through %1 nodes , разослано через %1 узлов - + <b>Date:</b> <b>Дата:</b> - + <b>Source:</b> Generated<br> <b>Источник:</b> [сгенерированно]<br> - - + + <b>From:</b> <b>Отправитель:</b> - - unknown - неизвестно - - - - - + + + <b>To:</b> <b>Получатель:</b> - + (yours, label: - (Ваш, метка: + (Ваш, метка: - + (yours) (ваш) - - - - + + + + <b>Credit:</b> <b>Кредит:</b> - + (%1 matures in %2 more blocks) (%1 станет доступно через %2 блоков) - + (not accepted) (не принято) - - - + + + <b>Debit:</b> <b>Дебет:</b> - + <b>Transaction fee:</b> <b>Комиссия:</b> - + <b>Net amount:</b> <b>Общая сумма:</b> - + + Open until %1 + Открыто до %1 + + + + %1 confirmations + %1 подтверждений + + + Message: Сообщение: - + Comment: Комментарий: - - Transaction ID: - Идентификатор транзакции: - - - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Сгенерированные монеты должны подождать 120 блоков прежде, чем они смогут быть отправлены. Когда Вы сгенерировали этот блок он был отправлен в сеть, чтобы он был добавлен к цепочке блоков. Если данная процедура не удастся, статус изменится на «не подтверждено» и монеты будут непередаваемыми. Такое может случайно происходить в случае, если другой узел сгенерирует блок на несколько секунд раньше. @@ -1344,158 +1380,146 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Дата - + Type Тип - + Address Адрес - - - Amount - Количество - - + Open for %n block(s) - Открыто для %n блокаОткрыто для %n блоковОткрыто для %n блоков + + Открыто для %n блока + Открыто для %n блоков + Открыто для %n блоков + - + Open until %1 Открыто до %1 - + Offline (%1 confirmations) Оффлайн (%1 подтверждений) - + Unconfirmed (%1 of %2 confirmations) Не подтверждено (%1 из %2 подтверждений) - + Confirmed (%1 confirmations) Подтверждено (%1 подтверждений) - - - Mined balance will be available in %n more blocks - Добытыми монетами можно будет воспользоваться через %n блокДобытыми монетами можно будет воспользоваться через %n блокаДобытыми монетами можно будет воспользоваться через %n блоков - - + 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 - На этой неделе + + Amount + Количество - - - This month - В этом месяце + + + Mined balance will be available in %n more blocks + + Добытыми монетами можно будет воспользоваться через %n блок + Добытыми монетами можно будет воспользоваться через %n блока + Добытыми монетами можно будет воспользоваться через %n блоков + + + + TransactionView - - Last month - За последний месяц + + Error exporting + Ошибка экспорта - - This year - В этом году + + to + до - - Range... - Промежуток... + + + All + Все @@ -1527,106 +1551,126 @@ p, li { white-space: pre-wrap; } Enter address or label to search Введите адрес или метку для поиска - - - Min amount - Мин. сумма - - - - Copy address - Копировать адрес - Copy label Копировать метку + + + Edit label + Изменить метку + Copy amount Скопировать сумму - - Edit label - Изменить метку + + Address + Адрес - - Show details... - Показать детали... + + Amount + Количество + + + + ID + ID + + + + Could not write to file %1. + Невозможно записать в файл %1. + + + + Range: + Промежуток от: + + + + This week + На этой неделе + + + + This month + В этом месяце + + + + Last month + За последний месяц - + + This year + В этом году + + + + Min amount + Мин. сумма + + + + Copy address + Копировать адрес + + + 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. - Невозможно записать в файл %1. + + Today + Сегодня - - Range: - Промежуток от: + + Range... + Промежуток... - - to - до + + Show details... + Показать детали... WalletModel - + Sending... Отправка.... @@ -1634,347 +1678,495 @@ p, li { white-space: pre-wrap; } bitcoin-core - - Bitcoin version - Версия + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Невозможно установить блокировку на рабочую директорию %s. Возможно, бумажник уже запущен. - - Usage: - Использование: + + Loading addresses... + Загрузка адресов... - - Send command to -server or bitcoind - Отправить команду на -server или bitcoind + + Rescanning... + Сканирование... - - List commands - Список команд - + + Loading block index... + Загрузка индекса блоков... - - Get help for a command - Получить помощь по команде + + Cannot initialize keypool + Не удаётся инициализировать массив ключей - - Options: - Опции: + + Cannot write default address + Не удаётся записать адрес по умолчанию - - Specify configuration file (default: bitcoin.conf) - Указать конфигурационный файл (по умолчанию: bitcoin.conf) + + Options: + Опции: - + Specify pid file (default: bitcoind.pid) Указать pid-файл (по умолчанию: bitcoin.pid) - + Generate coins Генерировать монеты - - Don't generate coins - Не генерировать монеты + + Set database cache size in megabytes (default: 25) + Установить размер кэша базы данных в мегабайтах (по умолчанию: 25) - - Start minimized - Запускать свёрнутым + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Принимать входящие подключения на <port> (по умолчанию: 8333 или 18333 в тестовой сети) - - Specify data directory - Укажите каталог данных + + Add a node to connect to and attempt to keep the connection open + Добавить узел для подключения и пытаться поддерживать соединение открытым + + + + Maintain at most <n> connections to peers (default: 125) + Поддерживать не более <n> подключений к узлам (по умолчанию: 125) + + + + Find peers using internet relay chat (default: 0) + Найти участников через IRC (по умолчанию: 0) - + Specify connection timeout (in milliseconds) Укажите таймаут соединения (в миллисекундах) - - Connect through socks4 proxy - Подключаться через socks4 прокси + + Fee per KB to add to transactions you send + Комиссия на килобайт, добавляемая к вашим транзакциям - - Allow DNS lookups for addnode and connect - Разрешить обращения к DNS для addnode и подключения + + Run in the background as a daemon and accept commands + Запускаться в фоне как демон и принимать команды - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Принимать входящие подключения на <port> (по умолчанию: 8333 или 18333 в тестовой сети) + + Send trace/debug info to debugger + Отправлять информацию трассировки/отладки в отладчик - - Maintain at most <n> connections to peers (default: 125) - Поддерживать не более <n> подключений к узлам (по умолчанию: 125) + + Server private key (default: server.pem) + Приватный ключ сервера (по умолчанию: server.pem) - - Add a node to connect to - Добавить узел для подключения + + Username for JSON-RPC connections + Имя для подключений JSON-RPC - - Connect only to the specified node - Подключаться только к указанному узлу + + Usage + Использование - - Don't accept connections from outside - Не принимать входящие подключения + + Error loading wallet.dat: Wallet corrupted + Ошибка загрузки wallet.dat: Бумажник поврежден - - Don't bootstrap list of peers using DNS - Не получать начальный список узлов через DNS + + Wallet needed to be rewritten: restart Bitcoin to complete + Необходимо перезаписать бумажник, перезапустите Bitcoin для завершения операции. - - Threshold for disconnecting misbehaving peers (default: 100) - Порог для отключения неправильно ведущих себя узлов (по умолчанию: 100) + + Error loading wallet.dat + Ошибка при загрузке wallet.dat - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Число секунд блокирования неправильно ведущих себя узлов (по умолчанию: 86400) + + Set key pool size to <n> (default: 100) + Установить размер запаса ключей в <n> (по умолчанию: 100) - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Максимальный размер буфера приёма на соединение, <n>*1000 байт (по умолчанию: 10000) + + How many blocks to check at startup (default: 2500, 0 = all) + Сколько блоков проверять при запуске (по умолчанию: 2500, 0 = все) - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Максимальный размер буфера отправки на соединение, <n>*1000 байт (по умолчанию: 10000) + + How thorough the block verification is (0-6, default: 1) + Насколько тщательно проверять блоки (0-6, по умолчанию: 1) - - Don't attempt to use UPnP to map the listening port - Не пытаться использовать UPnP для назначения входящего порта + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + ВНИМАНИЕ: Установлена слишком большая комиссия (-paytxfee=). Данный параметр отвечает за комиссию, которую Вы будете добавлять к сумме при осуществлении транзакций. - - Attempt to use UPnP to map the listening port - Пытаться использовать UPnP для назначения входящего порта + + Error loading blkindex.dat + Ошибка чтения blkindex.dat - - Fee per kB to add to transactions you send - Комиссия на Кб, добавляемая к вашим переводам + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + ВНИМАНИЕ: Проверьте дату и время, установленные на Вашем компьютере. Если Ваши часы идут не правильно Bitcoin может наботать не корректно. - - Accept command line and JSON-RPC commands - Принимать командную строку и команды JSON-RPC + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Ошибка загрузки wallet.dat: бумажник требует более новую версию Bitcoin - - Run in the background as a daemon and accept commands - Запускаться в фоне как демон и принимать команды + + Cannot downgrade wallet + Не удаётся понизить версию бумажника - + Use the test network Использовать тестовую сеть - + + Send trace/debug info to console instead of debug.log file + Выводить информацию трассировки/отладки на консоль вместо файла debug.log + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Разрешённые алгоритмы (по умолчанию: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Allow JSON-RPC connections from specified IP address + Разрешить подключения JSON-RPC с указанного IP + + + + Server certificate file (default: server.cert) + Файл серверного сертификата (по умолчанию: server.cert) + + + + This help message + Эта справка + + + + Start minimized + Запускать свёрнутым + + + + Allow DNS lookups for addnode and connect + Разрешить обращения к DNS для addnode и подключения + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Максимальный размер буфера отправки на соединение, <n>*1000 байт (по умолчанию: 10000) + + + + Error loading addr.dat + Ошибка загрузки addr.dat + + + Output extra debugging information Выводить дополнительную отладочную информацию - + + Bitcoin version + Версия + + + Prepend debug output with timestamp Дописывать отметки времени к отладочному выводу - - Send trace/debug info to console instead of debug.log file - Выводить информацию трассировки/отладки на консоль вместо файла debug.log + + Send command to -server or bitcoind + Отправить команду на -server или bitcoind - - Send trace/debug info to debugger - Отправлять информацию трассировки/отладки в отладчик + + Set database disk log size in megabytes (default: 100) + Установить размер лога базы данных в мегабайтах (по умолчанию: 100) - - Username for JSON-RPC connections - Имя для подключений JSON-RPC + + Specify configuration file (default: bitcoin.conf) + Указать конфигурационный файл (по умолчанию: bitcoin.conf) - - Password for JSON-RPC connections - Пароль для подключений JSON-RPC + + Specify data directory + Укажите каталог данных + + + + Threshold for disconnecting misbehaving peers (default: 100) + Порог для отключения неправильно ведущих себя узлов (по умолчанию: 100) - Listen for JSON-RPC connections on <port> (default: 8332) - Ожидать подключения JSON-RPC на <порт> (по умолчанию: 8332) + Usage: + Использование: - - 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) + + Done loading + Загрузка завершена - Set key pool size to <n> (default: 100) - Установить размер запаса ключей в <n> (по умолчанию: 100) + Get help for a command + Получить помощь по команде - - Rescan the block chain for missing wallet transactions - Перепроверить цепь блоков на предмет отсутствующих в кошельке транзакций + + Error: CreateThread(StartNode) failed + Ошибка: Созданиние потока (запуск узла) не удался - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -Параметры SSL: (см. Bitcoin Wiki для инструкций по настройке SSL) + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Невозможно забиндить порт %d на данном компьютере. Возможно, бумажник ужк запущен. - - Use OpenSSL (https) for JSON-RPC connections - Использовать OpenSSL (https) для подключений JSON-RPC + + List commands + Список команд + - - Server certificate file (default: server.cert) - Файл серверного сертификата (по умолчанию: server.cert) + + Warning: Disk space is low + ВНИМАНИЕ: На диске заканчивается свободное пространство - - Server private key (default: server.pem) - Приватный ключ сервера (по умолчанию: server.pem) + + Invalid -proxy address + Ошибка в адресе прокси - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Разрешённые алгоритмы (по умолчанию: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Invalid amount for -paytxfee=<amount> + Ошибка в сумме комиссии - - This help message - Эта справка + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + %s, вы должны установить опцию rpcpassword в конфигурационном файле: + %s +Рекомендуется использовать следующий случайный пароль: +rpcuser=bitcoinrpc +rpcpassword=%s +(вам не нужно запоминать этот пароль) +Если файл не существует, создайте его и установите право доступа только для чтения только для владельца. + + + + + Don't generate coins + Не генерировать монеты + + + + Show splash screen on startup (default: 1) + Показывать сплэш при запуске (по умолчанию: 1) - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Невозможно установить блокировку на рабочую директорию %s. Возможно, бумажник уже запущен. + Connect through socks4 proxy + Подключаться через socks4 прокси - - Loading addresses... - Загрузка адресов... + + Detach block and address databases. Increases shutdown time (default: 0) + Отключить базы данных блоков и адресов. Увеличивает время завершения работы (по умолчанию: 0) - - Error loading addr.dat - Ошибка загрузки addr.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. + Ошибка: В транзакции отказано. Такое может произойти, если некоторые монеты уже были потрачены, например, если Вы используете одну копию файла wallet.dat, а монеты были потрачены из другой копии, но не были отмечены как потраченные в этой. - - Error loading blkindex.dat - Ошибка чтения blkindex.dat + + Connect only to the specified node + Подключаться только к указанному узлу + + + + Accept connections from outside (default: 1) + Принимать подключения извне (по умолчанию: 1) + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Ошибка: эта транзакция требует комиссию в размере как минимум %s из-за её объёма, сложности или использования недавно полученных средств - Error loading wallet.dat: Wallet corrupted - Ошибка загрузки wallet.dat: Бумажник поврежден + Set language, for example "de_DE" (default: system locale) + Выберите язык, например "de_DE" (по умолчанию: как в системе) - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Ошибка загрузки wallet.dat: бумажник требует более новую версию Bitcoin + Find peers using DNS lookup (default: 1) + Искать узлы с помощью DNS (по умолчанию: 1) - - Wallet needed to be rewritten: restart Bitcoin to complete - Необходимо перезаписать бумажник, перезапустите Bitcoin для завершения операции. + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Число секунд блокирования неправильно ведущих себя узлов (по умолчанию: 86400) - - Error loading wallet.dat - Ошибка при загрузке wallet.dat + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Максимальный размер буфера приёма на соединение, <n>*1000 байт (по умолчанию: 10000) - - Loading block index... - Загрузка индекса блоков... + + Use Universal Plug and Play to map the listening port (default: 1) + Использовать UPnP для проброса порта (по умолчанию: 1) - - Loading wallet... - Загрузка бумажника... + + Use Universal Plug and Play to map the listening port (default: 0) + Использовать UPnP для проброса порта (по умолчанию: 0) - - Rescanning... - Сканирование... + + Accept command line and JSON-RPC commands + Принимать командную строку и команды JSON-RPC - - Done loading - Загрузка завершена + + Password for JSON-RPC connections + Пароль для подключений JSON-RPC - - Invalid -proxy address - Ошибка в адресе прокси + + Listen for JSON-RPC connections on <port> (default: 8332) + Ожидать подключения JSON-RPC на <порт> (по умолчанию: 8332) - - Invalid amount for -paytxfee=<amount> - Ошибка в сумме комиссии + + 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=). Данный параметр отвечает за комиссию, которую Вы будете добавлять к сумме при осуществлении транзакций. + + 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 +Если файл не существует, создайте его и установите право доступа только для чтения только для владельца. - - Error: CreateThread(StartNode) failed - Ошибка: Созданиние потока (запуск узла) не удался + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Выполнить команду, когда появляется новый блок (%s в команде заменяется на хэш блока) - - Warning: Disk space is low - ВНИМАНИЕ: На диске заканчивается свободное пространство + + Upgrade wallet to latest format + Обновить бумажник до последнего формата - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Невозможно забиндить порт %d на данном компьютере. Возможно, бумажник ужк запущен. + + Rescan the block chain for missing wallet transactions + Перепроверить цепь блоков на предмет отсутствующих в бумажнике транзакций - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - ВНИМАНИЕ: Проверьте дату и время, установленные на Вашем компьютере. Если Ваши часы идут не правильно Bitcoin может наботать не корректно. + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +Параметры SSL: (см. Bitcoin Wiki для инструкций по настройке SSL) - - beta - бета + + An error occurred while setting up the RPC port %i for listening: %s + Произошла ошибка при открытии RPC-порта %i для прослушивания: %s + + + + Use OpenSSL (https) for JSON-RPC connections + Использовать OpenSSL (https) для подключений JSON-RPC + + + + Bitcoin + Биткоин + + + + Error + Ошибка + + + + Error: Transaction creation failed + Ошибка: Создание транзакции не удалось + + + + Error: Wallet locked, unable to create transaction + Ошибка: бумажник заблокирован, невозможно создать транзакцию + + + + Insufficient funds + Недостаточно монет + + + + Invalid amount + Неверное количество + + + + Sending... + Отправка... + + + + To use the %s option + Чтобы использовать опцию %s - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_sk.ts b/src/qt/locale/bitcoin_sk.ts index c8b49a13e1..67b55a0c55 100644 --- a/src/qt/locale/bitcoin_sk.ts +++ b/src/qt/locale/bitcoin_sk.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> verzia - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -87,42 +89,42 @@ This product includes software developed by the OpenSSL Project for use in the O &Zmazať - + Copy address Kopírovať adresu - + Copy label Kopírovať popis - + Edit Upraviť - + Delete Zmazať - + Export Address Book Data Exportovať dáta z adresára - + Comma separated file (*.csv) Čiarkou oddelený súbor (*.csv) - + Error exporting Chyba exportu. - + Could not write to file %1. Nedalo sa zapisovať do súboru %1. @@ -130,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Popis - + Address Adresa - + (no label) (bez popisu) @@ -153,23 +155,22 @@ This product includes software developed by the OpenSSL Project for use in the O Dialóg - - + TextLabel TextovýPopis - + Enter passphrase Zadajte heslo - + New passphrase Nové heslo - + Repeat new passphrase Zopakujte nové heslo @@ -232,9 +233,9 @@ Ste si istí, že si želáte zašifrovať peňaženku? Peňaženka zašifrovaná - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - + + Wallet passphrase was successfully changed. + Heslo k peňaženke bolo úspešne zmenené. @@ -279,286 +280,279 @@ Ste si istí, že si želáte zašifrovať peňaženku? Zlyhalo šifrovanie peňaženky. - - Wallet passphrase was succesfully changed. - Heslo k peňaženke bolo úspešne zmenené. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin sa teraz ukončí pre dokončenie procesu šifrovania. Pamätaj že šifrovanie peňaženky Ťa nemôže úplne ochrániť pred kráďežou bitcoinov pomocou škodlivého software. BitcoinGUI - + Bitcoin Wallet Bitcoin peňaženka - - + Synchronizing with network... Synchronizácia so sieťou... - - Block chain synchronization in progress - Prebieha synchronizácia blockchain. - - - + &Overview &Prehľad - + Show general overview of wallet Zobraziť celkový prehľad o peňaženke - + &Transactions &Preklady - + Browse transaction history Prechádzať históriu transakcií - + &Address Book &Adresár - + Edit the list of stored addresses and labels Editovať zoznam uložených adries a popisov - + &Receive coins &Prijať bitcoins - + Show the list of addresses for receiving payments Zobraziť zoznam adries pre prijímanie platieb. - + &Send coins &Poslať bitcoins - + Send coins to a bitcoin address Poslať bitcoins na adresu - + Sign &message Podpísať &správu - + Prove you control an address Dokázať že kontrolujete adresu - + E&xit U&končiť - + Quit application Ukončiť program - + &About %1 &O %1 - + Show information about Bitcoin Zobraziť informácie o Bitcoin - + About &Qt O &Qt - + Show information about Qt Zobrazit informácie o Qt - + &Options... &Možnosti... - + Modify configuration options for bitcoin Upraviť možnosti nastavenia pre bitcoin - - Open &Bitcoin - Otvoriť &Bitcoin - - - - Show the Bitcoin window - Zobraziť okno Bitcoin - - - + &Export... &Export... - - Export the data in the current tab to a file - - - - + &Encrypt Wallet &Zašifrovať Peňaženku - + Encrypt or decrypt wallet Zašifrovať alebo dešifrovať peňaženku - + &Backup Wallet - - - - - Backup wallet to another location - + &Backup peňaženku - + &Change Passphrase &Zmena Hesla - + Change the passphrase used for wallet encryption Zmeniť heslo použité na šifrovanie peňaženky - + &File &Súbor - + &Settings &Nastavenia - + &Help &Pomoc - + Tabs toolbar Lišta záložiek - + Actions toolbar Lišta aktvivít - + [testnet] [testovacia sieť] - + + Bitcoin client + + + + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - + + %n aktívne spojenie v Bitcoin sieti + %n aktívne spojenia v Bitcoin sieti + %n aktívnych spojení v Bitconi sieti + - - - Downloaded %1 of %2 blocks of transaction history. - + + + ~%n block(s) remaining + + + + + - - Downloaded %1 blocks of transaction history. - + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Stiahnutých %1 (of %2) blokov transakčnej histórie (%3% done). - + %n second(s) ago - + + pred %n sekundou + pred %n sekundami + pred %n sekundami + - + %n minute(s) ago - + + pred %n minútou + pred %n minútami + pred %n minútami + - + %n hour(s) ago - + + pred hodinou + pred %n hodinami + pred %n hodinami + - + %n day(s) ago - + + včera + pred %n dňami + pred %n dňami + - + Up to date Aktualizovaný - - Catching up... - - - - + Last received block was generated %1. Posledný prijatý blok bol generovaný %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? - - - - + Sending... Odosielanie... - + Sent transaction Odoslané transakcie - + Incoming transaction Prijaté transakcie - + Date: %1 Amount: %2 Type: %3 @@ -570,52 +564,97 @@ Typ: %3 Adresa: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + Peňaženka je <b>zašifrovaná</b> a momentálne <b>odomknutá</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> - + Peňaženka je <b>zašifrovaná</b> a momentálne <b>zamknutá</b> - - Backup Wallet - + + Backup Failed + - - Wallet Data (*.dat) - + + Export the data in the current tab to a file + Exportovať tento náhľad do súboru - - Backup Failed - + + Show/Hide &Bitcoin + + + + + Show or hide the Bitcoin window + Zobraziť okno Bitcoin + + + + Backup wallet to another location + Zálohovať peňaženku na iné miesto + + + + Catching up... + Sťahujem... - + + 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? + Veľkosť tejto transakcie prekračuje limit. Stále ju však môžete odoslať za poplatok %1 ktorý bude pripísaný uzlu spracúvajúcemu vašu transakciu. Chcete zaplatiť poplatok? + + + + Wallet Data (*.dat) + + + + There was an error trying to save the wallet data to the new location. - + Nastala chyba pri pokuse uložiť peňaženku na nové miesto. + + + + Backup Wallet + Zálohovať peňaženku + + + + Downloaded %1 blocks of transaction history. + Stiahnutých %1 blokov transakčnej histórie + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: &Zobrazovať hodnoty v jednotkách: - + Choose the default subdivision unit to show in the interface, and when sending coins - + + + + + &Display addresses in transaction list + &Zobraziť adresy zo zoznamu transakcií - - Display addresses in transaction list - Zobraziť adresy zo zoznamu transakcií. + + Whether to show Bitcoin addresses in the transaction list + @@ -625,11 +664,6 @@ Adresa: %4 Edit Address Upraviť adresu - - - &Label - &Popis - The label associated with this address book entry @@ -643,7 +677,12 @@ Adresa: %4 The address associated with this address book entry. This can only be modified for sending addresses. - + Adresa spojená s týmto záznamom v adresári. Možno upravovať len pre odosielajúce adresy. + + + + &Label + &Popis @@ -655,6 +694,11 @@ Adresa: %4 New sending address Nová adresa pre odoslanie + + + New key generation failed. + Generovanie nového kľúča zlyhalo. + Edit receiving address @@ -680,96 +724,96 @@ Adresa: %4 Could not unlock wallet. Nepodarilo sa odomknúť peňaženku. - - - New key generation failed. - Generovanie nového kľúča zlyhalo. - MainOptionsPage - + &Start Bitcoin on window system startup &Spustiť Bitcoin pri spustení systému správy okien - + Automatically start Bitcoin after the computer is turned on Automaticky spustiť Bitcoin po zapnutí počítača - - &Minimize to the tray instead of the taskbar - - - - + Show only a tray icon after minimizing the window Zobraziť len ikonu na lište po minimalizovaní okna. - + Map port using &UPnP Mapovať port pomocou &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Automaticky otvorit port pre Bitcoin na routeri. Toto funguje len ak router podporuje UPnP a je táto podpora aktivovaná. - + M&inimize on close M&inimalizovať pri zavretí - + + &Minimize to the tray instead of the taskbar + Zobraziť len ikonu na lište po minimalizovaní okna. + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimalizovat namiesto ukončenia aplikácie keď sa okno zavrie. Keď je zvolená táto možnosť, aplikácia sa zavrie len po zvolení Ukončiť v menu. - + &Connect through SOCKS4 proxy: &Pripojiť cez SOCKS4 proxy: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Pripojiť do siete Bitcoin cez SOCKS4 proxy (napr. keď sa pripájate cez Tor) - + Proxy &IP: Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) IP addresa proxy (napr. 127.0.0.1) - + &Port: &Port: - + Port of the proxy (e.g. 1234) Port proxy (napr. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Voliteľný transakčný poplatok za kB ktorý pomôže rýchlemu spracovaniu transakcie. Väčšina transakcií má 1 kB. Poplatok 0.01 je odporúčaný. - - - + Pay transaction &fee Zaplatiť transakčné &poplatky - + + Detach databases at shutdown + + + + + 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. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Voliteľný transakčný poplatok za kB ktorý pomôže rýchlemu spracovaniu transakcie. Väčšina transakcií má 1 kB. Poplatok 0.01 je odporúčaný. @@ -784,12 +828,12 @@ Adresa: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - + Môžete podpísať správy svojou adresou a dokázať, že ju vlastníte. Buďte opatrní a podpíšte len prehlásenia s ktorými plne súhlasíte, nakoľko útoky typu "phishing" Vás môžu lákať k ich podpísaniu. - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adresa pre odoslanie platby je (napr. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Zadajte Bitcoin adresu (napr. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -833,8 +877,8 @@ Adresa: %4 - Copy the currently selected address to the system clipboard - Kopírovať práve zvolenú adresu do systémového klipbordu + Copy the current signature to the system clipboard + @@ -867,23 +911,28 @@ Adresa: %4 OptionsDialog - + + Options + Možnosti + + + Main Hlavné - + Display Displej - - - Options - Možnosti - OverviewPage + + + Total number of transactions in wallet + Celkový počet transakcií v peňaženke + Form @@ -894,11 +943,6 @@ Adresa: %4 Balance: Zostatok: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -915,21 +959,12 @@ Adresa: %4 Nepotvrdené: - - 0 BTC - 0 BTC + + Wallet + Peňaženka - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - - - - + <b>Recent transactions</b> <b>Nedávne transakcie</b> @@ -943,76 +978,96 @@ p, li { white-space: pre-wrap; } Total of transactions that have yet to be confirmed, and do not yet count toward the current balance Suma transakcií ktoré ešte neboli potvrdené a nezapočítavaju sa do celkového zostatku. - - - Total number of transactions in wallet - Celkový počet transakcií v peňaženke - QRCodeDialog - - - Dialog - Dialóg - QR Code QR kód - + + Message: + Správa: + + + + &Save As... + &Uložiť ako... + + + + Dialog + Dialóg + + + Request Payment Vyžiadať platbu - + Amount: Suma: - + BTC BTC - + Label: Popis: - - Message: - Správa: + + Error encoding URI into QR Code. + - - &Save As... - &Uložiť ako... + + Resulting URI too long, try to reduce the text for label / message. + - + Save Image... - + - + PNG Images (*.png) - + SendCoinsDialog + + + &Send + &Odoslať + + + + Confirm send coins + Potvrdiť odoslanie bitcoins + + + + Are you sure you want to send %1? + Ste si istí, že chcete odoslať %1? + - - - - - - - + + + + + + + Send Coins Poslať Bitcoins @@ -1021,6 +1076,46 @@ p, li { white-space: pre-wrap; } Send to multiple recipients at once Poslať viacerým príjemcom naraz + + + <b>%1</b> to %2 (%3) + <b>%1</b> do %2 (%3) + + + + and + a + + + + The recipient address is not valid, please recheck. + Adresa príjemcu je neplatná, prosím, overte ju. + + + + The amount to pay must be larger than 0. + Suma na úhradu musí byť väčšia ako 0. + + + + The amount exceeds your balance. + Suma je vyššia ako Váš zostatok. + + + + The total exceeds your balance when the %1 transaction fee is included. + Suma celkom prevyšuje Váš zostatok ak sú započítané %1 transakčné poplatky. + + + + Error: Transaction creation failed. + Chyba: Zlyhalo vytvorenie transakcie. + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 odmietnutá. Toto sa môže stať ak niektoré z mincí vo vašej peňaženke boli už utratené, napríklad ak používaš kópiu wallet.dat a mince označené v druhej kópií neboli označené ako utratené v tejto. + &Add recipient... @@ -1052,93 +1147,38 @@ p, li { white-space: pre-wrap; } Potvrďte odoslanie - - &Send - &Odoslať + + Duplicate address found, can only send to each address once per send operation. + Duplikát adresy objavený, je možné poslať na každú adresu len raz v jednej odchádzajúcej transakcii. + + + SendCoinsEntry - - <b>%1</b> to %2 (%3) - <b>%1</b> do %2 (%3) + + Form + Forma - - Confirm send coins - Potvrdiť odoslanie bitcoins + + A&mount: + Su&ma: - - Are you sure you want to send %1? - Ste si istí, že chcete odoslať %1? + + Pay &To: + Zapla&tiť: - - and - a + + + 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 - - The recepient address is not valid, please recheck. - Adresa príjemcu je neplatná, prosím, overte ju. - - - - The amount to pay must be larger than 0. - Suma na úhradu musí byť väčšia ako 0. - - - - Amount exceeds your balance - Suma je vyššia ako Váš zostatok - - - - Total exceeds your balance when the %1 transaction fee is included - Suma celkom prevyšuje Váš zostatok ak sú započítané %1 transakčné poplatky - - - - Duplicate address found, can only send to each address once in one send operation - Duplikát adresy objavený, je možné poslať na každú adresu len raz v jednej odchádzajúcej transakcii. - - - - Error: Transaction creation failed - Chyba: Zlyhalo vytvorenie transakcie - - - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - - - - - SendCoinsEntry - - - Form - Forma - - - - 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: + + &Label: + &Popis: @@ -1179,142 +1219,142 @@ p, li { white-space: pre-wrap; } TransactionDesc - - Open for %1 blocks - - - - + Open until %1 - - - - - %1/offline? - + Otvorené do %1 - + %1/unconfirmed %1/nepotvrdené - + %1 confirmations %1 potvrdení - + <b>Status:</b> <b>Stav:</b> - + , has not been successfully broadcast yet , ešte nebola úspešne odoslaná - + , broadcast through %1 node , odoslaná cez %1 nódu - + , broadcast through %1 nodes , odoslaná cez %1 nód - + + Open for %1 blocks + + + + + %1/offline? + + + + <b>Date:</b> <b>Dátum:</b> - + <b>Source:</b> Generated<br> <b>Zdroj:</b> Generovaný<br> - - + + <b>From:</b> <b>od:</b> - + unknown neznámy - - - + + + <b>To:</b> <b>Komu:</b> - + (yours, label: (vaše, popis: - + (yours) (vaše) - - - - + + + + <b>Credit:</b> <b>Kredit:</b> - + (%1 matures in %2 more blocks) (%1 dospeje o %2 blokov) - + (not accepted) (neprijaté) - - - + + + <b>Debit:</b> <b>Debet:</b> - + <b>Transaction fee:</b> <b>Transakčný poplatok:</b> - + <b>Net amount:</b> <b>Suma netto:</b> - + Message: Správa: - + Comment: Komentár: - + Transaction ID: ID transakcie: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + @@ -1333,123 +1373,186 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Dátum - + Type Typ - + Address Adresa - + Amount Hodnota - - - Open for %n block(s) - - - + Open until %1 - + Otvorené do %1 - + Offline (%1 confirmations) - + Offline (%1 potvrdení) - + Unconfirmed (%1 of %2 confirmations) Nepotvrdené (%1 z %2 potvrdení) - + Confirmed (%1 confirmations) Potvrdené (%1 potvrdení) - - - Mined balance will be available in %n more blocks - + + + Sent to + Odoslané na + + + + Payment to yourself + Platba sebe samému + + + + Mined + Vyfárané - + This block was not received by any other nodes and will probably not be accepted! Ten blok nebol prijatý žiadnou inou nódou a pravdepodobne nebude akceptovaný! - + Generated but not accepted Vypočítané ale neakceptované + + + Open for %n block(s) + + + + + + + + + (n/a) + (n/a) + - + Received with Prijaté s - + Received from Prijaté od: - - - Sent to - Odoslané na - - - - Payment to yourself - Platba sebe samému - - - - Mined - Vyfárané - - - - (n/a) - (n/a) + + + Mined balance will be available in %n more blocks + + + + + - + Transaction status. Hover over this field to show number of confirmations. Status transakcie. Pohybujte myšou nad týmto poľom a zjaví sa počet potvrdení. - - Date and time that the transaction was received. - Dátum a čas prijatia transakcie. + + Type of transaction. + Typ transakcie. - Type of transaction. - Typ transakcie. + Date and time that the transaction was received. + Dátum a čas prijatia transakcie. - + Destination address of transaction. Cieľová adresa transakcie. - + Amount removed from or added to balance. Suma pridaná alebo odobraná k zostatku. TransactionView + + + Edit label + Editovať popis + + + + Export Transaction Data + Exportovať transakčné dáta + + + + 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 exportu + @@ -1537,431 +1640,515 @@ p, li { white-space: pre-wrap; } Kopírovať sumu - - Edit label - Editovať popis + + Could not write to file %1. + Nedalo sa zapisovať do súboru %1. + + + + Range: + Rozsah: + + + + to + do Show details... Ukázať detaily... + + + WalletModel - - Export Transaction Data - Exportovať transakčné dáta + + Sending... + Odosielanie... + + + bitcoin-core - - Comma separated file (*.csv) - Čiarkou oddelovaný súbor (*.csv) + + Usage: + Použitie: - - Confirmed - Potvrdené + + List commands + Zoznam príkazov - - Date - Dátum + + Get help for a command + Dostať pomoc pre príkaz - - Type - Typ + + Options: + Možnosti: - - Label - Popis + + Accept command line and JSON-RPC commands + Prijímať príkazy z príkazového riadku a JSON-RPC - - Address - Adresa + + Run in the background as a daemon and accept commands + Bežať na pozadí ako démon a prijímať príkazy - - Amount - Suma + + Password for JSON-RPC connections + Heslo pre JSON-rPC spojenia - - ID - ID + + Use the test network + Použiť testovaciu sieť - - Error exporting - Chyba exportu + + Prepend debug output with timestamp + Pridať na začiatok ladiaceho výstupu časový údaj - - Could not write to file %1. - Nedalo sa zapisovať do súboru %1. + + Send trace/debug info to console instead of debug.log file + Odoslať trace/debug informácie na konzolu namiesto debug.info žurnálu - - Range: - Rozsah: + + Send trace/debug info to debugger + Odoslať trace/debug informácie do ladiaceho programu - - to - do + + Allow JSON-RPC connections from specified IP address + Povoliť JSON-RPC spojenia z určenej IP adresy. - - - WalletModel - - Sending... - Odosielanie... + + 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) - - - bitcoin-core - - Bitcoin version - Bitcoin verzia + + Set key pool size to <n> (default: 100) + Nastaviť zásobu adries na <n> (predvolené: 100) - - Usage: - Použitie: + + Use OpenSSL (https) for JSON-RPC connections + Použiť OpenSSL (https) pre JSON-RPC spojenia - - Send command to -server or bitcoind - Odoslať príkaz -server alebo bitcoind + + Server certificate file (default: server.cert) + Súbor s certifikátom servra (predvolené: server.cert) - - List commands - Zoznam príkazov + + Server private key (default: server.pem) + Súkromný kľúč servra (predvolené: server.pem) - - Get help for a command - Dostať pomoc pre príkaz + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Prijateľné šifry (predvolené: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Rescan the block chain for missing wallet transactions + Znovu skenovať reťaz blokov pre chýbajúce transakcie + + + + This help message + Táto pomocná správa + + + + Loading addresses... + Načítavanie adries... + + + + Loading block index... + Načítavanie zoznamu blokov... + + + + Loading wallet... + Načítavam peňaženku... + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Chyba načítania wallet.dat: Peňaženka vyžaduje novšiu verziu Bitcoin + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Bolo potrebné prepísať peňaženku: dokončite reštartovaním Bitcoin + + + + Error loading wallet.dat + Chyba načítania wallet.dat + + + + Done loading + Dokončené načítavanie + + + + Bitcoin version + Bitcoin verzia - Options: - Možnosti: + Error: Wallet locked, 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 + Veľkosť tejto transakcie prekračuje limit. Stále ju však môžete odoslať za poplatok %1 ktorý bude pripísaný uzlu spracúvajúcemu vašu transakciu. Chcete zaplatiť poplatok? + + + + Invalid amount + Neplatná suma + + + + Insufficient funds + + + + + 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=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + + + + + Error + Chyba + + + + An error occurred while setting up the RPC port %i for listening: %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. + + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + + + + Send command to -server or bitcoind + Odoslať príkaz -server alebo bitcoind + + + Specify configuration file (default: bitcoin.conf) Určiť súbor s nastaveniami (predvolené: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Určiť súbor pid (predvolené: bitcoind.pid) - + Generate coins Počítaj bitcoins - + Don't generate coins Nepočítaj bitcoins - + Start minimized Spustiť minimalizované - + + Show splash screen on startup (default: 1) + + + + Specify data directory Určiť priečinok s dátami - + + Set database cache size in megabytes (default: 25) + + + + + Set database disk log size in megabytes (default: 100) + + + + Specify connection timeout (in milliseconds) Určiť aut spojenia (v milisekundách) - + Connect through socks4 proxy Pripojenie cez socks4 proxy - + Allow DNS lookups for addnode and connect Povoliť vyhľadávanie DNS pre pridanie nódy a spojenie - + Listen for connections on <port> (default: 8333 or testnet: 18333) Načúvať spojeniam na <port> (prednastavené: 8333 alebo testovacia sieť: 18333) - + Maintain at most <n> connections to peers (default: 125) Udržiavať maximálne <n> spojení (predvolené: 125) - - Add a node to connect to - Pridať nódu a pripojiť sa + + Add a node to connect to and attempt to keep the connection open + Pridať nódu a pripojiť sa and attempt to keep the connection open - + Connect only to the specified node Pripojiť sa len k určenej nóde - - Don't accept connections from outside - Neprijímať spojenia z vonku + + Find peers using internet relay chat (default: 0) + - - Don't bootstrap list of peers using DNS - + + Accept connections from outside (default: 1) + - - Threshold for disconnecting misbehaving peers (default: 100) - + + Set language, for example "de_DE" (default: system locale) + - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + + Find peers using DNS lookup (default: 1) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + + Threshold for disconnecting misbehaving peers (default: 100) + - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Don't attempt to use UPnP to map the listening port - Neskúsiť použiť UPnP pre mapovanie počúvajúceho portu + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + - - Attempt to use UPnP to map the listening port - Skúsiť použiť UPnP pre mapovanie počúvajúceho portu + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + - - Fee per kB to add to transactions you send - Poplatok za kB ktorý treba pridať k odoslanej transakcii + + Use Universal Plug and Play to map the listening port (default: 1) + Skúsiť použiť UPnP pre mapovanie počúvajúceho portu (default: 1) - - Accept command line and JSON-RPC commands - Prijímať príkazy z príkazového riadku a JSON-RPC + + Use Universal Plug and Play to map the listening port (default: 0) + Skúsiť použiť UPnP pre mapovanie počúvajúceho portu (default: 0) - - Run in the background as a daemon and accept commands - Bežať na pozadí ako démon a prijímať príkazy + + Detach block and address databases. Increases shutdown time (default: 0) + - - Use the test network - Použiť testovaciu sieť + + Fee per KB to add to transactions you send + Poplatok za kB ktorý treba pridať k odoslanej transakcii - + Output extra debugging information Produkovať extra ladiace informácie - - Prepend debug output with timestamp - Pridať na začiatok ladiaceho výstupu časový údaj - - - - 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 - Odoslať trace/debug informácie do ladiaceho programu - - - + Username for JSON-RPC connections Užívateľské meno pre JSON-RPC spojenia - - Password for JSON-RPC connections - Heslo pre JSON-rPC spojenia + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Listen for JSON-RPC connections on <port> (default: 8332) - Počúvať JSON-RPC spojeniam na <port> (predvolené: 8332) + + Upgrade wallet to latest format + - - Allow JSON-RPC connections from specified IP address - Povoliť JSON-RPC spojenia z určenej IP adresy. + + How many blocks to check at startup (default: 2500, 0 = all) + - - 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) - - - - Set key pool size to <n> (default: 100) - Nastaviť zásobu adries na <n> (predvolené: 100) - - - - Rescan the block chain for missing wallet transactions - + + How thorough the block verification is (0-6, default: 1) + - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL možnosť: (pozrite Bitcoin Wiki pre návod na nastavenie SSL) - - 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) - Prijateľné šifry (predvolené: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - This help message - Táto pomocná správa + + Usage + Použitie - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - - Loading addresses... - Načítavanie adries... + + Bitcoin + - + Error loading addr.dat Chyba načítania addr.dat - - Error loading blkindex.dat - Chyba načítania blkindex.dat + + Cannot downgrade wallet + - - Error loading wallet.dat: Wallet corrupted - Chyba načítania wallet.dat: Peňaženka je poškodená + + Cannot initialize keypool + - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Chyba načítania wallet.dat: Peňaženka vyžaduje novšiu verziu Bitcoin + + Cannot write default address + - - Wallet needed to be rewritten: restart Bitcoin to complete - Bolo potrebné prepísať peňaženku: dokončite reštartovaním Bitcoin - - - - Error loading wallet.dat - Chyba načítania wallet.dat - - - - Loading block index... - Načítavanie zoznamu blokov... - - - - Loading wallet... - Načítavam peňaženku... - - - + Rescanning... - - - - - Done loading - Dokončené načítavanie + - + Invalid -proxy address Neplatná adresa proxy - + Invalid amount for -paytxfee=<amount> Neplatná suma pre -paytxfee=<amount> - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. Varovanie: -paytxfee je nastavené veľmi vysoko. Toto sú transakčné poplatky ktoré zaplatíte ak odošlete transakciu. - + Error: CreateThread(StartNode) failed Chyba: zlyhalo CreateThread(StartNode) - - Warning: Disk space is low - Varovanie: Málo voľného miesta na disku + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - + + Listen for JSON-RPC connections on <port> (default: 8332) + Počúvať JSON-RPC spojeniam na <port> (predvolené: 8332) - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + + Error loading blkindex.dat + Chyba načítania blkindex.dat - - beta - beta + + Error loading wallet.dat: Wallet corrupted + Chyba načítania wallet.dat: Peňaženka je poškodená + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 odmietnutá. Toto sa môže stať ak niektoré z mincí vo vašej peňaženke boli už utratené, napríklad ak používaš kópiu wallet.dat a mince označené v druhej kópií neboli označené ako utratené v tejto. + + + + Error: Transaction creation failed + Chyba: Zlyhalo vytvorenie transakcie + + + + Sending... + Odosielanie... + + + + Warning: Disk space is low + Varovanie: Málo voľného miesta na disku - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_sr.ts b/src/qt/locale/bitcoin_sr.ts index 59c0c99190..8e9fe80573 100644 --- a/src/qt/locale/bitcoin_sr.ts +++ b/src/qt/locale/bitcoin_sr.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> верзија - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,7 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + @@ -64,17 +66,17 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code - + Sign a message to prove you own this address - + &Sign Message - + @@ -87,42 +89,42 @@ This product includes software developed by the OpenSSL Project for use in the O &Избриши - + Copy address - + - + Copy label - + - + Edit - + - + Delete - + Избриши - + Export Address Book Data Извоз података из адресара - + Comma separated file (*.csv) Зарезом одвојене вредности (*.csv) - + Error exporting Грешка током извоза - + Could not write to file %1. Није могуће писати у фајл %1. @@ -130,17 +132,17 @@ This product includes software developed by the OpenSSL Project for use in the O AddressTableModel - + Label Етикета - + Address Адреса - + (no label) (без етикете) @@ -153,23 +155,22 @@ This product includes software developed by the OpenSSL Project for use in the O Дијалог - - + TextLabel TextLabel - + Enter passphrase Унесите лозинку - + New passphrase Нова лозинка - + Repeat new passphrase Поновите нову лозинку @@ -234,13 +235,7 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - - - - Warning: The Caps Lock key is on. - + @@ -280,397 +275,416 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. Лозинка за приступ новчанику је успешно промењена. + + + + Warning: The Caps Lock key is on. + + BitcoinGUI - + Bitcoin Wallet Bitcoin новчаник - - - Synchronizing with network... - Синхронизација са мрежом у току... + + Show/Hide &Bitcoin + - - Block chain synchronization in progress - Синхронизовање ланца блоква је у току + + Show or hide the Bitcoin window + Приказује прозор Bitcoin-а + + + + 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 &Слање новца - + Send coins to a bitcoin address Пошаљите новац на bitcoin адресу - + Sign &message - + - + Prove you control an address - + - + E&xit - + - + Quit application Напустите програм - + &About %1 - + &О %1-у - + Show information about Bitcoin Прегледајте информације о Bitcoin-у - + About &Qt - + О &Qt-у - + Show information about Qt - + Прегледајте информације о Qt-у - + &Options... П&оставке... - + Modify configuration options for bitcoin Изаберите могућности bitcoin-а + + + ~%n block(s) remaining + + + + + + - - Open &Bitcoin - Отвори &Bitcoin + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Преузето је %1 од укупно %2 блокова историјата трансакција (%3% done). - - Show the Bitcoin window - Приказује прозор Bitcoin-а + + Backup Wallet + Backup новчаника - + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to the new location. + + + + &Export... &Извоз... - + Export the data in the current tab to a file - + - + &Encrypt Wallet &Шифровање новчаника - + Encrypt or decrypt wallet Шифровање и дешифровање новчаника - + &Backup Wallet - + &Backup новчаника - + Backup wallet to another location - + - + &Change Passphrase Промени &лозинку - + Change the passphrase used for wallet encryption Мењање лозинке којом се шифрује новчаник - + &File &Фајл - + &Settings &Подешавања - + &Help П&омоћ - + Tabs toolbar Трака са картицама - + Actions toolbar Трака са алаткама - + [testnet] [testnet] - + + Bitcoin client + + + + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n активна веза са Bitcoin мрежом%n активне везе са Bitcoin мрежом%n активних веза са Bitcoin мрежом + + %n активна веза са Bitcoin мрежом + %n активне везе са Bitcoin мрежом + %n активних веза са Bitcoin мрежом + - - Downloaded %1 of %2 blocks of transaction history. - Преузето је %1 од укупно %2 блокова историјата трансакција. - - - + Downloaded %1 blocks of transaction history. Преузето је %1 блокова историјата трансакција. - + %n second(s) ago - пре %n секундпре %n секундепре %n секунди + + пре %n секунд + пре %n секунде + пре %n секунди + - + %n minute(s) ago - пре %n минутпре %n минутапре %n минута + + пре %n минут + пре %n минута + пре %n минута + - + %n hour(s) ago - пре %n сатпре %n сатапре %n сати + + пре %n сат + пре %n сата + пре %n сати + - + %n day(s) ago - пре %n данпре %n данапре %n дана + + пре %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, која ће отићи чвору који прерађује трансакцију и помаже издржавању целе мреже. Да ли желите да дате напојницу? - + Sending... Слање... - + Sent transaction Послана трансакција - + Incoming transaction Придошла трансакција - + Date: %1 Amount: %2 Type: %3 Address: %4 - + - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Новчаник јс <b>шифрован</b> и тренутно <b>откључан</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> Новчаник јс <b>шифрован</b> и тренутно <b>закључан</b> - - Backup Wallet - - - - - Wallet Data (*.dat) - - - - - Backup Failed - - - - - There was an error trying to save the wallet data to the new location. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: &Јединица за приказивање износа: - + Choose the default subdivision unit to show in the interface, and when sending coins - + - - Display addresses in transaction list - + + &Display addresses in transaction list + + + + + Whether to show Bitcoin addresses in the transaction list + 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 bitcoin address. - + @@ -680,95 +694,125 @@ Address: %4 New key generation failed. - + + + + + 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. + MainOptionsPage - + &Start Bitcoin on window system startup - + - + Automatically start Bitcoin after the computer is turned on - + - + &Minimize to the tray instead of the taskbar - + - + Show only a tray icon after minimizing the window - + - Map port using &UPnP - + M&inimize on close + - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - + 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 - + Map port using &UPnP + - 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. - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + - + &Connect through SOCKS4 proxy: - + - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + - + Proxy &IP: - + - + IP address of the proxy (e.g. 127.0.0.1) - + - + &Port: - + - + Port of the proxy (e.g. 1234) - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + - + Pay transaction &fee - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Detach databases at shutdown + + + + + 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. + @@ -776,62 +820,62 @@ Address: %4 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Choose adress from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Click "Sign Message" to get signature - + Sign a message to prove you own this address - + &Sign Message - + - Copy the currently selected address to the system clipboard - Копира изабрану адресу на системски клипборд + Copy the current signature to the system clipboard + @@ -843,111 +887,93 @@ Address: %4 Error signing - + %1 is not a valid address. - + Private key for %1 is not available. - + Sign failed - + OptionsDialog - + Main - + - + Display - + - + Options - + Поставке OverviewPage + + + Your current balance + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + + + + + Total number of transactions in wallet + Укупан број трансакција у новчанику + Form - + Balance: - - - - - 123.456 BTC - + Number of transactions: - + 0 - + Unconfirmed: - - - - - 0 BTC - + - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Новчаник</span></p></body></html> + + Wallet + новчаник - + <b>Recent transactions</b> - - - - - Your current balance - - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - - - - - Total number of transactions in wallet - Укупан број трансакција у новчанику + @@ -960,97 +986,95 @@ p, li { white-space: pre-wrap; } QR Code - + - + Request Payment - + - + Amount: - + - + BTC - + - + Label: - + &Етикета - + Message: - + - + &Save As... - + - + + Error encoding URI into QR Code. + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + Save Image... - + - + PNG Images (*.png) - + SendCoinsDialog - - - - - - - - - - Send Coins - - Send to multiple recipients at once - + &Add recipient... - + Remove all transaction fields - + Clear all - + Balance: - + 123.456 BTC - + Confirm the send action - + @@ -1058,59 +1082,71 @@ p, li { white-space: pre-wrap; } &Пошаљи - + <b>%1</b> to %2 (%3) - + - + Confirm send coins - + - + Are you sure you want to send %1? Да ли сте сигурни да желите да пошаљете %1? - + and - + - - The recepient address is not valid, please recheck. - + + The recipient address is not valid, please recheck. + - + The amount to pay must be larger than 0. - + - - Amount exceeds your balance - + + The amount exceeds your balance. + - - 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 in one 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. - + Send Coins + Слање новца @@ -1118,204 +1154,204 @@ p, li { white-space: pre-wrap; } 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - + TransactionDesc - + Open for %1 blocks - + - + Open until %1 - + - + %1/offline? - + - + %1/unconfirmed - + - + %1 confirmations - + - + <b>Status:</b> - + - + , has not been successfully broadcast yet - + - + , broadcast through %1 node - + - + , broadcast through %1 nodes - + - + <b>Date:</b> - + - + <b>Source:</b> Generated<br> - + - - + + <b>From:</b> - + - + unknown - + - - - + + + <b>To:</b> - + - + (yours, label: - + - + (yours) - + - - - - + + + + <b>Credit:</b> - + - + (%1 matures in %2 more blocks) - + - + (not accepted) - + - - - + + + <b>Debit:</b> - + - + <b>Transaction fee:</b> - + - + <b>Net amount:</b> - + - + Message: - + - + Comment: - + - + Transaction ID: - + - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - + @@ -1323,130 +1359,138 @@ p, li { white-space: pre-wrap; } Transaction details - + This pane shows a detailed description of the transaction - + TransactionTableModel - - Date - + + Address + Адреса - - Type - + + Date + - - Address - Адреса + + Type + - + Amount - + - + Open for %n block(s) - + + + + + - + Open until %1 - + - + Offline (%1 confirmations) - + - + Unconfirmed (%1 of %2 confirmations) - + - + Confirmed (%1 confirmations) - + - + Mined balance will be available in %n more blocks - + + + + + - + 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. - + @@ -1455,168 +1499,168 @@ p, li { white-space: pre-wrap; } 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 - + Edit label - + Show 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... Слање у току... @@ -1624,345 +1668,484 @@ p, li { white-space: pre-wrap; } bitcoin-core - + + Loading wallet... + Новчаник се учитава... + + + Bitcoin version - + Bitcoin верзија + + + + Error: Wallet locked, 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 + + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 + + + + + Insufficient funds + + + + + Warning: Disk space is low + + + + + 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=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + + + + + Error + + + + + An error occurred while setting up the RPC port %i for listening: %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. + + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + + + Usage: - + - + Send command to -server or bitcoind - + - + List commands - + - + Get help for a command - + - + Options: - + Поставке - + Specify configuration file (default: bitcoin.conf) - + - + Specify pid file (default: bitcoind.pid) - + - + Generate coins - + - + Don't generate coins - + - + Start minimized - + - + + Show splash screen on startup (default: 1) + + + + Specify data directory - + + + + + Set database cache size in megabytes (default: 25) + - + + Set database disk log size in megabytes (default: 100) + + + + Specify connection timeout (in milliseconds) - + - + Connect through socks4 proxy - + - + Allow DNS lookups for addnode and connect - + - + Listen for connections on <port> (default: 8333 or testnet: 18333) - + - + Maintain at most <n> connections to peers (default: 125) - + - - Add a node to connect to - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node - + - - Don't accept connections from outside - + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1) + + + + + Set language, for example "de_DE" (default: system locale) + - - Don't bootstrap list of peers using DNS - + + Find peers using DNS lookup (default: 1) + - + Threshold for disconnecting misbehaving peers (default: 100) - + - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + - - Don't attempt to use UPnP to map the listening port - + + Use Universal Plug and Play to map the listening port (default: 1) + - - Attempt to use UPnP to map the listening port - + + Use Universal Plug and Play to map the listening port (default: 0) + - - Fee per kB to add to transactions you send - + + Detach block and address databases. Increases shutdown time (default: 0) + - + + Fee per KB to add to transactions you send + + + + Accept command line and JSON-RPC commands - + - + Run in the background as a daemon and accept commands - + - + Use the test network - + - + Output extra debugging information - + - + Prepend debug output with timestamp - + - + Send trace/debug info to console instead of debug.log file - + - + Send trace/debug info to debugger - + - + Username for JSON-RPC connections - + - + Password for JSON-RPC connections - + - + Listen for JSON-RPC connections on <port> (default: 8332) - + - + Allow JSON-RPC connections from specified IP address - + - + Send commands to node running on <ip> (default: 127.0.0.1) - + - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Upgrade wallet to latest format + + + + Set key pool size to <n> (default: 100) - + - + Rescan the block chain for missing wallet transactions - + - + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + SSL options: (see the Bitcoin 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) - + - + This help message - + - + + Usage + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + - + + Bitcoin + + + + Loading addresses... - + - + Error loading addr.dat - + - + + Loading block index... + + + + Error loading blkindex.dat - + - + Error loading wallet.dat: Wallet corrupted - + - + Error loading wallet.dat: Wallet requires newer version of Bitcoin - + - + Wallet needed to be rewritten: restart Bitcoin to complete - + - + Error loading wallet.dat - + - - Loading block index... - + + Cannot downgrade wallet + - - Loading wallet... - Новчаник се учитава... + + Cannot initialize keypool + + + + + Cannot write default address + - + Rescanning... - + - + Done loading - + - + Invalid -proxy address - + - + Invalid amount for -paytxfee=<amount> - + - + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + - + Error: CreateThread(StartNode) failed - + - - Warning: Disk space is low - - - - + Unable to bind to port %d on this computer. Bitcoin is probably already running. - - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + - - beta - + + Sending... + Слање у току... - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_sv.ts b/src/qt/locale/bitcoin_sv.ts index 7e5d127179..5e5e6a1a3d 100644 --- a/src/qt/locale/bitcoin_sv.ts +++ b/src/qt/locale/bitcoin_sv.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -10,10 +12,10 @@ <b>Bitcoin</b> version - <b>Bitcoin</b> version + <b>Bitcoin</b>-version - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -21,7 +23,13 @@ This is experimental software. 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 OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Copyright © 2009-2012 Bitcoin-utvecklarna + +Detta är experimentell mjukvara. + +Distribuerad under mjukvarulicensen MIT/X11, se den medföljande filen license.txt 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. @@ -39,7 +47,7 @@ This product includes software developed by the OpenSSL Project for use in the O Double-click to edit address or label - Dubbelklicka för att ändra adress eller etikett + Dubbel-klicka för att ändra adressen eller etiketten @@ -59,17 +67,12 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - &amp; Kopiera till Urklipp - - - - Show &QR Code - + &Kopiera till Urklipp Sign a message to prove you own this address - + Signera ett meddelande för att bevisa att du äger denna adress @@ -79,68 +82,73 @@ This product includes software developed by the OpenSSL Project for use in the O Delete the currently selected address from the list. Only sending addresses can be deleted. - Ta bort den markerade adressen från listan. Endast sändningsadresser kan tas bort. + Ta bort den valda adressen från listan. Bara avsändar-adresser kan tas bort. &Delete - &amp; Radera + &Ta bort - - Copy address - Kopiera adress - - - - Copy label - Kopiera etikett + + Show &QR Code + Visa &QR-kod - + Edit Editera - + Delete Ta bort - + Export Address Book Data - Exportera Adressboksinformation + Exportera Adressbok - + Comma separated file (*.csv) - Kommaseparerad fil (*. csv) + Kommaseparerad fil (*.csv) - + Error exporting Fel vid export - + Could not write to file %1. Kunde inte skriva till filen %1. + + + Copy label + Kopiera etikett + + + + Copy address + Kopiera adress + AddressTableModel - + Label Etikett - + Address Adress - + (no label) (Ingen etikett) @@ -148,45 +156,44 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - - Dialog - Dialog - - - - - TextLabel - TextLabel - - - + Enter passphrase Ange lösenord - + New passphrase Nytt lösenord - + Repeat new passphrase Upprepa nytt lösenord + + + TextLabel + TextLabel + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Ange plånbokens nya lösenfras. <br/> Använd ett lösenord på <b>10 eller fler slumpmässiga tecken,</b> eller <b>åtta eller fler ord.</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 + + + Dialog + Dialog + This operation needs your wallet passphrase to unlock the wallet. - Denna operation behöver din plånboks lösenfras för att låsa upp plånboken. + Denna operation behöver din plånboks lösenord för att låsa upp plånboken. @@ -196,7 +203,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. - Denna operation behöver din plånboks lösenfras för att dekryptera plånboken. + Denna operation behöver din plånboks lösenord för att dekryptera plånboken. @@ -206,12 +213,12 @@ This product includes software developed by the OpenSSL Project for use in the O Change passphrase - Ändra lösenfras + Ändra lösenord Enter the old and new passphrase to the wallet. - Ange plånbokens gamla och nya lösenfras. + Ange plånbokens gamla och nya lösenord. @@ -233,13 +240,7 @@ Are you sure you wish to encrypt your wallet? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Programmet kommer nu att stänga ner för att göra färdigt krypteringen. Notera att en krypterat konto inte skyddar mot all form av stöld på en infekterad dator. - - - - - Warning: The Caps Lock key is on. - Varning: Caps Lock är påslaget + Programmet kommer nu att stänga ner för att färdigställa krypteringen. Tänk på att en krypterad plånbok inte skyddar mot stöld om din dator är infekterad med en keylogger. @@ -258,7 +259,7 @@ Are you sure you wish to encrypt your wallet? The supplied passphrases do not match. - De angivna lösenfraserna överensstämmer inte. + De angivna lösenorden överensstämmer inte. @@ -270,7 +271,7 @@ Are you sure you wish to encrypt your wallet? The passphrase entered for the wallet decryption was incorrect. - Lösenfrasen för dekryptering av plånbok var felaktig. + Lösenordet för dekryptering av plånbok var felaktig. @@ -279,347 +280,381 @@ Are you sure you wish to encrypt your wallet? - Wallet passphrase was succesfully changed. - Plånbokens lösenfras har ändrats. + Wallet passphrase was successfully changed. + Plånbokens lösenord har ändrats. + + + + + Warning: The Caps Lock key is on. + Varning: Caps Lock är påslaget. BitcoinGUI - - Bitcoin Wallet - Bitcoin-plånbok + + Encrypt or decrypt wallet + Kryptera eller dekryptera plånbok - - - Synchronizing with network... - Synkroniserar med nätverk ... + + Downloaded %1 blocks of transaction history. + Laddat ner %1 block från transaktionshistoriken. + + + + %n second(s) ago + + %n sekund sedan + %n sekunder sedan + + + + + Catching up... + Hämtar senaste... + + + + Last received block was generated %1. + Senast mottagna block genererades %1. + + + + &Options... + &amp; Alternativ ... + + + + &Export... + &amp;Exportera ... + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum: %1 +Belopp: %2 +Typ: %3 +Adress: %4 + - - Block chain synchronization in progress - Synkronisering av blockkedja pågår + + 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> - + + 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? + Transaktionen överskrider storleksgränsen. Du kan dock fortfarande skicka den mot en kostnad av %1. Denna avgift går till noderna som behandlar din transaktion och bidrar till nätverket. Vill du betala denna avgift? + + + &Overview &amp; Översikt - + Show general overview of wallet Visa översiktsvy av plånbok - - &Transactions - &Transaktioner + + Send coins to a bitcoin address + Skicka bitcoins till en bitcoinadress - - Browse transaction history - Bläddra i transaktionshistorik + + Prove you control an address + - - &Address Book - &Adressbok + + Show information about Qt + Visa information om Qt - - Edit the list of stored addresses and labels - Redigera listan med lagrade adresser och etiketter + + Export the data in the current tab to a file + Exportera informationen i den nuvarande fliken till en fil - - &Receive coins - &amp; Ta emot bitcoins + + &Backup Wallet + &Säkerhetskopiera Plånbok - - Show the list of addresses for receiving payments - Visa listan med adresser för att ta emot betalningar + + Bitcoin client + Bitcoin-klient - - &Send coins - &amp; Skicka bitcoins + + Synchronizing with network... + Synkroniserar med nätverk... + + + + ~%n block(s) remaining + + ~%n block återstår + ~%n block återstår + - - Send coins to a bitcoin address - Skicka bitcoins till en bitcoinadress + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Laddat ner %1 av %2 block från transaktionshistoriken (%3% klart). - - Sign &message - Signera &meddelande + + Browse transaction history + Bläddra i transaktionshistorik - - Prove you control an address - + + Up to date + Uppdaterad + + + + %n minute(s) ago + + %n minut sedan + %n minuter sedan + + + + + %n hour(s) ago + + %n timme sedan + %n timmar sedan + + + + + %n day(s) ago + + %n dag sedan + %n dagar sedan + - - E&xit - &Avsluta + + Sent transaction + Transaktion skickad - - Quit application - Avsluta programmet + + Incoming transaction + Inkommande transaktion - - &About %1 - &Om %1 + + Backup Wallet + Säkerhetskopiera Plånbok - - Show information about Bitcoin - Visa information om Bitcoin + + Wallet Data (*.dat) + Plånboks-data (*.dat) - + + [testnet] + [testnet] + + + + %n active connection(s) to Bitcoin network + + %n aktiv anslutning till Bitcoin-nätverket + %n aktiva anslutningar till Bitcoin-nätverket + + + + About &Qt Om &Qt - - Show information about Qt - Visa information om Qt + + Modify configuration options for bitcoin + Ändra konfigurationsalternativ för bitcoin - - &Options... - &amp; Alternativ ... + + &Encrypt Wallet + &amp;Kryptera plånbok - - Modify configuration options for bitcoin - Ändra konfigurationsalternativ för bitcoin + + Bitcoin Wallet + Bitcoin-plånbok - - Open &Bitcoin - Öppna &amp;Bitcoin + + &Transactions + &Transaktioner - - Show the Bitcoin window - Visa Bitcoin-fönster + + &Address Book + &Adressbok - - &Export... - &amp;Exportera ... + + &Receive coins + &amp; Ta emot bitcoins - - Export the data in the current tab to a file - + + Sign &message + Signera &meddelande - - &Encrypt Wallet - &amp;Kryptera plånbok + + &About %1 + &Om %1 - - Encrypt or decrypt wallet - Kryptera eller dekryptera plånbok + + Edit the list of stored addresses and labels + Redigera listan med lagrade adresser och etiketter - - &Backup Wallet - + + Show the list of addresses for receiving payments + Visa listan med adresser för att ta emot betalningar - - Backup wallet to another location - + + &Send coins + &Skicka bitcoins - + &Change Passphrase &amp;Byt lösenfras - + Change the passphrase used for wallet encryption Byt lösenfras för kryptering av plånbok - - &File - &Arkiv + + E&xit + &Avsluta - - &Settings - &Inställningar + + Quit application + Avsluta programmet + + + + Show information about Bitcoin + Visa information om Bitcoin + + + + Show/Hide &Bitcoin + Visa/Göm &Bitcoin - + + Show or hide the Bitcoin window + Visa eller göm Bitcoin-fönstret + + + + Backup wallet to another location + Säkerhetskopiera plånboken till en annan plats + + + &Help &Hjälp - + Tabs toolbar Verktygsfält för Tabbar - + + &File + &Arkiv + + + + &Settings + &Inställningar + + + Actions toolbar Verktygsfältet för Handlingar - - [testnet] - [testnet] + + Backup Failed + Säkerhetskopiering misslyckades - - bitcoin-qt - bitcoin-qt + + There was an error trying to save the wallet data to the new location. + Det inträffade ett fel när plånboken skulle sparas till den nya platsen. - - - %n active connection(s) to Bitcoin network - %n aktiv anslutning till Bitcoin-nätverket.%n aktiva anslutningar till Bitcoin-nätverket. + + + Sending... + Skickar... - - Downloaded %1 of %2 blocks of transaction history. - Laddat ner %1 av %2 block från transaktionshistoriken. + + bitcoin-qt + bitcoin-qt - - Downloaded %1 blocks of transaction history. - Laddat ner %1 block från transaktionshistoriken. - - - - %n second(s) ago - %n sekund sedan%n sekunder sedan - - - - %n minute(s) ago - %n minut sedan%n minuter sedan - - - - %n hour(s) ago - %n timme sedan%n timmar sedan - - - - %n day(s) ago - %n dag sedan%n dagar sedan - - - - Up to date - Uppdaterad - - - - Catching up... - Hämtar senaste - - - - Last received block was generated %1. - Senast mottagna blocked 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? - Transaktionen överskrider storleksgränsen. - -Du kan dock fortfarande skicka den mot en kostnad av %1. Denna avgift går till noderna som behandlar din transaktion och bidrar till nätverket. - -Vill du betala denna avgift? - - - - Sending... - Skickar... - - - - Sent transaction - Transaktion skickad - - - - Incoming transaction - Inkommande transaktion - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Datum: %1 -Belopp: %2 -Typ: %3 -Adress:%4 - - - - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Denna plånbok är <b>krypterad</b> och för närvarande <b>olåst</b>. - - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Denna plånbok är <b>krypterad</b> och för närvarande <b>låst</b>. - - - - Backup Wallet - - - - - Wallet Data (*.dat) - - - - - Backup Failed - - - - - There was an error trying to save the wallet data to the new location. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Ett allvarligt fel har uppstått. Bitcoin kan inte längre köras säkert och kommer att avslutas. DisplayOptionsPage - + &Unit to show amounts in: &Enhet att visa belopp i: - + Choose the default subdivision unit to show in the interface, and when sending coins Välj en standard för enhets mått, att visa när du skickar mynt - - Display addresses in transaction list - Visa adresser i transaktionslistan + + &Display addresses in transaction list + &Visa adresser i transaktionslistan + + + + Whether to show Bitcoin addresses in the transaction list + Anger om Bitcoin-adresser skall visas i transaktionslistan @@ -627,7 +662,7 @@ Adress:%4 Edit Address - Redigera adress + Redigera Adress @@ -693,108 +728,98 @@ Adress:%4 MainOptionsPage - + &Start Bitcoin on window system startup &Starta Bitcoin vid systemstart - + Automatically start Bitcoin after the computer is turned on Starta Bitcoin automatiskt när datorn startas. - + &Minimize to the tray instead of the taskbar &Minimera till systemfältet istället för aktivitetsfältet - + Show only a tray icon after minimizing the window Visa endast en systemfältsikon vid minimering - + Map port using &UPnP Tilldela port med hjälp av &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Öppna automatiskt Bitcoin-klientens port på routern. Detta fungerar endast om din router har UPnP aktiverat. - + M&inimize on close M&inimera vid stängning - + 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. - + &Connect through SOCKS4 proxy: &Anslut via SOCKS4 proxy: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Anslut till Bitcoin-nätverket genom en SOCKS4-proxy (t.ex. när du ansluter genom Tor). - - - + 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. 1234) Proxyns port (t.ex. 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Valfri transaktionsavgift per kB som ser till att dina transaktioner behandlas snabbt. De flesta transaktioner är 1 kB. Avgift 0.01 rekommenderas. - + Pay transaction &fee Betala överförings &avgift - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - - - - - MessagePage - - - Message - + + Detach databases at shutdown + Frigör databaser vid nedstängning - - 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. - + + 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 block- och adressdatabaser vid nedstängning. Detta innebär att de kan flyttas till en annan data katalog, men det saktar ner avstängningen. Plånboken är alltid frigjord. - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adressen som betalningen skall skickas till (t.ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Anslut till Bitcoin-nätverket genom en SOCKS4-proxy (t.ex. när du ansluter genom Tor) + + + MessagePage Choose adress from address book @@ -816,19 +841,29 @@ Adress:%4 Alt+P - - Enter the message you want to sign here - + + Message + 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adressen att signera meddelandet med (t.ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Click "Sign Message" to get signature - + Klicka "Signera Meddelande" för att få en signatur Sign a message to prove you own this address - + Signera ett meddelande för att bevisa att du äger denna adress @@ -837,51 +872,56 @@ Adress:%4 - Copy the currently selected address to the system clipboard - Kopiera den markerade adressen till systemets Urklipp + Copy the current signature to the system clipboard + Kopiera signaturen till systemets Urklipp &Copy to Clipboard &amp; Kopiera till Urklipp + + + Enter the message you want to sign here + Skriv in meddelandet du vill signera här + Error signing - + Fel %1 is not a valid address. - + Den angivna adressen "%1" är inte en giltig Bitcoin-adress. Private key for %1 is not available. - + Privata nyckel för den angivna adressen är inte tillgänglig. %1 Sign failed - + Signeringen av meddelandet misslyckades. OptionsDialog - + Main Allmänt - + Display Visa - + Options Alternativ @@ -894,14 +934,14 @@ Adress:%4 Formulär - - Balance: - Saldo: + + Your current balance + Ditt nuvarande saldo - - 123.456 BTC - 123.456 BTC + + Unconfirmed: + Obekräftade: @@ -914,113 +954,105 @@ Adress:%4 0 - - Unconfirmed: - Obekräftade: - - - - 0 BTC - 0 BTC + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Totalt antal transaktioner som ännu inte bekräftats, och som ännu inte räknas med i aktuellt saldo - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> + + Total number of transactions in wallet + Totalt antal transaktioner i plånboken - + <b>Recent transactions</b> <b>Nyligen genomförda transaktioner</b> - - Your current balance - Ditt nuvarande saldo - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Totalt antal transaktioner som ännu inte bekräftats, och som ännu inte räknas med i aktuellt saldo + + Wallet + Plånbok - - Total number of transactions in wallet - Totalt antal transaktioner i plånboken + + Balance: + Saldo: QRCodeDialog - - Dialog - Dialog - - - - QR Code - - - - + Request Payment - + Begär Betalning - + Amount: Belopp: - + + Label: + Etikett: + + + BTC BTC - - Label: - Etikett: + + QR Code + QR-kod - + Message: Meddelande: - + &Save As... &Spara som... - + + Dialog + Dialog + + + + Error encoding URI into QR Code. + Fel vid skapande av QR-kod från URI. + + + Save Image... - + Spara QR-kod + + + + Resulting URI too long, try to reduce the text for label / message. + URI:n är för lång, försöka minska texten för etikett / meddelande. - + PNG Images (*.png) - + PNG-bilder (*.png) SendCoinsDialog - - - - - - - + + + + + + + Send Coins Skicka pengar @@ -1029,35 +1061,25 @@ p, li { white-space: pre-wrap; } Send to multiple recipients at once Skicka till flera mottagare samtidigt - - - &Add recipient... - &Lägg till mottagare... - Remove all transaction fields - + Ta bort alla transaktions-fält Clear all Rensa alla - - - Balance: - Balans: - 123.456 BTC - 123,456 BTC + 123.456 BTC Confirm the send action - Bekräfta sänd ordern + Bekräfta sändordern @@ -1065,59 +1087,69 @@ p, li { white-space: pre-wrap; } &Skicka - + + Balance: + Balans: + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Fel: Transaktionen avslogs. Detta kan hända om några av mynten i plånboken redan spenderats, t.ex om du använt en kopia av wallet.dat och mynt spenderades i kopian men inte markerats som spenderas här. + + + + &Add recipient... + &Lägg till mottagare... + + + <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 på att du vill skicka %1? - + and - and + och - - The recepient address is not valid, please recheck. + + 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. - - Amount exceeds your balance - Värdet överstiger ditt saldo - - - - Total exceeds your balance when the %1 transaction fee is included - Totalt överstiger det ditt saldo när transaktionsavgiften %1 ingår + + The amount exceeds your balance. + Värdet överstiger ditt saldo. - - Duplicate address found, can only send to each address once in one send operation - Dublett av adress funnen, kan bara skicka till varje adress en gång per sändning + + The total exceeds your balance when the %1 transaction fee is included. + Totalvärdet överstiger ditt saldo när transaktionsavgiften %1 är pålagd. - - Error: Transaction creation failed - Fel: Transaktionen gick inte att skapa + + 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: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Fel: Transaktionen avslogs. Detta kan hända om några av mynten i plånboken redan spenderats, som om du använde en kopia av wallet.dat och mynt spenderades i kopian men inte markerats som spenderas här. + + Error: Transaction creation failed. + Fel: Transaktionen gick inte att skapa. @@ -1151,7 +1183,7 @@ p, li { white-space: pre-wrap; } The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adressen som betalningen skall skickas till (t.ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adressen som betalningen skall skickas till (t.ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1181,146 +1213,146 @@ p, li { white-space: pre-wrap; } Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Ange en Bitcoin adress (t.ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Ange en Bitcoin-adress (t.ex. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) TransactionDesc - + Open for %1 blocks Öppen för %1 block - + Open until %1 Öppet till %1 - + %1/offline? %1/nerkopplad? - + %1/unconfirmed %1/okonfirmerad - + %1 confirmations %1 bekräftelser - + <b>Status:</b> <b>Status:</b> - + + + <b>From:</b> + <b>Från:</b> + + + + (%1 matures in %2 more blocks) + + + + + Transaction ID: + Transaktions-ID: + + + , has not been successfully broadcast yet , har inte lyckats skickas ännu - + , broadcast through %1 node , sänd genom %1 nod - + , broadcast through %1 nodes , sänd genom %1 noder - + <b>Date:</b> <b>Datum:</b> - + <b>Source:</b> Generated<br> <b>Källa:</b> Genererade<br> - - - <b>From:</b> - <b>Från:</b> - - - + unknown okänd - - - + + + <b>To:</b> <b>Till:</b> - + (yours, label: (din, etikett: - + (yours) (dina) - - - - + + + + <b>Credit:</b> <b>Kredit:</b> - - (%1 matures in %2 more blocks) - - - - + (not accepted) (inte accepterad) - - - + + + <b>Debit:</b> <b>Debet:</b> - + <b>Transaction fee:</b> <b>Transaktionsavgift:</b> - + <b>Net amount:</b> <b>Nettobelopp:</b> - + Message: Meddelande: - + Comment: Kommentar: - - Transaction ID: - - - - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Genererade mynt måste vänta 120 block innan de kan användas. När du skapade detta block sändes det till nätverket för att läggas till i blockkedjan. Om blocket inte kommer in i kedjan kommer det att ändras till "accepteras inte" och kommer ej att gå att spendera. Detta kan ibland hända om en annan nod genererar ett block nästan samtidigt som dig. @@ -1341,123 +1373,194 @@ p, li { white-space: pre-wrap; } TransactionTableModel - - Date - Datum - - - - Type - Typ - - - + Address Adress - + Amount Mängd - + Open for %n block(s) - + + Öppen i %n block + Öppen i %n block + - + Open until %1 Öppet till %1 - + Offline (%1 confirmations) Offline (%1 bekräftelser) - + Unconfirmed (%1 of %2 confirmations) Obekräftad (%1 av %2 bekräftelser) - + Confirmed (%1 confirmations) Bekräftad (%1 bekräftelser) + + + (n/a) + (n/a) + + + + Date + Datum + + + + Type + Typ + - + Mined balance will be available in %n more blocks - + + + + - + 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 - - - - + Sent to Skickad till - + Payment to yourself Betalning till dig själv - + Mined Skapad - - (n/a) - (n/a) + + Received from + Mottaget från - + 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 + 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 + + + This year + Det här året + + + + Range... + Period... + + + + Mined + Genererade + + + + Enter address or label to search + Sök efter adress eller etikett + + + + Min amount + Minsta mängd + + + + Copy address + Kopiera adress + + + + Confirmed + Bekräftad + + + + Address + Adress + + + + Amount + Mängd + + + + ID + ID + + + + Error exporting + Fel vid export + + + + Could not write to file %1. + Kunde inte skriva till filen %1. + + + + to + till + @@ -1484,16 +1587,6 @@ p, li { white-space: pre-wrap; } Last month Föregående månad - - - This year - Det här året - - - - Range... - Period... - Received with @@ -1509,41 +1602,16 @@ p, li { white-space: pre-wrap; } To yourself Till dig själv - - - Mined - Skapad - 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 - - Edit label @@ -1555,75 +1623,45 @@ p, li { white-space: pre-wrap; } Visa detaljer... - + Export Transaction Data - Exportera Transaktions 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 export - - - - Could not write to file %1. - Kunde inte skriva till filen %1. - - - + Range: Intervall: - - to - till + + Copy amount + Kopiera belopp WalletModel - + Sending... Skickar... @@ -1631,345 +1669,494 @@ p, li { white-space: pre-wrap; } bitcoin-core - + + Done loading + Klar med laddning + + + Bitcoin version Bitcoin version - - Usage: - Användning: + + List commands + Lista kommandon - - Send command to -server or bitcoind - Skicka kommando till -server eller bitcoind + + Options: + Inställningar: - - List commands - Lista kommandon + + Generate coins + Generera mynt - - Get help for a command - Få hjälp med ett kommando + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Exekvera kommando när bästa blocket ändras (%s i cmd är utbytt av blockhash) - - Options: - Inställningar: + + Use the test network + Använd testnätverket - - Specify configuration file (default: bitcoin.conf) - Ange konfigurationsfil (standard:bitcoin.conf) + + Rescan the block chain for missing wallet transactions + Sök i block-kedjan efter saknade wallet transaktioner - - Specify pid file (default: bitcoind.pid) - Ange pid fil (standard:bitcoind.pid) + + This help message + Det här hjälp medelandet - - Generate coins - Generera mynt + + Accept command line and JSON-RPC commands + Tillåt kommandon från kommandotolken och JSON-RPC-kommandon - - Don't generate coins - Generera ej mynt + + Loading addresses... + Laddar adresser... - - Start minimized - Starta som minimerad + + 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 - - Specify data directory - Ange katalog för data + + Allow JSON-RPC connections from specified IP address + Tillåt JSON-RPC-anslutningar från specifika IP-adresser - - Specify connection timeout (in milliseconds) - Ange timeout för uppkoppling (i millisekunder) + + Error loading wallet.dat: Wallet corrupted + Fel vid inläsningen av wallet.dat: Plånboken är skadad - - Connect through socks4 proxy - Koppla upp genom socks4 proxy + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Fel vid inläsningen av wallet.dat: Plånboken kräver en senare version av Bitcoin - - Allow DNS lookups for addnode and connect - + + Wallet needed to be rewritten: restart Bitcoin to complete + Plånboken behöver skrivas om: Starta om Bitcoin för att färdigställa - - Listen for connections on <port> (default: 8333 or testnet: 18333) - + + Loading wallet... + Laddar plånbok... - - Maintain at most <n> connections to peers (default: 125) - + + Password for JSON-RPC connections + Lösenord för JSON-RPC-anslutningar - - Add a node to connect to - Lägg till en nod att koppla upp mot + + Prepend debug output with timestamp + Skriv ut tid i felsökningsinformationen - - Connect only to the specified node - Koppla enbart upp till den specifierade noden + + Rescanning... + Söker igen... - - Don't accept connections from outside - Acceptera ej anslutningar utifrån + + Run in the background as a daemon and accept commands + Kör i bakgrunden som tjänst och acceptera kommandon - - Don't bootstrap list of peers using DNS - + + Send commands to node running on <ip> (default: 127.0.0.1) + Skicka kommandon till klient på <ip> (förval: 127.0.0.1) - - Threshold for disconnecting misbehaving peers (default: 100) - + + Send trace/debug info to console instead of debug.log file + Skicka trace-/debuginformation till terminalen istället för till debug.log - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + + Send trace/debug info to debugger + Skicka trace-/debuginformation till debugger - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + + Server certificate file (default: server.cert) + Serverns certifikatfil (förval: server.cert) - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + + Server private key (default: server.pem) + Serverns privata nyckel (förval: server.pem) - - Don't attempt to use UPnP to map the listening port - + + Set database cache size in megabytes (default: 25) + Sätt databas cache storleken i megabyte (standard: 25) - - Attempt to use UPnP to map the listening port - + + Set key pool size to <n> (default: 100) + Sätt storleken på nyckelpoolen till <n> (förval: 100) - - Fee per kB to add to transactions you send - + + Threshold for disconnecting misbehaving peers (default: 100) + Tröskelvärde för att koppla ifrån klienter som missköter sig (förval: 100) - - Accept command line and JSON-RPC commands - + + Upgrade wallet to latest format + Uppgradera plånboken till senaste formatet - - Run in the background as a daemon and accept commands - + + Use OpenSSL (https) for JSON-RPC connections + Använd OpenSSL (https) för JSON-RPC-anslutningar - - Use the test network - Använd test nätverket + + Username for JSON-RPC connections + Användarnamn för JSON-RPC-anslutningar - - Output extra debugging information - + + Specify configuration file (default: bitcoin.conf) + Ange konfigurationsfil (standard: bitcoin.conf) - - Prepend debug output with timestamp - + + Specify pid file (default: bitcoind.pid) + Ange pid fil (standard: bitcoind.pid) - - Send trace/debug info to console instead of debug.log file - + + Specify data directory + Ange katalog för data - - Send trace/debug info to debugger - + + Specify connection timeout (in milliseconds) + Ange timeout för uppkoppling (i millisekunder) - - Username for JSON-RPC connections - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Accepterade krypteringsalgoritmer (förval: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Password for JSON-RPC connections - + + 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örval: 86400) - - Listen for JSON-RPC connections on <port> (default: 8332) - + + Cannot write default address + Kan inte skriva standardadress - - Allow JSON-RPC connections from specified IP address - + + Error loading blkindex.dat + Fel vid inläsning av blkindex.dat - - Send commands to node running on <ip> (default: 127.0.0.1) - + + How many blocks to check at startup (default: 2500, 0 = all) + Hur många block att kontrollera vid uppstart (standardvärde: 2500, 0 = alla) - - Set key pool size to <n> (default: 100) - + + Loading block index... + Laddar blockindex... - - Rescan the block chain for missing wallet transactions - Sök i block-kedjan efter saknade wallet transaktioner + + Send command to -server or bitcoind + Skicka kommando till -server eller bitcoind - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Error loading addr.dat + Fel vid inläsning av plånboksfilen addr.dat + + + + Usage: + Användning: + + + + Get help for a command + Få hjälp med ett kommando - Use OpenSSL (https) for JSON-RPC connections - + Don't generate coins + Generera ej mynt - Server certificate file (default: server.cert) - + Start minimized + Starta som minimerad + + + + Connect through socks4 proxy + Koppla upp genom socks4 proxy + + + + Connect only to the specified node + Koppla enbart upp till den specifierade noden + + + + Usage + Användning + + + + Invalid -proxy address + Ogiltig proxyadress + + + + Invalid amount for -paytxfee=<amount> + Ogiltigt belopp för -paytxfee=<belopp> + + + + Allow DNS lookups for addnode and connect + Tillåt DNS-sökningar för -addnode och -connect - Server private key (default: server.pem) - + Show splash screen on startup (default: 1) + Visa startbilden vid uppstart (standard: 1) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + + Accept connections from outside (default: 1) + Acceptera anslutningar utifrån (standard: 1) - - This help message - Det här hjälp medelandet + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + %s, du behöver sätta ett rpclösensord i konfigurationsfilen: + %s +Det är rekommenderat att använda följande slumpade lösenord: +rpcuser=bitcoinrpc +rpcpassword=%s +(du behöver inte komma ihåg lösenordet) +Om filen inte existerar, skapa den med enbart ägarläsbara filrättigheter. + - + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - + Kan inte låsa data-mappen %s. Bitcoin körs förmodligen redan. - - Loading addresses... - Laddar adresser... + + Detach block and address databases. Increases shutdown time (default: 0) + Frigör block- och adressdatabaser vid nedstängning. Detta ökar tiden för nedstängning (standard: 0) - - Error loading addr.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. + Fel: Transaktionen avslogs. Detta kan hända om några av mynten i plånboken redan spenderats, t.ex om du använt en kopia av wallet.dat och mynt spenderades i kopian men inte markerats som spenderas här. - - Error loading blkindex.dat - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Fel: Denna transaktion kräver en transaktionsavgift på minst %s på grund av dess storlek, komplexitet, eller användning av senast mottagna bitcoins - Error loading wallet.dat: Wallet corrupted - Fel vid inläsningen av wallet.dat: Kontofilen verkar skadad + Set language, for example "de_DE" (default: system locale) + Ändra språk, till exempel "de_DE" (standard: systemets språk) - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Fel vid inläsningen av wallet.dat: Kontofilen kräver en senare version av Bitcoin + Find peers using DNS lookup (default: 1) + Söl efter klienter med DNS sökningen (standard: 1) - - Wallet needed to be rewritten: restart Bitcoin to complete - Kontot behöver sparas om: Starta om Programmet + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maximal buffert för mottagning per anslutning, <n>*1000 byte (förval: 5000) {1000 ?} {10000)?} - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maximal buffert för sändning per anslutning, <n>*1000 byte (förval: 5000) {1000 ?} {10000)?} + + + + Use Universal Plug and Play to map the listening port (default: 1) + Use UPnP to map the listening port (default: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Use UPnP to map the listening port (default: 0) + + + + Output extra debugging information + Skriv ut extra felsökningsinformation + + + + 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. + + + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner) + + + + An error occurred while setting up the RPC port %i for listening: %s + Ett fel uppstod vid upprättandet av RPC port %i för att lyssna: %s + + + + Bitcoin + Bitcoin + + + Error loading wallet.dat Fel vid inläsning av kontofilen wallet.dat - - Loading block index... - Laddar block index... + + Cannot downgrade wallet + Kan inte nedgradera plånboken - - Loading wallet... - Laddar konto... + + Cannot initialize keypool + Kan inte initiera keypool - - Rescanning... - Söker igen... + + Error + Fel - - Done loading - Klar med laddning + + Error: Transaction creation failed + Fel: Transaktionen gick inte att skapa - - Invalid -proxy address - Ogiltig proxyadress + + Error: Wallet locked, unable to create transaction + Fel: Plånboken är låst, det går ej att skapa en transaktion - - Invalid amount for -paytxfee=<amount> - Ogiltigt belopp för -paytxfee=<belopp> + + Fee per KB to add to transactions you send + Avgift per KB att lägga till på transaktioner du skickar - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - + + Find peers using internet relay chat (default: 0) + Sök efter klienter med internet relay chat (standard: 0) - - Error: CreateThread(StartNode) failed - + + How thorough the block verification is (0-6, default: 1) + Hur grundlig blockverifikationen är (0-6, standardvärde: 1) - - Warning: Disk space is low - + + Insufficient funds + Otillräckligt med bitcoins - + + Invalid amount + Ogiltig mängd + + + + Listen for JSON-RPC connections on <port> (default: 8332) + Lyssna på JSON-RPC-anslutningar på <port> (förval: 8332) + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Lyssna efter anslutningar på <port> (förval: 8333 eller testnet: 18333) + + + + Maintain at most <n> connections to peers (default: 125) + Ha som mest <n> anslutningar till andra klienter (förval: 125) + + + + Sending... + Skickar... + + + + Set database disk log size in megabytes (default: 100) + Sätt databasens loggfil storlek i megabyte (standard: 100) + + + + To use the %s option + Att använda %s alternativet + + + + 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. + + + + Error: CreateThread(StartNode) failed + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. - + Det går inte att binda till %s på den här datorn. Bitcoin är förmodligen redan igång. - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - + + Warning: Disk space is low + Varning: Hårddiskutrymme är lågt - - beta - beta + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Varning: Vänligen kolla så att din dators datum och tid är korrekt! Om din klocka går fel kommer Bitcoin inte fungera korrekt. - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_tr.ts b/src/qt/locale/bitcoin_tr.ts index 89e2102a25..1022b5cfb5 100644 --- a/src/qt/locale/bitcoin_tr.ts +++ b/src/qt/locale/bitcoin_tr.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>Bitcoin</b> sürüm - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -60,7 +62,7 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) Copy the currently selected address to the system clipboard - Şu anda seçili olan adresi panoya kopyalar + Şu anda seçili olan adresi panoya kopyala @@ -72,11 +74,6 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) Show &QR Code &QR kodunu göster - - - Sign a message to prove you own this address - Bu adresin sizin olduğunu ispatlamak için mesaj imzalayın - &Sign Message @@ -93,42 +90,47 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) &Sil - + + Sign a message to prove you own this address + Bu adresin sizin olduğunu ispatlamak için mesaj imzalayın + + + Copy address Adresi kopyala - + Copy label Etiketi kopyala - + Edit Düzenle - + Delete Sil - + Export Address Book Data Adres defteri verilerini dışa aktar - + Comma separated file (*.csv) Virgülle ayrılmış değerler dosyası (*.csv) - + Error exporting Dışa aktarımda hata oluştu - + Could not write to file %1. %1 dosyasına yazılamadı. @@ -136,17 +138,17 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) AddressTableModel - + Label Etiket - + Address Adres - + (no label) (boş etiket) @@ -159,26 +161,25 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) Diyalog - - - TextLabel - Metin Etiketi - - - + Enter passphrase Parolayı giriniz - + New passphrase Yeni parola - + Repeat new passphrase Yeni parolayı tekrarlayınız + + + TextLabel + Metin Etiketi + 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>. @@ -224,13 +225,6 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) 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 BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - UYARI: Eğer cüzdanınızı şifrelerseniz ve parolanızı kaybederseniz, <b>TÜM BİTCOİNLERİNİZİ KAYBEDERSİNİZ</b>! -Cüzdanınızı şifrelemek istediğinizden emin misiniz? - @@ -240,13 +234,7 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Şifreleme işlemini tamamlamak için Bitcoin şimdi kapanacaktır. Cüzdanınızı şifrelemenin, bitcoinlerinizin bilgisayara bulaşan kötücül bir yazılım tarafından çalınmaya karşı tamamen koruyamayacağını unutmayınız. - - - - - Warning: The Caps Lock key is on. - Uyarı: Caps Lock tuşu etkin durumda. + Şifreleme işlemini tamamlamak için Bitcoin şimdi kapanacaktır. Cüzdanınızı şifrelemenin, Bitcoinlerinizin bilgisayara bulaşan kötücül bir yazılım tarafından çalınmaya karşı tamamen koruyamayacağını unutmayınız. @@ -279,354 +267,398 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? The passphrase entered for the wallet decryption was incorrect. Cüzdan şifresinin açılması için girilen parola yanlıştı. + + + Wallet passphrase was successfully changed. + Cüzdan parolası başarılı bir şekilde değiştirildi. + + + + + Warning: The Caps Lock key is on. + Uyarı: Caps Lock tuşu etkin durumda. + + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + UYARI: Eğer cüzdanınızı şifrelerseniz ve parolanızı kaybederseniz, <b>TÜM BİTCOİNLERİNİZİ KAYBEDERSİNİZ</b>! +Cüzdanınızı şifrelemek istediğinizden emin misiniz? + Wallet decryption failed Cüzdan şifresinin açılması başarısız oldu - - - Wallet passphrase was succesfully changed. - Cüzdan parolası başarılı bir şekilde değiştirildi. - BitcoinGUI - - Bitcoin Wallet - Bitcoin cüzdanı + + Actions toolbar + Faaliyet araç çubuğu - - - Synchronizing with network... - Şebeke ile senkronizasyon... + + Edit the list of stored addresses and labels + Saklanan adres ve etiket listesini düzenler + + + + [testnet] + [testnet] - - Block chain synchronization in progress - Blok zinciri senkronizasyonu sürüyor + + &Send coins + Bitcoin &yolla + + + + Catching up... + Aralık kapatılıyor... - + &Overview &Genel bakış - + Show general overview of wallet Cüzdana genel bakışı gösterir - - &Transactions - &Muameleler + + &Options... + &Seçenekler... - + Browse transaction history Muamele tarihçesini tara - + &Address Book &Adres defteri - - Edit the list of stored addresses and labels - Saklanan adres ve etiket listesini düzenler - - - - &Receive coins - Para &al + + Wallet Data (*.dat) + Cüzdan verileri (*.dat) - - Show the list of addresses for receiving payments - Ödeme alma adreslerinin listesini gösterir + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Tarih: %1 +Miktar: %2 +Tür: %3 +Adres: %4 + - - &Send coins - Para &yolla + + Sending... + Yollanıyor... - - Send coins to a bitcoin address - Bir bitcoin adresine para (bitcoin) yollar + + 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> - - Sign &message - &Mesaj imzala + + Backup Wallet + Cüzdanı yedekle - - Prove you control an address - Bu adresin kontrolünüz altında olduğunu ispatlayın + + Backup Failed + Yedekleme başarısız oldu - - E&xit - &Çık + + &Receive coins + Bitcoin &al - - Quit application - Uygulamadan çıkar + + Show the list of addresses for receiving payments + Ödeme alma adreslerinin listesini göster - + &About %1 %1 &hakkında - - Show information about Bitcoin - Bitcoin hakkında bilgi gösterir - - - - About &Qt - &Qt hakkında + + &Backup Wallet + Cüzdanı &yedekle - - Show information about Qt - Qt hakkında bilgi görüntüler + + E&xit + &Çık - &Options... - &Seçenekler... + Quit application + Uygulamadan çık - - - Modify configuration options for bitcoin - Bitcoin seçeneklerinin yapılandırmasını değiştirir + + + %n active connection(s) to Bitcoin network + + Bitcoin şebekesine %n faal bağlantı + - - Open &Bitcoin - &Bitcoin'i aç + + Downloaded %1 blocks of transaction history. + Muamele tarihçesinin %1 adet bloku indirildi. - - Show the Bitcoin window - Bitcoin penceresini gösterir + + Show information about Qt + Qt hakkında bilgi görüntü - - &Export... - &Dışa aktar... + + Show/Hide &Bitcoin + &Bitcoin'i Göster/Sakla - - Export the data in the current tab to a file - Güncel sekmedeki verileri bir dosyaya aktar + + Show or hide the Bitcoin window + Bitcoin penceresini göster ya da sakla - - &Encrypt Wallet - Cüzdanı &şifrele + + There was an error trying to save the wallet data to the new location. + Cüzdan verilerinin başka bir konumda kaydedilmesi sırasında bir hata meydana geldi. - - - Encrypt or decrypt wallet - Cüzdanı şifreler ya da şifreyi açar + + + %n minute(s) ago + + %n dakika önce + - - &Backup Wallet - Cüzdanı &yedekle + + Encrypt or decrypt wallet + Cüzdanı şifrele ya da şifreyi aç - + Backup wallet to another location Cüzdanı diğer bir konumda yedekle - - &Change Passphrase - &Parolayı değiştir - - - + Change the passphrase used for wallet encryption - Cüzdan şifrelemesi için kullanılan parolayı değiştirir + Cüzdan şifrelemesi için kullanılan parolayı değiştir - + &File &Dosya - + &Settings &Ayarlar - + + Tabs toolbar + Sekme araç çubuğu + + + + Bitcoin client + Bitcoin istemcisi + + + + Sign &message + &Mesaj imzala + + + &Help &Yardım - - Tabs toolbar - Sekme araç çubuğu + + Send coins to a bitcoin address + Bir bitcoin adresine para (bitcoin) yollar - - Actions toolbar - Faaliyet araç çubuğu + + Modify configuration options for bitcoin + Bitcoin seçeneklerinin yapılandırmasını değiştirir - - [testnet] - [testnet] + + &Encrypt Wallet + Cüzdanı &şifrele - - bitcoin-qt - bitcoin-qt + + Show information about Bitcoin + Bitcoin hakkında bilgi gösterir - - - %n active connection(s) to Bitcoin network - Bitcoin şebekesine %n etkin bağlantı + + + Bitcoin Wallet + Bitcoin cüzdanı + + + + &Transactions + &Muameleler - - Downloaded %1 of %2 blocks of transaction history. - Muamele tarihçesinin %2 sayıda blokundan %1 adet blok indirildi. + + Prove you control an address + Bu adresin kontrolünüz altında olduğunu ispatlayın - - Downloaded %1 blocks of transaction history. - Muamele tarihçesinin %1 adet bloku indirildi. + + About &Qt + &Qt hakkında + + + + &Export... + &Dışa aktar... + + + + Export the data in the current tab to a file + Güncel sekmedeki verileri bir dosyaya aktar + + + + &Change Passphrase + &Parolayı değiştir + + + + bitcoin-qt + bitcoin-qt + + + + Synchronizing with network... + Şebeke ile senkronizasyon... - - %n second(s) ago - %n saniye önce + + ~%n block(s) remaining + + ~%n blok kaldı + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Muamele tarihçesinden %1 blok indirildi (toplam %2 blok, %%3 tamamlandı). - - %n minute(s) ago - %n dakika önce + + %n second(s) ago + + %n saniye ö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 şu vakit oluşturulmuştu: %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 muamele boyut sınırlarını aşmıştır. Gene de %1 ücret ödeyerek gönderebilirsiniz, ki bu ücret muamelenizi işleyen ve şebekeye yardım eden düğümlere ödenecektir. Ücreti ödemek istiyor musunuz? - - Sending... - Yollanıyor... - - - + Sent transaction Muamele yollandı - + Incoming transaction Gelen muamele - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Tarih: %1 -Miktar: %2 -Tür: %3 -Adres: %4 - - - - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilidi açılmıştı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 verileri (*.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 verilerinin başka bir konumda kaydedilmesi sırasında bir hata meydana geldi. + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Ciddi bir hata oluştu. Bitcoin artık güvenli bir şekilde işlemeye devam edemez ve kapanacaktır. DisplayOptionsPage - + &Unit to show amounts in: Miktarı göstermek için &birim: - + Choose the default subdivision unit to show in the interface, and when sending coins Para (coin) gönderildiğinde arayüzde gösterilecek varsayılan alt birimi seçiniz - - Display addresses in transaction list - Muamele listesinde adresleri göster + + &Display addresses in transaction list + Muamele listesinde adresleri &göster + + + + Whether to show Bitcoin addresses in the transaction list + Muamele listesinde Bitcoin adreslerinin gösterilip gösterilmeyeceklerini belirler EditAddressDialog + + + Edit sending address + Gönderi adresini düzenle + Edit Address @@ -667,11 +699,6 @@ Adres: %4 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. @@ -696,87 +723,92 @@ Adres: %4 MainOptionsPage - + &Start Bitcoin on window system startup Bitcoin'i pencere sistemi ile &başlat - + Automatically start Bitcoin after the computer is turned on Bitcoin'i bilgisayar başlatıldığında başlatır - + &Minimize to the tray instead of the taskbar İşlem çubuğu yerine sistem çekmesine &küçült - + Show only a tray icon after minimizing the window Küçültüldükten sonra sadece çekmece ikonu gösterir - + Map port using &UPnP Portları &UPnP kullanarak haritala - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Yönlendiricide Bitcoin istemci portlarını otomatik olarak açar. Bu, sadece yönlendiricinizin UPnP desteği bulunuyorsa ve etkinse çalışabilir. - + M&inimize on close Kapatma sırasında 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. - + &Connect through SOCKS4 proxy: SOCKS4 vekil sunucusu vasıtasıyla ba&ğlan: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Bitcoin şebekesine SOCKS4 vekil sunucusu vasıtasıyla bağlanır (mesela Tor ile bağlanıldığında) - + Proxy &IP: Vekil &İP: - + IP address of the proxy (e.g. 127.0.0.1) Vekil sunucunun İP adresi (mesela 127.0.0.1) - + &Port: &Port: - + Port of the proxy (e.g. 1234) Vekil sunucun portu (örneğin 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Muamelelerin hızlı işlenmesini garantilemeye yardım eden, seçime dayalı kB başı muamele ücreti. Muamelelerin çoğunluğunun boyutu 1 kB'dir. 0.01 ücreti önerilir. - - - + Pay transaction &fee Muamele ücreti &öde - + + Detach databases at shutdown + Kapanışta veritabanlarını &ayır + + + + 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. + Çıkışta blok ve adres veri tabanlarını ayırır. Bu, kapanışı yavaşlatır ancak veri tabanlarının başka klasörlere taşınabilmelerine imkân sağlar. Cüzdan daima ayırılır. + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Muamelelerin hızlı işlenmesini garantilemeye yardım eden, seçime dayalı kB başı muamele ücreti. Muamelelerin çoğunluğunun boyutu 1 kB'dir. 0.01 ücreti önerilir. @@ -795,8 +827,8 @@ Adres: %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Ödemenin gönderileceği adres (mesela 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Mesajın imzalanmasında kullanılacak adres (mesela 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -840,8 +872,8 @@ Adres: %4 - Copy the currently selected address to the system clipboard - Şu anda seçili olan adresi panoya kopyalar + Copy the current signature to the system clipboard + Güncel imzayı sistem panosuna kopyala @@ -874,17 +906,17 @@ Adres: %4 OptionsDialog - + Main Ana menü - + Display Görünüm - + Options Seçenekler @@ -901,64 +933,46 @@ Adres: %4 Balance: Bakiye: - - - 123.456 BTC - 123.456 BTC - - - - Number of transactions: - Muamele sayısı: - 0 0 - - Unconfirmed: - Doğrulanmamış: - - - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Cüzdan</span></p></body></html> - - - - <b>Recent transactions</b> - <b>Son muameleler</b> + + Wallet + Cüzdan Your current balance Güncel bakiyeniz + + + Unconfirmed: + Doğrulanmamış: + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance Doğrulanması beklenen ve henüz güncel bakiyeye ilâve edilmemiş muamelelerin toplamı + + + Number of transactions: + Muamele sayısı: + Total number of transactions in wallet Cüzdandaki muamelelerin toplam sayısı + + + <b>Recent transactions</b> + <b>Son muameleler</b> + QRCodeDialog @@ -968,64 +982,74 @@ p, li { white-space: pre-wrap; } Diyalog - - QR Code - QR Kod - - - + Request Payment - Ödeme isteği + Ödeme talebi - + Amount: Miktar: - - BTC - BTC - - - + Label: Etiket: - - Message: - Mesaj: - - - - &Save As... - &Farklı kaydet... + + Error encoding URI into QR Code. + URI'nin QR koduna kodlanmasında hata oluştu. - + Save Image... Resmi kaydet... - + + Resulting URI too long, try to reduce the text for label / message. + Sonuç URI çok uzun, etiket ya da mesaj metnini kısaltmayı deneyiniz. + + + PNG Images (*.png) PNG resimleri (*.png) + + + BTC + BTC + + + + Message: + Mesaj: + + + + &Save As... + &Farklı kaydet... + + + + QR Code + QR Kod + SendCoinsDialog - - - - - - - + + + + + + + Send Coins - Para (coin) yolla + Bitcoin yolla @@ -1057,70 +1081,70 @@ p, li { white-space: pre-wrap; } 123.456 BTC 123.456 BTC - - - Confirm the send action - Yollama etkinliğini teyit ediniz - &Send &Gönder - + + Confirm the send action + Yollama etkinliğini teyit ediniz + + + <b>%1</b> to %2 (%3) <b>%1</b> şu adrese: %2 (%3) - + Confirm send coins Gönderiyi teyit ediniz - + Are you sure you want to send %1? %1 tutarını göndermek istediğinizden emin misiniz? - + and ve - - The recepient address is not valid, please recheck. + + 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. - - 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. - - 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. - - Duplicate address found, can only send to each address once in one 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: Muamele oluşturması başarısız oldu. - - Error: Transaction creation failed - Hata: Muamele oluşturması 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: Muamele reddedildi. Cüzdanınızdaki madenî paraların bazıları zaten harcanmış olduğunda bu meydana gelebilir. Örneğin wallet.dat dosyasının bir kopyasını kullandıysanız ve kopyada para harcandığında ancak burada harcandığı işaretlenmediğinde. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Hata: Muamele reddedildi. Cüzdanınızdaki madenî paraların bazıları zaten harcanmış olduğunda bu meydana gelebilir. Örneğin wallet.dat dosyasının bir kopyasını kullandıysanız ve kopyada para harcandığında ancak burada harcandığı işaretlenmediğinde. + + The amount to pay must be larger than 0. + Ödeyeceğiniz tutarın sıfırdan yüksek olması gerekir. @@ -1190,140 +1214,140 @@ p, li { white-space: pre-wrap; } TransactionDesc - + Open for %1 blocks %1 blok için açık - + Open until %1 %1 değerine dek açık - + %1/offline? %1/çevrimdışı mı? - + %1/unconfirmed %1/doğrulanmadı - + %1 confirmations - %1 doğrulama + %1 teyit - + <b>Status:</b> <b>Durum:</b> - + , has not been successfully broadcast yet , henüz başarılı bir şekilde yayınlanmadı - + , broadcast through %1 node , %1 düğüm vasıtasıyla yayınlandı - + , broadcast through %1 nodes , %1 düğüm vasıtasıyla yayınlandı - + + (%1 matures in %2 more blocks) + (%1, %2 ek blok sonrasında olgunlaşacak) + + + + (not accepted) + (kabul edilmedi) + + + + + + <b>Debit:</b> + <b>Gider:</b> + + + + <b>Transaction fee:</b> + <b>Muamele ücreti:<b> + + + + <b>Net amount:</b> + <b>Net miktar:</b> + + + <b>Date:</b> <b>Tarih:</b> - + <b>Source:</b> Generated<br> <b>Kaynak:</b> Oluşturuldu<br> - - + + <b>From:</b> <b>Gönderen:</b> - + unknown bilinmiyor - - - + + + <b>To:</b> <b>Alıcı:</b> - + (yours, label: (sizin, etiket: - + (yours) (sizin) - - - - + + + + <b>Credit:</b> <b>Gelir:</b> - - (%1 matures in %2 more blocks) - (%1, %2 ek blok sonrasında olgunlaşacak) - - - - (not accepted) - (kabul edilmedi) - - - - - - <b>Debit:</b> - <b>Gider:</b> - - - - <b>Transaction fee:</b> - <b>Muamele ücreti:<b> - - - - <b>Net amount:</b> - <b>Net miktar:</b> - - - + Message: Mesaj: - + Comment: Yorum: - + Transaction ID: Muamele kimliği: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Oluşturulan paraların (coin) harcanabilmelerinden önce 120 blok beklemeleri gerekmektedir. Bu blok, oluşturduğunuzda, blok zincirine eklenmesi için ağda yayınlandı. Zincire eklenmesi başarısız olursa, "kabul edilmedi" olarak değiştirilecek ve harcanamayacaktır. Bu, bazen başka bir düğüm sizden birkaç saniye önce ya da sonra blok oluşturursa meydana gelebilir. @@ -1344,123 +1368,132 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Tarih - + Type Tür - + Address Adres - + Amount Miktar - - - Open for %n block(s) - %n blok için açık - - + Open until %1 %1 değerine dek açık - + Offline (%1 confirmations) Çevrimdışı (%1 doğrulama) - + Unconfirmed (%1 of %2 confirmations) Doğrulanmadı (%1 (toplam %2 üzerinden) doğrulama) + + + Open for %n block(s) + + %n blok için açık + + - + Confirmed (%1 confirmations) Doğrulandı (%1 doğrulama) - + Mined balance will be available in %n more blocks - Madenden çıkarılan bakiye %n ek blok sonrasında kullanılabilecektir + + Madenden çıkarılan bakiye %n ek blok sonrasında kullanılabilecektir + - + 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ınan - + 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 miktar. TransactionView + + + to + ilâ + @@ -1487,11 +1520,6 @@ p, li { white-space: pre-wrap; } Last month Geçen ay - - - This year - Bu sene - Range... @@ -1517,21 +1545,6 @@ p, li { white-space: pre-wrap; } Mined Oluşturulan - - - Other - Diğer - - - - Enter address or label to search - Aranacak adres ya da etiket giriniz - - - - Min amount - Asgari miktar - Copy address @@ -1553,80 +1566,95 @@ p, li { white-space: pre-wrap; } Etiketi düzenle - - Show details... - Detayları göster... - - - + Export Transaction Data Muamele verilerini dışa aktar - + Comma separated file (*.csv) Virgülle ayrılmış değerler dosyası (*.csv) - - Confirmed - Doğrulandı - - - + Date Tarih - + Type Tür - + Label Etiket - + Address Adres - + Amount Miktar - - ID - Kimlik - - - - Error exporting - Dışa aktarımda hata oluştu - - - + Could not write to file %1. %1 dosyasına yazılamadı. - + Range: Aralık: - - to - ilâ + + This year + Bu sene + + + + Other + Diğer + + + + Enter address or label to search + Aranacak adres ya da etiket giriniz + + + + Min amount + Asgari miktar + + + + Show details... + Detayları göster... + + + + Confirmed + Doğrulandı + + + + ID + Tanımlayıcı + + + + Error exporting + Dışa aktarımda hata oluştu WalletModel - + Sending... Gönderiliyor... @@ -1634,346 +1662,494 @@ p, li { white-space: pre-wrap; } bitcoin-core - + + Server private key (default: server.pem) + Sunucu özel anahtarı (varsayılan: server.pem) + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + wallet.dat dosyasının yüklenmesinde hata oluştu: cüzdanın daha yeni bir Bitcoin sürümüne ihtiyacı var + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Cüzdanın tekrar yazılması gerekiyordu: işlemi tamamlamak için Bitcoin'i yeniden başlatınız + + + + 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 + Keypool başlatılamadı + + + + Generate coins + Madenî para (Bitcoin) oluştur + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Bağlantılar için dinlenecek <port> (varsayılan: 8333 ya da testnet: 18333) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Kabul edilebilir şifreler (varsayılan: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Maintain at most <n> connections to peers (default: 125) + Eşler ile en çok <n> adet bağlantı kur (varsayılan: 125) + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + %s veri dizininde kilit elde edilemedi. Bitcoin muhtemelen hâlihazırda çalışmaktadır. + + + + 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) + + + + Run in the background as a daemon and accept commands + Arka planda daemon (servis) olarak çalış ve komutları kabul et + + + + Send trace/debug info to debugger + Hata ayıklayıcıya -debugger- trace/hata ayıklama verileri 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 + + + + 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 + + + + 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) + + + + Accept command line and JSON-RPC commands + Konut satırı ve JSON-RPC komutlarını kabul et + + + + Use the test network + Deneme şebekesini kullan + + + + Prepend debug output with timestamp + Hata ayıklama çıktısına tarih ön ekleri ilâve et + + + + Listen for JSON-RPC connections on <port> (default: 8332) + JSON-RPC bağlantıları için dinlenecek <port> (varsayılan: 8332) + + + + Allow JSON-RPC connections from specified IP address + Belirtilen İP adresinden JSON-RPC bağlantılarını kabul et + + + + This help message + Bu yardım mesajı + + + + Loading addresses... + Adresler yükleniyor... + + + + Loading block index... + Blok indeksi yükleniyor... + + + + Error loading wallet.dat: Wallet corrupted + wallet.dat dosyasının yüklenmesinde hata oluştu: bozuk cüzdan + + + + Loading wallet... + Cüzdan yükleniyor... + + + + Rescanning... + Yeniden tarama... + + + + Done loading + Yükleme tamamlandı + + + Bitcoin version Bitcoin sürümü - + Usage: Kullanım: - + Send command to -server or bitcoind -server ya da bitcoind'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: bitcoin.conf) Yapılandırma dosyası belirt (varsayılan: bitcoin.conf) - + Specify pid file (default: bitcoind.pid) Pid dosyası belirt (varsayılan: bitcoind.pid) - - Generate coins - Madenî para (coin) oluştur - - - - Don't generate coins - Para oluşturma - - - + Start minimized Küçültülmüş olarak başla - + + Show splash screen on startup (default: 1) + Başlatıldığında başlangıç ekranını göster (varsayılan: 1) + + + Specify data directory Veri dizinini belirt - + Specify connection timeout (in milliseconds) Bağlantı zaman aşım süresini milisaniye olarak belirt - + Connect through socks4 proxy Socks4 vekil sunucusu vasıtasıyla bağlan - + Allow DNS lookups for addnode and connect Düğüm ekleme ve bağlantı için DNS aramalarına izin ver - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Bağlantılar için dinlenecek <port> (varsayılan: 8333 ya da testnet: 18333) - - - - 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 - Bağlanılacak düğüm ekle - - - + Connect only to the specified node Sadece belirtilen düğüme bağlan - - Don't accept connections from outside - Dışarıdan bağlantıları reddet - - - - Don't bootstrap list of peers using DNS - Eş listesini DNS kullanarak başlatma - - - - 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: 10000) Her bağlantı için alım tamponu, <n>*1000 bayt (varsayılan: 10000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Her bağlantı için yollama tamponu, <n>*1000 bayt (varsayılan: 10000) - - Don't attempt to use UPnP to map the listening port - Dinlenilecek portu haritalamak için UPnP kullanma + + Output extra debugging information + İlâve hata ayıklama verisi çıkar - - Attempt to use UPnP to map the listening port - Dinlenilecek portu haritalamak için UPnP kullan + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL seçenekleri: (SSL kurulum bilgisi için Bitcoin vikisine bakınız) - - Fee per kB to add to transactions you send - Yolladığınız muameleler için eklenecek kB başı ücret + + Usage + Kullanım - - Accept command line and JSON-RPC commands - Konut satırı ve JSON-RPC komutlarını kabul et + + Error loading addr.dat + addr.dat dosyasının yüklenmesinde hata oluştu - - Run in the background as a daemon and accept commands - Arka planda daemon (servis) olarak çalış ve komutları kabul et + + Invalid -proxy address + Geçersiz -proxy adresi - - Use the test network - Deneme şebekesini kullan + + Invalid amount for -paytxfee=<amount> + -paytxfee=<miktar> için geçersiz miktar - - Output extra debugging information - İlâve hata ayıklama verisi çıkar + + 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. - - Prepend debug output with timestamp - Hata ayıklama çıktısına tarih ön ekleri ilâve et + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + %d sayılı porta bu bilgisayarda bağlanılamadı. Bitcoin muhtemelen hâlihazırda çalışmaktadır. - Send trace/debug info to console instead of debug.log file - Trace/hata ayıklama verilerini debug.log dosyası yerine konsola gönder + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Uyarı: Lütfen bilgisayarınızın tarih ve saatinin doğru olup olmadığını kontrol ediniz. Saatiniz doğru değilse Bitcoin gerektiği gibi çalışamaz. - - Send trace/debug info to debugger - Hata ayıklayıcıya -debugger- trace/hata ayıklama verileri gönder + + Error: CreateThread(StartNode) failed + Hata: CreateThread(StartNode) başarısız oldu - - Username for JSON-RPC connections - JSON-RPC bağlantıları için kullanıcı ismi + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + %s, şu yapılandırma dosyasında rpc parolası belirtmeniz gerekir: + %s +Aşağıdaki rastgele oluşturulan parolayı kullanmanız tavsiye edilir: +rpcuser=bitcoinrpc +rpcpassword=%s +(bu parolayı hatırlamanız gerekli değildir) +Dosya mevcut değilse, sadece sahibi için okumayla sınırlı izin ile oluşturunuz. + - - Password for JSON-RPC connections - JSON-RPC bağlantıları için parola + + Detach block and address databases. Increases shutdown time (default: 0) + Blok ve adres veri tabanlarını ayır. Kapatma süresini arttırır (varsayılan: 0) - - Listen for JSON-RPC connections on <port> (default: 8332) - JSON-RPC bağlantıları için dinlenecek <port> (varsayılan: 8332) + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Hata: Muamele reddedildi. Cüzdanınızdaki madenî paraların bazıları zaten harcanmış olduğunda bu meydana gelebilir. Örneğin wallet.dat dosyasının bir kopyasını kullandıysanız ve kopyada para harcandığında ancak burada harcandığı işaretlenmediğinde. - - Allow JSON-RPC connections from specified IP address - Belirtilen İP adresinden JSON-RPC bağlantılarını kabul et + + Accept connections from outside (default: 1) + Dışarıdan gelen bağlantıları kabul et (varsayılan: 1) - - 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 + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Hata: Muamelenin miktarı, karmaşıklığı ya da yakın geçmişte alınan fonların kullanılması nedeniyle bu muamele en az %s tutarında ücret gerektirmektedir - - Set key pool size to <n> (default: 100) - Anahtar alan boyutunu <n> değerine ayarla (varsayılan: 100) + + Set language, for example "de_DE" (default: system locale) + Lisan belirt, mesela "de_De" (varsayılan: sistem dili) - - Rescan the block chain for missing wallet transactions - Blok zincirini eksik cüzdan muameleleri için tekrar tara + + Find peers using DNS lookup (default: 1) + Eşleri DNS araması vasıtasıyla bul (varsayılan: 1) - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL seçenekleri: (SSL kurulum bilgisi için Bitcoin vikisine bakınız) + + 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) - - Use OpenSSL (https) for JSON-RPC connections - JSON-RPC bağlantıları için OpenSSL (https) kullan + + Send trace/debug info to console instead of debug.log file + Trace/hata ayıklama verilerini debug.log dosyası yerine konsola gönder - - Server certificate file (default: server.cert) - Sunucu sertifika dosyası (varsayılan: server.cert) + + Use Universal Plug and Play to map the listening port (default: 1) + Dinlenecek portu haritalamak için UPnP kullan (varsayılan: 1) - - Server private key (default: server.pem) - Sunucu özel anahtarı (varsayılan: server.pem) + + Use Universal Plug and Play to map the listening port (default: 0) + Dinlenecek portu haritalamak için UPnP kullan (varsayılan: 0) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Kabul edilebilir şifreler (varsayılan: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + 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. - - This help message - Bu yardım mesajı + + 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ış - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - %s veri dizininde kilit elde edilemedi. Bitcoin muhtemelen hâlihazırda çalışmaktadır. + + Error loading blkindex.dat + blkindex.dat dosyasının yüklenmesinde hata oluştu - - Loading addresses... - Adresler yükleniyor... + + An error occurred while setting up the RPC port %i for listening: %s + %i RPC portunun dinleme için kurulması sırasında bir hata meydana geldi: %s - - Error loading addr.dat - addr.dat dosyasının yüklenmesinde hata oluştu + + Bitcoin + Bitcoin - - Error loading blkindex.dat - blkindex.dat dosyasının yüklenmesinde hata oluştu + + Cannot write default address + Varsayılan adres yazılamadı - - Error loading wallet.dat: Wallet corrupted - wallet.dat dosyasının yüklenmesinde hata oluştu: bozuk cüzdan + + Don't generate coins + Bitcoin oluşturmasını devre dışı bırak - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - wallet.dat dosyasının yüklenmesinde hata oluştu: cüzdanın daha yeni bir Bitcoin sürümüne ihtiyacı var + + Error + Hata - - Wallet needed to be rewritten: restart Bitcoin to complete - Cüzdanın tekrar yazılması gerekiyordu: işlemi tamamlamak için Bitcoin'i yeniden başlatınız + + Error: Transaction creation failed + Hata: Muamele oluşturması başarısız oldu - - Error loading wallet.dat - wallet.dat dosyasının yüklenmesinde hata oluştu + + Error: Wallet locked, unable to create transaction + Hata: Cüzdan kilitli, muamele oluşturulamadı - - Loading block index... - Blok indeksi yükleniyor... + + Fee per KB to add to transactions you send + Yolladığınız muameleler için eklenecek KB başı ücret - - Loading wallet... - Cüzdan yükleniyor... + + Find peers using internet relay chat (default: 0) + Eşleri Internet Relay Chat vasıtasıyla bul (varsayılan: 0) - - Rescanning... - Yeniden tarama... + + How many blocks to check at startup (default: 2500, 0 = all) + Başlangıçta ne kadar blokun denetleneceği (varsayılan: 2500, 0 = tümü) - - Done loading - Yükleme tamamlandı + + How thorough the block verification is (0-6, default: 1) + Blok kontrolünün derinliği (0 ilâ 6, varsayılan: 1) - - Invalid -proxy address - Geçersiz -proxy adresi + + Insufficient funds + Yetersiz bakiye - - Invalid amount for -paytxfee=<amount> - -paytxfee=<miktar> için geçersiz miktar + + Invalid amount + Geçersiz miktar - - 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. + + Sending... + Gönderiliyor... - - Error: CreateThread(StartNode) failed - Hata: CreateThread(StartNode) başarısız oldu + + Set database cache size in megabytes (default: 25) + Veritabanı önbellek boyutunu megabayt olarak belirt (varsayılan: 25) - - Warning: Disk space is low - Uyarı: Disk alanı düşük + + Set database disk log size in megabytes (default: 100) + Diskteki veritabanı kütüğü boyutunu megabayt olarak belirt (varsayılan: 100) - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - %d sayılı porta bu bilgisayarda bağlanılamadı. Bitcoin muhtemelen hâlihazırda çalışmaktadır. + + To use the %s option + %s seçeneğini kullanmak için - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Uyarı: Lütfen bilgisayarınızın tarih ve saatinin doğru olup olmadığını kontrol ediniz. Saatiniz doğru değilse Bitcoin gerektiği gibi çalışamaz. + + Upgrade wallet to latest format + Cüzdanı en yeni biçime güncelle - - beta - beta + + Warning: Disk space is low + Uyarı: Disk alanı düşük - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts index 006c2259b2..a1104a7639 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ Версія <b>Bitcoin'a<b> - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -72,11 +74,6 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code Показати QR-&Код - - - Sign a message to prove you own this address - Підпишіть повідомлення щоб довести, що ви є власником цієї адреси - &Sign Message @@ -93,63 +90,68 @@ This product includes software developed by the OpenSSL Project for use in the O &Видалити - + + Comma separated file (*.csv) + Файли відділені комами (*.csv) + + + + Error exporting + Помилка при експортуванні + + + + Sign a message to prove you own this address + Підпишіть повідомлення щоб довести, що ви є власником цієї адреси + + + Copy address Скопіювати адресу - + Copy label Скопіювати мітку - + Edit Редагувати - - Delete - Видалити + + Could not write to file %1. + Неможливо записати у файл %1. - + Export Address Book Data Експортувати адресну книгу - - Comma separated file (*.csv) - Файли відділені комами (*.csv) - - - - Error exporting - Помилка при експортуванні - - - - Could not write to file %1. - Неможливо записати у файл %1. + + Delete + Видалити AddressTableModel - + Label Назва - - Address - Адреса - - - + (no label) (немає назви) + + + Address + Адреса + AskPassphraseDialog @@ -159,25 +161,35 @@ This product includes software developed by the OpenSSL Project for use in the O Діалог - - + + New passphrase + Новий пароль + + + TextLabel Текстова мітка - - Enter passphrase - Введіть пароль + + Decrypt wallet + Дешифрувати гаманець - - New passphrase - Новий пароль + + + The supplied passphrases do not match. + Введені паролі не співпадають. - - Repeat new passphrase - Повторіть пароль + + Wallet unlock failed + Не вдалося розблокувати гаманець + + + + Enter passphrase + Введіть пароль @@ -189,31 +201,11 @@ This product includes software developed by the OpenSSL Project for use in the O 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. @@ -231,6 +223,33 @@ Are you sure you wish to encrypt your wallet? УВАГА: Якщо ви зашифруєте гаманець і забудете пароль, ви <b>ВТРАТИТЕ ВСІ СВОЇ БІТКОІНИ</b>! Ви дійсно хочете зашифрувати свій гаманець? + + + This operation needs your wallet passphrase to unlock the wallet. + Ця операція потребує пароль для розблокування гаманця. + + + + Unlock wallet + Розблокувати гаманець + + + + Change passphrase + Змінити пароль + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Виникла помилка під час шифрування гаманця. Ваш гаманець не було зашифровано. + + + + + + The passphrase entered for the wallet decryption was incorrect. + Введений пароль є невірним. + @@ -238,9 +257,14 @@ Are you sure you wish to encrypt your wallet? Гаманець зашифровано - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. + + Wallet decryption failed + Не вдалося розшифрувати гаманець + + + + Wallet passphrase was successfully changed. + Пароль було успішно змінено. @@ -248,6 +272,16 @@ Are you sure you wish to encrypt your wallet? Warning: The Caps Lock key is on. Увага: Ввімкнено Caps Lock + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. + + + + Repeat new passphrase + Повторіть пароль + @@ -256,315 +290,315 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed Не вдалося зашифрувати гаманець + + + BitcoinGUI - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Виникла помилка під час шифрування гаманця. Ваш гаманець не було зашифровано. + + E&xit + &Вихід - - - The supplied passphrases do not match. - Введені паролі не співпадають. + + Show information about Bitcoin + Показати інформацію про Bitcoin - - Wallet unlock failed - Не вдалося розблокувати гаманець + + About &Qt + &Про Qt - - - - The passphrase entered for the wallet decryption was incorrect. - Введений пароль є невірним. + + Backup Wallet + Резервне копіювання гаманця - - Wallet decryption failed - Не вдалося розшифрувати гаманець + + Wallet Data (*.dat) + Дані гаманця (*.dat) - - Wallet passphrase was succesfully changed. - Пароль було успішно змінено. + + Backup Failed + Резервне копіювання не вдалося - - - BitcoinGUI - - Bitcoin Wallet - Гаманець + + There was an error trying to save the wallet data to the new location. + Виникла помилка при спробі зберегти гаманець в новому місці - - + Synchronizing with network... Синхронізація з мережею... - - Block chain synchronization in progress - Відбувається синхронізація ланцюжка блоків... + + Send coins to a bitcoin address + Відправити монети на вказану адресу - - &Overview - &Огляд + + Bitcoin Wallet + Гаманець - + 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 В&ідправити - - Send coins to a bitcoin address - Відправити монети на вказану адресу - - - - Sign &message - &Підписати повідомлення - - - - Prove you control an address - Доведіть, що це ваша адреса + + Quit application + Вийти - - E&xit - &Вихід + + &Options... + &Параметри... - - Quit application - Вийти + + Modify configuration options for bitcoin + Редагувати параметри - - &About %1 - П&ро %1 + + &Export... + &Експорт... - - Show information about Bitcoin - Показати інформацію про Bitcoin + + &Overview + &Огляд - - About &Qt - &Про Qt + + Show the list of addresses for receiving payments + Показати список адрес для отримання платежів - + Show information about Qt Показати інформацію про Qt - - &Options... - &Параметри... - - - - Modify configuration options for bitcoin - Редагувати параметри + + Prove you control an address + Доведіть, що це ваша адреса - Open &Bitcoin - Показати &гаманець + &About %1 + П&ро %1 - - Show the Bitcoin window - Показати вікно гаманця + + &File + &Файл - - &Export... - &Експорт... + + &Settings + &Налаштування - - Export the data in the current tab to a file - + + &Help + &Довідка - - &Encrypt Wallet - &Шифрування гаманця + + Tabs toolbar + Панель вкладок - + Encrypt or decrypt wallet Зашифрувати чи розшифрувати гаманець - - &Backup Wallet - + + Actions toolbar + Панель дій - - Backup wallet to another location - + + Change the passphrase used for wallet encryption + Змінити пароль, який використовується для шифрування гаманця - - &Change Passphrase - Змінити парол&ь - - - - Change the passphrase used for wallet encryption - Змінити пароль, який використовується для шифрування гаманця + + Sign &message + &Підписати повідомлення - - &File - &Файл + + Show/Hide &Bitcoin + - - &Settings - &Налаштування + + Show or hide the Bitcoin window + Показати вікно гаманця - - &Help - &Довідка + + &Encrypt Wallet + &Шифрування гаманця - - Tabs toolbar - Панель вкладок + + &Backup Wallet + &Резервне копіювання гаманця - - Actions toolbar - Панель дій + + &Change Passphrase + Змінити парол&ь - + [testnet] [тестова мережа] - + + Bitcoin client + + + + bitcoin-qt bitcoin-qt - + %n active connection(s) to Bitcoin network - %n активне з’єднання з мережею%n активні з’єднання з мережею%n активних з’єднань з мережею + + %n активне з’єднання з мережею + %n активні з’єднання з мережею + %n активних з’єднань з мережею + + + + + ~%n block(s) remaining + + + + + - - Downloaded %1 of %2 blocks of transaction history. - Завантажено %1 з %2 блоків історії переказів. + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Завантажено %1 з %2 блоків історії переказів (%3% done). - + Downloaded %1 blocks of transaction history. Завантажено %1 блоків історії транзакцій. - + %n second(s) ago - %n секунду тому%n секунди тому%n секунд тому + + %n секунду тому + %n секунди тому + %n секунд тому + - + %n minute(s) ago - %n хвилину тому%n хвилини тому%n хвилин тому + + %n хвилину тому + %n хвилини тому + %n хвилин тому + - + %n hour(s) ago - %n годину тому%n години тому%n годин тому + + %n годину тому + %n години тому + %n годин тому + - + %n day(s) ago - %n день тому%n дня тому%n днів тому + + %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, яка відправиться тим вузлам що оброблять ваш переказ, та допоможе підтримати мережу. Ви хочете додати комісію? - - Sending... - Відправлення... - - - + Sent transaction Надіслані перекази - + Incoming transaction Отримані перекази - + Date: %1 Amount: %2 Type: %3 @@ -577,52 +611,57 @@ Address: %4 - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> <b>Зашифрований</b> гаманець <b>розблоковано</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> <b>Зашифрований</b> гаманець <b>заблоковано</b> - - Backup Wallet - + + Sending... + Відправлення... - - Wallet Data (*.dat) - + + Export the data in the current tab to a file + Експортувати дані з поточної вкладки в файл - - Backup Failed - + + Backup wallet to another location + Резервне копіювання гаманця в інше місце - - There was an error trying to save the wallet data to the new location. - + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: В&имірювати монети в: - + Choose the default subdivision unit to show in the interface, and when sending coins Виберіть одиницю вимірювання монет, яка буде відображатись в гаманці та при відправленні. - - Display addresses in transaction list - Відображати адресу в списку переказів + + &Display addresses in transaction list + &Відображати адресу в списку переказів + + + + Whether to show Bitcoin addresses in the transaction list + @@ -662,26 +701,11 @@ Address: %4 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 bitcoin address. - Введена адреса «%1» не є коректною адресою в мережі Bitcoin. - Could not unlock wallet. @@ -692,117 +716,117 @@ Address: %4 New key generation failed. Не вдалося згенерувати нові ключі. + + + Edit receiving address + Редагувати адресу для отримання + + + + Edit sending address + Редагувати адресу для відправлення + + + + The entered address "%1" is not a valid bitcoin address. + Введена адреса «%1» не є коректною адресою в мережі Bitcoin. + MainOptionsPage - + &Start Bitcoin on window system startup &Запускати гаманець при вході в систему - + Automatically start Bitcoin after the computer is turned on Автоматично запускати гаманець при вмиканні комп’ютера - + &Minimize to the tray instead of the taskbar Мінімізувати &у трей - + Show only a tray icon after minimizing the window Показувати лише іконку в треї після згортання вікна - + Map port using &UPnP Відображення порту через &UPnP - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Автоматично відкривати порт для клієнту біткоін на роутері. Працює лише якщо ваш роутер підтримує UPnP і ця функція увімкнена. - + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Підключатись до мережі Bitcoin через SOCKS4-проксі (наприклад при використанні Tor) + + + + Detach databases at shutdown + + + + + 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. + + + + M&inimize on close Згортати замість закритт&я - + 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. Згортати замість закриття. Якщо ця опція включена, програма закриється лише після вибору відповідного пункту в меню. - + &Connect through SOCKS4 proxy: Підключатись через &SOCKS4-проксі: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) - Підключатись до мережі Bitcoin через SOCKS4-проксі (наприклад при використанні Tor) - - - + 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. 1234) Порт проксі-сервера (наприклад 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Добровільна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. - + Pay transaction &fee Заплатити комісі&ю - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Добровільна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. - MessagePage - - - 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 send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Адреса для отримувача платежу (наприклад, 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - - Choose adress from address book - Вибрати адресу з адресної книги - Alt+A @@ -823,16 +847,6 @@ Address: %4 Enter the message you want to sign here Введіть повідомлення, яке ви хочете підписати тут - - - Click "Sign Message" to get signature - Натисніть кнопку "Підписати повідомлення", для отриманя підпису - - - - Sign a message to prove you own this address - Підпишіть повідомлення щоб довести, що ви є власником цієї адреси - &Sign Message @@ -840,13 +854,8 @@ Address: %4 - Copy the currently selected address to the system clipboard - Копіювати виділену адресу в буфер обміну - - - - &Copy to Clipboard - &Копіювати + Copy the current signature to the system clipboard + @@ -855,6 +864,46 @@ Address: %4 Error signing Помилка при підписуванні + + + Sign failed + Не вдалось підписати + + + + 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Введіть адресу Bitcoin (наприклад 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Choose adress from address book + Вибрати адресу з адресної книги + + + + Click "Sign Message" to get signature + Натисніть кнопку "Підписати повідомлення", для отриманя підпису + + + + Sign a message to prove you own this address + Підпишіть повідомлення щоб довести, що ви є власником цієї адреси + + + + &Copy to Clipboard + &Копіювати + %1 is not a valid address. @@ -865,26 +914,21 @@ Address: %4 Private key for %1 is not available. Приватний ключ для %1 недоступний. - - - Sign failed - Не вдалось підписати - OptionsDialog - + Main Головні - + Display Відображення - + Options Параметри @@ -896,16 +940,21 @@ Address: %4 Form Форма + + + Total number of transactions in wallet + Загальна кількість переказів в гаманці + + + + Your current balance + Ваш поточний баланс + Balance: Баланс: - - - 123.456 BTC - 123.456 BTC - Number of transactions: @@ -922,46 +971,58 @@ Address: %4 Непідтверджені: - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Гаманець</span></p></body></html> + + Wallet + Гаманець - + <b>Recent transactions</b> <b>Недавні перекази</b> - - - Your current balance - Ваш поточний баланс - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance Загальна сума всіх переказів, які ще не підтверджені, та до сих пір не враховуються в загальному балансі - - - Total number of transactions in wallet - Загальна кількість переказів в гаманці - QRCodeDialog + + + Amount: + Кількість: + + + + Label: + Мітка: + + + + &Save As... + &Зберегти як... + + + + Error encoding URI into QR Code. + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + PNG Images (*.png) + PNG-зображення (*.png) + + + + Save Image... + + Dialog @@ -973,79 +1034,39 @@ p, li { white-space: pre-wrap; } QR-Код - + Request Payment Запросити Платіж - - Amount: - Кількість: - - - + BTC BTC - - Label: - Мітка: - - - + Message: Повідомлення: - - - &Save As... - &Зберегти як... - - - - Save Image... - - - - - PNG Images (*.png) - - SendCoinsDialog - - - - - - - - Send Coins - Відправити - - - - Send to multiple recipients at once - Відправити на декілька адрес - - - - &Add recipient... - Дод&ати одержувача... - - - - Remove all transaction fields - Видалити всі поля транзакції + + + + + + + + Send Coins + Відправити - - Clear all - Очистити все + + Send to multiple recipients at once + Відправити на декілька адрес @@ -1068,68 +1089,78 @@ p, li { white-space: pre-wrap; } &Відправити - + <b>%1</b> to %2 (%3) <b>%1</b> адресату %2 (%3) - + Confirm send coins Підтвердіть відправлення - - Are you sure you want to send %1? - Ви впевнені що хочете відправити %1 + + The recipient address is not valid, please recheck. + Адреса отримувача невірна, будьласка перепровірте. - - and - і + + The amount exceeds your balance. + Кількість монет для відправлення перевищує ваш баланс. - - The recepient address is not valid, please recheck. - Адреса отримувача невірна, будьласка перепровірте. + + The total exceeds your balance when the %1 transaction fee is included. + Сума перевищить ваш баланс, якщо комісія %1 буде додана до вашого переказу. - - The amount to pay must be larger than 0. - Кількість монет для відправлення повинна бути більшою 0. + + Duplicate address found, can only send to each address once per send operation. + Знайдено адресу що дублюється. Відправлення на кожну адресу дозволяється лише один раз на кожну операцію переказу. - - Amount exceeds your balance - Кількість монет для відправлення перевищує ваш баланс + + Error: Transaction creation failed. + Помилка: не вдалося створити переказ. - - Total exceeds your balance when the %1 transaction fee is included - Сума перевищить ваш баланс, якщо комісія %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. + Помилка: переказ було відхилено. Це може статись, якщо декілька монет з вашого гаманця вже використані, наприклад, якщо ви використовуєте одну копію гаманця (wallet.dat), а монети були використані з іншої копії, але не позначені як використані в цій. - - Duplicate address found, can only send to each address once in one send operation - Знайдено адресу що дублюється. Відправлення на кожну адресу дозволяється лише один раз на кожну операцію переказу. + + &Add recipient... + Дод&ати одержувача... - - Error: Transaction creation failed - Помилка: не вдалося створити переказ + + Are you sure you want to send %1? + Ви впевнені що хочете відправити %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. - Помилка: переказ було відхилено. Це може статись, якщо декілька монет з вашого гаманця вже використані, наприклад, якщо ви використовуєте одну копію гаманця (wallet.dat), а монети були використані з іншої копії, але не позначені як використані в цій. + + and + і + + + + Remove all transaction fields + Видалити всі поля транзакції + + + + Clear all + Очистити все + + + + The amount to pay must be larger than 0. + Кількість монет для відправлення повинна бути більшою 0. SendCoinsEntry - - - Form - Форма - A&mount: @@ -1151,21 +1182,6 @@ p, li { white-space: pre-wrap; } &Label: &Мітка: - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Адреса для отримувача платежу (наприклад, 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - - Choose address from address book - Вибрати адресу з адресної книги - - - - Alt+A - Alt+A - Paste address from clipboard @@ -1186,147 +1202,167 @@ p, li { white-space: pre-wrap; } Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Введіть адресу Bitcoin (наприклад 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - TransactionDesc - - Open for %1 blocks - Відкрити для %1 блоків + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Адреса для отримувача платежу (наприклад, 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - Open until %1 - Відкрити до %1 + + Form + Форма - - %1/offline? - %1/поза інтернетом? + + Choose address from address book + Вибрати адресу з адресної книги - + + Alt+A + Alt+A + + + + TransactionDesc + + %1/unconfirmed %1/не підтверджено - + %1 confirmations %1 підтверджень - - <b>Status:</b> - <b>Статус:</b> - - - + , has not been successfully broadcast yet , ще не було успішно розіслано - + + Open until %1 + Відкрити до %1 + + + + Open for %1 blocks + Відкрити для %1 блоків + + + + %1/offline? + %1/поза інтернетом? + + + + <b>Status:</b> + <b>Статус:</b> + + + , broadcast through %1 node , розіслано через %1 вузол - + , broadcast through %1 nodes , розіслано через %1 вузлів - + <b>Date:</b> - <b>Дата:</b> + <b>Дата:</b> - + <b>Source:</b> Generated<br> <b>Джерело:</b> згенеровано<br> - - + + <b>From:</b> <b>Відправник:</b> - + unknown невідомий - - - + + + <b>To:</b> - <b>Одержувач:</b> + <b>Одержувач:</b> - + (yours, label: (Ваша, мітка: - + (yours) (ваша) - - - - - <b>Credit:</b> - <b>Кредит:</b> - - - + (%1 matures in %2 more blocks) (%1 «дозріє» через %2 блоків) - - (not accepted) - (не прийнято) - - - - - + + + <b>Debit:</b> <b>Дебет:</b> - - <b>Transaction fee:</b> - <b>Комісія за переказ:</b> - - - + <b>Net amount:</b> <b>Загальна сума:</b> - - Message: - Повідомлення: - - - + Comment: Коментар: - + Transaction ID: ID транзакції: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Після генерації монет, потрібно зачекати 120 блоків, перш ніж їх можна буде використати. Коли ви згенерували цей блок, його було відправлено в мережу для того, щоб він був доданий до ланцюжка блоків. Якщо ця процедура не вдасться, статус буде змінено на «не підтверджено» і ви не зможете потратити згенеровані монету. Таке може статись, якщо хтось інший згенерував блок на декілька секунд раніше. + + + + + + <b>Credit:</b> + <b>Кредит:</b> + + + + (not accepted) + (не прийнято) + + + + <b>Transaction fee:</b> + <b>Комісія за переказ:</b> + + + + Message: + Повідомлення: + TransactionDescDialog @@ -1344,123 +1380,171 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date Дата - + Type Тип - + Address Адреса - + Amount Кількість - + Open for %n block(s) - Відкрити для %n блокуВідкрити для %n блоківВідкрити для %n блоків + + Відкрити для %n блоку + Відкрити для %n блоків + Відкрити для %n блоків + - + Open until %1 Відкрити до %1 - + Offline (%1 confirmations) Поза інтернетом (%1 підтверджень) - + Unconfirmed (%1 of %2 confirmations) Непідтверджено (%1 із %2 підтверджень) - + Confirmed (%1 confirmations) Підтверджено (%1 підтверджень) - - - Mined balance will be available in %n more blocks - Добутими монетами можна буде скористатись через %n блокДобутими монетами можна буде скористатись через %n блокиДобутими монетами можна буде скористатись через %n блоків - - + 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. Сума, додана чи знята з балансу. + + + Mined balance will be available in %n more blocks + + Добутими монетами можна буде скористатись через %n блок + Добутими монетами можна буде скористатись через %n блоки + Добутими монетами можна буде скористатись через %n блоків + + TransactionView + + + Mined + Добуті + + + + Min amount + Мінімальна сума + + + + Export Transaction Data + Експортувати дані переказів + + + + Date + Дата + + + + to + до + + + + Edit label + Редагувати мітку + + + + Comma separated file (*.csv) + Файли, розділені комою (*.csv) + + + + Show details... + Показати деталі... + @@ -1508,29 +1592,39 @@ p, li { white-space: pre-wrap; } Відправлені на - - To yourself - Відправлені собі + + Amount + Кількість - - Mined - Добуті + + ID + Ідентифікатор - - Other - Інше + + Error exporting + Помилка експорту - - Enter address or label to search - Введіть адресу чи мітку для пошуку + + Could not write to file %1. + Неможливо записати у файл %1 - - Min amount - Мінімальна сума + + Range: + Діапазон від: + + + + To yourself + Відправлені собі + + + + Other + Інше @@ -1548,331 +1642,384 @@ p, li { white-space: pre-wrap; } Копіювати кількість - - Edit label - Редагувати мітку + + Confirmed + Підтверджені - - Show details... - Показати деталі... + + Label + Мітка - - Export Transaction Data - Експортувати дані переказів + + Address + Адреса - - Comma separated file (*.csv) - Файли, розділені комою (*.csv) + + Type + Тип - - Confirmed - Підтверджені + + Enter address or label to search + Введіть адресу чи мітку для пошуку + + + WalletModel - - Date - Дата + + Sending... + Відправка... + + + bitcoin-core - - Type - Тип + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Неможливо встановити блокування на робочий каталог %s. Можливо, гаманець вже запущено. - - Label - Мітка + + Loading block index... + Завантаження індексу блоків... - - Address - Адреса + + Loading wallet... + Завантаження гаманця... - - Amount - Кількість + + Rescanning... + Сканування... - - ID - Ідентифікатор + + Done loading + Завантаження завершене - - Error exporting - Помилка експорту + + Invalid amount for -paytxfee=<amount> + Помилка у величині комісії - - Could not write to file %1. - Неможливо записати у файл %1 + + Error: CreateThread(StartNode) failed + Помилка: CreateThread(StartNode) дала збій - - Range: - Діапазон від: + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Неможливо прив’язати до порту %d на цьому комп’ютері. Молживо гаманець вже запущено. - - to - до + + Options: + Параметри: + - - - WalletModel - - Sending... - Відправка... + + List commands + Список команд + - - - bitcoin-core - - Bitcoin version - Версія + + Error: Wallet locked, unable to create transaction + - - Usage: - Вкористання: + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Send command to -server or bitcoind - Відправити команду серверу -server чи демону - + + Invalid amount + - - List commands - Список команд - + + To use the %s option + - - Get help for a command - Отримати довідку по команді - + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + - - Options: - Параметри: - + + Error + - - Specify configuration file (default: bitcoin.conf) - Вкажіть файл конфігурації (за промовчуванням: bitcoin.conf) - + + An error occurred while setting up the RPC port %i for listening: %s + - - Specify pid file (default: bitcoind.pid) - Вкажіть pid-файл (за промовчуванням: bitcoind.pid) + + 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: bitcoin.conf) + Вкажіть файл конфігурації (за промовчуванням: bitcoin.conf) - + Generate coins Генерувати монети - + Don't generate coins Не генерувати монети - - Start minimized - Запускати згорнутим - + + Show splash screen on startup (default: 1) + - + Specify data directory Вкажіть робочий каталог - + + Set database cache size in megabytes (default: 25) + + + + + Set database disk log size in megabytes (default: 100) + + + + Specify connection timeout (in milliseconds) Вкажіть таймаут з’єднання (в мілісекундах) - - Connect through socks4 proxy - Підключитись через SOCKS4-проксі - + + Find peers using internet relay chat (default: 0) + - - Allow DNS lookups for addnode and connect - Дозволити пошук в DNS для команд «addnode» і «connect» - + + Accept connections from outside (default: 1) + - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Чекати на з'єднання на порту (по замовченню 8333 або тестова мережа 18333) + + Set language, for example "de_DE" (default: system locale) + - - Maintain at most <n> connections to peers (default: 125) - Підтримувати не більше <n> зв'язків з колегами (за замовчуванням: 125) + + Find peers using DNS lookup (default: 1) + - - Add a node to connect to - Додати вузол для підключення - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Connect only to the specified node - Підключитись лише до вказаного вузла - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Don't accept connections from outside - Не приймати підключення ззовні - + + Upgrade wallet to latest format + + + + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + + Usage + Вкористання + + + + Cannot downgrade wallet + + + + + Cannot initialize keypool + + + + + Cannot write default address + + + + + Invalid -proxy address + Помилка в адресі проксі-сервера + + + + 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: 8333 or testnet: 18333) + Чекати на з'єднання на порту (по замовченню 8333 або тестова мережа 18333) - - Don't bootstrap list of peers using DNS - Не завантажувати список пірів за допомогою DNS + + Maintain at most <n> connections to peers (default: 125) + Підтримувати не більше <n> зв'язків з колегами (за замовчуванням: 125) - + 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: 10000) - Максимальоий буфер , <n> * 1000 байт (за умовчанням: 10000) + + Start minimized + Запускати згорнутим + - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Максимальній розмір виіхідного буферу на одне з'єднання (за замовчуванням 10000) + + Accept command line and JSON-RPC commands + Приймати команди із командного рядка та команди JSON-RPC + - - Don't attempt to use UPnP to map the listening port - Не намагатись використовувати UPnP для відображення порту що прослуховується на роутері + + Fee per KB to add to transactions you send + Комісія за Кб - - Attempt to use UPnP to map the listening port - Намагатись використовувати UPnP для відображення порту що прослуховується на роутері + + Allow DNS lookups for addnode and connect + Дозволити пошук в DNS для команд «addnode» і «connect» - - Fee per kB to add to transactions you send - Комісія за Кб + + Send trace/debug info to console instead of debug.log file + Відсилаті налагоджувальну інформацію на консоль, а не у файл debug.log - - Accept command line and JSON-RPC commands - Приймати команди із командного рядка та команди JSON-RPC + + Run in the background as a daemon and accept commands + Запустити в фоновому режимі (як демон) та приймати команди - - Run in the background as a daemon and accept commands - Запустити в фоновому режимі (як демон) та приймати команди + + This help message + Дана довідка - + Use the test network Використовувати тестову мережу - - Output extra debugging information - Виводити більше налагоджувальної інформації + + Error loading wallet.dat: Wallet corrupted + Помилка при завантаженні wallet.dat: Гаманець пошкоджено - - Prepend debug output with timestamp - Доповнювати налагоджувальний вивід відміткою часу + + Wallet needed to be rewritten: restart Bitcoin to complete + Потрібно перезаписати гаманець: перезапустіть Біткоін-клієнт для завершення - - Send trace/debug info to console instead of debug.log file - Відсилаті налагоджувальну інформацію на консоль, а не у файл debug.log + + Prepend debug output with timestamp + Доповнювати налагоджувальний вивід відміткою часу - + 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: 8332) - Прослуховувати <port> для JSON-RPC-з’єднань (за промовчуванням: 8332) + + Set key pool size to <n> (default: 100) + Встановити розмір пулу ключів <n> (за промовчуванням: 100) - - Allow JSON-RPC connections from specified IP address - Дозволити JSON-RPC-з’єднання з вказаної IP-адреси + + Rescan the block chain for missing wallet transactions + Пересканувати ланцюжок блоків, в пошуку втрачених переказів - - Send commands to node running on <ip> (default: 127.0.0.1) - Відправляти команди на вузол, запущений на <ip> (за промовчуванням: 127.0.0.1) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Максимальоий буфер , <n> * 1000 байт (за умовчанням: 10000) - - Set key pool size to <n> (default: 100) - Встановити розмір пулу ключів <n> (за промовчуванням: 100) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Максимальній розмір виіхідного буферу на одне з'єднання (за замовчуванням 10000) - - Rescan the block chain for missing wallet transactions - Пересканувати ланцюжок блоків, в пошуку втрачених переказів - + + Output extra debugging information + Виводити більше налагоджувальної інформації - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1880,134 +2027,167 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - Use OpenSSL (https) for JSON-RPC connections - Використовувати OpenSSL (https) для JSON-RPC-з’єднань - + + Error loading addr.dat + Помилка при завантаженні addr.dat - - Server certificate file (default: server.cert) - Сертифікату сервера (за промовчуванням: server.cert) - + + Usage: + Вкористання: - - Server private key (default: server.pem) - Закритий ключ сервера (за промовчуванням: server.pem) + + Loading addresses... + Завантаження адрес... + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Увага: будь ласка, перевірте дату і час на свому комп’ютері. Якщо ваш годинник йде неправильно, Bitcoin може працювати некоректно. + + + + Bitcoin version + Версія + + + + Send command to -server or bitcoind + Відправити команду серверу -server чи демону - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Допустимі шифри (за промовчуванням: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Get help for a command + Отримати довідку по команді - - This help message - Дана довідка + + Warning: Disk space is low + Увага: На диску мало вільного місця + + + + Specify pid file (default: bitcoind.pid) + Вкажіть pid-файл (за промовчуванням: bitcoind.pid) - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Неможливо встановити блокування на робочий каталог %s. Можливо, гаманець вже запущено. + Connect through socks4 proxy + Підключитись через SOCKS4-проксі + - - Loading addresses... - Завантаження адрес... + + Add a node to connect to and attempt to keep the connection open + Додати вузол для підключення and attempt to keep the connection open - - Error loading addr.dat - Помилка при завантаженні addr.dat + + Connect only to the specified node + Підключитись лише до вказаного вузла + - - Error loading blkindex.dat - Помилка при завантаженні blkindex.dat + + Use Universal Plug and Play to map the listening port (default: 1) + Намагатись використовувати UPnP для відображення порту що прослуховується на роутері (default: 1) - - Error loading wallet.dat: Wallet corrupted - Помилка при завантаженні wallet.dat: Гаманець пошкоджено + + Use Universal Plug and Play to map the listening port (default: 0) + Намагатись використовувати UPnP для відображення порту що прослуховується на роутері (default: 0) - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Помилка при завантаженні wallet.dat: Гаманець потребує новішої версії Біткоін-клієнта + + Username for JSON-RPC connections + Ім’я користувача для JSON-RPC-з’єднань + - - Wallet needed to be rewritten: restart Bitcoin to complete - Потрібно перезаписати гаманець: перезапустіть Біткоін-клієнт для завершення + + Listen for JSON-RPC connections on <port> (default: 8332) + Прослуховувати <port> для JSON-RPC-з’єднань (за промовчуванням: 8332) + - - Error loading wallet.dat - Помилка при завантаженні wallet.dat + + Allow JSON-RPC connections from specified IP address + Дозволити JSON-RPC-з’єднання з вказаної IP-адреси + - - Loading block index... - Завантаження індексу блоків... + + Send commands to node running on <ip> (default: 127.0.0.1) + Відправляти команди на вузол, запущений на <ip> (за промовчуванням: 127.0.0.1) + - - Loading wallet... - Завантаження гаманця... + + Use OpenSSL (https) for JSON-RPC connections + Використовувати OpenSSL (https) для JSON-RPC-з’єднань + - - Rescanning... - Сканування... + + Server certificate file (default: server.cert) + Сертифікату сервера (за промовчуванням: server.cert) + - - Done loading - Завантаження завершене + + Server private key (default: server.pem) + Закритий ключ сервера (за промовчуванням: server.pem) + - - Invalid -proxy address - Помилка в адресі проксі-сервера + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Допустимі шифри (за промовчуванням: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Invalid amount for -paytxfee=<amount> - Помилка у величині комісії + + Error loading blkindex.dat + Помилка при завантаженні blkindex.dat - - 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 Bitcoin + Помилка при завантаженні wallet.dat: Гаманець потребує новішої версії Біткоін-клієнта - - Error: CreateThread(StartNode) failed - Помилка: CreateThread(StartNode) дала збій + + Error loading wallet.dat + Помилка при завантаженні wallet.dat - - Warning: Disk space is low - Увага: На диску мало вільного місця + + Bitcoin + Bitcoin - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Неможливо прив’язати до порту %d на цьому комп’ютері. Молживо гаманець вже запущено. + + Insufficient funds + Недостатньо коштів - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Увага: будь ласка, перевірте дату і час на свому комп’ютері. Якщо ваш годинник йде неправильно, Bitcoin може працювати некоректно. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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), а монети були використані з іншої копії, але не позначені як використані в цій. - - beta - бета + + Error: Transaction creation failed + Помилка: не вдалося створити переказ + + + + Sending... + Відправлення... - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index d059aa0351..af2089a9f5 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>比特币</b>版本 - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -35,7 +37,7 @@ This product includes software developed by the OpenSSL Project for use in the O Address Book - 地址薄 + 地址簿 @@ -52,30 +54,35 @@ This product includes software developed by the OpenSSL Project for use in the O Create a new address 创建新地址 - - - &New Address... - &新地址... - Copy the currently selected address to the system clipboard 复制当前选中地址到系统剪贴板 - - - &Copy to Clipboard - &复制到剪贴板 - Show &QR Code 显示二维码 - - Sign a message to prove you own this address - 发送签名消息以证明您是该比特币地址的拥有者 + + &Delete + &删除 + + + + &New Address... + &新地址... + + + + Export Address Book Data + 导出地址簿数据 + + + + &Copy to Clipboard + &复制到剪贴板 @@ -88,112 +95,86 @@ This product includes software developed by the OpenSSL Project for use in the O 从列表中删除当前选中地址。只有发送地址可以被删除。 - - &Delete - &删除 + + Sign a message to prove you own this address + 发送签名消息以证明您是该比特币地址的拥有者 - + Copy address 复制地址 - + Copy label 复制标签 - + Edit 编辑 - + Delete 删除 - - Export Address Book Data - 导出地址薄数据 - - - + Comma separated file (*.csv) 逗号分隔文件 (*.csv) - - Error exporting - 导出错误 - - - + Could not write to file %1. 无法写入文件 %1。 + + + Error exporting + 导出错误 + AddressTableModel - - Label - 标签 - - - + Address 地址 - + (no label) (没有标签) + + + Label + 标签 + AskPassphraseDialog - - Dialog - 会话 - - - - - TextLabel - 文本标签 + + New passphrase + 新口令 - + Enter passphrase 输入口令 - - New passphrase - 新口令 + + TextLabel + 文本标签 - + Repeat new passphrase 重复新口令 - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - 输入钱包的新口令。<br/>使用的口令请至少包含<b>10个以上随机字符</>,或者是<b>8个以上的单词</b>。 - - - - Encrypt wallet - 加密钱包 - - - - This operation needs your wallet passphrase to unlock the wallet. - 该操作需要您首先使用口令解锁钱包。 - Unlock wallet @@ -204,16 +185,21 @@ This product includes software developed by the OpenSSL Project for use in the O This operation needs your wallet passphrase to decrypt the wallet. 该操作需要您首先使用口令解密钱包。 + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的比特币还是有可能丢失。 + + + + Dialog + 会话 + Decrypt wallet 解密钱包 - - - Change passphrase - 修改口令 - Enter the old and new passphrase to the wallet. @@ -224,30 +210,12 @@ This product includes software developed by the OpenSSL Project for use in the O Confirm wallet encryption 确认加密钱包 - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - 警告:如果您加密了您的钱包之后忘记了口令,您将会<b>失去所有的比特币</b>! -确定要加密钱包吗? - Wallet encrypted 钱包已加密 - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的比特币还是有可能丢失。 - - - - - Warning: The Caps Lock key is on. - 警告:大写锁定键CapsLock开启 - @@ -256,6 +224,21 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed 钱包加密失败 + + + 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. + 该操作需要您首先使用口令解锁钱包。 + Wallet encryption failed due to an internal error. Your wallet was not encrypted. @@ -284,287 +267,301 @@ Are you sure you wish to encrypt your wallet? Wallet decryption failed 钱包解密失败。 + + + Change passphrase + 修改口令 + + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + 警告:如果您加密了您的钱包之后忘记了口令,您将会<b>失去所有的比特币</b>! +确定要加密钱包吗? + - Wallet passphrase was succesfully changed. + Wallet passphrase was successfully changed. 钱包口令修改成功 + + + + Warning: The Caps Lock key is on. + 警告:大写锁定键CapsLock开启 + BitcoinGUI - - Bitcoin Wallet - 比特币钱包 + + &Transactions + &交易记录 - - - Synchronizing with network... - 正在与网络同步... + + &Receive coins + &接收货币 + + + + Sign &message + 发送签名 &消息 + + + + Show or hide the Bitcoin window + 显示或隐藏比特币客户端窗口 + + + + &Export... + &导出... + + + + &Backup Wallet + &备份钱包 - - Block chain synchronization in progress - 正在同步区域锁链 + + 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 &发送货币 - - Send coins to a bitcoin address - 将货币发送到一个比特币地址 - - - - Sign &message - 发送签名 &消息 - - - + Prove you control an address 证明您拥有某个比特币地址 - + E&xit 退出 - + Quit application 退出程序 - + &About %1 &关于 %1 - + Show information about Bitcoin 显示比特币的相关信息 - - About &Qt - 关于 &Qt + + &Options... + &选项... - - Show information about Qt - 显示Qt相关信息 + + Show the list of addresses for receiving payments + 显示接收支付的地址列表 - - &Options... - &选项... + + &Help + &帮助 - - Modify configuration options for bitcoin - 修改比特币配置选项 + + Actions toolbar + 动作工具栏 - - Open &Bitcoin - 打开 &比特币 + + About &Qt + 关于 &Qt - - - Show the Bitcoin window - 显示比特币窗口 + + + %n active connection(s) to Bitcoin network + + 您连接到比特币网络的连接数量共有%n条 + - - &Export... - &导出... + + Bitcoin Wallet + 比特币钱包 - + Export the data in the current tab to a file 导出当前数据到文件 - - &Encrypt Wallet - &加密钱包 + + Backup wallet to another location + 备份钱包到其它文件夹 - - Encrypt or decrypt wallet - 加密或解密钱包 + + Send coins to a bitcoin address + 将货币发送到一个比特币地址 - - &Backup Wallet - &备份钱包 + + &Settings + &设置 - - Backup wallet to another location - 备份钱包到其它文件夹 + + Tabs toolbar + 分页工具栏 - - &Change Passphrase - &修改口令 + + [testnet] + [testnet] - - Change the passphrase used for wallet encryption - 修改钱包加密口令 + + Bitcoin client + 比特币客户端 - - &File - &文件 - - - - &Settings - &设置 - - - - &Help - &帮助 - - - - Tabs toolbar - 分页工具栏 - - - - Actions toolbar - 动作工具栏 - - - - [testnet] - [testnet] - - - - bitcoin-qt - bitcoin-qt - - - - %n active connection(s) to Bitcoin network - %n 个到比特币网络的活动连接 - - - - Downloaded %1 of %2 blocks of transaction history. - %1 / %2 个交易历史的区块已下载 - - - - Downloaded %1 blocks of transaction history. - %1 个交易历史的区块已下载 + + Downloaded %1 blocks of transaction history. + %1 个交易历史数据区块已下载 - + %n second(s) ago - %n 秒前 + + %n 秒前 + - + %n minute(s) ago - %n 分种前 + + %n 分种前 + - + %n hour(s) ago - %n 小时前 + + %n 小时前 + - + %n day(s) ago - %n 天前 + + %n 天前 + + + + + Show information about Qt + 显示Qt相关信息 - + Up to date 最新状态 - + + Modify configuration options for bitcoin + 修改比特币配置选项 + + + Catching up... 更新中... - + Last received block was generated %1. 最新收到的区块产生于 %1。 - + + &Encrypt Wallet + &加密钱包 + + + + Encrypt or decrypt wallet + 加密或解密钱包 + + + + ~%n block(s) remaining + + + + + + 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 交易费, 交易费将支付给处理该笔交易的网络节点,有助于维持比特币网络的运行. 您愿意支付交易费用吗? - - Sending... - 发送中 + + &Change Passphrase + &修改口令 + + + + Backup Failed + 备份失败 + + + + There was an error trying to save the wallet data to the new location. + 备份钱包到其它文件夹失败. - + Sent transaction 已发送交易 - + Incoming transaction 流入交易 - + Date: %1 Amount: %2 Type: %3 @@ -577,52 +574,82 @@ Address: %4 - + + Change the passphrase used for wallet encryption + 修改钱包加密口令 + + + + Show/Hide &Bitcoin + 显示/隐藏 比特币客户端 + + + 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>状态 - + + &File + &文件 + + + Backup Wallet 备份钱包 - + Wallet Data (*.dat) 钱包文件(*.dat) - - Backup Failed - 备份失败 + + bitcoin-qt + bitcoin-qt - - There was an error trying to save the wallet data to the new location. - 备份钱包到其它文件夹失败. + + Downloaded %1 of %2 blocks of transaction history (%3% done). + 已下载 %2 个交易历史区块中的 %1 个 (完成率 %3% ). + + + + Sending... + 发送中 + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + DisplayOptionsPage - + &Unit to show amounts in: &金额显示单位: - + Choose the default subdivision unit to show in the interface, and when sending coins 选择显示及发送比特币时使用的最小单位 - - Display addresses in transaction list - 在交易列表中显示地址 + + &Display addresses in transaction list + &在交易列表中显示地址 + + + + Whether to show Bitcoin addresses in the transaction list + 是否需要在交易清单中显示比特币地址。 @@ -647,16 +674,6 @@ Address: %4 &Address &地址 - - - The address associated with this address book entry. This can only be modified for sending addresses. - 该地址与地址簿中的条目已关联,无法作为发送地址编辑。 - - - - New receiving address - 新接收地址 - New sending address @@ -675,7 +692,7 @@ Address: %4 The entered address "%1" is already in the address book. - 输入的地址 "%1" 已经存在于地址薄。 + 输入的地址 "%1" 已经存在于地址簿。 @@ -692,93 +709,108 @@ Address: %4 New key generation failed. 密钥创建失败. + + + The address associated with this address book entry. This can only be modified for sending addresses. + 该地址与地址簿中的条目已关联,无法作为发送地址编辑。 + + + + New receiving address + 新接收地址 + MainOptionsPage - + &Start Bitcoin on window system startup &开机启动比特币 - + Automatically start Bitcoin after the computer is turned on 在计算机启动后自动运行比特币 - + &Minimize to the tray instead of the taskbar &最小化到托盘 - + Show only a tray icon after minimizing the window 最小化窗口后只显示一个托盘标志 - + Map port using &UPnP 使用 &UPnP 映射端口 - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. 自动在路由器中打开比特币端口。只有当您的路由器开启 UPnP 选项时此功能才有效。 - + M&inimize on close 关闭时最小化 - + 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. 当窗口关闭时程序最小化而不是退出。当使用该选项时,程序只能通过在菜单中选择退出来关闭 - + &Connect through SOCKS4 proxy: &通过SOCKS4代理连接 - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) 通过一个SOCKS4代理连接到比特币网络 (如使用Tor连接时) - + 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. 1234) 代理端口 (比如 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. 建议支付交易费用,有助于您的交易得到尽快处理. 绝大多数交易的字节数为 1 kB. 建议支付0.01个比特币. - + Pay transaction &fee 支付交易 &费用 - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - 建议支付交易费用,有助于您的交易得到尽快处理. 绝大多数交易的字节数为 1 kB. 建议支付0.01个比特币. + + Detach databases at shutdown + 关闭客户端时分离数据库 + + + + 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. + 关闭时分开区块数据库和地址数据库. 这意味着您可以将数据库文件移动至其他文件夹. 钱包文件始终是分开的. @@ -788,6 +820,16 @@ Address: %4 Message 消息 + + + Sign failed + 签名失败 + + + + &Copy to Clipboard + &复制到剪贴板 + 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. @@ -795,8 +837,8 @@ Address: %4 - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - 付款地址 (例如: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + 请输入比特币地址 (例如: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -840,13 +882,8 @@ Address: %4 - Copy the currently selected address to the system clipboard - 复制当前选中地址到系统剪贴板 - - - - &Copy to Clipboard - &复制到剪贴板 + Copy the current signature to the system clipboard + 复制当前签名至剪切板 @@ -865,51 +902,36 @@ Address: %4 Private key for %1 is not available. %1 的秘钥不可用。 - - - Sign failed - 签名失败 - OptionsDialog - + Main 主要的 - + Display 查看 - + Options 选项 OverviewPage - - - Form - 表单 - Balance: - 余额 - - - - 123.456 BTC - 123.456 BTC + 余额: Number of transactions: - 交易笔数 + 交易笔数: @@ -917,113 +939,115 @@ Address: %4 0 - - Unconfirmed: - 未确认: - - - - 0 BTC - 0 BTC + + Wallet + 钱包 - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">钱包</span></p></body></html> - - - + <b>Recent transactions</b> - <b>当前交易</b> + <b>最近交易记录</b> Your current balance 您的当前余额 - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - 尚未确认的交易总额, 未计入当前余额 - Total number of transactions in wallet 钱包总交易数量 - - - QRCodeDialog - - Dialog - 会话 + + Form + 表单 - - QR Code - 二维码 + + Unconfirmed: + 未确认: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + 尚未确认的交易总额, 未计入当前余额 + + + QRCodeDialog - + Request Payment 请求付款 - + Amount: 金额: - - BTC - BTC - - - + Label: 标签: - + Message: 消息: - + &Save As... &另存为 - + + PNG Images (*.png) + PNG图像文件(*.png) + + + Save Image... 保存图像... - - PNG Images (*.png) - PNG图像文件(*.png) + + Dialog + 会话 + + + + QR Code + 二维码 + + + + BTC + BTC + + + + Error encoding URI into QR Code. + 将 URI 转换成二维码失败. + + + + Resulting URI too long, try to reduce the text for label / message. + URI 太长, 请试着精简标签/消息的内容. SendCoinsDialog - - - - - - - + + + + + + + Send Coins 发送货币 @@ -1042,15 +1066,10 @@ p, li { white-space: pre-wrap; } Remove all transaction fields 移除所有交易项 - - - Clear all - 清除全部 - Balance: - 余额 + 余额: @@ -1068,104 +1087,88 @@ p, li { white-space: pre-wrap; } &发送 - + <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 recepient address is not valid, please recheck. - 接收者地址不合法,请检查。 - - - + The amount to pay must be larger than 0. 支付金额必须大于0. - - Amount exceeds your balance - 余额不足。 + + Clear all + 清除全部 - - Total exceeds your balance when the %1 transaction fee is included - 计入 %1 的交易费后,您的余额不足以支付总价。 + + The amount exceeds your balance. + 金额超出您的账上余额。 - - Duplicate address found, can only send to each address once in one send operation - 发现重复地址,一次操作中只可以给每个地址发送一次 + + Duplicate address found, can only send to each address once per send operation. + 发现重复的地址, 每次只能对同一地址发送一次. - - Error: Transaction creation failed - 错误:交易创建失败。 + + The recipient address is not valid, please recheck. + 接收者地址不合法,请检查。 - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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的副本,而货币在那个副本中已经被消费,但在当前钱包中未被标记为已消费。 + + The total exceeds your balance when the %1 transaction fee is included. + 计入 %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. + 错误: 交易被拒绝. 如果您使用的是备份钱包,可能存在两个钱包不同步的情况,另一个钱包中的比特币已经被使用,但本地的这个钱包尚没有记录。 SendCoinsEntry - - Form - 表单 - - - - A&mount: - 金额 + + Alt+A + Alt+A Pay &To: - 支付 &到: + 付款&给: - - - Enter a label for this address to add it to your address book - 为这个地址输入一个标签,以便将它添加到您的地址簿 + + Form + 表单 &Label: &标签: - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - 付款地址 (例如: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - - Choose address from address book - 从地址薄选择地址 - - - - Alt+A - Alt+A - Paste address from clipboard @@ -1176,11 +1179,32 @@ p, li { white-space: pre-wrap; } Alt+P Alt+P + + + A&mount: + 金额 + + + + + Enter a label for this address to add it to your address book + 为这个地址输入一个标签,以便将它添加到您的地址簿 + + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + 付款地址 (例如: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Remove this recipient 移除此接收者 + + + Choose address from address book + 从地址簿选择地址 + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1190,140 +1214,140 @@ p, li { white-space: pre-wrap; } TransactionDesc - - Open for %1 blocks - 开启 %1 个数据块 + + <b>Net amount:</b> + <b>网络金额:</b> - - Open until %1 - 至 %1 个数据块时开启 + + %1 confirmations + %1 确认项 - - %1/offline? - %1/离线? + + Open for %1 blocks + 开启 %1 个数据块 - %1/unconfirmed - %1/未确认 - - - - %1 confirmations - %1 确认项 + %1/offline? + %1/离线? - + <b>Status:</b> - <b>状态:</b> - - - - , has not been successfully broadcast yet - , 未被成功广播 + <b>状态:</b> - + , broadcast through %1 node ,同过 %1 节点广播 - + , broadcast through %1 nodes ,同过 %1 节点组广播 - + <b>Date:</b> - <b>日期:</b> + <b>日期:</b> - + <b>Source:</b> Generated<br> <b>来源:</b> 生成<br> - - + + <b>From:</b> <b>从:</b> - - unknown - 未知 - - - - - + + + <b>To:</b> <b>到:</b> - + (yours, label: (您的, 标签: - + (yours) (您的) - - - - + + + + <b>Credit:</b> <b>到帐:</b> - + (%1 matures in %2 more blocks) (%1 成熟于 %2 以上数据块) - + (not accepted) (未接受) - - - + + Open until %1 + 至 %1 个数据块时开启 + + + + %1/unconfirmed + %1/未确认 + + + + , has not been successfully broadcast yet + , 未被成功广播 + + + + unknown + 未知 + + + + + <b>Debit:</b> 支出 - + <b>Transaction fee:</b> - 交易费 - - - - <b>Net amount:</b> - <b>网络金额:</b> + <b>交易费:</b> - + Message: 消息: - + Comment: 备注 - + Transaction ID: 交易ID: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. 新生产的比特币必须等待120个数据块之后才能被使用. 当您生产出此数据块,它将被广播至比特币网络并添加至数据链. 如果添加到数据链失败, 它的状态将变成"不被接受",生产的比特币将不能使用. 在您生产新数据块的几秒钟内, 如果其它节点也生产出同样的数据块,有可能会发生这种情况. @@ -1333,205 +1357,158 @@ p, li { white-space: pre-wrap; } Transaction details - 交易细节 + 交易明细 This pane shows a detailed description of the transaction - 当前面板显示了交易的详细描述 + 当前面板显示了交易的详细信息 TransactionTableModel - + Date 日期 - + Type 类型 - + Address 地址 - + Amount 数量 - + Open for %n block(s) - 开启 %n 个数据块 + + 开启 %n 个数据块 + - + Open until %1 至 %1 个数据块时开启 - + Offline (%1 confirmations) 离线 (%1 个确认项) - + Unconfirmed (%1 of %2 confirmations) 未确认 (%1 / %2 条确认信息) - + Confirmed (%1 confirmations) 已确认 (%1 条确认信息) - - - Mined balance will be available in %n more blocks - 挖矿所得将在 %n 个数据块之后可用 - - + 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. - 从余额添加或移除的金额 + 从余额添加或移除的金额。 + + + + Mined balance will be available in %n more blocks + + 挖矿所得将在 %n 个数据块之后可用 + 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 @@ -1543,9 +1520,9 @@ p, li { white-space: pre-wrap; } 复制标签 - - Copy amount - 复制金额 + + to + @@ -1553,326 +1530,383 @@ p, li { white-space: pre-wrap; } 编辑标签 - - Show details... - 显示细节... + + + All + 全部 + + + + Today + 今天 + + + + This week + 本周 + + + + This month + 本月 + + + + Range... + 范围... - + 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 - + + Last month + 上月 - - - WalletModel - - Sending... - 发送中... + + Sent to + 发送到 + + + + Mined + 挖矿所得 + + + + Enter address or label to search + 输入地址或标签进行搜索 + + + + Min amount + 最小金额 + + + + Copy amount + 复制金额 + + + + Show details... + 显示细节... + + + + WalletModel + + + Sending... + 发送中... bitcoin-core - + Bitcoin version 比特币版本 - - Usage: - 使用: - - - - Send command to -server or bitcoind - 发送命令到服务器或者 bitcoind - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + 无法给数据目录 %s 加锁。比特币进程可能已在运行。 - - List commands - 列出命令 - + + Loading addresses... + 正在加载地址... - - Get help for a command - 获得某条命令的帮助 + + Specify configuration file (default: bitcoin.conf) + 指定配置文件 (默认为 bitcoin.conf) - - Options: - 选项: - + + Loading wallet... + 正在加载钱包... - - Specify configuration file (default: bitcoin.conf) - 指定配置文件 (默认为 bitcoin.conf) - + + Rescanning... + 正在重新扫描... - - Specify pid file (default: bitcoind.pid) - 指定 pid 文件 (默认为 bitcoind.pid) - + + Done loading + 加载完成 - - Generate coins - 生成货币 - + + Threshold for disconnecting misbehaving peers (default: 100) + Threshold for disconnecting misbehaving peers (缺省: 100) - - Don't generate coins - 不要生成货币 - + + Usage: + 使用: - - Start minimized - 启动时最小化 - + + Cannot initialize keypool + 无法初始化 keypool - - Specify data directory - 指定数据目录 - + + Cannot write default address + 无法写入缺省地址 - - Specify connection timeout (in milliseconds) - 指定连接超时时间 (微秒) + + Send command to -server or bitcoind + 发送命令到服务器或者 bitcoind - - Connect through socks4 proxy - 通过 socks4 代理连接 + + Options: + 选项: - - Allow DNS lookups for addnode and connect - 连接节点时允许DNS查找 - + + Invalid -proxy address + 代理地址不合法 - + Listen for connections on <port> (default: 8333 or testnet: 18333) 监听端口连接 <port> (缺省: 8333 or testnet: 18333) - + + An error occurred while setting up the RPC port %i for listening: %s + + + + + Set database disk log size in megabytes (default: 100) + 设置数据库磁盘日志大小 (缺省: 100MB) + + + Maintain at most <n> connections to peers (default: 125) 最大连接数 <n> (缺省: 125) - - Add a node to connect to - 连接到指定节点 + + Add a node to connect to and attempt to keep the connection open + 添加节点并与其保持连接 - - Connect only to the specified node - 只连接到指定节点 - + + Find peers using internet relay chat (default: 0) + 通过IRC聊天室查找网络上的比特币节点 (缺省: 0) - - Don't accept connections from outside - 禁止接收外部连接 - + + Find peers using DNS lookup (default: 1) + - - Don't bootstrap list of peers using DNS - 不要用DNS启动 + + Usage + 使用 - - Threshold for disconnecting misbehaving peers (default: 100) - Threshold for disconnecting misbehaving peers (缺省: 100) + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + 无法绑定端口 %d 到这台计算机。比特币进程可能已在运行。 - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Number of seconds to keep misbehaving peers from reconnecting (缺省: 86400) + + Fee per KB to add to transactions you send + 每发送1KB交易所需的费用 - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maximum per-connection receive buffer, <n>*1000 bytes (缺省: 10000) + + Upgrade wallet to latest format + 将钱包升级到最新的格式 - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maximum per-connection send buffer, <n>*1000 bytes (缺省: 10000) + + Username for JSON-RPC connections + JSON-RPC连接用户名 + - - Don't attempt to use UPnP to map the listening port - 禁止使用 UPnP 映射监听端口 + + Listen for JSON-RPC connections on <port> (default: 8332) + JSON-RPC连接监听<端口> (默认为 8332) - - Attempt to use UPnP to map the listening port - 尝试使用 UPnP 映射监听端口 + + Use OpenSSL (https) for JSON-RPC connections + 为 JSON-RPC 连接使用 OpenSSL (https)连接 + + + + Server private key (default: server.pem) + 服务器私钥 (默认为 server.pem) - - Fee per kB to add to transactions you send - 为付款交易支付比特币(每kb) + + How thorough the block verification is (0-6, default: 1) + 需要几个确认 (0-6个, 缺省: 1个) - - Accept command line and JSON-RPC commands - 接受命令行和 JSON-RPC 命令 + + This help message + 该帮助信息 - - Run in the background as a daemon and accept commands - 在后台运行并接受命令 - - + + Error loading wallet.dat: Wallet corrupted + wallet.dat钱包文件加载错误:钱包损坏 - - Use the test network - 使用测试网络 + + Wallet needed to be rewritten: restart Bitcoin to complete + 钱包文件需要重写:请退出并重新启动Bitcoin客户端 + + + + Accept command line and JSON-RPC commands + 接受命令行和 JSON-RPC 命令 - - Output extra debugging information - 输出调试信息 + + Cannot downgrade wallet + 无法降级钱包格式 - - Prepend debug output with timestamp - 为调试输出信息添加时间戳 + + Use the test network + 使用测试网络 + - + Send trace/debug info to console instead of debug.log file 跟踪/调试信息输出到控制台,不输出到debug.log文件 - + Send trace/debug info to debugger 跟踪/调试信息输出到 调试器debugger - - Username for JSON-RPC connections - JSON-RPC连接用户名 - - - - + Password for JSON-RPC connections JSON-RPC连接密码 - - Listen for JSON-RPC connections on <port> (default: 8332) - JSON-RPC连接监听<端口> (默认为 8332) - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + 当最佳区块变化时执行命令 (命令行中的 %s 会被替换成区块哈希值) - - Allow JSON-RPC connections from specified IP address - 允许从指定IP接受到的JSON-RPC连接 + + Don't generate coins + 不要生成货币 - - Send commands to node running on <ip> (default: 127.0.0.1) - 向IP地址为 <ip> 的节点发送指令 (缺省: 127.0.0.1) + + Start minimized + 启动时最小化 - - Set key pool size to <n> (default: 100) - 设置密钥池大小为 <n> (缺省: 100) + + Allow DNS lookups for addnode and connect + 连接节点时允许DNS查找 - - Rescan the block chain for missing wallet transactions - 重新扫描数据链以查找遗漏的交易 + + Connect only to the specified node + 只连接到指定节点 - + + Error loading addr.dat + addr.dat文件加载错误 + + + + Output extra debugging information + 输出调试信息 + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) @@ -1880,133 +1914,271 @@ SSL 选项: (SSL 安装教程具体见比特币维基百科) - - Use OpenSSL (https) for JSON-RPC connections - 为 JSON-RPC 连接使用 OpenSSL (https)连接 + + Loading block index... + 加载区块索引... - - Server certificate file (default: server.cert) - 服务器证书 (默认为 server.cert) + + Invalid amount for -paytxfee=<amount> + 不合适的交易费 -paytxfee=<amount> + + + + To use the %s option + 使用 %s 选项 + + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + 警告: -paytxfee 交易费设置过高. 每进行一笔交易您都将支付该数量的交易费. + + + + Generate coins + 生成货币 - - Server private key (default: server.pem) - 服务器私钥 (默认为 server.pem) + + Get help for a command + 获得某条命令的帮助 + + + + + Error: CreateThread(StartNode) failed + 错误:线程创建(StartNode)失败 + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + 警告:请确定您当前计算机的日期和时间是正确的。比特币将无法在错误的时间下正常工作。 + + + + List commands + 列出命令 + + + + + 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. + 您必须在配置文件中加入选项 rpcpassword : + %s +如果配置文件不存在,请新建,并将文件权限设置为仅允许文件所有者读取. + + + + Allow JSON-RPC connections from specified IP address + 允许从指定IP接受到的JSON-RPC连接 + + + Specify pid file (default: bitcoind.pid) + 指定 pid 文件 (默认为 bitcoind.pid) + + + + + Bitcoin + 比特币 + + + + Show splash screen on startup (default: 1) + 启动时显示版权页 (缺省: 1) + - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - 可接受的加密器 (默认为 TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Specify data directory + 指定数据目录 + + + Set database cache size in megabytes (default: 25) + 设置数据库缓冲区大小 (缺省: 25MB) + - This help message - 该帮助信息 + Specify connection timeout (in milliseconds) + 指定连接超时时间 (微秒) - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - 无法给数据目录 %s 加锁。比特币进程可能已在运行。 - - - - Loading addresses... - 正在加载地址... + Connect through socks4 proxy + 通过 socks4 代理连接 + - - Error loading addr.dat - addr.dat文件加载错误 + + Detach block and address databases. Increases shutdown time (default: 0) + 分离区块数据库和地址数据库. 会延升关闭时间 (缺省: 0) - + Error loading blkindex.dat blkindex.dat文件加载错误 + + + Error loading wallet.dat + wallet.dat钱包文件加载错误 + + + + Accept connections from outside (default: 1) + 接受来自外部的连接 (缺省: 1) + - Error loading wallet.dat: Wallet corrupted - wallet.dat钱包文件加载错误:钱包损坏 + Set language, for example "de_DE" (default: system locale) + 设置语言, 例如 "de_DE" (缺省: 系统语言) - + Error loading wallet.dat: Wallet requires newer version of Bitcoin wallet.dat钱包文件加载错误:请升级到最新Bitcoin客户端 - - Wallet needed to be rewritten: restart Bitcoin to complete - 钱包文件需要重写:请退出并重新启动Bitcoin客户端 + + Error + 错误 + + + + Error: Transaction creation failed + 错误:交易创建失败。 - Error loading wallet.dat - wallet.dat钱包文件加载错误 + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Number of seconds to keep misbehaving peers from reconnecting (缺省: 86400) - - Loading block index... - 加载区块索引... + + Error: Wallet locked, unable to create transaction + 错误: 钱包被锁,无法创建新的交易 - - Loading wallet... - 正在加载钱包... + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maximum per-connection receive buffer, <n>*1000 bytes (缺省: 10000) - - Rescanning... - 正在重新扫描... + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maximum per-connection send buffer, <n>*1000 bytes (缺省: 10000) - - Done loading - 加载完成 + + Use Universal Plug and Play to map the listening port (default: 1) + 使用UPnp映射监听端口(缺省: 1) - - Invalid -proxy address - 代理地址不合法 + + Use Universal Plug and Play to map the listening port (default: 0) + 使用UPnp映射监听端口(缺省: 0) - - Invalid amount for -paytxfee=<amount> - 不合适的交易费 -paytxfee=<amount> + + 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. - 警告: -paytxfee 交易费设置过高. 每进行一笔交易您都将支付该数量的交易费. + + Insufficient funds + 金额不足 - - Error: CreateThread(StartNode) failed - 错误:线程创建(StartNode)失败 + + Prepend debug output with timestamp + 为调试输出信息添加时间戳 - - Warning: Disk space is low - 警告:磁盘空间不足 + + Invalid amount + 金额不对 - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - 无法绑定端口 %d 到这台计算机。比特币进程可能已在运行。 + + Send commands to node running on <ip> (default: 127.0.0.1) + 向IP地址为 <ip> 的节点发送指令 (缺省: 127.0.0.1) + - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - 警告:请确定您当前计算机的日期和时间是正确的。比特币将无法在错误的时间下正常工作。 + + Set key pool size to <n> (default: 100) + 设置密钥池大小为 <n> (缺省: 100) + - - beta - 测试 + + Rescan the block chain for missing wallet transactions + 重新扫描数据链以查找遗漏的交易 + + + + + How many blocks to check at startup (default: 2500, 0 = all) + 启动时需检查的区块数量 (缺省: 2500, 设置0为检查所有区块) + + + + Server certificate file (default: server.cert) + 服务器证书 (默认为 server.cert) + + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + 可接受的加密器 (默认为 TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + + Sending... + 发送中 + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + 错误: 该交易需支付至少 %s 的交易费,原因可能是该交易数量太小、构成太复杂或者使用了新近接收到的比特币 + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + 错误:交易被拒绝。这种情况通常发生在您钱包中的一些货币已经被消费之后,比如您使用了一个wallet.dat的副本,而货币在那个副本中已经被消费,但在当前钱包中未被标记为已消费。 + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + %s, 您必须在配置文件中加入选项 rpcpassword : + %s +建议您使用下面的随机密码: +rpcuser=bitcoinrpc +rpcpassword=%s +(您无需记忆该密码) +如果配置文件不存在,请新建,并将文件权限设置为仅允许文件所有者读取. - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index 83c3028eb9..4c734b11f7 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -1,4 +1,6 @@ - + + + UTF-8 AboutDialog @@ -13,7 +15,7 @@ <b>位元幣</b>版本 - + Copyright © 2009-2012 Bitcoin Developers This is experimental software. @@ -93,106 +95,80 @@ This product includes software developed by the OpenSSL Project for use in the O 刪除 - - Copy address - 複製位址 + + Could not write to file %1. + 無法寫入檔案 %1. - + Copy label 複製標記 - + + Copy address + 複製位址 + + + Edit 編輯 - + Delete 刪除 - + + Error exporting + 資料匯出有誤 + + + Export Address Book Data 匯出位址簿資料 - + Comma separated file (*.csv) 逗號區隔資料檔 (*.csv) - - - Error exporting - 資料匯出有誤 - - - - Could not write to file %1. - 無法寫入檔案 %1. - AddressTableModel - - Label - 標記 - - - + Address 位址 - + (no label) (沒有標記) + + + Label + 標記 + AskPassphraseDialog - - Dialog - 對話視窗 - - - - - TextLabel - 文字標籤 - - - - Enter passphrase - 輸入密碼 - - - + New passphrase 新的密碼 - + Repeat new passphrase 重複新密碼 - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - 輸入錢包的新密碼.<br/>請用<b>10個以上的字元</b>, 或是<b>8個以上的字詞</b>. - - - - Encrypt wallet - 錢包加密 - - - - This operation needs your wallet passphrase to unlock the wallet. - 這個動作需要用你的錢包密碼來解鎖 + + TextLabel + 文字標籤 @@ -200,24 +176,9 @@ This product includes software developed by the OpenSSL Project for use in the O 錢包解鎖 - - This operation needs your wallet passphrase to decrypt the wallet. - 這個動作需要用你的錢包密碼來解密 - - - - Decrypt wallet - 錢包解密 - - - - Change passphrase - 變更密碼 - - - - Enter the old and new passphrase to the wallet. - 輸入錢包的新舊密碼. + + Enter passphrase + 輸入密碼 @@ -225,28 +186,19 @@ 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 BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - 警告: 如果將錢包加密後忘記密碼, 你會<b>失去其中所有的位元幣</b>! -你確定要將錢包加密嗎? - - - - - Wallet encrypted - 錢包已加密 + + Enter the old and new passphrase to the wallet. + 輸入錢包的新舊密碼. - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 位元幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的位元幣. + + Dialog + 對話視窗 - - - Warning: The Caps Lock key is on. - 警告: 鍵盤輸入鎖定為大寫字母中. + + This operation needs your wallet passphrase to unlock the wallet. + 這個動作需要用你的錢包密碼來解鎖 @@ -267,6 +219,23 @@ Are you sure you wish to encrypt your wallet? The supplied passphrases do not match. 提供的密碼不符. + + + Change passphrase + 變更密碼 + + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + 警告: 如果將錢包加密後忘記密碼, 你會<b>失去其中所有的位元幣</b>! +你確定要將錢包加密嗎? + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 位元幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的位元幣. + Wallet unlock failed @@ -285,286 +254,302 @@ Are you sure you wish to encrypt your wallet? 錢包解密失敗 - - Wallet passphrase was succesfully changed. - 錢包密碼變更成功. + + + Warning: The Caps Lock key is on. + 警告: 鍵盤輸入鎖定為大寫字母中. - - - BitcoinGUI - - Bitcoin Wallet - 位元幣錢包 + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + 輸入錢包的新密碼.<br/>請用<b>10個以上的字元</b>, 或是<b>8個以上的單字</b>. - - - Synchronizing with network... - 網路同步中... + + Encrypt wallet + 錢包加密 - - Block chain synchronization in progress - 正在進行區塊鎖鏈的同步中 + + This operation needs your wallet passphrase to decrypt the wallet. + 這個動作需要用你的錢包密碼來解密 - - &Overview - 總覽 + + Decrypt wallet + 錢包解密 - - Show general overview of wallet - 顯示錢包一般總覽 + + + Wallet encrypted + 錢包已加密 - - &Transactions - 交易 + + Wallet passphrase was successfully changed. + 錢包密碼變更成功. + + + + BitcoinGUI + + + Synchronizing with network... + 網路同步中... - + Browse transaction history 瀏覽交易紀錄 - + &Address Book 位址簿 - - Edit the list of stored addresses and labels - 編輯儲存位址與標記的列表 + + E&xit + 結束 - + &Receive coins 收錢 - - Show the list of addresses for receiving payments - 顯示收款位址的列表 + + Show information about Qt + 顯示有關於 Qt 的資訊 - - &Send coins - 付錢 + + &Change Passphrase + 變更密碼 - - Send coins to a bitcoin address - 付錢至某個位元幣位址 + + Sending... + 付出中... - - Sign &message - 訊息簽署 + + &Overview + 總覽 - - Prove you control an address - 證明你控制一個位址 + + Show general overview of wallet + 顯示錢包一般總覽 - - E&xit - 結束 + + &Transactions + 交易 - - Quit application - 結束應用程式 + + Edit the list of stored addresses and labels + 編輯儲存位址與標記的列表 - - &About %1 - 關於%1 + + Show the list of addresses for receiving payments + 顯示收款位址的列表 - - Show information about Bitcoin - 顯示位元幣相關資訊 + + Send coins to a bitcoin address + 付錢至某個位元幣位址 - - About &Qt - 關於 &Qt + + Prove you control an address + 證明你控制一個位址 - - Show information about Qt - 顯示有關於 Qt 的資訊 + + &Options... + 選項... - &Options... - 選項... + Quit application + 結束應用程式 - - Modify configuration options for bitcoin - 修改位元幣的設定選項 + + Show information about Bitcoin + 顯示位元幣相關資訊 - - Open &Bitcoin - 開啟位元幣 + + About &Qt + 關於 &Qt - - Show the Bitcoin window - 顯示位元幣主視窗 + + &Settings + 設定 - + &Export... 匯出... - + Export the data in the current tab to a file 將目前分頁的資料匯出存成檔案 - - &Encrypt Wallet - 錢包加密 - - - + Encrypt or decrypt wallet 將錢包加解密 - - &Backup Wallet - 錢包備份 - - - + Backup wallet to another location 將錢包備份到其它地方 + + + Change the passphrase used for wallet encryption + 變更錢包加密用的密碼 + + + + Bitcoin Wallet + 位元幣錢包 + - &Change Passphrase - 變更密碼 + Show/Hide &Bitcoin + 顯示/隱藏位元幣 - - Change the passphrase used for wallet encryption - 變更錢包加密用的密碼 + + &Backup Wallet + 錢包備份 - + &File 檔案 - - &Settings - 設定 - - - - &Help - 求助 - - - + Tabs toolbar 分頁工具列 - + Actions toolbar 動作工具列 - - [testnet] - [testnet] - - - - bitcoin-qt - bitcoin-qt + + Bitcoin client + 位元幣客戶端軟體 - + %n active connection(s) to Bitcoin network - 與位元幣網路有 %n 個連線在使用中 + + 與位元幣網路有 %n 個連線在使用中 + - - Downloaded %1 of %2 blocks of transaction history. - 已下載了 %1/%2 個交易紀錄的區塊. + + &Send coins + 付錢 - + Downloaded %1 blocks of transaction history. 已下載了 %1 個交易紀錄的區塊. + + + Sign &message + 訊息簽署 + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + 已下載了全部 %2 個中的 %1 個交易紀錄區塊 (已完成 %3%). + - + %n second(s) ago - %n 秒鐘前 + + %n 秒鐘前 + - + %n minute(s) ago - %n 分鐘前 + + %n 分鐘前 + - + %n hour(s) ago - %n 小時前 + + %n 小時前 + - + %n day(s) ago - %n 天前 + + %n 天前 + - + Up to date 最新狀態 - + Catching up... 進度追趕中... - + Last received block was generated %1. 最近收到的區塊產生於 %1. - + + &About %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 的費用來傳送. 這筆費用會付給處理該筆交易的節點, 並幫助維持整個網路. 你願意支付這項費用嗎? - - Sending... - 付出中... + + Modify configuration options for bitcoin + 修改位元幣的設定選項 - + Sent transaction 付款交易 - + Incoming transaction 收款交易 - + Date: %1 Amount: %2 Type: %3 @@ -576,52 +561,94 @@ Address: %4 位址: %4 - + + &Encrypt Wallet + 錢包加密 + + + 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. 儲存錢包資料到新的地方時發生錯誤 + + + Show or hide the Bitcoin window + 顯示或隱藏位元幣的視窗 + + + + &Help + 求助 + + + + [testnet] + [testnet] + + + + bitcoin-qt + bitcoin-qt + + + + ~%n block(s) remaining + + 剩下 ~%n 個區塊 + + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + 發生了致命的錯誤. 位元幣程式無法再繼續安全執行, 只好結束. + DisplayOptionsPage - + &Unit to show amounts in: 金額顯示單位: - + Choose the default subdivision unit to show in the interface, and when sending coins 選擇操作界面與付錢時預設顯示的細分單位 - - Display addresses in transaction list - 在交易列表中顯示位址 + + &Display addresses in transaction list + 在交易列表顯示位址 + + + + Whether to show Bitcoin addresses in the transaction list + 是否要在交易列表中顯示位元幣位址 @@ -676,11 +703,6 @@ Address: %4 The entered address "%1" is already in the address book. 輸入的位址"%1"已存在於位址簿中. - - - The entered address "%1" is not a valid bitcoin address. - 輸入的位址"%1"並非有效的位元幣位址 - Could not unlock wallet. @@ -691,91 +713,101 @@ Address: %4 New key generation failed. 新密鑰產生失敗. + + + The entered address "%1" is not a valid bitcoin address. + 輸入的位址"%1"並非有效的位元幣位址 + MainOptionsPage - + &Start Bitcoin on window system startup 視窗系統啓動時同時開啓位元幣 - + Automatically start Bitcoin after the computer is turned on 電腦開啟後自動啟動位元幣 - + &Minimize to the tray instead of the taskbar 最小化至通知區域而非工作列 - + Show only a tray icon after minimizing the window - 視窗最小化時只顯示圖示於通知區域 + 最小化視窗後只在通知區域顯示圖示 - + Map port using &UPnP 用 &UPnP 設定通訊埠對應 - + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. 自動在路由器上開啟位元幣的客戶端通訊埠. 只有在你的路由器支援 UPnP 且開啟時才有作用. - + M&inimize on close 關閉時最小化 - + 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. 當視窗關閉時將其最小化, 而非結束應用程式. 當勾選這個選項時, 應用程式只能用選單中的結束來停止執行. - + &Connect through SOCKS4 proxy: 透過 SOCKS4 代理伺服器連線: - - Connect to the Bitcon network through a SOCKS4 proxy (e.g. when connecting through Tor) + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) 透過 SOCKS4 代理伺服器連線至位元幣網路 (比如說透過 Tor) - + Proxy &IP: 伺服器位址: - + IP address of the proxy (e.g. 127.0.0.1) - 代理伺服器的 IP 位址 (比如說 127.0.0.1) + 代理伺服器的網際網路位址 (比如說 127.0.0.1) - + &Port: 通訊埠: - + Port of the proxy (e.g. 1234) 代理伺服器的通訊埠 (比如說 1234) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - 非必要的交易手續費, 以 kB 為計費單位, 且有助於縮短你的交易處理時間. 大部份交易的資料大小是 1 kB. 建議設定為 0.01 元. - - - + Pay transaction &fee 付交易手續費 - + + Detach databases at shutdown + 關閉時卸載資料庫 + + + + 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. + 關掉程式時卸載區塊與位址的資料庫. 表示說資料庫會被搬到別的資料目錄去, 且會造成程式關掉的比較慢. 錢包則總是會被卸載. + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. 非必要的交易手續費, 以 kB 為計費單位, 且有助於縮短你的交易處理時間. 大部份交易的資料大小是 1 kB. 建議設定為 0.01 元. @@ -792,10 +824,25 @@ Address: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. 你可以用你的位址來簽署訊息, 以證明你對它的所有權. 但是請小心, 不要簽署語意含糊不清的內容, 因為釣魚式詐騙可能會用騙你簽署的手法來冒充是你. 只有在語句中的細節你都同意時才簽署. + + + %1 is not a valid address. + %1 不是個有效的位址. + + + + Private key for %1 is not available. + 沒有 %1 的密鑰. + + + + &Copy to Clipboard + 複製到剪貼簿 + - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - 付款的目標位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to sign the message with (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + 用來簽署訊息的位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -839,13 +886,8 @@ Address: %4 - Copy the currently selected address to the system clipboard - 複製目前選取的位址到系統剪貼簿 - - - - &Copy to Clipboard - 複製到剪貼簿 + Copy the current signature to the system clipboard + 複製目前的簽章到系統剪貼簿 @@ -854,16 +896,6 @@ Address: %4 Error signing 簽署發生錯誤 - - - %1 is not a valid address. - %1 不是個有效的位址. - - - - Private key for %1 is not available. - 沒有 %1 的密鑰. - Sign failed @@ -873,42 +905,32 @@ Address: %4 OptionsDialog - + Main 主要 - - Display - 顯示 - - - + Options 選項 + + + Display + 顯示 + OverviewPage - - - Form - 表單 - Balance: 餘額: - - 123.456 BTC - 123.456 BTC - - - - Number of transactions: - 交易次數: + + Form + 表單 @@ -916,51 +938,73 @@ Address: %4 0 - - Unconfirmed: - 未確認額: - - - - 0 BTC - 0 BTC - - - - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Wallet</span></p></body></html> - <!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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">錢包</span></p></body></html> - - - - <b>Recent transactions</b> - <b>最近交易</b> + + Wallet + 錢包 Your current balance 目前餘額 + + + Unconfirmed: + 未確認額: + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance 尚未確認之交易的總額, 不包含在目前餘額中 + + + Number of transactions: + 交易次數: + Total number of transactions in wallet 錢包中紀錄的總交易次數 + + + <b>Recent transactions</b> + <b>最近交易</b> + QRCodeDialog + + + Request Payment + 付款單 + + + + Label: + 標記: + + + + &Save As... + 儲存為... + + + + PNG Images (*.png) + PNG 圖檔 (*.png) + + + + Error encoding URI into QR Code. + 將 URI 編碼成 QR 條碼時發生錯誤 + + + + Save Image... + 儲存圖片... + Dialog @@ -972,57 +1016,37 @@ p, li { white-space: pre-wrap; } QR 條碼 - - Request Payment - 付款單 - - - + Amount: 金額: - - BTC - BTC - - - - Label: - 標記: - - - + Message: 訊息: - - &Save As... - 儲存為... - - - - Save Image... - 儲存圖片... + + BTC + BTC - - PNG Images (*.png) - PNG 圖檔 (*.png) + + Resulting URI too long, try to reduce the text for label / message. + 造出的網址太長了,請把標籤或訊息的文字縮短再試看看. SendCoinsDialog - - - - - - - + + + + + + + Send Coins 付錢 @@ -1031,31 +1055,16 @@ p, li { white-space: pre-wrap; } Send to multiple recipients at once 一次付給多個人 - - - &Add recipient... - 加收款人... - Remove all transaction fields 移除所有交易欄位 - - - Clear all - 全部清掉 - Balance: 餘額: - - - 123.456 BTC - 123.456 BTC - Confirm the send action @@ -1067,77 +1076,92 @@ p, li { white-space: pre-wrap; } 付出 - + <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 recepient address is not valid, please recheck. - 無效的收款位址, 請再檢查看看. + + The amount to pay must be larger than 0. + 付款金額必須大於 0. - - The amount to pay must be larger than 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, 然後用複製的錢包花掉了錢, 你現在所用的原來的錢包中卻沒有該筆交易紀錄. - - Amount exceeds your balance - 金額超過了你的餘額 + + &Add recipient... + 加收款人... - - Total exceeds your balance when the %1 transaction fee is included - 加上交易手續費 %1 後的總金額超過了你的餘額 + + Clear all + 全部清掉 - - Duplicate address found, can only send to each address once in one send operation - 發現了重複的位址; 在一次付款作業中, 只能付給每個位址一次 + + 123.456 BTC + 123.456 BTC - - Error: Transaction creation failed - 錯誤: 交易產生失敗 + + Confirm send coins + 確認付出金額 - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - 錯誤: 交易被拒絕. 有時候會發生這種錯誤, 是因為你錢包中的一些錢已經被花掉了. 比如說你複製了錢包檔 wallet.dat, 然後用複製的錢包花掉了錢, 你現在所用的原來的錢包中卻沒有該筆交易紀錄. + + Are you sure you want to send %1? + 確定要付出 %1 嗎? + + + + The recipient address is not valid, please recheck. + 無效的收款位址, 請再檢查看看. + + + + 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. + 錯誤: 交易產生失敗. SendCoinsEntry - - - Form - 表單 - A&mount: 金額: - - Pay &To: - 付給: + + Choose address from address book + 從位址簿中選一個位址 + + + + Form + 表單 @@ -1155,11 +1179,6 @@ p, li { white-space: pre-wrap; } The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) 付款的目標位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - Choose address from address book - 從位址簿中選一個位址 - Alt+A @@ -1180,6 +1199,11 @@ p, li { white-space: pre-wrap; } Remove this recipient 去掉這個收款人 + + + Pay &To: + 付給: + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -1189,140 +1213,140 @@ p, li { white-space: pre-wrap; } TransactionDesc - + + %1 confirmations + 經確認 %1 次 + + + Open for %1 blocks 在 %1 個區塊內未定 - - Open until %1 - 在 %1 前未定 + + , broadcast through %1 node + , 已公告至 %1 個節點 - - %1/offline? - %1/離線中? + + , broadcast through %1 nodes + , 已公告至 %1 個節點 - - %1/unconfirmed - %1/未確認 + + Open until %1 + 在 %1 前未定 - - %1 confirmations - 經確認 %1 次 + + %1/offline? + %1/離線中? - + <b>Status:</b> <b>狀態:</b> - + , has not been successfully broadcast yet , 尚未成功公告出去 - - , broadcast through %1 node - , 已公告至 %1 個節點 - - - - , broadcast through %1 nodes - , 已公告至 %1 個節點 - - - + <b>Date:</b> <b>日期:</b> - + <b>Source:</b> Generated<br> <b>來源:</b> 生產所得<br> - - + + <b>From:</b> <b>來自:</b> - + unknown 未知 - - - + + + <b>To:</b> <b>目的:</b> - + (yours, label: (你的, 標記為: - + (yours) (你的) - - - - + + + + <b>Credit:</b> <b>入帳:</b> - + (%1 matures in %2 more blocks) (%1 將在 %2 個區塊產出後熟成) - + (not accepted) (不被接受) - - - + + + <b>Debit:</b> <b>出帳:</b> - + <b>Transaction fee:</b> <b>交易手續費:</b> - + + %1/unconfirmed + %1/未確認 + + + <b>Net amount:</b> <b>淨額:</b> - + Message: 訊息: - + Comment: 附註: - + Transaction ID: 交易識別碼: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. 生產出來的錢要再等 120 個區塊產出之後, 才能夠花用. 當你產出區塊時, 它會被公布到網路上, 以被串連至區塊鎖鏈. 如果串連失敗了, 它的狀態就會變成"不被接受", 且不能被花用. 當你產出區塊的幾秒鐘內, 其他節點也產出了區塊的話, 有時候就會發生這種情形. @@ -1343,123 +1367,132 @@ p, li { white-space: pre-wrap; } TransactionTableModel - + Date 日期 - + Type 種類 - + Address 位址 - + Amount 金額 - + Open for %n block(s) - 在 %n 個區塊內未定 + + 在 %n 個區塊內未定 + - + Open until %1 在 %1 前未定 - + Offline (%1 confirmations) 離線中 (經確認 %1 次) - + Unconfirmed (%1 of %2 confirmations) 未確認 (經確認 %1 次, 應確認 %2 次) - + Confirmed (%1 confirmations) 已確認 (經確認 %1 次) - - - Mined balance will be available in %n more blocks - 生產金額將在 %n 個區塊產出後可用 - - + 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. 減去或加入至餘額的金額 + + + Mined balance will be available in %n more blocks + + 生產金額將在 %n 個區塊產出後可用 + + TransactionView + + + Type + 種類 + @@ -1476,61 +1509,6 @@ p, li { white-space: pre-wrap; } 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 @@ -1541,6 +1519,11 @@ p, li { white-space: pre-wrap; } Copy label 複製標記 + + + This month + 這個月 + Copy amount @@ -1552,455 +1535,644 @@ p, li { white-space: pre-wrap; } 編輯標記 - - Show 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... - 付出中... + + Last month + 上個月 - - - bitcoin-core - - Bitcoin version - 位元幣版本 + + This year + 今年 - - Usage: - 用法: + + Range... + 指定範圍... - - Send command to -server or bitcoind - 送指令至 -server 或 bitcoind - + + Received with + 收受於 - - List commands - 列出指令 - + + Sent to + 付出至 - - Get help for a command - 取得指令說明 - - - - - Options: - 選項: - + + To yourself + 給自己 - - Specify configuration file (default: bitcoin.conf) - 指定設定檔 (預設: bitcoin.conf) - + + Mined + 開採所得 - - Specify pid file (default: bitcoind.pid) - 指定行程識別碼檔案 (預設: bitcoind.pid) - + + Other + 其他 - - Generate coins - 生產位元幣 - + + Enter address or label to search + 輸入位址或標記來搜尋 - - Don't generate coins - 不生產位元幣 - + + Min amount + 最小金額 - - Start minimized - 啓動時最小化 - + + Show details... + 顯示明細... + + + WalletModel - - Specify data directory - 指定資料目錄 - + + Sending... + 付出中... + + + bitcoin-core - - Specify connection timeout (in milliseconds) - 指定連線逾時時間 (毫秒) - + + Bitcoin version + 位元幣版本 - - Connect through socks4 proxy - 透過 socks4 代理伺服器連線 - + + Listen for connections on <port> (default: 8333 or testnet: 18333) + 在通訊埠 <port> 聽候連線 (預設: 8333, 或若為測試網路: 18333) - - Allow DNS lookups for addnode and connect - 允許 addnode 和 connect 時做域名解析 - + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + 無法鎖定資料目錄 %s. 也許位元幣已經在執行了. - - Listen for connections on <port> (default: 8333 or testnet: 18333) - 在通訊埠 <port> 聽候連線 (預設: 8333, 或若為測試網路: 18333) + + Loading addresses... + 載入位址中... - - Maintain at most <n> connections to peers (default: 125) - 維持與節點連線數的上限為 <n> 個 (預設: 125) + + Loading block index... + 載入區塊索引中... - - Add a node to connect to - 新增連線節點 - + + Loading wallet... + 載入錢包中... - - Connect only to the specified node - 只連線至指定節點 + + Specify data directory + 指定資料目錄 - - Don't accept connections from outside - 不接受外來連線 + + Specify pid file (default: bitcoind.pid) + 指定行程識別碼檔案 (預設: bitcoind.pid) - - Don't bootstrap list of peers using DNS - 初始化節點列表時不使用 DNS + + Done loading + 載入完成 - + Threshold for disconnecting misbehaving peers (default: 100) 與亂搞的節點斷線的臨界值 (預設: 100) - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - 避免與亂搞的節點連線的秒數 (預設: 86400) + + Usage: + 用法: - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - 每個連線的接收緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) + + Cannot initialize keypool + 無法將密鑰池初始化 - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - 每個連線的傳送緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) + + Cannot write default address + 無法寫入預設位址 - - Don't attempt to use UPnP to map the listening port - 不嘗試用 UPnP 來設定服務連接埠的對應 + + Send command to -server or bitcoind + 送指令至 -server 或 bitcoind - - Attempt to use UPnP to map the listening port - 嘗試用 UPnP 來設定服務連接埠的對應 + + Options: + 選項: - - Fee per kB to add to transactions you send - 交易付款時每 kB 的交易手續費 + + Specify configuration file (default: bitcoin.conf) + 指定設定檔 (預設: bitcoin.conf) + - - Accept command line and JSON-RPC commands - 接受命令列與 JSON-RPC 指令 + + Generate coins + 生產位元幣 - - Run in the background as a daemon and accept commands - 以背景程式執行並接受指令 + + Add a node to connect to and attempt to keep the connection open + 加入一個要連線的節線, 並試著保持對它的連線暢通 - - Use the test network - 使用測試網路 - + + Find peers using internet relay chat (default: 0) + 是否使用網際網路中繼聊天(IRC)來找節點 (預設: 0) - - Output extra debugging information - 輸出額外的除錯資訊 + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + 載入檔案 wallet.dat 失敗: 此錢包需要新版的 Bitcoin - - Prepend debug output with timestamp - 在除錯輸出內容前附加時間 + + Error loading wallet.dat + 載入檔案 wallet.dat 失敗 - + + Cannot downgrade wallet + 無法將錢包格式降級 + + + + Set database cache size in megabytes (default: 25) + 設定資料庫快取大小為多少百萬位元組(MB, 預設: 25) + + + Send trace/debug info to console instead of debug.log file 輸出追蹤或除錯資訊至終端機, 而非 debug.log 檔案 - - Send trace/debug info to debugger - 輸出追蹤或除錯資訊給除錯器 + + Fee per KB to add to transactions you send + 交易付款時每 KB 的交易手續費 + + + + Set database disk log size in megabytes (default: 100) + 設定資料庫的磁碟紀錄大小為多少百萬位元組(MB, 預設: 100) - + Username for JSON-RPC connections JSON-RPC 連線使用者名稱 - + Password for JSON-RPC connections JSON-RPC 連線密碼 - + Listen for JSON-RPC connections on <port> (default: 8332) 在通訊埠 <port> 聽候 JSON-RPC 連線 (預設: 8332) - + 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) - - Set key pool size to <n> (default: 100) - 設定密鑰池大小為 <n> (預設: 100) - - - - + Rescan the block chain for missing wallet transactions 重新掃描區塊鎖鏈, 以尋找錢包所遺漏的交易. - - -SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) - - - - + 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 此協助訊息 + + + + + Usage + 用法 + + + + Error loading blkindex.dat + 載入 blkindex.dat 失敗 + + + + Invalid -proxy address + 無效的 -proxy 位址 + + + + Invalid amount for -paytxfee=<amount> + -paytxfee=<金額> 中的金額無效 + + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + 警告: -paytxfee 設定得很高. 這是當你交易付款時所要支付的手續費. + + + + Error: CreateThread(StartNode) failed + 錯誤: CreateThread(StartNode) 失敗 + + + + Start minimized + 啓動時最小化 - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - 無法鎖定資料目錄 %s. 也許位元幣已經在執行了. + Connect through socks4 proxy + 透過 socks4 代理伺服器連線 + - - Loading addresses... - 載入位址中... + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + 每個連線的接收緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) - - Error loading addr.dat - 載入 addr.dat 失敗 + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + 每個連線的傳送緩衝區大小上限為 <n>*1000 位元組 (預設: 10000) - - Error loading blkindex.dat - 載入 blkindex.dat 失敗 + + +SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) + - - Error loading wallet.dat: Wallet corrupted - 載入 wallet.dat 失敗: 錢包壞掉了 + + Output extra debugging information + 輸出額外的除錯資訊 - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - 載入 wallet.dat 失敗: 此錢包需要新版的 Bitcoin + + Rescanning... + 重新掃描中... - - Wallet needed to be rewritten: restart Bitcoin to complete - 錢包需要重寫: 請重啟位元幣來完成 + + Get help for a command + 取得指令說明 + - - Error loading wallet.dat - 載入 wallet.dat 失敗 + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + 無法與這台電腦上的通訊埠 %d 連結. 也許 Bitcoin 已經在執行了. + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + 警告: 請檢查電腦時間日期是否正確. 位元幣無法在時鐘不準的情況下正常運作. + + + + List commands + 列出指令 + + + + + 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=bitcoinrpc +rpcpassword=%s +(you do not need to remember this password) +If the file does not exist, create it with owner-readable-only file permissions. + + %s, 你必須在下列設定檔中設定 RPC 密碼(rpcpassword): +%s +建議你使用下列的隨機產生密碼: +rpcuser=bitcoinrpc +rpcpassword=%s +(你不用記住這個密碼) +如果這個檔案還不存在, 請在新增時, 設定檔案權限為"只有主人才能讀取". + + + + + Don't generate coins + 不生產位元幣 + + + + + Show splash screen on startup (default: 1) + 顯示啓動畫面 (預設: 1) + + + + Specify connection timeout (in milliseconds) + 指定連線逾時時間 (毫秒) + + + + + Allow DNS lookups for addnode and connect + 允許 addnode 和 connect 時做域名解析 + + + + + Detach block and address databases. Increases shutdown time (default: 0) + 卸載區塊與位址的資料庫. 會延長關閉時間 (預設: 0) + + + + Maintain at most <n> connections to peers (default: 125) + 維持與節點連線數的上限為 <n> 個 (預設: 125) + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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, 然後用複製的錢包花掉了錢, 你現在所用的原來的錢包中卻沒有該筆交易紀錄. - Loading block index... - 載入區塊索引中... + Connect only to the specified node + 只連線至指定節點 + - Loading wallet... - 載入錢包中... + Accept connections from outside (default: 1) + 是否接受外來連線 (預設: 1) - - Rescanning... - 重新掃描中... + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + 錯誤: 這筆交易需要至少 %s 的手續費, 因為它的金額太大, 或複雜度太高, 或是使用了最近才剛收到的款項 - - Done loading - 載入完成 + + Set language, for example "de_DE" (default: system locale) + 設定語言, 比如說 "de_DE" (預設: 系統語系) - - Invalid -proxy address - 無效的 -proxy 位址 + + Find peers using DNS lookup (default: 1) + 是否允許在找節點時使用域名查詢 (預設: 1) - - Invalid amount for -paytxfee=<amount> - -paytxfee=<金額> 中的金額無效 + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + 避免與亂搞的節點連線的秒數 (預設: 86400) - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - 警告: -paytxfee 設定得很高. 這是當你交易付款時所要支付的手續費. + Use Universal Plug and Play to map the listening port (default: 1) + 是否使用通用即插即用(UPnP)協定來設定聽候連線的通訊埠 (預設: 1) - - Error: CreateThread(StartNode) failed - 錯誤: CreateThread(StartNode) 失敗 + + Use Universal Plug and Play to map the listening port (default: 0) + 是否使用通用即插即用(UPnP)協定來設定聽候連線的通訊埠 (預設: 0) - - Warning: Disk space is low - 警告: 磁碟空間很少 + + Accept command line and JSON-RPC commands + 接受命令列與 JSON-RPC 指令 + - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - 無法與這台電腦上的通訊埠 %d 連結. 也許 Bitcoin 已經在執行了. + + Run in the background as a daemon and accept commands + 以背景程式執行並接受指令 - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - 警告: 請檢查電腦時間日期是否正確. 位元幣無法在時鐘不準的情況下正常運作. + + Use the test network + 使用測試網路 + + + + + Prepend debug output with timestamp + 在除錯輸出內容前附加時間 - beta - 公測版 + Send trace/debug info to debugger + 輸出追蹤或除錯資訊給除錯器 + + + + 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 +如果這個檔案還不存在, 請在新增時, 設定檔案權限為"只有主人才能讀取". + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + 當最新區塊改變時所要執行的指令 (指令中的 %s 會被取代為區塊的雜湊值) + + + + Upgrade wallet to latest format + 將錢包升級成最新的格式 + + + + Set key pool size to <n> (default: 100) + 設定密鑰池大小為 <n> (預設: 100) + + + + + 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) + + + + An error occurred while setting up the RPC port %i for listening: %s + 設定聽候 RPC 連線的通訊埠 %i 時發生錯誤: %s + + + + Bitcoin + 位元幣 + + + + Error loading addr.dat + 載入 addr.dat 失敗 + + + + Error loading wallet.dat: Wallet corrupted + 載入檔案 wallet.dat 失敗: 錢包壞掉了 + + + + Wallet needed to be rewritten: restart Bitcoin to complete + 錢包需要重寫: 請重啟位元幣來完成 + + + + Error + 錯誤 + + + + Error: Transaction creation failed + 錯誤: 交易產生失敗 + + + + Error: Wallet locked, unable to create transaction + 錯誤: 錢包被上鎖了, 無法產生新的交易 + + + + Insufficient funds + 累積金額不足 + + + + Invalid amount + 無效的金額 + + + + Sending... + 付出中... + + + + To use the %s option + 為了要使用 %s 選項 - \ No newline at end of file + -- cgit v1.2.3 From 9631ac12148541ce7b57e5a7d7ffa72999b18c2d Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Wed, 29 Aug 2012 08:02:55 +0200 Subject: Remove json/*.cpp from Qt build system They are unneeded as jsonspirit is always used as template library, the other makefiles don't include them either. --- bitcoin-qt.pro | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index ec11b974ab..ae895ea9f0 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -69,7 +69,7 @@ contains(BITCOIN_NEED_QT_PLUGINS, 1) { # for extra security against potential buffer overflows QMAKE_CXXFLAGS += -fstack-protector QMAKE_LFLAGS += -fstack-protector - # do not enable this on windows, as it will result in a non-working executable! + # do not enable this on windows cross compile with mingw 4.2.x, as it will result in a non-working executable! } # disable quite some warnings because bitcoin core "sins" a lot @@ -155,9 +155,6 @@ SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \ src/irc.cpp \ src/checkpoints.cpp \ src/db.cpp \ - src/json/json_spirit_writer.cpp \ - src/json/json_spirit_value.cpp \ - src/json/json_spirit_reader.cpp \ src/qt/clientmodel.cpp \ src/qt/guiutil.cpp \ src/qt/transactionrecord.cpp \ -- cgit v1.2.3 From 17c94ea886e8c25b398a0effbb84b5f3a4fdd08a Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Thu, 30 Aug 2012 19:11:41 +0200 Subject: add missing netbase.h to Qt project-file --- bitcoin-qt.pro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 7014dcdd8c..c16818e53f 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -155,7 +155,8 @@ HEADERS += src/qt/bitcoingui.h \ src/qt/askpassphrasedialog.h \ src/protocol.h \ src/qt/notificator.h \ - src/qt/qtipcserver.h + src/qt/qtipcserver.h \ + src/netbase.h SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \ src/qt/transactiontablemodel.cpp \ -- cgit v1.2.3 From c1124277c5711ded556ea98b0eed1fb7b9081c8d Mon Sep 17 00:00:00 2001 From: xanatos Date: Wed, 5 Sep 2012 11:32:13 +0300 Subject: Correct LoadWallet() return value (false -> DB_LOAD_OK) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Equivalent code. (false == 0 == DB_LOAD_OK). Fixes #1706. --- src/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet.cpp b/src/wallet.cpp index 38d2b64a17..b482aeae24 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1129,7 +1129,7 @@ string CWallet::SendMoneyToBitcoinAddress(const CBitcoinAddress& address, int64 int CWallet::LoadWallet(bool& fFirstRunRet) { if (!fFileBacked) - return false; + return DB_LOAD_OK; fFirstRunRet = false; int nLoadWalletRet = CWalletDB(strWalletFile,"cr+").LoadWallet(this); if (nLoadWalletRet == DB_NEED_REWRITE) -- cgit v1.2.3 From dd2c101336ba4fdc58d27a07bfa1dcebfac8c6fe Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 5 Sep 2012 12:09:37 -0400 Subject: Minor documentation update --- doc/coding.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/coding.txt b/doc/coding.txt index cc41850a5c..b33ddd979a 100644 --- a/doc/coding.txt +++ b/doc/coding.txt @@ -44,7 +44,7 @@ bn CBigNum Locking/mutex usage notes The code is multi-threaded, and uses mutexes and the -CRITICAL_BLOCK/TRY_CRITICAL_BLOCK macros to protect data structures. +LOCK/TRY_LOCK macros to protect data structures. Deadlocks due to inconsistent lock ordering (thread 1 locks cs_main and then cs_wallet, while thread 2 locks them in the opposite order: -- cgit v1.2.3 From fc1cd74b86f45b292b129b9b689d2d778287c855 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 6 Sep 2012 22:49:23 +0000 Subject: Update supported translations --- src/qt/locale/bitcoin_da.ts | 880 +++++++++++++++++----------------- src/qt/locale/bitcoin_de.ts | 746 ++++++++++++++--------------- src/qt/locale/bitcoin_es.ts | 950 ++++++++++++++++++------------------- src/qt/locale/bitcoin_es_CL.ts | 802 +++++++++++++++---------------- src/qt/locale/bitcoin_hu.ts | 943 ++++++++++++++++++------------------- src/qt/locale/bitcoin_it.ts | 866 +++++++++++++++++----------------- src/qt/locale/bitcoin_nb.ts | 802 +++++++++++++++---------------- src/qt/locale/bitcoin_nl.ts | 772 +++++++++++++++--------------- src/qt/locale/bitcoin_pt_BR.ts | 1014 ++++++++++++++++++++-------------------- src/qt/locale/bitcoin_ru.ts | 820 ++++++++++++++++---------------- src/qt/locale/bitcoin_uk.ts | 812 ++++++++++++++++---------------- src/qt/locale/bitcoin_zh_CN.ts | 998 +++++++++++++++++++-------------------- src/qt/locale/bitcoin_zh_TW.ts | 734 ++++++++++++++--------------- 13 files changed, 5570 insertions(+), 5569 deletions(-) diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index 0da4b47251..6082143266 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -54,6 +54,21 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open Create a new address Opret en ny adresse + + + Comma separated file (*.csv) + Kommasepareret fil (*.csv) + + + + Error exporting + Fejl under eksport + + + + Could not write to file %1. + Kunne ikke skrive til filen %1. + &New Address... @@ -84,33 +99,18 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open Export Address Book Data Eksporter Adressekartoteketsdata - - - Comma separated file (*.csv) - Kommasepareret fil (*. csv) - - - - Error exporting - Fejl under eksport - - - - Could not write to file %1. - Kunne ikke skrive til filen %1. - AddressTableModel - Label - Etiket + Address + Adresse - Address - Adresse + Label + Etiket @@ -121,20 +121,25 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open AskPassphraseDialog - - Dialog - Dialog + + Enter passphrase + Indtast adgangskode + + + + Decrypt wallet + Dekryptér tegnebog + + + + Change passphrase + Skift adgangskode TextLabel TekstEtiket - - - Enter passphrase - Indtast adgangskode - New passphrase @@ -145,6 +150,17 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open Repeat new passphrase Gentag ny adgangskode + + + Dialog + Dialog + + + + + Wallet encrypted + Tegnebog krypteret + 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>. @@ -171,14 +187,45 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open Denne funktion har brug for din tegnebogs kodeord for at dekryptere tegnebogen. - - Decrypt wallet - Dekryptér tegnebog + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. - - Change passphrase - Skift adgangskode + + + + + Wallet encryption failed + Tegnebogskryptering mislykkedes + + + + Wallet unlock failed + Tegnebogsoplåsning mislykkedes + + + + Wallet passphrase was successfully changed. + Tegnebogskodeord blev ændret. + + + + + Warning: The Caps Lock key is on. + + + + + 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 passphrase entered for the wallet decryption was incorrect. + Det angivne kodeord for tegnebogsdekrypteringen er forkert. @@ -198,116 +245,109 @@ Are you sure you wish to encrypt your wallet? Er du sikker på at du ønsker at kryptere din tegnebog? - - - Wallet encrypted - Tegnebog krypteret + + + The supplied passphrases do not match. + De angivne kodeord stemmer ikke overens. - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin will close now to finish the encryption process. Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. + + Wallet decryption failed + Tegnebogsdekryptering mislykkedes + + + BitcoinGUI - - - - - Wallet encryption failed - Tegnebogskryptering mislykkedes + + Show general overview of wallet + Vis generel oversigt over tegnebog - - 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. + + Browse transaction history + Gennemse transaktionshistorik - - - The supplied passphrases do not match. - De angivne kodeord stemmer ikke overens. + + &Address Book + &Adressebog - - Wallet unlock failed - Tegnebogsoplåsning mislykkedes + + Edit the list of stored addresses and labels + Rediger listen over gemte adresser og etiketter - - - - The passphrase entered for the wallet decryption was incorrect. - Det angivne kodeord for tegnebogsdekrypteringen er forkert. + + Send coins to a bitcoin address + Send coins til en bitcoinadresse - - Wallet decryption failed - Tegnebogsdekryptering mislykkedes + + &Options... + &Indstillinger ... - - Wallet passphrase was successfully changed. - Tegnebogskodeord blev ændret. + + Modify configuration options for bitcoin + Rediger konfigurationsindstillinger af bitcoin - - - Warning: The Caps Lock key is on. - + + &Encrypt Wallet + &Kryptér tegnebog - - - BitcoinGUI - - Show the Bitcoin window - Vis Bitcoinvinduet + + Encrypt or decrypt wallet + Kryptér eller dekryptér tegnebog - - Bitcoin Wallet - Bitcoin Tegnebog + + &Change Passphrase + &Skift adgangskode - - - Synchronizing with network... - Synkroniserer med netværk ... + + &File + &Fil - - Block chain synchronization in progress - Blokkæde synkronisering i gang + + [testnet] + [testnet] - - &Overview - &Oversigt + + About &Qt + Om &Qt - - Show general overview of wallet - Vis generel oversigt over tegnebog + + Show information about Qt + Vis oplysninger om Qt - - &Transactions - &Transaktioner + + Show the Bitcoin window + Vis Bitcoinvinduet - - Browse transaction history - Gennemse transaktionshistorik + + + Synchronizing with network... + Synkroniserer med netværk ... - - &Address Book - &Adressebog + + &Transactions + &Transaktioner - - Edit the list of stored addresses and labels - Rediger listen over gemte adresser og etiketter + + &Overview + &Oversigt @@ -325,9 +365,9 @@ Er du sikker på at du ønsker at kryptere din tegnebog? &Send coins - - Send coins to a bitcoin address - Send coins til en bitcoinadresse + + &Export... + &Eksporter... @@ -339,10 +379,13 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Quit application Afslut program - - - &About %1 - &Om %1 + + + %n active connection(s) to Bitcoin network + + %n aktiv(e) forbindelse(r) til Bitcoinnetværket + %n aktiv(e) forbindelse(r) til Bitcoinnetværket + @@ -350,39 +393,47 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Vis oplysninger om Bitcoin - - &Options... - &Indstillinger ... + + Bitcoin Wallet + Bitcoin Tegnebog - - Modify configuration options for bitcoin - Rediger konfigurationsindstillinger af bitcoin + + Block chain synchronization in progress + Blokkæde synkronisering i gang - - Open &Bitcoin - Åbn &Bitcoin + + Downloaded %1 of %2 blocks of transaction history. + Downloadet %1 af %2 blokke af transaktionshistorie. - - &Export... - &Eksporter... + + Sent transaction + Afsendt transaktion - - &Encrypt Wallet - &Kryptér tegnebog + + Incoming transaction + Indgående transaktion - - Encrypt or decrypt wallet - Kryptér eller dekryptér tegnebog + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Dato: %1 +Beløb: %2 +Type: %3 +Adresse: %4 + - - &Change Passphrase - &Skift adgangskode + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Tegnebog er <b>krypteret</b> og i øjeblikket <b>ulåst</b> @@ -390,24 +441,9 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Skift kodeord anvendt til tegnebogskryptering - - About &Qt - Om &Qt - - - - Show information about Qt - Vis oplysninger om Qt - - - - Export the current view to a file - Eksportér den aktuelle visning til en fil - - - - &File - &Fil + + &About %1 + &Om %1 @@ -420,37 +456,19 @@ Er du sikker på at du ønsker at kryptere din tegnebog? &Hjælp - - Tabs toolbar - Faneværktøjslinje - - - - Actions toolbar - Handlingsværktøjslinje - - - - [testnet] - [testnet] - - - - bitcoin-qt - bitcoin-qt + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> - - - %n active connection(s) to Bitcoin network - - %n aktiv(e) forbindelse(r) til Bitcoinnetværket - %n aktiv(e) forbindelse(r) til Bitcoinnetværket - + + + Actions toolbar + Handlingsværktøjslinje - - Downloaded %1 of %2 blocks of transaction history. - Downloadet %1 af %2 blokke af transaktionshistorie. + + Open &Bitcoin + Åbn &Bitcoin @@ -510,42 +528,24 @@ Er du sikker på at du ønsker at kryptere din tegnebog? Denne transaktion er over størrelsesbegrænsningen. Du kan stadig sende den for et gebyr på %1 som går til de noder der behandler din transaktion, og som hjælper med at støtte netværket. Ønsker du at betale gebyret? - - Sending... - Sender... - - - - Sent transaction - Afsendt transaktion - - - - Incoming transaction - Indgående transaktion + + Tabs toolbar + Faneværktøjslinje - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Dato: %1 -Beløb: %2 -Type: %3 -Adresse: %4 - + + bitcoin-qt + bitcoin-qt - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Tegnebog er <b>krypteret</b> og i øjeblikket <b>ulåst</b> + + Sending... + Sender... - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> + + Export the current view to a file + Eksportér den aktuelle visning til en fil @@ -628,11 +628,6 @@ Adresse: %4 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 bitcoin address. - Den indtastede adresse "%1" er ikke en gyldig bitcoinadresse. - Could not unlock wallet. @@ -643,14 +638,14 @@ Adresse: %4 New key generation failed. Ny nøglegenerering mislykkedes. + + + The entered address "%1" is not a valid bitcoin address. + Den indtastede adresse "%1" er ikke en gyldig bitcoinadresse. + MainOptionsPage - - - IP address of the proxy (e.g. 127.0.0.1) - IP-adressen på proxyen (f.eks. 127.0.0.1) - Port of the proxy (e.g. 1234) @@ -681,16 +676,16 @@ Adresse: %4 Map port using &UPnP Konfigurer port vha. &UPnP - - - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Åbn Bitcoinklient-porten på routeren automatisk. Dette virker kun når din router understøtter UPnP og UPnP er aktiveret. - M&inimize on close M&inimer ved lukning + + + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + Åbn Bitcoinklient-porten på routeren automatisk. Dette virker kun når din router understøtter UPnP og UPnP er aktiveret. + 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. @@ -711,6 +706,11 @@ Adresse: %4 Proxy &IP: Proxy-&IP: + + + IP address of the proxy (e.g. 127.0.0.1) + IP-adressen på proxyen (f.eks. 127.0.0.1) + &Port: @@ -719,7 +719,7 @@ Adresse: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1 kB. Gebyr på 0.01 anbefales. + Valgfri transaktionsgebyr pr. kB, der hjælper dine transaktioner med at blive behandlet hurtigt. De fleste transaktioner er på 1 kB. Gebyr på 0.01 anbefales. @@ -729,6 +729,11 @@ Adresse: %4 OptionsDialog + + + Options + Indstillinger + Main @@ -739,11 +744,6 @@ Adresse: %4 Display Visning - - - Options - Indstillinger - OverviewPage @@ -768,14 +768,19 @@ Adresse: %4 0 - - <b>Recent transactions</b> - <b>Nyeste transaktioner</b> + + Unconfirmed: + Ubekræftede: Wallet - + tegnebog + + + + <b>Recent transactions</b> + <b>Nyeste transaktioner</b> @@ -792,11 +797,6 @@ Adresse: %4 Total number of transactions in wallet Samlede antal transaktioner i tegnebogen - - - Unconfirmed: - Ubekræftede: - SendCoinsDialog @@ -823,9 +823,9 @@ Adresse: %4 - - Balance: - Saldo: + + Clear all + Ryd alle @@ -842,16 +842,6 @@ Adresse: %4 &Send &Afsend - - - &Add recipient... - &Tilføj modtager... - - - - Clear all - Ryd alle - <b>%1</b> to %2 (%3) @@ -872,6 +862,16 @@ Adresse: %4 and og + + + &Add recipient... + &Tilføj modtager... + + + + Balance: + Saldo: + The recipient address is not valid, please recheck. @@ -910,16 +910,31 @@ Adresse: %4 SendCoinsEntry - - - A&mount: - B&eløb: - Pay &To: Betal &Til: + + + Paste address from clipboard + Indsæt adresse fra udklipsholderen + + + + Alt+P + Alt+P + + + + Form + Formular + + + + A&mount: + B&eløb: + @@ -941,11 +956,6 @@ Adresse: %4 Alt+A Alt+A - - - Alt+P - Alt+P - Remove this recipient @@ -956,16 +966,6 @@ Adresse: %4 The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Adresse som betalingen skal sendes til (f.eks. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - Form - Formular - - - - Paste address from clipboard - Indsæt adresse fra udklipsholderen - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -975,9 +975,9 @@ Adresse: %4 TransactionDesc - - %1 confirmations - %1 bekræftelser + + <b>Status:</b> + <b>Status:</b> @@ -985,20 +985,20 @@ Adresse: %4 , er ikke blevet transmitteret endnu - - unknown - ukendt + + , broadcast through %1 nodes + , transmitteret via %1 noder + + + + , broadcast through %1 node + , transmitteret via %1 node Open for %1 blocks Åben for %1 blokke - - - Open until %1 - Åben indtil %1 - %1/offline? @@ -1009,21 +1009,6 @@ Adresse: %4 %1/unconfirmed %1/ubekræftet - - - <b>Status:</b> - <b>Status:</b> - - - - , broadcast through %1 node - , transmitteret via %1 node - - - - , broadcast through %1 nodes - , transmitteret via %1 noder - <b>Date:</b> @@ -1038,7 +1023,12 @@ Adresse: %4 <b>From:</b> - <b>Fra:</b> + <b>Fra:</b> + + + + unknown + ukendt @@ -1065,6 +1055,16 @@ Adresse: %4 <b>Credit:</b> <b>Kredit:</b> + + + Open until %1 + Åben indtil %1 + + + + %1 confirmations + %1 bekræftelser + (%1 matures in %2 more blocks) @@ -1080,17 +1080,17 @@ Adresse: %4 <b>Debit:</b> - <b>Debet:</b> + <b>Debet:</b> <b>Transaction fee:</b> - <b>Transaktionsgebyr:</b> + <b>Transaktionsgebyr:</b> <b>Net amount:</b> - <b>Nettobeløb:</b> + <b>Nettobeløb:</b> @@ -1123,30 +1123,20 @@ Adresse: %4 TransactionTableModel - - - This block was not received by any other nodes and will probably not be accepted! - Denne blok blev ikke modtaget af nogen andre noder, og vil formentlig ikke blive accepteret! - - - - Date - Dato - - Type - Type + Amount + Beløb - - Address - Adresse + + Mined + Minerede - Amount - Beløb + Date + Dato @@ -1156,6 +1146,11 @@ Adresse: %4 Åben for %n blok(ke) + + + Address + Adresse + Open until %1 @@ -1171,6 +1166,16 @@ Adresse: %4 Unconfirmed (%1 of %2 confirmations) Ubekræftet (%1 af %2 bekræftelser) + + + Payment to yourself + Betaling til dig selv + + + + This block was not received by any other nodes and will probably not be accepted! + Denne blok blev ikke modtaget af nogen andre noder, og vil formentlig ikke blive accepteret! + Confirmed (%1 confirmations) @@ -1186,26 +1191,11 @@ Adresse: %4 Received with Modtaget med - - - Received from - Modtaget fra - Sent to Sendt til - - - Payment to yourself - Betaling til dig selv - - - - Mined - Minerede - (n/a) @@ -1236,6 +1226,16 @@ Adresse: %4 Amount removed from or added to balance. Beløb fjernet eller tilføjet balance. + + + Type + Type + + + + Received from + Modtaget fra + Mined balance will be available in %n more blocks @@ -1247,6 +1247,61 @@ Adresse: %4 TransactionView + + + Enter address or label to search + Indtast adresse eller etiket for at søge + + + + Export Transaction Data + Eksportér Transaktionsdata + + + + Comma separated file (*.csv) + Kommasepareret fil (*.csv) + + + + Date + Dato + + + + Address + Adresse + + + + Amount + Beløb + + + + ID + ID + + + + Could not write to file %1. + Kunne ikke skrive til filen %1. + + + + to + til + + + + Range... + Interval... + + + + Show details... + Vis detaljer... + @@ -1278,11 +1333,6 @@ Adresse: %4 This year Dette år - - - Range... - Interval... - Received with @@ -1308,11 +1358,6 @@ Adresse: %4 Other Andet - - - Enter address or label to search - Indtast adresse eller etiket for at søge - Min amount @@ -1333,26 +1378,11 @@ Adresse: %4 Edit label Rediger etiket - - - Export Transaction Data - Eksportér Transaktionsdata - - - - Comma separated file (*.csv) - Kommasepareret fil (*.csv) - Confirmed Bekræftet - - - Date - Dato - Type @@ -1363,46 +1393,16 @@ Adresse: %4 Label Etiket - - - Address - Adresse - - - - Amount - Beløb - - - - ID - ID - Error exporting Fejl under eksport - - - Could not write to file %1. - Kunne ikke skrive til filen %1. - Range: Interval: - - - to - til - - - - Show details... - Vis detaljer... - WalletModel @@ -1414,21 +1414,46 @@ Adresse: %4 bitcoin-core - - - Bitcoin version - Bitcoinversion - Usage: Anvendelse: + + + Done loading + Indlæsning gennemført + + + + Error: CreateThread(StartNode) failed + Fejl: CreateThread(StartNode) mislykkedes + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Advarsel: Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet. Hvis der er fejl i disse vil Bitcoin ikke fungere korrekt. + + + + Invalid -proxy address + Ugyldig -proxy adresse + + + + Warning: Disk space is low + Advarsel: Diskplads er lav + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. Kan låse data-biblioteket %s. Bitcoin kører sikkert allerede. + + + Bitcoin version + Bitcoinversion + Loading addresses... @@ -1444,25 +1469,25 @@ Adresse: %4 Loading wallet... Indlæser tegnebog... - - - Rescanning... - Genindlæser... - 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. - - Error: CreateThread(StartNode) failed - Fejl: CreateThread(StartNode) mislykkedes + + Invalid amount for -paytxfee=<amount> + Ugyldigt beløb for -paytxfee=<amount> - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Advarsel: Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet. Hvis der er fejl i disse vil Bitcoin ikke fungere korrekt. + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Kunne ikke binde sig til port %d på denne computer. Bitcoin kører sikkert allerede. + + + + beta + beta @@ -1504,13 +1529,6 @@ Adresse: %4 Specify pid file (default: bitcoind.pid) Angiv pid-fil (default: bitcoind.pid) - - - - - Generate coins - - Generér coins @@ -1591,34 +1609,9 @@ Adresse: %4 - - Done loading - Indlæsning gennemført - - - - Invalid -proxy address - Ugyldig -proxy adresse - - - - Invalid amount for -paytxfee=<amount> - Ugyldigt beløb for -paytxfee=<amount> - - - - Warning: Disk space is low - Advarsel: Diskplads er lav - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Kunne ikke binde sig til port %d på denne computer. Bitcoin kører sikkert allerede. - - - - beta - beta + + Rescanning... + Genindlæser... @@ -1633,6 +1626,13 @@ Adresse: %4 Start minimeret + + + Generate coins + + Generér coins + + Listen for connections on <port> (default: 8333 or testnet: 18333) diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index 50b2b7740c..fe4dbfbff2 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -79,11 +79,6 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open &Delete &Löschen - - - Export Address Book Data - Adressbuch exportieren - Comma separated file (*.csv) @@ -94,6 +89,11 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Error exporting Fehler beim Exportieren + + + Export Address Book Data + Adressbuch exportieren + Could not write to file %1. @@ -102,6 +102,11 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open AddressTableModel + + + (no label) + (keine Bezeichnung) + Label @@ -112,38 +117,23 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Address Adresse - - - (no label) - (keine Bezeichnung) - AskPassphraseDialog - - - Enter passphrase - Passphrase eingeben - New passphrase Neue Passphrase - - - Repeat new passphrase - Neue Passphrase wiederholen - Dialog Dialog - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Geben Sie die neue Passphrase für die Brieftasche ein.<br>Bitte benutzen Sie eine Passphrase bestehend aus <b>10 oder mehr zufälligen Zeichen</b> oder <b>8 oder mehr Wörtern</b>. + + Enter passphrase + Passphrase eingeben @@ -156,9 +146,14 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Brieftasche verschlüsseln - - This operation needs your wallet passphrase to unlock the wallet. - Dieser Vorgang benötigt Ihre Passphrase um die Brieftasche zu entsperren. + + Wallet passphrase was successfully changed. + Die Passphrase der Brieftasche wurde erfolgreich geändert. + + + + Repeat new passphrase + Neue Passphrase wiederholen @@ -185,17 +180,6 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Enter the old and new passphrase to the wallet. Geben Sie die alte und die neue Passphrase der Brieftasche ein. - - - - Wallet encrypted - Brieftasche verschlüsselt - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung Ihrer Brieftasche nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadsoftware schützt, die Ihren Computer befällt. - @@ -209,17 +193,28 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Wallet encryption failed due to an internal error. Your wallet was not encrypted. Die Verschlüsselung der Brieftasche ist aufgrund eines internen Fehlers fehlgeschlagen. Ihre Brieftasche wurde nicht verschlüsselt. + + + + Wallet encrypted + Brieftasche verschlüsselt + + + + This operation needs your wallet passphrase to unlock the wallet. + Dieser Vorgang benötigt Ihre Passphrase um die Brieftasche zu entsperren. + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung Ihrer Brieftasche nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadsoftware schützt, die Ihren Computer befällt. + The supplied passphrases do not match. Die eingegebenen Passphrasen stimmen nicht überein. - - - Wallet unlock failed - Entsperrung der Brieftasche fehlgeschlagen - @@ -232,6 +227,12 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Wallet decryption failed Entschlüsselung der Brieftasche fehlgeschlagen + + + + Warning: The Caps Lock key is on. + Warnung: Die Feststelltaste ist aktiviert. + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! @@ -239,24 +240,63 @@ Are you sure you wish to encrypt your wallet? WARNUNG: Wenn Sie Ihre Brieftasche verschlüsseln und Ihre Passphrase verlieren, werden Sie <b>ALLE IHRE BITCOINS VERLIEREN</b>!<br><br>Sind Sie sich sicher, dass Sie Ihre Brieftasche verschlüsseln möchten? - - Wallet passphrase was successfully changed. - Die Passphrase der Brieftasche wurde erfolgreich geändert. - - - - - Warning: The Caps Lock key is on. - Warnung: Die Feststelltaste ist aktiviert. + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Geben Sie die neue Passphrase für die Brieftasche ein.<br>Bitte benutzen Sie eine Passphrase bestehend aus <b>10 oder mehr zufälligen Zeichen</b> oder <b>8 oder mehr Wörtern</b>. Confirm wallet encryption Verschlüsselung der Brieftasche bestätigen + + + Wallet unlock failed + Entsperrung der Brieftasche fehlgeschlagen + BitcoinGUI + + + &Overview + &Übersicht + + + + &Transactions + &Transaktionen + + + + Change the passphrase used for wallet encryption + Ändert die Passphrase, die für die Verschlüsselung der Brieftasche benutzt wird + + + + About &Qt + Über &Qt + + + + Send coins to a bitcoin address + Bitcoins an eine Bitcoin-Adresse überweisen + + + + E&xit + &Beenden + + + + &Change Passphrase + Passphrase &ändern... + + + + Sending... + Transaktionsgebühr bestätigen + Bitcoin Wallet @@ -273,41 +313,16 @@ Are you sure you wish to encrypt your wallet? Block chain synchronization in progress Synchronisation der Blockkette wird durchgeführt - - - &Overview - &Übersicht - Show general overview of wallet Allgemeine Übersicht der Brieftasche anzeigen - - - &Transactions - &Transaktionen - Browse transaction history Transaktionsverlauf durchsehen - - - &Address Book - &Adressbuch - - - - Edit the list of stored addresses and labels - Liste der gespeicherten Zahlungsadressen und Bezeichnungen bearbeiten - - - - &Receive coins - Bitcoins &empfangen - Show the list of addresses for receiving payments @@ -319,19 +334,19 @@ Are you sure you wish to encrypt your wallet? Bitcoins &überweisen - - Send coins to a bitcoin address - Bitcoins an eine Bitcoin-Adresse überweisen + + Edit the list of stored addresses and labels + Liste der gespeicherten Zahlungsadressen und Bezeichnungen bearbeiten - - E&xit - &Beenden + + &Receive coins + Bitcoins &empfangen - - &About %1 - &Über %1 + + Show information about Qt + Informationen über Qt anzeigen @@ -339,44 +354,9 @@ Are you sure you wish to encrypt your wallet? &Erweiterte Einstellungen... - - Show the Bitcoin window - Bitcoin-Fenster anzeigen - - - - Export the current view to a file - Aktuelle Ansicht in eine Datei exportieren - - - - Encrypt or decrypt wallet - Brieftasche ent- oder verschlüsseln - - - - &Change Passphrase - Passphrase &ändern... - - - - Change the passphrase used for wallet encryption - Ändert die Passphrase, die für die Verschlüsselung der Brieftasche benutzt wird - - - - Sending... - Senden... - - - - About &Qt - Über &Qt - - - - Show information about Qt - Informationen über Qt anzeigen + + &Export... + &Exportieren... @@ -389,39 +369,24 @@ Are you sure you wish to encrypt your wallet? &Einstellungen - - &Help - &Hilfe - - - - Quit application - Anwendung beenden - - - - Tabs toolbar - Registerkartenleiste - - - - Show information about Bitcoin - Informationen über Bitcoin anzeigen + + [testnet] + [Testnetz] Actions toolbar - Aktionssymbolleiste + Aktionen-Werkzeugleiste - - [testnet] - [Testnetz] + + &Address Book + &Adressbuch - - Modify configuration options for bitcoin - Erweiterte Bitcoin-Einstellungen ändern + + &About %1 + &Über %1 @@ -429,9 +394,14 @@ Are you sure you wish to encrypt your wallet? &Bitcoin öffnen - - bitcoin-qt - bitcoin-qt + + Show the Bitcoin window + Bitcoin-Fenster anzeigen + + + + Export the current view to a file + Aktuelle Ansicht in eine Datei exportieren @@ -441,16 +411,6 @@ Are you sure you wish to encrypt your wallet? %n aktive Verbindungen zum Bitcoin-Netzwerk - - - &Export... - &Exportieren nach... - - - - &Encrypt Wallet - Brieftasche &verschlüsseln... - Downloaded %1 blocks of transaction history. @@ -503,11 +463,21 @@ Are you sure you wish to encrypt your wallet? Last received block was generated %1. Der letzte empfangene Block wurde %1 generiert. + + + Quit application + Anwendung beenden + 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? Die Transaktion übersteigt das Größenlimit. Sie können sie trotzdem senden, wenn Sie eine zusätzliche Transaktionsgebühr in Höhe von %1 zahlen. Diese wird an die Knoten verteilt, die Ihre Transaktion bearbeiten und unterstützt damit das Bitcoin-Netzwerk.<br><br>Möchten Sie die Gebühr bezahlen? + + + Show information about Bitcoin + Informationen über Bitcoin anzeigen + Sent transaction @@ -530,6 +500,21 @@ Betrag: %2 Typ: %3 Adresse: %4 + + + Modify configuration options for bitcoin + Erweiterte Bitcoin-Einstellungen ändern + + + + &Encrypt Wallet + Brieftasche &verschlüsseln... + + + + Encrypt or decrypt wallet + Brieftasche ent- oder verschlüsseln + Wallet is <b>encrypted</b> and currently <b>unlocked</b> @@ -540,16 +525,31 @@ Adresse: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> Brieftasche ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> - - - Downloaded %1 of %2 blocks of transaction history. - %1 von %2 Blöcken des Transaktionsverlaufs heruntergeladen. - A fatal error occurred. Bitcoin can no longer continue safely and will quit. Ein schwerer Fehler ist aufgetreten. Bitcoin kann nicht stabil weiter ausgeführt werden und wird beendet. + + + &Help + &Hilfe + + + + Tabs toolbar + Registerkarten-Leiste + + + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + %1 von %2 Blöcken des Transaktionsverlaufs heruntergeladen. + DisplayOptionsPage @@ -566,7 +566,7 @@ Adresse: %4 &Display addresses in transaction list - Adressen in der Transaktionsliste &anzeigen + &Adressen in der Transaktionsliste anzeigen @@ -659,25 +659,25 @@ Adresse: %4 &Minimize to the tray instead of the taskbar In den Infobereich anstatt in die Taskleiste &minimieren - - - Show only a tray icon after minimizing the window - Nur ein Symbol im Infobereich anzeigen, nachdem das Fenster minimiert wurde - Map port using &UPnP Portweiterleitung via &UPnP + + + M&inimize on close + Beim Schließen &minimieren + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. Automatisch den Bitcoin Client-Port auf dem Router öffnen. Dies funktioniert nur, wenn Ihr Router UPnP unterstützt und dies aktiviert ist. - - M&inimize on close - Beim Schließen &minimieren + + Show only a tray icon after minimizing the window + Nur ein Symbol im Infobereich anzeigen, nachdem das Fenster minimiert wurde @@ -702,22 +702,22 @@ Adresse: %4 IP address of the proxy (e.g. 127.0.0.1) - IP-Adresse des Proxyservers (z.B. 127.0.0.1) + IP-Adresse des Proxy-Servers (z.B. 127.0.0.1) &Port: - &Port: + &Port: Port of the proxy (e.g. 1234) - Port des Proxies (z.B. 1234) + Port des Proxy-Servers (z.B. 1234) Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Optionale Transaktionsgebühr pro kB, die sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 BTC wird empfohlen. + Optionale Transaktionsgebühr pro kB, die sicherstellt, dass Ihre Transaktionen schnell bearbeitet werden. Die meisten Transaktionen sind 1 kB groß. Eine Gebühr von 0.01 wird empfohlen. @@ -727,11 +727,6 @@ Adresse: %4 OptionsDialog - - - Options - Erweiterte Einstellungen - Main @@ -742,9 +737,34 @@ Adresse: %4 Display Anzeige + + + Options + Erweiterte Einstellungen + OverviewPage + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Betrag aus unbestätigten Transaktionen, der noch nicht im aktuellen Kontostand enthalten ist + + + + Total number of transactions in wallet + Anzahl aller Transaktionen in der Brieftasche + + + + Wallet + Brieftasche + + + + Number of transactions: + Anzahl der Transaktionen: + Form @@ -755,25 +775,15 @@ Adresse: %4 Balance: Kontostand: - - - Number of transactions: - Anzahl der Transaktionen: - Unconfirmed: Unbestätigt: - - Wallet - Brieftasche - - - - 0 - 0 + + <b>Recent transactions</b> + <b>Letzte Transaktionen</b> @@ -781,28 +791,13 @@ Adresse: %4 Ihr aktueller Kontostand - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Betrag aus unbestätigten Transaktionen, der noch nicht im aktuellen Kontostand enthalten ist - - - - <b>Recent transactions</b> - <b>Letzte Transaktionen</b> - - - - Total number of transactions in wallet - Anzahl aller Transaktionen in der Brieftasche + + 0 + 0 SendCoinsDialog - - - and - und - @@ -825,21 +820,6 @@ Adresse: %4 Remove all transaction fields Alle Überweisungsfelder zurücksetzen - - - &Add recipient... - &Empfänger hinzufügen - - - - Balance: - Kontostand: - - - - 123.456 BTC - 123.456 BTC - Confirm the send action @@ -850,21 +830,41 @@ Adresse: %4 &Send &Überweisen + + + Confirm send coins + Überweisung bestätigen + + + + and + und + + + + &Add recipient... + &Empfänger hinzufügen + Clear all Zurücksetzen + + + Balance: + Kontostand: + + + + 123.456 BTC + 123.456 BTC + <b>%1</b> to %2 (%3) <b>%1</b> an %2 (%3) - - - Confirm send coins - Überweisung bestätigen - Are you sure you want to send %1? @@ -875,11 +875,6 @@ Adresse: %4 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. @@ -905,9 +900,19 @@ Adresse: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Fehler: Die Transaktion wurde abgelehnt. Dies kann passieren, wenn einige Bitcoins aus Ihrer Brieftasche bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie Ihrer wallet.dat genutzt, die Bitcoins dort ausgegeben haben und dies daher in der derzeit aktiven Brieftasche nicht vermerkt ist. - - - SendCoinsEntry + + + The amount to pay must be larger than 0. + Der zu zahlende Betrag muss größer 0 sein. + + + + SendCoinsEntry + + + A&mount: + &Betrag: + Form @@ -919,14 +924,15 @@ Adresse: %4 &Empfänger: - - &Label: - &Bezeichnung: + + + Enter a label for this address to add it to your address book + Adressbezeichnung eingeben (diese wird bei unbekannten Adressen inkl. der Adresse dem Adressbuch hinzugefügt) - - Choose address from address book - Adresse aus Adressbuch wählen + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Die Zahlungsadresse der Überweisung (z.B. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -944,20 +950,14 @@ Adresse: %4 Diesen Empfänger entfernen - - A&mount: - &Betrag: - - - - - Enter a label for this address to add it to your address book - Adressbezeichnung eingeben (diese wird bei unbekannten Adressen inkl. der Adresse dem Adressbuch hinzugefügt) + + &Label: + &Bezeichnung: - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Die Zahlungsadresse der Überweisung (z.B. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + Choose address from address book + Adresse aus Adressbuch wählen @@ -972,21 +972,6 @@ Adresse: %4 TransactionDesc - - - %1 confirmations - %1 Bestätigungen - - - - , has not been successfully broadcast yet - , wurde noch nicht erfolgreich übertragen - - - - <b>Status:</b> - <b>Status:</b> - Open for %1 blocks @@ -997,6 +982,16 @@ Adresse: %4 %1/offline? %1/offline? + + + %1/unconfirmed + %1/unbestätigt + + + + <b>Status:</b> + <b>Status:</b> + , broadcast through %1 node @@ -1023,21 +1018,6 @@ Adresse: %4 <b>From:</b> <b>Von:</b> - - - unknown - unbekannt - - - - Open until %1 - Offen bis %1 - - - - %1/unconfirmed - %1/unbestätigt - @@ -1068,6 +1048,26 @@ Adresse: %4 (%1 matures in %2 more blocks) %1 (reift noch %2 weitere Blöcke) + + + Open until %1 + Offen bis %1 + + + + %1 confirmations + %1 Bestätigungen + + + + , has not been successfully broadcast yet + , wurde noch nicht erfolgreich übertragen + + + + unknown + unbekannt + (not accepted) @@ -1245,6 +1245,42 @@ Adresse: %4 TransactionView + + + Mined + Erarbeitet + + + + Min amount + Minimaler Betrag + + + + Copy address + Adresse kopieren + + + + Copy label + Bezeichnung kopieren + + + + This month + Diesen Monat + + + + + All + Alle + + + + To yourself + Eigenüberweisung + Edit label @@ -1275,11 +1311,6 @@ Adresse: %4 Type Typ - - - Label - Bezeichnung - Address @@ -1315,17 +1346,6 @@ Adresse: %4 to bis - - - Show details... - Transaktionsdetails anzeigen - - - - - All - Alle - Today @@ -1356,16 +1376,6 @@ Adresse: %4 Sent to Überwiesen an - - - To yourself - Eigenüberweisung - - - - Mined - Erarbeitet - Other @@ -1377,24 +1387,14 @@ Adresse: %4 Zu suchende Adresse oder Bezeichnung eingeben - - Min amount - Minimaler Betrag - - - - Copy address - Adresse kopieren - - - - Copy label - Bezeichnung kopieren + + Show details... + Transaktionsdetails anzeigen - - This month - Diesen Monat + + Label + Bezeichnung @@ -1422,16 +1422,6 @@ Adresse: %4 Usage: Benutzung: - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Datenverzeichnis %s kann nicht gesperrt werden. Evtl. wurde Bitcoin bereits gestartet. - - - - Loading addresses... - Lade Adressen... - Loading block index... @@ -1442,57 +1432,72 @@ Adresse: %4 Loading wallet... Lade Brieftasche... - - - Wallet needed to be rewritten: restart Bitcoin to complete - - Brieftasche muss neu geschrieben werden: Starten Sie Bitcoin zur Fertigstellung neu - Rescanning... Durchsuche erneut... - - - Done loading - Laden abgeschlossen - Invalid -proxy address Fehlerhafte Proxy-Adresse - - - Invalid amount for -paytxfee=<amount> - Ungültige Angabe für -paytxfee=<Betrag> - 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 gesetzt. Dies ist die Gebühr die beim Senden einer Transaktion fällig wird. - - - Error: CreateThread(StartNode) failed - Fehler: CreateThread(StartNode) fehlgeschlagen - Unable to bind to port %d on this computer. Bitcoin is probably already running. Fehler beim registrieren des Ports %d auf diesem Computer. Evtl. wurde Bitcoin bereits gestartet. - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Warnung: Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen Ihres Computers, da Bitcoin ansonsten nicht ordnungsgemäß funktionieren wird. + + Warning: Disk space is low + Warnung: Festplattenplatz wird knapp + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Datenverzeichnis %s kann nicht gesperrt werden. Evtl. wurde Bitcoin bereits gestartet. + + + + Loading addresses... + Lade Adressen... + + + + Done loading + Laden abgeschlossen + + + + Invalid amount for -paytxfee=<amount> + Ungültige Angabe für -paytxfee=<Betrag> beta Beta + + + Wallet needed to be rewritten: restart Bitcoin to complete + + Brieftasche muss neu geschrieben werden: Starten Sie Bitcoin zur Fertigstellung neu + + + + Error: CreateThread(StartNode) failed + Fehler: CreateThread(StartNode) fehlgeschlagen + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Warnung: Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen Ihres Computers, da Bitcoin ansonsten nicht ordnungsgemäß funktionieren wird. + Send command to -server or bitcoind @@ -1647,11 +1652,6 @@ Adresse: %4 UPnP nicht verwenden - - - Warning: Disk space is low - Warnung: Festplattenplatz wird knapp - Attempt to use UPnP to map the listening port @@ -1837,7 +1837,7 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Bitcoin-Qt - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index 198249b90f..d687c2e2d3 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -57,6 +57,16 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.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 + + + + &Copy to Clipboard + &Copiar al portapapeles + Delete the currently selected address from the list. Only sending addresses can be deleted. @@ -68,47 +78,37 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.&Borrar - - Copy the currently selected address to the system clipboard - Copiar la dirección seleccionada al portapapeles + + Error exporting + Error al exportar &New Address... &Nueva Dirección - - - &Copy to Clipboard - &Copiar al portapapeles - Export Address Book Data Exportar datos de la libreta de direcciones - - - Comma separated file (*.csv) - Archivos de columnas separadas por coma (*.csv) - - - - Error exporting - Error al exportar - Could not write to file %1. No se pudo escribir en el archivo %1. + + + Comma separated file (*.csv) + Archivos de columnas separadas por coma (*.csv) + AddressTableModel - - Label - Etiqueta + + (no label) + (sin etiqueta) @@ -116,38 +116,61 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Dirección - - (no label) - (sin etiqueta) + + Label + Etiqueta AskPassphraseDialog - - - Enter passphrase - Contraseña actual - New passphrase Nueva contraseña + + + Repeat new passphrase + Repita la nueva contraseña + Dialog Cambiar contraseña - - Repeat new passphrase - Repita la nueva contraseña + + This operation needs your wallet passphrase to unlock the wallet. + Para desbloquear el monedero esta operación necesita de su contraseña. + + + + + The supplied passphrases do not match. + Las contraseñas no coinciden. + + + + Enter passphrase + Contraseña actual TextLabel Cambiar contraseña: + + + + + 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 + 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>. @@ -158,11 +181,6 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Encrypt wallet Cifrar el monedero - - - This operation needs your wallet passphrase to unlock the wallet. - Para desbloquear el monedero esta operación necesita de su contraseña. - Unlock wallet @@ -173,16 +191,6 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.This operation needs your wallet passphrase to decrypt the wallet. Para descifrar el monedero esta operación necesita de su contraseña. - - - Decrypt wallet - Descifrar monedero - - - - Change passphrase - Cambiar contraseña - Enter the old and new passphrase to the wallet. @@ -199,19 +207,6 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Wallet encrypted Monedero cifrado - - - - - - Wallet encryption failed - Ha fallado el cifrado del monedero - - - - Wallet passphrase was successfully changed. - La contraseña de cartera ha sido cambiada con exit. - @@ -219,11 +214,14 @@ 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 BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ATENCION: ¡Si encriptas tu cartera y pierdes la contraseña perderas <b>TODOS TUS BITCOINS</b>!" -¿Seguro que quieres seguir encriptando la cartera? + + Decrypt wallet + Descifrar monedero + + + + Change passphrase + Cambiar contraseña @@ -231,36 +229,63 @@ Are you sure you wish to encrypt your wallet? 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 passphrase was successfully changed. + La contraseña de cartera ha sido cambiada con exit. + + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ATENCION: ¡Si encriptas tu cartera y pierdes la contraseña perderas <b>TODOS TUS BITCOINS</b>!" +¿Seguro que quieres seguir encriptando la cartera? 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. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerda que encriptando tu cartera no garantiza mantener a salvo tus bitcoins en caso de tener viruses en el ordenador. - - Wallet decryption failed - Ha fallado el descifrado del monedero + + + + + Wallet encryption failed + Ha fallado el cifrado del monedero BitcoinGUI + + + Browse transaction history + Examinar el historial de transacciones + + + + &Send coins + &Envia monedas + + + + E&xit + &Salir + + + + Quit application + Salir de la aplicación + + + + &About %1 + S&obre %1 + Bitcoin Wallet @@ -270,7 +295,7 @@ Are you sure you wish to encrypt your wallet? Synchronizing with network... - Sincronizando con la red... + Sincronizando con la red… @@ -285,67 +310,42 @@ Are you sure you wish to encrypt your wallet? Show general overview of wallet - Muestra una vista general de cartera + Mostrar vista general del monedero &Transactions - &Transacciónes - - - - Browse transaction history - Visiona el historial de transacciónes + &Transacciones &Address Book - &Guia de direcciónes + &Libreta de direcciones Edit the list of stored addresses and labels - Edita la lista de las direcciónes y etiquetas almacenada + Editar la lista de las direcciones y etiquetas almacenadas &Receive coins - &Recibe monedas + &Recibir monedas Show the list of addresses for receiving payments - Muestra la lista de direcciónes utilizadas para recibir pagos - - - - &Send coins - &Envia monedas + Mostrar la lista de direcciones utilizadas para recibir pagos Send coins to a bitcoin address Envia monedas a una dirección bitcoin - - - E&xit - &Salir - - - - Quit application - Salir de la aplicación - - - - &About %1 - S&obre %1 - Show information about Bitcoin - Muestra información sobre Bitcoin + Mostrar información acerca de Bitcoin @@ -367,6 +367,21 @@ Are you sure you wish to encrypt your wallet? Show the Bitcoin window Muestra la ventana de Bitcoin + + + &Export... + &Exporta... + + + + Export the current view to a file + Exporta la vista actual a un archivo + + + + &Encrypt Wallet + &Encriptar cartera + &File @@ -378,9 +393,9 @@ Are you sure you wish to encrypt your wallet? &Configuración - - &Help - A&yuda + + &Change Passphrase + &Cambiar la contraseña @@ -393,63 +408,35 @@ Are you sure you wish to encrypt your wallet? Barra de acciones - - Encrypt or decrypt wallet - Encriptar o decriptar cartera - - - - &Export... - &Exporta... - - - - Export the current view to a file - Exporta la vista actual a un archivo + + [testnet] + [testnet] - - &Encrypt Wallet - &Encriptar cartera + + Show information about Qt + Mostrar información acerca de Qt - - &Change Passphrase - &Cambiar la contraseña + + Downloaded %1 blocks of transaction history. + Se han bajado %1 bloques de historial. - - [testnet] - [testnet] + + Encrypt or decrypt wallet + Cifrar o descifrar el monedero - - Change the passphrase used for wallet encryption - Cambiar la contraseña utilizada para la encriptación de cartera - - - - %n active connection(s) to Bitcoin network - - %n conexión activa hacia la red Bitcoin - %n conexiones activas hacia la red Bitcoin - + + &Help + A&yuda About &Qt Acerca de &Qt - - - Downloaded %1 blocks of transaction history. - Se han bajado %1 bloques de historial. - - - - Show information about Qt - Mostrar información acerca de Qt - %n second(s) ago @@ -525,9 +512,9 @@ Tipo: %3 Dirección: %4 - - bitcoin-qt - bitcoin-qt + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para el cifrado del monedero @@ -539,6 +526,19 @@ Dirección: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> + + + %n active connection(s) to Bitcoin network + + %n conexión activa hacia la red Bitcoin + %n conexiones activas hacia la red Bitcoin + + + + + bitcoin-qt + bitcoin-qt + Downloaded %1 of %2 blocks of transaction history. @@ -630,6 +630,11 @@ Dirección: %4 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 bitcoin address. + La dirección introducida "%1" no es una dirección Bitcoin valida. + Could not unlock wallet. @@ -640,19 +645,9 @@ Dirección: %4 New key generation failed. Ha fallado la generación de la nueva clave. - - - The entered address "%1" is not a valid bitcoin address. - La dirección introducida "%1" no es una dirección Bitcoin valida. - MainOptionsPage - - - Proxy &IP: - &IP Proxy: - &Port: @@ -683,30 +678,15 @@ Dirección: %4 Map port using &UPnP Mapea el puerto usando &UPnP - - - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Intenta abrir el puerto adecuado en el router automaticamente. Esta opcion solo funciona si el router soporta UPnP y esta activado. - M&inimize on close M&inimiza a la bandeja al cerrar - - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Minimiza la ventana en lugar de salir de la aplicación.Cuando esta opcion esta activa la aplicación solo se puede cerrar seleccionando Salir desde el menu. - - - - &Connect through SOCKS4 proxy: - &Conecta atraves de un proxy SOCKS4: - - - - Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) - Conecta a la red Bitcoin atraves de un proxy SOCKS4 (ej. para conectar con la red Tor) + + Proxy &IP: + &IP Proxy: @@ -728,14 +708,29 @@ Dirección: %4 Pay transaction &fee Comision de &transacciónes + + + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + Intenta abrir el puerto adecuado en el router automaticamente. Esta opcion solo funciona si el router soporta UPnP y esta activado. + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. + Minimiza la ventana en lugar de salir de la aplicación.Cuando esta opcion esta activa la aplicación solo se puede cerrar seleccionando Salir desde el menu. + + + + &Connect through SOCKS4 proxy: + &Conecta atraves de un proxy SOCKS4: + + + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + Conecta a la red Bitcoin atraves de un proxy SOCKS4 (ej. para conectar con la red Tor) + OptionsDialog - - - Options - Opciones - Main @@ -746,28 +741,33 @@ Dirección: %4 Display Mostrado + + + Options + Opciones + OverviewPage - - Form - Desde + + Your current balance + Saldo actual - - Balance: - Saldo: + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Total de las transacciones que faltan por confirmar y que no se cuentan para el total general - - Number of transactions: - Número de movimientos: + + Total number of transactions in wallet + Número total de movimientos en el monedero - - <b>Recent transactions</b> - <b>Movimientos recientes</b> + + Form + Desde @@ -777,36 +777,31 @@ Dirección: %4 Wallet - Cartera + Monedero - - Your current balance - Tu balance actual + + Unconfirmed: + No confirmado(s): - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - El total de las transacciones que faltan por confirmar y que no se cuentan para el total general. + + Balance: + Saldo: - - Total number of transactions in wallet - El numero total de movimiento en cartera + + Number of transactions: + Número de movimientos: - - Unconfirmed: - No confirmado(s): + + <b>Recent transactions</b> + <b>Movimientos recientes</b> SendCoinsDialog - - - Are you sure you want to send %1? - Estas seguro que quieres enviar %1? - @@ -819,35 +814,10 @@ Dirección: %4 Send Coins Envía monedas - - - Remove all transaction fields - Eliminar todos los campos de las transacciones - - - - 123.456 BTC - 123.456 BTC - - - - Confirm the send action - Confirma el envío - - - - &Send - &Envía - Send to multiple recipients at once - Envia a multiples destinatarios de una vez - - - - &Add recipient... - &Agrega destinatario... + Envía a multiples destinatarios de una vez @@ -857,7 +827,12 @@ Dirección: %4 Balance: - Balance: + Saldo: + + + + &Send + &Envía @@ -867,23 +842,53 @@ Dirección: %4 Confirm send coins - Confirmar el envio de monedas + Confirmar el envío de monedas - and - y + Are you sure you want to send %1? + Estas seguro que quieres enviar %1? - - The recipient address is not valid, please recheck. - La dirección de destinatarion no es valida, comprueba otra vez. + + and + y The amount to pay must be larger than 0. La cantidad por pagar tiene que ser mayor 0. + + + Error: Transaction creation failed. + Error: ha fallado la creación de 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: transacción rechazada. Puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado así aquí. + + + + &Add recipient... + &Agrega destinatario... + + + + 123.456 BTC + 123.456 BTC + + + + Confirm the send action + Confirma el envio + + + + Remove all transaction fields + Eliminar todos los campos de las transacciones + The amount exceeds your balance. @@ -894,33 +899,28 @@ Dirección: %4 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 + + + The recipient address is not valid, please recheck. + La dirección de destinatarion no es valida, comprueba otra vez. + 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. - - - Error: Transaction creation failed. - Error: ha fallado la creación de 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: transacción rechazada. Puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado así aquí. - SendCoinsEntry Form - Desde + Envio A&mount: - Cantidad: + Ca&ntidad: @@ -931,7 +931,7 @@ Dirección: %4 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 + Etiquete esta dirección para añadirla a la libreta @@ -943,11 +943,6 @@ Dirección: %4 The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) La dirección donde enviar el pago (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - Choose address from address book - Elije dirección de la guia - Alt+A @@ -956,7 +951,7 @@ Dirección: %4 Paste address from clipboard - Pega dirección desde portapapelesPega dirección desde portapapeles + Pega dirección desde portapapeles @@ -968,6 +963,11 @@ Dirección: %4 Remove this recipient Elimina destinatario + + + Choose address from address book + Elija una dirección de la libreta de direcciones + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -976,16 +976,6 @@ Dirección: %4 TransactionDesc - - - %1 confirmations - %1 confirmaciones - - - - unknown - desconocido - Open for %1 blocks @@ -1002,9 +992,9 @@ Dirección: %4 %1/fuera de linea? - - %1/unconfirmed - %1/no confirmado + + %1 confirmations + %1 confirmaciónes @@ -1059,6 +1049,31 @@ Dirección: %4 (yours) (tuya) + + + Message: + Mensaje: + + + + Comment: + Comentario: + + + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Las monedas generadas deben esperar 120 bloques antes de ser gastadas. Cuando has generado este bloque se emitió a la red para ser agregado en la cadena de bloques. Si falla al incluirse en la cadena, cambiará a "no aceptado" y las monedas no se podrán gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque casi al mismo tiempo que el tuyo. + + + + %1/unconfirmed + %1/no confirmado + + + + unknown + desconocido + @@ -1094,21 +1109,6 @@ Dirección: %4 <b>Net amount:</b> <b>Cantidad total:</b> - - - Message: - Mensaje: - - - - Comment: - Comentario: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Las monedas generadas deben esperar 120 bloques antes de ser gastadas. Cuando has generado este bloque se emitió a la red para ser agregado en la cadena de bloques. Si falla al incluirse en la cadena, cambiará a "no aceptado" y las monedas no se podrán gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque casi al mismo tiempo que el tuyo. - TransactionDescDialog @@ -1193,6 +1193,11 @@ Dirección: %4 Sent to Enviado a + + + Received from + Recibidos de + Payment to yourself @@ -1241,19 +1246,69 @@ Dirección: %4 El balance minado estará disponible en %n bloques mas - - - Received from - Recibidos de - TransactionView + + + Copy address + Copiar dirección + + + + Copy label + Copiar etiqueta + + + + Edit label + Editar etiqueta + + + + Confirmed + Confirmado + + + + Date + Fecha + + + + Label + Etiqueta + + + + Amount + Cantidad + + + + ID + ID + + + + Error exporting + Error exportando + + + + Could not write to file %1. + No se pudo escribir en el archivo %1. + to para + + + Show details... + Muestra detalles... + @@ -1322,23 +1377,8 @@ Dirección: %4 - Min amount - Cantidad mínima - - - - Copy address - Copiar dirección - - - - Copy label - Copiar etiqueta - - - - Edit label - Editar etiqueta + Min amount + Cantidad mínima @@ -1350,61 +1390,21 @@ Dirección: %4 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 exportando - - - - Could not write to file %1. - No se pudo escribir en el archivo %1. - Range: Rango: - - - Show details... - Muestra detalles... - WalletModel @@ -1416,11 +1416,6 @@ Dirección: %4 bitcoin-core - - - Bitcoin version - Versión de Bitcoin - Usage: @@ -1433,29 +1428,79 @@ Dirección: %4 - - Loading block index... - Cargando el índice de bloques... + + Rescanning... + Rescaneando... - - Loading wallet... - Cargando monedero... + + Loading addresses... + Cargando direcciones... - - Rescanning... - Rescaneando... + + Don't generate coins + + No generar monedas + - - Done loading - Generado pero no aceptado + + Specify data directory + + Especifica directorio para los datos + - - Invalid -proxy address - Dirección -proxy invalida + + Specify connection timeout (in milliseconds) + + Especifica tiempo de espera para conexion (en milisegundos) + + + + + Connect through socks4 proxy + + Conecta mediante proxy socks4 + + + + + Allow DNS lookups for addnode and connect + + Permite búsqueda DNS para addnode y connect + + + + + Don't find peers using internet relay chat + + No encontrar los pares utilizando Internet Relay Chat + + + + Don't bootstrap list of peers using DNS + + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + + + + + Output extra debugging information + + @@ -1472,6 +1517,46 @@ Dirección: %4 Error: CreateThread(StartNode) failed Error: CreateThread(StartNode) fallido + + + Warning: Disk space is low + Atención: Poco espacio en el disco duro + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Precaución: Por favor revisa que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal Bitcoin no funcionará correctamente. + + + + Bitcoin version + Versión de Bitcoin + + + + Loading block index... + Cargando el índice de bloques... + + + + Loading wallet... + Cargando monedero... + + + + Invalid -proxy address + Dirección -proxy invalida + + + + Done loading + Generado pero no aceptado + Send command to -server or bitcoind @@ -1519,13 +1604,6 @@ Dirección: %4 Generate coins Genera monedas - - - - - Don't generate coins - - No generar monedas @@ -1536,32 +1614,9 @@ Dirección: %4 - - Specify data directory - - Especifica directorio para los datos - - - - - Specify connection timeout (in milliseconds) - - Especifica tiempo de espera para conexion (en milisegundos) - - - - - Connect through socks4 proxy - - Conecta mediante proxy socks4 - - - - - Allow DNS lookups for addnode and connect - - Permite búsqueda DNS para addnode y connect - + + beta + beta @@ -1589,12 +1644,6 @@ Dirección: %4 Conecta solo al nodo especificado - - - Don't find peers using internet relay chat - - No encontrar los pares utilizando Internet Relay Chat - Don't accept connections from outside @@ -1602,11 +1651,6 @@ Dirección: %4 No aceptar conexiones desde el exterior - - - Loading addresses... - Cargando direcciónes... - Attempt to use UPnP to map the listening port @@ -1614,12 +1658,6 @@ Dirección: %4 Intenta usar UPnP para mapear el puerto de escucha - - - Don't bootstrap list of peers using DNS - - - Threshold for disconnecting misbehaving peers (default: 100) @@ -1632,18 +1670,6 @@ Dirección: %4 Número de segundos que se mantienen los compañeros se portan mal en volver a conectarse (por defecto: 86400) - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - - Don't attempt to use UPnP to map the listening port @@ -1676,12 +1702,6 @@ Dirección: %4 Usa la red de pruebas - - - Output extra debugging information - - - Prepend debug output with timestamp @@ -1749,26 +1769,6 @@ Dirección: %4 El monedero ha necesitado ser reescrito. Reinicie Bitcoin para completar el proceso - - - Warning: Disk space is low - Atención: Poco espacio en el disco duro - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Precaución: Por favor revisa que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal Bitcoin no funcionará correctamente. - - - - beta - beta - @@ -1853,7 +1853,7 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Bitcoin-Qt - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index 30e2fe1a73..43a8c3adf0 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -82,11 +82,6 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.&Delete &Borrar - - - Export Address Book Data - Exporta datos de la guia de direcciones - Comma separated file (*.csv) @@ -102,6 +97,11 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Could not write to file %1. No se pudo escribir al archivo %1. + + + Export Address Book Data + Exporta datos de la guia de direcciones + AddressTableModel @@ -129,9 +129,19 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Cambiar contraseña - - TextLabel - Cambiar contraseña: + + New passphrase + Nueva contraseña + + + + This operation needs your wallet passphrase to unlock the wallet. + Esta operación necesita la contraseña para desbloquear la billetera. + + + + Decrypt wallet + Decodificar cartera @@ -139,45 +149,51 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Introduce contraseña actual - - New passphrase - Nueva contraseña + + + + + Wallet encryption failed + Falló la codificación de la billetera Repeat new passphrase Repite nueva contraseña: + + + + The supplied passphrases do not match. + Las contraseñas no coinciden. + + + + TextLabel + Cambiar contraseña: + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. Introduce la nueva contraseña para la billetera.<br/>Por favor utiliza un contraseña <b>de 10 o mas caracteres aleatorios</b>, u <b>ocho o mas palabras</b>. + + + + + The passphrase entered for the wallet decryption was incorrect. + La contraseña introducida para decodificar la billetera es incorrecta. + Encrypt wallet Codificar billetera - - - This operation needs your wallet passphrase to unlock the wallet. - Esta operación necesita la contraseña para desbloquear la billetera. - Unlock wallet Desbloquea billetera - - - This operation needs your wallet passphrase to decrypt the wallet. - Esta operación necesita la contraseña para decodificar la billetara. - - - - Decrypt wallet - Decodificar cartera - Change passphrase @@ -194,59 +210,37 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Confirma la codificación de cartera - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ATENCIÓN: ¡Si codificas tu billetera y pierdes la contraseña perderás <b>TODOS TUS BITCOINS</b>!" -¿Seguro que quieres seguir codificando la billetera? - - - - - Wallet encrypted - Billetera codificada + + This operation needs your wallet passphrase to decrypt the wallet. + Esta operación necesita la contraseña para decodificar la billetara. Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus bitcoins de ser robados por malware que infecte su computador - - - - - - Wallet encryption failed - Falló la codificación de la billetera - - - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - La codificación de la billetera falló debido a un error interno. Tu billetera no ha sido codificada. - - - - - The supplied passphrases do not match. - Las contraseñas no coinciden. - Wallet unlock failed Ha fallado el desbloqueo de la billetera - - - - The passphrase entered for the wallet decryption was incorrect. - La contraseña introducida para decodificar la billetera es incorrecta. + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + La codificación de la billetera falló debido a un error interno. Tu billetera no ha sido codificada. Wallet decryption failed Ha fallado la decodificación de la billetera + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ATENCIÓN: ¡Si codificas tu billetera y pierdes la contraseña perderás <b>TODOS TUS BITCOINS</b>!" +¿Seguro que quieres seguir codificando la billetera? + Wallet passphrase was successfully changed. @@ -258,13 +252,29 @@ Are you sure you wish to encrypt your wallet? Warning: The Caps Lock key is on. Precaucion: Mayúsculas Activadas + + + + Wallet encrypted + Billetera codificada + BitcoinGUI - - &About %1 - S&obre %1 + + Show the list of addresses for receiving payments + Muestra la lista de direcciónes utilizadas para recibir pagos + + + + &Send coins + &Envíar monedas + + + + &Options... + &Opciones @@ -297,11 +307,6 @@ Are you sure you wish to encrypt your wallet? &Transactions &Transacciónes - - - Browse transaction history - Explora el historial de transacciónes - &Address Book @@ -317,21 +322,6 @@ Are you sure you wish to encrypt your wallet? &Receive coins &Recibir monedas - - - Show the list of addresses for receiving payments - Muestra la lista de direcciónes utilizadas para recibir pagos - - - - &Send coins - &Envíar monedas - - - - Send coins to a bitcoin address - Enviar monedas a una dirección bitcoin - E&xit @@ -347,11 +337,6 @@ Are you sure you wish to encrypt your wallet? Show information about Bitcoin Muestra información acerca de Bitcoin - - - &Options... - &Opciones - Modify configuration options for bitcoin @@ -367,21 +352,11 @@ Are you sure you wish to encrypt your wallet? Show the Bitcoin window Muestra la ventana de Bitcoin - - - &Export... - &Exportar... - Export the current view to a file Exportar la vista actual a un archivo - - - &Encrypt Wallet - &Codificar la billetera - Encrypt or decrypt wallet @@ -413,29 +388,9 @@ Are you sure you wish to encrypt your wallet? &Archivo - - &Settings - &Configuración - - - - &Help - &Ayuda - - - - Tabs toolbar - Barra de pestañas - - - - Actions toolbar - Barra de acciónes - - - - [testnet] - [red-de-pruebas] + + Browse transaction history + Explora el historial de transacciónes @@ -450,11 +405,6 @@ Are you sure you wish to encrypt your wallet? Downloaded %1 blocks of transaction history. Descargado %1 bloques del historial de transacciones. - - - bitcoin-qt - bitcoin-qt - %n second(s) ago @@ -476,6 +426,36 @@ Are you sure you wish to encrypt your wallet? Downloaded %1 of %2 blocks of transaction history. Descargados %1 de %2 bloques del historial de transacciones. + + + Send coins to a bitcoin address + Enviar monedas a una dirección bitcoin + + + + &Settings + &Configuración + + + + &About %1 + S&obre %1 + + + + Tabs toolbar + Barra de pestañas + + + + &Export... + &Exportar... + + + + &Encrypt Wallet + &Codificar la billetera + %n hour(s) ago @@ -497,6 +477,21 @@ Are you sure you wish to encrypt your wallet? Up to date Actualizado + + + &Help + &Ayuda + + + + [testnet] + [red-de-pruebas] + + + + bitcoin-qt + bitcoin-qt + Catching up... @@ -534,11 +529,6 @@ Cantidad: %2 Tipo: %3 Dirección: %4 - - - Sending... - Enviando... - Wallet is <b>encrypted</b> and currently <b>unlocked</b> @@ -549,6 +539,16 @@ Dirección: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> La billetera esta <b>codificada</b> y actualmente <b>bloqueda</b> + + + Sending... + Enviando... + + + + Actions toolbar + Barra de acciónes + A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -600,11 +600,6 @@ Dirección: %4 &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 en la libreta de direcciones. Solo puede ser modificada para direcciónes de envío. - New receiving address @@ -640,6 +635,11 @@ Dirección: %4 New key generation failed. La generación de nueva clave falló. + + + The address associated with this address book entry. This can only be modified for sending addresses. + La dirección asociada con esta entrada en la libreta de direcciones. Solo puede ser modificada para direcciónes de envío. + The entered address "%1" is not a valid bitcoin address. @@ -749,6 +749,21 @@ Dirección: %4 OverviewPage + + + Total number of transactions in wallet + Número total de transacciones en la billetera + + + + Your current balance + Tu saldo actual + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Total de transacciones que no han sido confirmadas aun, y que no cuentan para el saldo actual. + Form @@ -764,6 +779,11 @@ Dirección: %4 Number of transactions: Numero de transacciones: + + + 0 + 0 + Unconfirmed: @@ -774,39 +794,14 @@ Dirección: %4 Wallet Cartera - - - 0 - 0 - <b>Recent transactions</b> <b>Transacciones recientes</b> - - - Your current balance - Tu saldo actual - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Total de transacciones que no han sido confirmadas aun, y que no cuentan para el saldo actual. - - - - Total number of transactions in wallet - Número total de transacciones en la billetera - SendCoinsDialog - - - Remove all transaction fields - Remover todos los campos de la transacción - @@ -820,9 +815,9 @@ Dirección: %4 Enviar monedas - - Clear all - &Borra todos + + Remove all transaction fields + Remover todos los campos de la transacción @@ -844,16 +839,6 @@ Dirección: %4 &Send &Envía - - - &Add recipient... - &Agrega destinatario... - - - - Send to multiple recipients at once - Enviar a múltiples destinatarios - <b>%1</b> to %2 (%3) @@ -866,13 +851,28 @@ Dirección: %4 - and - y + Are you sure you want to send %1? + Estas seguro que quieres enviar %1? + + + + Send to multiple recipients at once + Enviar a múltiples destinatarios + + + + &Add recipient... + &Agrega destinatario... + + + + Clear all + &Borra todos - Are you sure you want to send %1? - Estas seguro que quieres enviar %1? + and + y @@ -912,6 +912,21 @@ Dirección: %4 SendCoinsEntry + + + A&mount: + Cantidad: + + + + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Introduce una dirección Bitcoin (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Paste address from clipboard + Pega dirección desde portapapeles + Form @@ -948,44 +963,29 @@ Dirección: %4 Alt+A Alt+A - - - Paste address from clipboard - Pega dirección desde portapapeles - - - - Remove this recipient - Elimina destinatario - - - - A&mount: - Cantidad: - Alt+P Alt+P - - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Introduce una dirección Bitcoin (ej. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + Remove this recipient + Elimina destinatario TransactionDesc - - - %1 confirmations - %1 confirmaciónes - unknown desconocido + + + <b>Status:</b> + <b>Estado:</b> + Open for %1 blocks @@ -1002,14 +1002,9 @@ Dirección: %4 %1/fuera de linea? - - %1/unconfirmed - %1/no confirmado - - - - <b>Status:</b> - <b>Estado:</b> + + %1 confirmations + %1 confirmaciónes @@ -1036,6 +1031,12 @@ Dirección: %4 <b>Source:</b> Generated<br> <b>Fuente:</b> Generado<br> + + + + <b>From:</b> + <b>De:</b> + @@ -1048,17 +1049,6 @@ Dirección: %4 (yours, label: (tuya, etiqueta: - - - (yours) - (tuya) - - - - - <b>From:</b> - <b>De:</b> - @@ -1067,11 +1057,41 @@ Dirección: %4 <b>Credit:</b> <b>Crédito:</b> + + + <b>Transaction fee:</b> + <b>Comisión transacción:</b> + + + + <b>Net amount:</b> + <b>Cantidad total:</b> + + + + Comment: + Comentario: + + + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Las monedas generadas deben esperar 120 bloques antes de ser gastadas. Cuando has generado este bloque se emitió a la red para ser agregado en la cadena de bloques. Si falla al incluirse en la cadena, cambiará a "no aceptado" y las monedas no se podrán gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque casi al mismo tiempo que el tuyo. + + + + (yours) + (tuya) + (%1 matures in %2 more blocks) (%1 madura en %2 bloques mas) + + + %1/unconfirmed + %1/no confirmado + (not accepted) @@ -1084,31 +1104,11 @@ Dirección: %4 <b>Debit:</b> <b>Débito:</b> - - - <b>Transaction fee:</b> - <b>Comisión transacción:</b> - - - - <b>Net amount:</b> - <b>Cantidad total:</b> - Message: Mensaje: - - - Comment: - Comentario: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Las monedas generadas deben esperar 120 bloques antes de ser gastadas. Cuando has generado este bloque se emitió a la red para ser agregado en la cadena de bloques. Si falla al incluirse en la cadena, cambiará a "no aceptado" y las monedas no se podrán gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque casi al mismo tiempo que el tuyo. - TransactionDescDialog @@ -1250,39 +1250,64 @@ Dirección: %4 TransactionView - - Type - Tipo + + Mined + Minado - - Label - Etiqueta + + Other + Otra - - Address - Dirección + + Enter address or label to search + Introduce una dirección o etiqueta para buscar - - ID - ID + + Min amount + Cantidad minima - - Could not write to file %1. - No se pudo escribir en el archivo %1. + + Copy address + Copia dirección - - Range: - Rango: + + Edit label + Edita etiqueta - - to - para + + Export Transaction Data + Exportar datos de transacción + + + + Comma separated file (*.csv) + Archivos separados por coma (*.csv) + + + + Date + Fecha + + + + Amount + Cantidad + + + + Error exporting + Error exportando + + + + Range: + Rango: @@ -1321,89 +1346,64 @@ Dirección: %4 Rango... - - Received with - Recibido con + + Label + Etiqueta - - Sent to - Enviado a + + ID + ID - - To yourself - A ti mismo + + Received with + Recibido con - - Mined - Minado + + Type + Tipo - - Other - Otra + + Address + Dirección - - Enter address or label to search - Introduce una dirección o etiqueta para buscar + + Could not write to file %1. + No se pudo escribir en el archivo %1. - - Min amount - Cantidad minima + + Sent to + Enviado a - - Copy address - Copia dirección + + To yourself + A ti mismo Copy label Copia etiqueta - - - Edit label - Edita etiqueta - - - - Export Transaction Data - Exportar datos de transacción - - - - Comma separated file (*.csv) - Archivos separados por coma (*.csv) - Confirmed Confirmado - - - Date - Fecha - Show details... Muestra detalles... - - Amount - Cantidad - - - - Error exporting - Error exportando + + to + para @@ -1421,17 +1421,6 @@ Dirección: %4 Bitcoin version Versión Bitcoin - - - Usage: - Uso: - - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. - - Loading addresses... @@ -1442,42 +1431,35 @@ Dirección: %4 Loading block index... Cargando el index de bloques... - - - Loading wallet... - Cargando cartera... - Rescanning... Rescaneando... - - - Done loading - Carga completa - Invalid amount for -paytxfee=<amount> Cantidad inválida para -paytxfee=<amount> - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. + + Warning: Disk space is low + Atención: Poco espacio en el disco duro - - beta - beta + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Precaución: Por favor revise que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal configurado Bitcoin no funcionará correctamente. - - Send command to -server or bitcoind - - Envia comando a bitcoin lanzado con -server u bitcoind - + + Error: CreateThread(StartNode) failed + Error: CreateThread(StartNode) fallido + + + + Usage: + Uso: @@ -1500,6 +1482,79 @@ Dirección: %4 Opciones: + + + Maintain at most <n> connections to peers (default: 125) + + Mantener al menos <n> conecciones por cliente (por defecto: 125) + + + + Don't bootstrap list of peers using DNS + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + No se puede obtener permiso de trabajo en la carpeta de datos %s. Probablemente Bitcoin ya se está ejecutando. + + + + + Loading wallet... + Cargando cartera... + + + + Done loading + Carga completa + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + No es posible escuchar en el puerto %d en este ordenador. Probablemente Bitcoin ya se está ejecutando. + + + + beta + beta + + + + Send command to -server or bitcoind + + Envia comando a bitcoin lanzado con -server u bitcoind + + + + + Invalid -proxy address + Dirección -proxy invalida + + + + 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. + Specify configuration file (default: bitcoin.conf) @@ -1568,12 +1623,6 @@ Dirección: %4 Escuchar por conecciones en <puerto> (Por defecto: 8333 o red de prueba: 18333) - - - 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 @@ -1599,36 +1648,12 @@ Dirección: %4 No aceptar conexiones desde el exterior - - - Don't bootstrap list of peers using DNS - - - Threshold for disconnecting misbehaving peers (default: 100) Umbral de desconección de clientes con mal comportamiento (por defecto: 100) - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - - Don't attempt to use UPnP to map the listening port @@ -1695,26 +1720,6 @@ Dirección: %4 La billetera necesita ser reescrita: reinicie Bitcoin para completar - - - Invalid -proxy address - Dirección -proxy invalida - - - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - Precaución: -paytxfee es muy alta. Esta es la comisión que pagarás si envias una transacción. - - - - Warning: Disk space is low - Atención: Poco espacio en el disco duro - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Precaución: Por favor revise que la fecha y hora de tu ordenador son correctas. Si tu reloj está mal configurado Bitcoin no funcionará correctamente. - Username for JSON-RPC connections @@ -1842,11 +1847,6 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Error cargando wallet.dat - - - Error: CreateThread(StartNode) failed - Error: CreateThread(StartNode) fallido - main diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index 20797df8a1..81d74f7bd8 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -53,6 +53,16 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt Create a new address Új cím létrehozása + + + Export Address Book Data + Címjegyzék adatainak exportálása + + + + Could not write to file %1. + %1 nevű fájl nem írható. + &New Address... @@ -78,11 +88,6 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt &Delete &Törlés - - - Export Address Book Data - Címjegyzék adatainak exportálása - Comma separated file (*.csv) @@ -93,23 +98,18 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt Error exporting Hiba exportálás közben - - - Could not write to file %1. - %1 nevű fájl nem írható. - AddressTableModel - Label - Címke + Address + Cím - Address - Cím + Label + Címke @@ -120,9 +120,9 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt AskPassphraseDialog - - Dialog - Párbeszéd + + Encrypt wallet + Tárca kódolása @@ -130,9 +130,9 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt SzövegCímke - - Enter passphrase - Add meg a jelszót + + Dialog + Párbeszéd @@ -145,35 +145,45 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt Új jelszó újra - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Írd be az új jelszót a tárcához.<br/>Használj legalább 10<br/>véletlenszerű karaktert</b> vagy <b>legalább nyolc szót</b>. + + + Wallet encrypted + Tárca kódolva - - Encrypt wallet - Tárca kódolása + + + + + Wallet encryption failed + Tárca kódolása sikertelen. - - This operation needs your wallet passphrase to unlock the wallet. - A tárcád megnyitásához a műveletnek szüksége van a tárcád jelszavára. + + + The supplied passphrases do not match. + A megadott jelszavak nem egyeznek. + + + + Wallet unlock failed + Tárca megnyitása sikertelen Unlock wallet Tárca megnyitása + + + This operation needs your wallet passphrase to unlock the wallet. + A tárcád megnyitásához a műveletnek szüksége van a tárcád jelszavára. + This operation needs your wallet passphrase to decrypt the wallet. A tárcád dekódolásához a műveletnek szüksége van a tárcád jelszavára. - - - Decrypt wallet - Tárca dekódolása - Change passphrase @@ -184,6 +194,17 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt Enter the old and new passphrase to the wallet. Írd be a tárca régi és új jelszavát. + + + Wallet decryption failed + Dekódolás sikertelen. + + + + + Warning: The Caps Lock key is on. + + Confirm wallet encryption @@ -197,23 +218,9 @@ Are you sure you wish to encrypt your wallet? Biztosan kódolni akarod a tárcát? - - - Wallet encrypted - Tárca kódolva - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. - - - - - - - Wallet encryption failed - Tárca kódolása sikertelen. + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Írd be az új jelszót a tárcához.<br/>Használj legalább 10<br/>véletlenszerű karaktert</b> vagy <b>legalább nyolc szót</b>. @@ -221,15 +228,9 @@ Biztosan kódolni akarod a tárcát? Tárca kódolása belső hiba miatt sikertelen. A tárcád nem lett kódolva. - - - The supplied passphrases do not match. - A megadott jelszavak nem egyeznek. - - - - Wallet unlock failed - Tárca megnyitása sikertelen + + Decrypt wallet + Tárca dekódolása @@ -239,9 +240,9 @@ Biztosan kódolni akarod a tárcát? Hibás jelszó. - - Wallet decryption failed - Dekódolás sikertelen. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. @@ -249,23 +250,27 @@ Biztosan kódolni akarod a tárcát? Jelszó megváltoztatva. - - - Warning: The Caps Lock key is on. - + + Enter passphrase + Add meg a jelszót BitcoinGUI - - Show the Bitcoin window - A Bitcoin-ablak mutatása + + &Transactions + &Tranzakciók - - Bitcoin Wallet - Bitcoin-tárca + + Send coins to a bitcoin address + Érmék küldése megadott címre + + + + &Encrypt Wallet + Tárca &kódolása @@ -273,26 +278,21 @@ Biztosan kódolni akarod a tárcát? Synchronizing with network... Szinkronizálás a hálózattal... + + + Bitcoin Wallet + Bitcoin-tárca + Block chain synchronization in progress Blokklánc-szinkronizálás folyamatban - - - &Overview - &Áttekintés - Show general overview of wallet Tárca általános áttekintése - - - &Transactions - &Tranzakciók - Browse transaction history @@ -323,11 +323,6 @@ Biztosan kódolni akarod a tárcát? &Send coins Érmék &küldése - - - Send coins to a bitcoin address - Érmék küldése megadott címre - E&xit @@ -364,30 +359,35 @@ Biztosan kódolni akarod a tárcát? A &Bitcoin megnyitása - - &Export... - &Exportálás... - - - - &Encrypt Wallet - Tárca &kódolása + + &Overview + &Áttekintés Encrypt or decrypt wallet Tárca kódolása vagy dekódolása - - - &Change Passphrase - Jelszó &megváltoztatása - Change the passphrase used for wallet encryption Tárcakódoló jelszó megváltoztatása + + + 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? + Ez a tranzakció túllépi a mérethatárt, de %1 tranzakciós díj ellenében így is elküldheted. Ezt a plusz összeget a tranzakcióidat feldolgozó csomópontok kapják, így magát a hálózatot támogatod vele. Hajlandó vagy megfizetni a díjat? + + + + &Export... + &Exportálás... + + + + &Settings + &Beállítások + About &Qt @@ -399,20 +399,22 @@ Biztosan kódolni akarod a tárcát? Információk a Qt ról - - Export the current view to a file - Jelenlegi nézet exportálása fájlba + + [testnet] + [teszthálózat] + + + + %n active connection(s) to Bitcoin network + + %n aktív kapcsolat a Bitcoin-hálózattal + &File &Fájl - - - &Settings - &Beállítások - &Help @@ -423,26 +425,26 @@ Biztosan kódolni akarod a tárcát? Tabs toolbar Fül eszköztár + + + Downloaded %1 blocks of transaction history. + %1 blokk letöltve a tranzakciótörténetből. + Actions toolbar Parancsok eszköztár - - - [testnet] - [teszthálózat] - bitcoin-qt bitcoin-qt - - %n active connection(s) to Bitcoin network + + %n second(s) ago - %n aktív kapcsolat a Bitcoin-hálózattal + %n másodperccel ezelőtt @@ -451,20 +453,23 @@ Biztosan kódolni akarod a tárcát? %1 blokk letöltve a tranzakciótörténet %2 blokkjából. - - Downloaded %1 blocks of transaction history. - %1 blokk letöltve a tranzakciótörténetből. + + Show the Bitcoin window + A Bitcoin-ablak mutatása + + + + Export the current view to a file + Jelenlegi nézet exportálása fájlba + + + + &Change Passphrase + Jelszó &megváltoztatása - - %n second(s) ago - - %n másodperccel ezelőtt - - - - - %n minute(s) ago + + %n minute(s) ago %n perccel ezelőtt @@ -498,16 +503,6 @@ Biztosan kódolni akarod a tárcát? Last received block was generated %1. Az utolsóként kapott blokk generálva: %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? - Ez a tranzakció túllépi a mérethatárt, de %1 tranzakciós díj ellenében így is elküldheted. Ezt a plusz összeget a tranzakcióidat feldolgozó csomópontok kapják, így magát a hálózatot támogatod vele. Hajlandó vagy megfizetni a díjat? - - - - Sending... - Küldés... - Sent transaction @@ -541,6 +536,11 @@ Cím: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> Tárca <b>kódolva</b> és jelenleg <b>zárva</b>. + + + Sending... + Küldés... + A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -582,11 +582,6 @@ Cím: %4 &Label Cím&ke - - - The label associated with this address book entry - A címhez tartozó címke - &Address @@ -617,16 +612,16 @@ Cím: %4 Edit sending address Küldő cím szerkesztése + + + The label associated with this address book entry + A címhez tartozó címke + The entered address "%1" is already in the address book. A megadott "%1" cím már szerepel a címjegyzékben. - - - The entered address "%1" is not a valid bitcoin address. - A megadott "%1" cím nem egy érvényes Bitcoin-cím. - Could not unlock wallet. @@ -637,9 +632,24 @@ Cím: %4 New key generation failed. Új kulcs generálása sikertelen + + + The entered address "%1" is not a valid bitcoin address. + A megadott "%1" cím nem egy érvényes Bitcoin-cím. + MainOptionsPage + + + IP address of the proxy (e.g. 127.0.0.1) + Proxy IP címe (pl.: 127.0.0.1) + + + + Port of the proxy (e.g. 1234) + Proxy portja (pl.: 1234) + &Port: @@ -670,46 +680,16 @@ Cím: %4 Map port using &UPnP &UPnP port-feltérképezés - - - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - A Bitcoin-kliens portjának automatikus megnyitása a routeren. Ez csak akkor működik, ha a routered támogatja az UPnP-t és az engedélyezve is van rajta. - M&inimize on close K&icsinyítés záráskor - - - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Az alkalmazásból való kilépés helyett az eszköztárba kicsinyíti az alkalmazást az ablak bezárásakor. Ez esetben az alkalmazás csak a Kilépés menüponttal zárható be. - - - - &Connect through SOCKS4 proxy: - &Csatlakozás SOCKS4 proxyn keresztül: - - - - Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) - SOCKS4 proxyn keresztüli csatlakozás a Bitcoin hálózatához (pl. Tor-on keresztüli csatlakozás esetén) - Proxy &IP: Proxy &IP: - - - IP address of the proxy (e.g. 127.0.0.1) - Proxy IP címe (pl.: 127.0.0.1) - - - - Port of the proxy (e.g. 1234) - Proxy portja (pl.: 1234) - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. @@ -720,6 +700,26 @@ Cím: %4 Pay transaction &fee Tranzakciós &díj fizetése + + + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + A Bitcoin-kliens portjának automatikus megnyitása a routeren. Ez csak akkor működik, ha a routered támogatja az UPnP-t és az engedélyezve is van rajta. + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. + Az alkalmazásból való kilépés helyett az eszköztárba kicsinyíti az alkalmazást az ablak bezárásakor. Ez esetben az alkalmazás csak a Kilépés menüponttal zárható be. + + + + &Connect through SOCKS4 proxy: + &Csatlakozás SOCKS4 proxyn keresztül: + + + + Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) + SOCKS4 proxyn keresztüli csatlakozás a Bitcoin hálózatához (pl. Tor-on keresztüli csatlakozás esetén) + OptionsDialog @@ -761,10 +761,15 @@ Cím: %4 0 0 + + + Unconfirmed: + Megerősítetlen: + Wallet - + Tárca @@ -786,30 +791,28 @@ Cím: %4 Total number of transactions in wallet Tárca összes tranzakcióinak száma - - - Unconfirmed: - Megerősítetlen: - SendCoinsDialog - - - - - - - - - Send Coins - Érmék küldése + + 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. - - Send to multiple recipients at once - Küldés több címzettnek egyszerre + + 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. + + + + Confirm the send action + Küldés megerősítése + + + + Balance: + Egyenleg: @@ -821,35 +824,15 @@ Cím: %4 Clear all Mindent töröl - - - 123.456 BTC - 123.456 BTC - - - - Confirm the send action - Küldés megerősítése - &Send &Küldés - - &Add recipient... - &Címzett hozzáadása ... - - - - Confirm send coins - Küldés megerősítése - - - - Balance: - Egyenleg: + + 123.456 BTC + 123.456 BTC @@ -857,9 +840,9 @@ Cím: %4 <b>%1</b> %2-re (%3) - - and - és + + Confirm send coins + Küldés megerősítése @@ -867,9 +850,9 @@ Cím: %4 Valóban el akarsz küldeni %1-t? - - The recipient address is not valid, please recheck. - A címzett címe érvénytelen, kérlek, ellenőrizd. + + and + és @@ -877,30 +860,47 @@ Cím: %4 A fizetendő összegnek nagyobbnak kell lennie 0-nál. - - The amount exceeds your balance. - Nincs ennyi bitcoin az egyenlegeden. + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. - - 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. + + + + + + + + + Send Coins + Érmék küldése - - 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. + + Send to multiple recipients at once + Küldés több címzettnek egyszerre + + + + &Add recipient... + &Címzett hozzáadása ... + + + + The recipient address is not valid, please recheck. + A címzett címe érvénytelen, kérlek, ellenőrizd. + + + + The amount exceeds your balance. + Nincs ennyi bitcoin az egyenlegeden. Error: Transaction creation failed. Hiba: nem sikerült létrehozni a tranzakciót. - - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. - SendCoinsEntry @@ -910,14 +910,14 @@ Cím: %4 Űrlap - - A&mount: - Összeg: + + Paste address from clipboard + Cím beillesztése a vágólapról - - Pay &To: - Címzett: + + Alt+P + Alt+P @@ -926,40 +926,40 @@ Cím: %4 Milyen címkével kerüljön be ez a cím a címtáradba? + + + Pay &To: + Címzett: + &Label: - Címke: + &Címke: Choose address from address book Válassz egy címet a címjegyzékből - - - Alt+A - Alt+A - - - - Paste address from clipboard - Cím beillesztése a vágólapról - Remove this recipient Címzett eltávolítása + + + A&mount: + Összeg: + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Címzett címe (pl.: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L ) - - Alt+P - Alt+P + + Alt+A + Alt+A @@ -970,9 +970,9 @@ Cím: %4 TransactionDesc - - Open until %1 - Megnyitva %1-ig + + <b>Status:</b> + <b>Állapot:</b> @@ -984,16 +984,6 @@ Cím: %4 %1 confirmations %1 megerősítés - - - , has not been successfully broadcast yet - , még nem sikerült elküldeni. - - - - unknown - ismeretlen - Open for %1 blocks @@ -1005,9 +995,9 @@ Cím: %4 %1/offline? - - <b>Status:</b> - <b>Állapot:</b> + + Open until %1 + Megnyitva %1-ig @@ -1027,7 +1017,7 @@ Cím: %4 <b>Source:</b> Generated<br> - <b>Forrás:</b> Generálva <br> + <b>Forrás:</b> Generálva<br> @@ -1035,6 +1025,11 @@ Cím: %4 <b>From:</b> <b>Űrlap:</b> + + + unknown + ismeretlen + @@ -1042,6 +1037,16 @@ Cím: %4 <b>To:</b> <b>Címzett:</b> + + + Comment: + Megjegyzés: + + + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + A frissen generált érméket csak 120 blokkal később tudod elkölteni. Ez a blokk nyomban szétküldésre került a hálózatba, amint legeneráltad, hogy hozzáadhassák a blokklánchoz. Ha nem kerül be a láncba, úgy az állapota "elutasítva"-ra módosul, és nem költheted el az érméket. Ez akkor következhet be időnként, ha egy másik csomópont mindössze néhány másodperc különbséggel generált le egy blokkot a tiédhez képest. + (yours, label: @@ -1052,6 +1057,11 @@ Cím: %4 (yours) (tiéd) + + + (%1 matures in %2 more blocks) + (%1, %2 múlva készül el) + @@ -1060,11 +1070,6 @@ Cím: %4 <b>Credit:</b> <b>Jóváírás</b> - - - (%1 matures in %2 more blocks) - (%1, %2 múlva készül el) - (not accepted) @@ -1093,14 +1098,9 @@ Cím: %4 Üzenet: - - Comment: - Megjegyzés: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - A frissen generált érméket csak 120 blokkal később tudod elkölteni. Ez a blokk nyomban szétküldésre került a hálózatba, amint legeneráltad, hogy hozzáadhassák a blokklánchoz. Ha nem kerül be a láncba, úgy az állapota "elutasítva"-ra módosul, és nem költheted el az érméket. Ez akkor következhet be időnként, ha egy másik csomópont mindössze néhány másodperc különbséggel generált le egy blokkot a tiédhez képest. + + , has not been successfully broadcast yet + , még nem sikerült elküldeni. @@ -1118,15 +1118,10 @@ Cím: %4 TransactionTableModel - - - Generated but not accepted - Legenerálva, de még el nem fogadva. - - Date - Dátum + Amount + Összeg @@ -1135,13 +1130,8 @@ Cím: %4 - Address - Cím - - - - Amount - Összeg + Date + Dátum @@ -1160,21 +1150,21 @@ Cím: %4 Offline (%1 confirmations) Offline (%1 megerősítés) - - - Unconfirmed (%1 of %2 confirmations) - Megerősítetlen (%1 %2 megerősítésből) - Confirmed (%1 confirmations) Megerősítve (%1 megerősítés) + + + Unconfirmed (%1 of %2 confirmations) + Megerősítetlen (%1 %2 megerősítésből) + Mined balance will be available in %n more blocks - %n blokk múlva lesz elérhető a bányászott egyenleg + @@ -1182,16 +1172,16 @@ Cím: %4 This block was not received by any other nodes and will probably not be accepted! Ezt a blokkot egyetlen másik csomópont sem kapta meg, így valószínűleg nem lesz elfogadva! + + + Generated but not accepted + Legenerálva, de még el nem fogadva. + Received with Erre a címre - - - Received from - Erről az - Sent to @@ -1218,94 +1208,38 @@ Cím: %4 Tranzakció állapota. Húzd ide a kurzort, hogy lásd a megerősítések számát. - - Date and time that the transaction was received. - Tranzakció fogadásának dátuma és időpontja. - - - - Type of transaction. - Tranzakció típusa. - - - - Destination address of transaction. - A tranzakció címzettjének címe. - - - - Amount removed from or added to balance. - Az egyenleghez jóváírt vagy ráterhelt összeg. - - - - TransactionView - - - - All - Mind - - - - Today - Mai - - - - This week - Ezen a héten - - - - This month - Ebben a hónapban - - - - Last month - Múlt hónapban - - - - This year - Ebben az évben - - - - Range... - Tartomány ... - - - - Received with - Erre a címre - - - - Sent to - Erre a címre + + Date and time that the transaction was received. + Tranzakció fogadásának dátuma és időpontja. - - To yourself - Magadnak + + Type of transaction. + Tranzakció típusa. - - Mined - Kibányászva + + Destination address of transaction. + A tranzakció címzettjének címe. - - Other - Más + + Amount removed from or added to balance. + Az egyenleghez jóváírt vagy ráterhelt összeg. - - Enter address or label to search - Írd be a keresendő címet vagy címkét + + Address + Cím + + + + Received from + Erről az + + + TransactionView Min amount @@ -1376,6 +1310,72 @@ Cím: %4 Error exporting Hiba lépett fel exportálás közben + + + + All + Mind + + + + Today + Mai + + + + This week + Ezen a héten + + + + This month + Ebben a hónapban + + + + Last month + Múlt hónapban + + + + This year + Ebben az évben + + + + To yourself + Magadnak + + + + Sent to + Erre a címre + + + + Mined + Kibányászva + + + + Enter address or label to search + Írd be a keresendő címet vagy címkét + + + + Range... + Tartomány ... + + + + Received with + Erre a címre + + + + Other + Más + Could not write to file %1. @@ -1418,9 +1418,38 @@ Cím: %4 Használat: - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Az %s adatkönyvtár nem zárható. A Bitcoin valószínűleg fut már. + + List commands + + Parancsok kilistázása + + + + + Get help for a command + + Segítség egy parancsról + + + + + Options: + + Opciók + + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + + Csatlakozásokhoz figyelendő <port> (alapértelmezett: 8333 or testnet: 18333) + + + + + Maintain at most <n> connections to peers (default: 125) + + @@ -1433,14 +1462,10 @@ Cím: %4 Blokkindex betöltése... - - Loading wallet... - Tárca betöltése... - - - - Rescanning... - Újraszkennelés... + + Wallet needed to be rewritten: restart Bitcoin to complete + + @@ -1452,6 +1477,41 @@ Cím: %4 Error: CreateThread(StartNode) failed Hiba: CreateThread(StartNode) sikertelen + + + Invalid amount for -paytxfee=<amount> + Étvénytelen -paytxfee=<összeg> összeg + + + + Warning: Disk space is low + Figyelem: kevés a hely a lemezen + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + A %d port nem elérhető ezen a gépen. A Bitcoin valószínűleg fut már. + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Az %s adatkönyvtár nem zárható. A Bitcoin valószínűleg fut már. + + + + Loading wallet... + Tárca betöltése... + + + + Done loading + Betöltés befejezve. + + + + Rescanning... + Újraszkennelés... + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. @@ -1465,25 +1525,14 @@ Cím: %4 - - List commands - - Parancsok kilistázása - - - - - Get help for a command - - Segítség egy parancsról - + + Invalid -proxy address + Érvénytelen -proxy cím - - Options: - - Opciók - + + beta + béta @@ -1546,18 +1595,6 @@ Cím: %4 DNS-kikeresés engedélyezése az addnode-nál és a connect-nél - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - - - - - - Maintain at most <n> connections to peers (default: 125) - - - Add a node to connect to @@ -1730,42 +1767,6 @@ 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) - - - Wallet needed to be rewritten: restart Bitcoin to complete - - - - - - Done loading - Betöltés befejezve. - - - - Invalid -proxy address - Érvénytelen -proxy cím - - - - Invalid amount for -paytxfee=<amount> - Étvénytelen -paytxfee=<összeg> összeg - - - - Warning: Disk space is low - Figyelem: kevés a hely a lemezen - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - A %d port nem elérhető ezen a gépen. A Bitcoin valószínűleg fut már. - - - - beta - béta - Use OpenSSL (https) for JSON-RPC connections diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts index ebf2e926b2..c76be020fa 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -79,11 +79,6 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso &Delete &Cancella - - - Export Address Book Data - Esporta gli indirizzi della rubrica - Comma separated file (*.csv) @@ -99,6 +94,11 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Could not write to file %1. Impossibile scrivere sul file %1. + + + Export Address Book Data + Esporta gli indirizzi della rubrica + AddressTableModel @@ -121,14 +121,19 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso AskPassphraseDialog - - Dialog - Dialogo + + New passphrase + Nuova passphrase - - TextLabel - Etichetta + + This operation needs your wallet passphrase to unlock the wallet. + Quest'operazione necessita della passphrase per sbloccare il portamonete. + + + + Decrypt wallet + Decifra il portamonete @@ -136,9 +141,12 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Inserisci la passphrase - - New passphrase - Nuova passphrase + + + + + Wallet encryption failed + Cifratura del portamonete fallita @@ -146,50 +154,43 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Ripeti la passphrase - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Inserisci la passphrase per il portamonete.<br/>Per piacere usare unapassphrase di <b>10 o più caratteri casuali</b>, o <b>otto o più parole</b>. + + + The supplied passphrases do not match. + Le passphrase inserite non corrispondono. - - Encrypt wallet - Cifra il portamonete + + + + The passphrase entered for the wallet decryption was incorrect. + La passphrase inserita per la decifrazione del portamonete è errata. - - This operation needs your wallet passphrase to unlock the wallet. - Quest'operazione necessita della passphrase per sbloccare il portamonete. + + TextLabel + Etichetta - - Unlock wallet - Sblocca il portamonete + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Inserisci la passphrase per il portamonete.<br/>Per piacere usare unapassphrase di <b>10 o più caratteri casuali</b>, o <b>otto o più parole</b>. + + + + Dialog + Dialogo This operation needs your wallet passphrase to decrypt the wallet. Quest'operazione necessita della passphrase per decifrare il portamonete, - - - Decrypt wallet - Decifra il portamonete - - - - Change passphrase - Cambia la passphrase - Enter the old and new passphrase to the wallet. Inserisci la vecchia e la nuova passphrase per il portamonete. - - - Confirm wallet encryption - Conferma la cifratura del portamonete - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! @@ -197,6 +198,16 @@ Are you sure you wish to encrypt your wallet? ATTENZIONE: se si cifra il portamonete e si perde la frase d'ordine, <b>SI PERDERANNO TUTTI I PROPRI BITCOIN</b>! Si è sicuri di voler cifrare il portamonete? + + + Encrypt wallet + Cifra il portamonete + + + + Unlock wallet + Sblocca il portamonete + @@ -208,42 +219,31 @@ Si è sicuri di voler cifrare il portamonete? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin verrà ora chiuso per finire il processo di crittazione. Ricorda che criptare il tuo portamonete non può fornire una protezione totale contro furti causati da malware che dovessero infettare il tuo computer. - - - - - - Wallet encryption failed - Cifratura del portamonete fallita - Wallet encryption failed due to an internal error. Your wallet was not encrypted. Cifratura del portamonete fallita a causa di un errore interno. Il portamonete non è stato cifrato. - - - - The supplied passphrases do not match. - Le passphrase inserite non corrispondono. - Wallet unlock failed Sblocco del portamonete fallito - - - - The passphrase entered for the wallet decryption was incorrect. - La passphrase inserita per la decifrazione del portamonete è errata. + + Change passphrase + Cambia la passphrase Wallet decryption failed Decifrazione del portamonete fallita + + + Confirm wallet encryption + Conferma la cifratura del portamonete + Wallet passphrase was successfully changed. @@ -259,14 +259,24 @@ Si è sicuri di voler cifrare il portamonete? BitcoinGUI - - &About %1 - &Informazioni su %1 + + &Receive coins + &Ricevi monete - - Bitcoin Wallet - Portamonete di bitcoin + + Show the list of addresses for receiving payments + Mostra la lista di indirizzi su cui ricevere pagamenti + + + + About &Qt + Informazioni su &Qt + + + + Change the passphrase used for wallet encryption + Cambia la passphrase per la cifratura del portamonete @@ -275,30 +285,20 @@ Si è sicuri di voler cifrare il portamonete? Sto sincronizzando con la rete... - - Block chain synchronization in progress - sincronizzazione della catena di blocchi in corso + + Bitcoin Wallet + Portamonete di bitcoin &Overview &Sintesi - - - Show general overview of wallet - Mostra lo stato generale del portamonete - &Transactions &Transazioni - - - Browse transaction history - Cerca nelle transazioni - &Address Book @@ -309,26 +309,11 @@ Si è sicuri di voler cifrare il portamonete? Edit the list of stored addresses and labels Modifica la lista degli indirizzi salvati e delle etichette - - - &Receive coins - &Ricevi monete - - - - Show the list of addresses for receiving payments - Mostra la lista di indirizzi su cui ricevere pagamenti - &Send coins &Invia monete - - - Send coins to a bitcoin address - Invia monete ad un indirizzo bitcoin - E&xit @@ -339,76 +324,46 @@ Si è sicuri di voler cifrare il portamonete? Quit application Chiudi applicazione - - - Show information about Bitcoin - Mostra informazioni su Bitcoin - &Options... &Opzioni... - - - Modify configuration options for bitcoin - Modifica configurazione opzioni per bitcoin - - - - Open &Bitcoin - Apri &Bitcoin - - - - Show the Bitcoin window - Mostra la finestra Bitcoin - - - - &Export... - &Esporta... - - - - Export the current view to a file - Esporta la visualizzazione corrente su file - - - - &Encrypt Wallet - &Cifra il portamonete - Encrypt or decrypt wallet Cifra o decifra il portamonete - - &Change Passphrase - &Cambia la passphrase - - - - Change the passphrase used for wallet encryption - Cambia la passphrase per la cifratura del portamonete + + &Encrypt Wallet + &Cifra il portamonete - - About &Qt - Informazioni su &Qt + + Show information about Bitcoin + Mostra informazioni su Bitcoin Show information about Qt Mostra informazioni su Qt + + + &Export... + &Esporta... + &File &File + + + &About %1 + &Informazioni su %1 + &Settings @@ -442,16 +397,56 @@ Si è sicuri di voler cifrare il portamonete? %n connessioni attive alla rete Bitcoin + + + &Change Passphrase + &Cambia la passphrase + + + + Block chain synchronization in progress + sincronizzazione della catena di blocchi in corso + + + + Show general overview of wallet + Mostra lo stato generale del portamonete + + + + Browse transaction history + Cerca nelle transazioni + + + + Send coins to a bitcoin address + Invia monete ad un indirizzo bitcoin + + + + Modify configuration options for bitcoin + Modifica configurazione opzioni per bitcoin + + + + Open &Bitcoin + Apri &Bitcoin + + + + Show the Bitcoin window + Mostra la finestra Bitcoin + + + + Export the current view to a file + Esporta la visualizzazione corrente su file + Downloaded %1 blocks of transaction history. Scaricati %1 blocchi dello storico transazioni. - - - bitcoin-qt - bitcoin-qt - %n second(s) ago @@ -468,11 +463,6 @@ Si è sicuri di voler cifrare il portamonete? %n minuti fa - - - Downloaded %1 of %2 blocks of transaction history. - Scaricati %1 dei %2 blocchi dello storico transazioni. - %n hour(s) ago @@ -533,11 +523,6 @@ Indirizzo: %4 - - - Sending... - Invio... - Wallet is <b>encrypted</b> and currently <b>unlocked</b> @@ -548,6 +533,21 @@ Indirizzo: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> Il portamonete è <b>cifrato</b> e attualmente <b>bloccato</b> + + + Sending... + Invio... + + + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + Scaricati %1 dei %2 blocchi dello storico transazioni. + A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -556,16 +556,16 @@ Indirizzo: %4 DisplayOptionsPage - - - &Unit to show amounts in: - &Unità di misura degli importi in: - Choose the default subdivision unit to show in the interface, and when sending coins Scegli l'unità di suddivisione di default per l'interfaccia e per l'invio di monete + + + &Unit to show amounts in: + &Unità di misura degli importi in: + &Display addresses in transaction list @@ -594,16 +594,6 @@ Indirizzo: %4 The label associated with this address book entry L'etichetta associata a questo indirizzo nella rubrica - - - &Address - &Indirizzo - - - - The address associated with this address book entry. This can only be modified for sending addresses. - L'indirizzo associato a questa voce della rubrica. Si può modificare solo negli indirizzi di spedizione. - New receiving address @@ -614,15 +604,10 @@ Indirizzo: %4 New sending address Nuovo indirizzo d'invio - - - Edit receiving address - Modifica indirizzo di ricezione - - - - Edit sending address - Modifica indirizzo d'invio + + + Edit receiving address + Modifica indirizzo di ricezione @@ -634,11 +619,26 @@ Indirizzo: %4 Could not unlock wallet. Impossibile sbloccare il portamonete. + + + &Address + &Indirizzo + New key generation failed. Generazione della nuova chiave non riuscita. + + + The address associated with this address book entry. This can only be modified for sending addresses. + L'indirizzo associato a questa voce della rubrica. Si può modificare solo negli indirizzi di spedizione. + + + + Edit sending address + Modifica indirizzo d'invio + The entered address "%1" is not a valid bitcoin address. @@ -672,16 +672,16 @@ Indirizzo: %4 Map port using &UPnP Mappa le porte tramite l'&UPnP - - - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Apri automaticamente la porta del client Bitcoin sul router. Questo funziona solo se il router supporta UPnP ed è abilitato. - M&inimize on close M&inimizza alla chiusura + + + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + Apri automaticamente la porta del client Bitcoin sul router. Questo funziona solo se il router supporta UPnP ed è abilitato. + 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. @@ -697,21 +697,6 @@ Indirizzo: %4 Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Connettiti alla rete Bitcon attraverso un proxy SOCKS4 (ad esempio quando ci si collega via Tor) - - - Port of the proxy (e.g. 1234) - Porta del proxy (es. 1234) - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. - - - - Pay transaction &fee - Paga la &commissione - Proxy &IP: @@ -720,13 +705,28 @@ Indirizzo: %4 IP address of the proxy (e.g. 127.0.0.1) - Indirizzo IP del proxy (ad esempio 127.0.0.1) + Indirizzo IP del proxy (ad esempio 127.0.0.1) &Port: &Porta: + + + Port of the proxy (e.g. 1234) + Porta del proxy (es. 1234) + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. + Commissione di transazione per kB; è opzionale e contribuisce ad assicurare che le transazioni siano elaborate velocemente. Le transazioni sono per la maggior parte da 1 kB. Commissione raccomandata 0,01. + + + + Pay transaction &fee + Paga la &commissione + OptionsDialog @@ -748,6 +748,21 @@ Indirizzo: %4 OverviewPage + + + Total number of transactions in wallet + Numero delle transazioni effettuate + + + + Your current balance + Saldo attuale + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Totale delle transazioni in corso di conferma, che non sono ancora incluse nel saldo attuale + Form @@ -763,6 +778,11 @@ Indirizzo: %4 Number of transactions: Numero di transazioni: + + + 0 + 0 + Unconfirmed: @@ -773,39 +793,14 @@ Indirizzo: %4 Wallet Portamonete - - - 0 - 0 - <b>Recent transactions</b> <b>Transazioni recenti</b> - - - Your current balance - Saldo attuale - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Totale delle transazioni in corso di conferma, che non sono ancora incluse nel saldo attuale - - - - Total number of transactions in wallet - Numero delle transazioni effettuate - SendCoinsDialog - - - Remove all transaction fields - Rimuovi tutti i campi della transazione - @@ -819,45 +814,35 @@ Indirizzo: %4 Spedisci Bitcoin - - &Add recipient... - &Aggiungi beneficiario... + + Balance: + Saldo: - - Clear all - Cancella tutto + + Confirm the send action + Conferma la spedizione 123.456 BTC 123,456 BTC - - - Confirm the send action - Conferma la spedizione - &Send &Spedisci - - - Send to multiple recipients at once - Spedisci a diversi beneficiari in una volta sola - - - - Balance: - Saldo: - <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) + + + Remove all transaction fields + Rimuovi tutti i campi della transazione + Confirm send coins @@ -868,25 +853,40 @@ Indirizzo: %4 Are you sure you want to send %1? Si è sicuri di voler spedire %1? + + + &Add recipient... + &Aggiungi beneficiario... + + + + Clear all + Cancella tutto + + + + Send to multiple recipients at once + Spedisci a diversi beneficiari in una volta sola + and e - - - 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 recipient address is not valid, please recheck. + L'indirizzo del beneficiario non è valido, per cortesia controlla. + The amount exceeds your balance. - L'importo è superiore al saldo attuale. + Nincs ennyi bitcoin az egyenlegeden. @@ -906,89 +906,84 @@ Indirizzo: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Errore: la transazione è stata rifiutata. Ciò accade se alcuni bitcoin nel portamonete sono stati già spesi, ad esempio se è stata usata una copia del file wallet.dat e i bitcoin sono stati spesi dalla copia ma non segnati come spesi qui. + Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. SendCoinsEntry - - Form - Modulo + + + Enter a label for this address to add it to your address book + Inserisci un'etichetta per questo indirizzo, per aggiungerlo nella rubrica - - A&mount: - &Importo: + + Paste address from clipboard + Incollare l'indirizzo dagli appunti - - Pay &To: - Paga &a: + + Form + Modulo - - - Enter a label for this address to add it to your address book - Inserisci un'etichetta per questo indirizzo, per aggiungerlo nella rubrica + + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Inserisci un indirizzo Bitcoin (ad esempio 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) &Label: - &Etichetta: + &Etichetta The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) L'indirizzo del beneficiario cui inviare il pagamento (ad esempio 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + Choose address from address book + Scegli l'indirizzo dalla rubrica + + + + Alt+P + Alt+P + Alt+A Alt+A - - Paste address from clipboard - Incollare l'indirizzo dagli appunti + + A&mount: + &Importo: - - Alt+P - Alt+P + + Pay &To: + Paga &a: Remove this recipient Rimuovere questo beneficiario - - - Choose address from address book - Scegli l'indirizzo dalla rubrica - - - - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Inserisci un indirizzo Bitcoin (ad esempio 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - TransactionDesc - - , has not been successfully broadcast yet - , non è stato ancora trasmesso con successo + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Bisogna attendere 120 blocchi prima di spendere I bitcoin generati. Quando è stato generato questo blocco, è stato trasmesso alla rete per aggiungerlo alla catena di blocchi. Se non riesce a entrare nella catena, verrà modificato in "non accettato" e non sarà spendibile. Questo può accadere a volte, se un altro nodo genera un blocco entro pochi secondi del tuo. Open for %1 blocks - Aperto per %1 blocchi - - - - Open until %1 - Aperto fino a %1 + Megnyitva %1 blokkra @@ -1000,16 +995,16 @@ Indirizzo: %4 %1/unconfirmed %1/non confermato - - - %1 confirmations - %1 conferme - <b>Status:</b> <b>Stato:</b> + + + , has not been successfully broadcast yet + , non è stato ancora trasmesso con successo + , broadcast through %1 node @@ -1036,11 +1031,6 @@ Indirizzo: %4 <b>From:</b> <b>Da:</b> - - - unknown - sconosciuto - @@ -1086,7 +1076,7 @@ Indirizzo: %4 <b>Transaction fee:</b> - <b>Commissione:</b> + <b>Tranzakciós díj:</b> @@ -1094,33 +1084,43 @@ Indirizzo: %4 <b>Importo netto:</b> - - Message: - Messaggio: + + Message: + Messaggio: + + + + Open until %1 + Aperto fino a %1 + + + + %1 confirmations + %1 conferme + + + + unknown + sconosciuto Comment: Commento: - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Bisogna attendere 120 blocchi prima di spendere I bitcoin generati. Quando è stato generato questo blocco, è stato trasmesso alla rete per aggiungerlo alla catena di blocchi. Se non riesce a entrare nella catena, verrà modificato in "non accettato" e non sarà spendibile. Questo può accadere a volte, se un altro nodo genera un blocco entro pochi secondi del tuo. - TransactionDescDialog - - - Transaction details - Dettagli sulla transazione - This pane shows a detailed description of the transaction Questo pannello mostra una descrizione dettagliata della transazione + + + Transaction details + Dettagli sulla transazione + TransactionTableModel @@ -1249,25 +1249,65 @@ Indirizzo: %4 TransactionView - - Type - Tipo + + Copy label + Copia l'etichetta + + + + Edit label + Modifica l'etichetta + + + + Export Transaction Data + Esporta i dati della transazione + + + + Comma separated file (*.csv) + Testo CSV (*.csv) + + + + Confirmed + Confermato + + + + Address + Indirizzo + + + + ID + ID + + + + Show details... + Mostra i dettagli... Label Etichetta - - - Amount - Importo - Error exporting Errore nell'esportazione + + + Type + Tipo + + + + Amount + Importo + Could not write to file %1. @@ -1309,21 +1349,11 @@ Indirizzo: %4 This year Quest'anno - - - Range... - Intervallo... - Received with Ricevuto tramite - - - Sent to - Spedito a - To yourself @@ -1339,6 +1369,16 @@ Indirizzo: %4 Other Altro + + + Date + Data + + + + to + a + Enter address or label to search @@ -1355,54 +1395,14 @@ Indirizzo: %4 Copia l'indirizzo - - Copy label - Copia l'etichetta - - - - Edit label - Modifica l'etichetta - - - - Export Transaction Data - Esporta i dati della transazione - - - - Comma separated file (*.csv) - Testo CSV (*.csv) - - - - Confirmed - Confermato - - - - Date - Data - - - - Show details... - Mostra i dettagli... - - - - Address - Indirizzo - - - - ID - ID + + Range... + Intervallo... - - to - a + + Sent to + Spedito a @@ -1420,11 +1420,6 @@ Indirizzo: %4 Bitcoin version Versione di Bitcoin - - - Usage: - Utilizzo: - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. @@ -1440,16 +1435,6 @@ Indirizzo: %4 Loading block index... Caricamento dell'indice del blocco... - - - Loading wallet... - Caricamento portamonete... - - - - Rescanning... - Ripetere la scansione... - Done loading @@ -1460,16 +1445,6 @@ Indirizzo: %4 Invalid -proxy address Indirizzo -proxy non valido - - - Invalid amount for -paytxfee=<amount> - Importo non valido per -paytxfee=<amount> - - - - 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. - Error: CreateThread(StartNode) failed @@ -1480,6 +1455,56 @@ Indirizzo: %4 Unable to bind to port %d on this computer. Bitcoin is probably already running. Impossibile collegarsi alla porta %d su questo computer. Probabilmente Bitcoin è già in esecuzione. + + + Warning: Disk space is low + Attenzione: lo spazio su disco è scarso + + + + Usage: + Utilizzo: + + + + List commands + + Lista comandi + + + + + Don't generate coins + + Non generare Bitcoin + + + + + Don't find peers using internet relay chat + + + + + + Loading wallet... + Caricamento portamonete... + + + + Rescanning... + Ripetere la scansione... + + + + Invalid amount for -paytxfee=<amount> + Importo non valido per -paytxfee=<amount> + + + + 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 Bitcoin will not work properly. @@ -1493,11 +1518,9 @@ Indirizzo: %4 - - List commands - - Lista comandi - + + beta + beta @@ -1532,13 +1555,6 @@ Indirizzo: %4 Generate coins Genera Bitcoin - - - - - Don't generate coins - - Non generare Bitcoin @@ -1599,12 +1615,6 @@ Indirizzo: %4 Connetti solo al nodo specificato - - - Don't find peers using internet relay chat - - - Don't accept connections from outside @@ -1690,16 +1700,6 @@ Indirizzo: %4 Invia le informazioni di trace/debug al debugger - - - Warning: Disk space is low - Attenzione: lo spazio su disco è scarso - - - - beta - beta - Run in the background as a daemon and accept commands diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index 67e3732969..fc24926303 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -67,7 +67,7 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &Copy to Clipboard - &Kopier til utklippstavle + &Kopier til utklippstavle @@ -79,11 +79,6 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &Delete &Slett - - - Export Address Book Data - Eksporter adressebok - Comma separated file (*.csv) @@ -99,6 +94,11 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Could not write to file %1. Kunne ikke skrive til filen %1. + + + Export Address Book Data + Eksporter adressebok + AddressTableModel @@ -120,11 +120,6 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i AskPassphraseDialog - - - Enter passphrase - Angi adgangsfrase - New passphrase @@ -141,29 +136,9 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Dialog - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Skriv inn den nye adgangsfrasen for lommeboken.<br/>Vennligst bruk en adgangsfrase med <b>10 eller flere tilfeldige tegn</b>, eller <b>åtte eller flere ord</b>. - - - - TextLabel - Merkelapp - - - - Encrypt wallet - Krypter lommebok - - - - This operation needs your wallet passphrase to unlock the wallet. - Denne operasjonen krever adgangsfrasen til lommeboken for å låse den opp. - - - - Unlock wallet - Lås opp lommebok + + Enter passphrase + Angi adgangsfrase @@ -171,31 +146,37 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Denne operasjonen krever adgangsfrasen til lommeboken for å dekryptere den. - - Decrypt wallet - Dekrypter lommebok + + TextLabel + Merkelapp - - Change passphrase - Endre adgangsfrase + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + ADVARSEL: Hvis du krypterer lommeboken og mister adgangsfrasen vil du <b>MISTE ALLE DINE BITCOINS</b>! +Er du sikker på at du vil kryptere lommeboken? - - Enter the old and new passphrase to the wallet. - Skriv inn gammel og ny adgangsfrase for lommeboken. + + Wallet unlock failed + Opplåsing av lommebok feilet - - - Wallet encrypted - Lommebok kryptert + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Skriv inn den nye adgangsfrasen for lommeboken.<br/>Vennligst bruk en adgangsfrase med <b>10 eller flere tilfeldige tegn</b>, eller <b>åtte eller flere ord</b>. Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. + + + This operation needs your wallet passphrase to unlock the wallet. + Denne operasjonen krever adgangsfrasen til lommeboken for å låse den opp. + @@ -205,20 +186,29 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Kryptering av lommebok feilet - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Kryptering av lommebok feilet på grunn av en intern feil. Din lommebok ble ikke kryptert. + + Decrypt wallet + Dekrypter lommebok - - - The supplied passphrases do not match. - De angitte adgangsfrasene er ulike. + + Encrypt wallet + Krypter lommebok - - Wallet unlock failed - Opplåsing av lommebok feilet + + Change passphrase + Endre adgangsfrase + + + + Enter the old and new passphrase to the wallet. + Skriv inn gammel og ny adgangsfrase for lommeboken. + + + + Unlock wallet + Lås opp lommebok @@ -227,22 +217,32 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i The passphrase entered for the wallet decryption was incorrect. Adgangsfrasen angitt for dekryptering av lommeboken var feil. + + + Wallet passphrase was successfully changed. + Adgangsfrase for lommebok endret. + + + + + Wallet encrypted + Lommebok kryptert + Wallet decryption failed Dekryptering av lommebok feilet - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - ADVARSEL: Hvis du krypterer lommeboken og mister adgangsfrasen vil du <b>MISTE ALLE DINE BITCOINS</b>! -Er du sikker på at du vil kryptere lommeboken? + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Kryptering av lommebok feilet på grunn av en intern feil. Din lommebok ble ikke kryptert. - - Wallet passphrase was successfully changed. - Adgangsfrase for lommebok endret. + + + The supplied passphrases do not match. + De angitte adgangsfrasene er ulike. @@ -259,9 +259,19 @@ Er du sikker på at du vil kryptere lommeboken? BitcoinGUI - - Bitcoin Wallet - Bitcoin Lommebok + + Edit the list of stored addresses and labels + Rediger listen over adresser og deres merkelapper + + + + &Receive coins + &Motta bitcoins + + + + &Send coins + &Send bitcoins @@ -270,14 +280,9 @@ Er du sikker på at du vil kryptere lommeboken? Synkroniserer med nettverk... - - Block chain synchronization in progress - Synkronisering av blokk-kjede igang - - - - &Overview - &Oversikt + + Bitcoin Wallet + Bitcoin Lommebok @@ -285,39 +290,44 @@ Er du sikker på at du vil kryptere lommeboken? Vis generell oversikt over lommeboken - - &Transactions - &Transaksjoner + + Show the list of addresses for receiving payments + Vis listen over adresser for mottak av betalinger - - Browse transaction history - Vis transaksjonshistorikk + + &Export... + &Eksporter... - - &Address Book - &Adressebok + + &Help + &Hjelp - - Edit the list of stored addresses and labels - Rediger listen over adresser og deres merkelapper + + &Settings + &Innstillinger - - &Receive coins - &Motta bitcoins + + Block chain synchronization in progress + Synkronisering av blokk-kjede igang - - Show the list of addresses for receiving payments - Vis listen over adresser for mottak av betalinger + + &Overview + &Oversikt - - &Send coins - &Send bitcoins + + &Transactions + &Transaksjoner + + + + &Address Book + &Adressebok @@ -330,79 +340,57 @@ Er du sikker på at du vil kryptere lommeboken? &Avslutt - - &About %1 - &Om %1 + + Show the Bitcoin window + Vis Bitcoin-vinduet - - &Export... - &Eksporter... + + Downloaded %1 of %2 blocks of transaction history. + Lastet ned %1 av %2 blokker med transaksjonshistorikk. - - - Export the current view to a file - Eksporter visningen til en fil + + + %n hour(s) ago + + + + - - &Change Passphrase - &Endre Adgangsfrase + + Sending... + Sender... Change the passphrase used for wallet encryption Endre adgangsfrasen brukt for kryptering av lommebok - - - Sending... - Sender... - About &Qt Om &Qt - - Show information about Qt - Vis informasjon om Qt - - - - &File - &Fil - - - - &Settings - &Innstillinger - - - - &Help - &Hjelp - - - - Tabs toolbar - Verktøylinje for faner + + Browse transaction history + Vis transaksjonshistorikk - - Actions toolbar - Verktøylinje for handlinger + + Export the current view to a file + Eksporter visningen til en fil - - [testnet] - [testnett] + + Quit application + Avslutt applikasjonen - - &Options... - &Innstillinger... + + Show information about Bitcoin + Vis informasjon om Bitcoin @@ -413,24 +401,9 @@ Er du sikker på at du vil kryptere lommeboken? - - Modify configuration options for bitcoin - Endre innstillinger for bitcoin - - - - Open &Bitcoin - Åpne &Bitcoin - - - - Show the Bitcoin window - Vis Bitcoin-vinduet - - - - Downloaded %1 blocks of transaction history. - Lastet ned %1 blokker med transaksjonshistorikk. + + Encrypt or decrypt wallet + Krypter eller dekrypter lommebok @@ -454,22 +427,24 @@ Er du sikker på at du vil kryptere lommeboken? - - Quit application - Avslutt applikasjonen + + Open &Bitcoin + Åpne &Bitcoin - - - %n hour(s) ago - - for %n time siden - for %n timer siden - + + + Actions toolbar + Verktøylinje for handlinger - - Show information about Bitcoin - Vis informasjon om Bitcoin + + Last received block was generated %1. + Siste mottatte blokk ble generert %1. + + + + &File + &Fil @@ -489,16 +464,6 @@ Er du sikker på at du vil kryptere lommeboken? Catching up... Kommer ajour... - - - Last received block was generated %1. - Siste mottatte blokk ble generert %1. - - - - Encrypt or decrypt wallet - Krypter eller dekrypter lommebok - 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? @@ -538,20 +503,55 @@ Adresse: %4 Lommeboken er <b>kryptert</b> og for tiden <b>låst</b> - - bitcoin-qt - bitcoin-qt + + &About %1 + &Om %1 - - Downloaded %1 of %2 blocks of transaction history. - Lastet ned %1 av %2 blokker med transaksjonshistorikk. + + Show information about Qt + Vis informasjon om Qt + + + + &Options... + &Innstillinger... + + + + Modify configuration options for bitcoin + Endre innstillinger for bitcoin A fatal error occurred. Bitcoin can no longer continue safely and will quit. En fatal feil har inntruffet. Det er ikke trygt å fortsette og Bitcoin må derfor avslutte. + + + &Change Passphrase + &Endre Adgangsfrase + + + + Tabs toolbar + Verktøylinje for faner + + + + [testnet] + [testnett] + + + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 blocks of transaction history. + Lastet ned %1 blokker med transaksjonshistorikk. + DisplayOptionsPage @@ -646,16 +646,16 @@ Adresse: %4 MainOptionsPage - - - &Start Bitcoin on window system startup - &Start Bitcoin ved oppstart - Automatically start Bitcoin after the computer is turned on Start Bitcoin automatisk når datamaskinen blir slått på + + + &Start Bitcoin on window system startup + &Start Bitcoin ved oppstart + &Minimize to the tray instead of the taskbar @@ -666,16 +666,6 @@ Adresse: %4 Show only a tray icon after minimizing the window Vis kun ikon i systemkurv etter minimering av vinduet - - - Map port using &UPnP - Sett opp port vha. &UPnP - - - - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Åpne automatisk Bitcoin klientporten på ruteren. Dette virker kun om din ruter støtter UPnP og dette er påslått. - M&inimize on close @@ -686,6 +676,16 @@ Adresse: %4 Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. Minimerer vinduet istedenfor å avslutte applikasjonen når vinduet lukkes. Når dette er slått på avsluttes applikasjonen kun ved å velge avslutt i menyen. + + + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + Åpne automatisk Bitcoin klientporten på ruteren. Dette virker kun om din ruter støtter UPnP og dette er påslått. + + + + Map port using &UPnP + Sett opp port vha. &UPnP + &Connect through SOCKS4 proxy: @@ -694,38 +694,38 @@ Adresse: %4 Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) - Koble til Bitcoin-nettverket gjennom en SOCKS4 proxy (f.eks. ved tilkobling gjennom Tor) + Koble til Bitcoin nettverket gjennom en SOCKS4 mellomtjener (f.eks. for tilkobling gjennom Tor) + + + + IP address of the proxy (e.g. 127.0.0.1) + IP-adresse for mellomtjener (f.eks. 127.0.0.1) + + + + Port of the proxy (e.g. 1234) + Port for mellomtjener (f.eks. 1234) Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. + Valgfritt transaksjonsgebyr per kB som sikrer at dine transaksjoner blir raskt prosessert. De fleste transaksjoner er 1 kB. Et gebyr på 0.01 er anbefalt. Pay transaction &fee - Betal transaksjons&gebyr + Betal transaksjons&gebyr Proxy &IP: Mellomtjeners &IP: - - - IP address of the proxy (e.g. 127.0.0.1) - IP-adresse for mellomtjener (f.eks. 127.0.0.1) - &Port: &Port: - - - Port of the proxy (e.g. 1234) - Port for mellomtjener (f.eks. 1234) - OptionsDialog @@ -734,16 +734,16 @@ Adresse: %4 Main Hoved - - - Display - Visning - Options Innstillinger + + + Display + Visning + OverviewPage @@ -753,14 +753,9 @@ Adresse: %4 Skjema - - Balance: - Saldo: - - - - Number of transactions: - Antall transaksjoner: + + 0 + 0 @@ -773,9 +768,9 @@ Adresse: %4 Lommebok - - 0 - 0 + + Balance: + Saldo: @@ -787,6 +782,11 @@ Adresse: %4 Total of transactions that have yet to be confirmed, and do not yet count toward the current balance Totalt antall ubekreftede transaksjoner som ikke telles med i saldo enda + + + Number of transactions: + Antall transaksjoner: + Total number of transactions in wallet @@ -812,41 +812,6 @@ Adresse: %4 Send Coins Send Bitcoins - - - Send to multiple recipients at once - Send til flere enn én mottaker - - - - &Add recipient... - &Legg til mottaker... - - - - Clear all - Fjern alle - - - - Balance: - Saldo: - - - - 123.456 BTC - 123.456 BTC - - - - Confirm the send action - Bekreft sending - - - - &Send - &Send - Remove all transaction fields @@ -873,19 +838,54 @@ Adresse: %4 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. + + + + Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Feil: Transaksjonen ble avvist. Dette kan skje om noe av beløpet allerede var brukt, f.eks. hvis du kopierte wallet.dat og noen bitcoins ble brukt i kopien men ikke ble markert som brukt her. + + + + The recipient address is not valid, please recheck. + Adresse for mottaker er ugyldig. + + + + Send to multiple recipients at once + Send til flere enn én mottaker + + + + &Add recipient... + &Legg til mottaker... + + + + Clear all + Fjern alle + + + + Balance: + Saldo: + + + + 123.456 BTC + 123.456 BTC - - The amount to pay must be larger than 0. - Beløpen som skal betales må være over 0. + + Confirm the send action + Bekreft sending - - The amount exceeds your balance. - Beløpet overstiger saldo. + + &Send + &Send @@ -903,28 +903,33 @@ Adresse: %4 Feil: opprettelse av transaksjon feilet. - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Feil: Transaksjonen ble avvist. Dette kan skje om noe av beløpet allerede var brukt, f.eks. hvis du kopierte wallet.dat og noen bitcoins ble brukt i kopien men ikke ble markert som brukt her. + + The amount exceeds your balance. + Beløpet overstiger saldo. SendCoinsEntry - - - Form - Skjema - A&mount: &Beløp: + + + Alt+A + Alt+A + Pay &To: Betal &Til: + + + Form + Skjema + @@ -946,16 +951,6 @@ Adresse: %4 Choose address from address book Velg adresse fra adresseboken - - - Alt+A - Alt+A - - - - Paste address from clipboard - Lim inn adresse fra utklippstavlen - Alt+P @@ -966,6 +961,11 @@ Adresse: %4 Remove this recipient Fjern denne mottakeren + + + Paste address from clipboard + Lim inn adresse fra utklippstavlen + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -980,9 +980,14 @@ Adresse: %4 Åpen for %1 blokker - - Open until %1 - Åpen til %1 + + , broadcast through %1 nodes + , kringkast gjennom %1 noder + + + + , broadcast through %1 node + , kringkast gjennom %1 node @@ -994,31 +999,11 @@ Adresse: %4 %1/unconfirmed %1/ubekreftet - - - %1 confirmations - %1 bekreftelser - <b>Status:</b> <b>Status:</b> - - - , has not been successfully broadcast yet - , har ikke blitt kringkastet uten problemer enda. - - - - , broadcast through %1 node - , kringkast gjennom %1 node - - - - , broadcast through %1 nodes - , kringkast gjennom %1 noder - <b>Date:</b> @@ -1035,11 +1020,6 @@ Adresse: %4 <b>From:</b> <b>Fra:</b> - - - unknown - ukjent - @@ -1070,6 +1050,26 @@ Adresse: %4 (%1 matures in %2 more blocks) (%1 modnes om %2 flere blokker) + + + Open until %1 + Åpen til %1 + + + + %1 confirmations + %1 bekreftelser + + + + , has not been successfully broadcast yet + , har ikke blitt kringkastet uten problemer enda. + + + + unknown + ukjent + (not accepted) @@ -1123,26 +1123,11 @@ Adresse: %4 TransactionTableModel - - - Date - Dato - Type Type - - - Address - Adresse - - - - Amount - Beløp - Open for %n block(s) @@ -1156,11 +1141,6 @@ Adresse: %4 Open until %1 Åpen til %1 - - - Offline (%1 confirmations) - Frakoblet (%1 bekreftelser) - Unconfirmed (%1 of %2 confirmations) @@ -1236,6 +1216,26 @@ Adresse: %4 Amount removed from or added to balance. Beløp fjernet eller lagt til saldo. + + + Address + Adresse + + + + Amount + Beløp + + + + Date + Dato + + + + Offline (%1 confirmations) + Frakoblet (%1 bekreftelser) + Mined balance will be available in %n more blocks @@ -1247,20 +1247,25 @@ Adresse: %4 TransactionView + + + Confirmed + Bekreftet + + + + Edit label + Rediger merkelapp + Type Type - - Label - Merkelapp - - - - Address - Adresse + + Show details... + Vis detaljer... @@ -1287,11 +1292,6 @@ Adresse: %4 Range: Intervall: - - - to - til - @@ -1318,21 +1318,6 @@ Adresse: %4 Last month Forrige måned - - - This year - Dette året - - - - Range... - Intervall... - - - - Received with - Mottatt med - Sent to @@ -1384,9 +1369,9 @@ Adresse: %4 Kommaseparert fil (*.csv) - - Confirmed - Bekreftet + + to + til @@ -1394,14 +1379,29 @@ Adresse: %4 Dato - - Show details... - Vis detaljer... + + This year + Dette året - - Edit label - Rediger merkelapp + + Label + Merkelapp + + + + Address + Adresse + + + + Range... + Intervall... + + + + Received with + Mottatt med @@ -1419,16 +1419,6 @@ Adresse: %4 Bitcoin version Bitcoin versjon - - - Usage: - Bruk: - - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kunne ikke låse datamappen %s. Bitcoin kjører sannsynligvis allerede. - Loading addresses... @@ -1454,6 +1444,11 @@ Adresse: %4 Done loading Ferdig med lasting + + + Usage: + Bruk: + Invalid -proxy address @@ -1474,6 +1469,16 @@ Adresse: %4 Error: CreateThread(StartNode) failed Feil: CreateThread(StartNode) feilet + + + Warning: Disk space is low + Advarsel: Lite ledig diskplass + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kunne ikke låse datamappen %s. Bitcoin kjører sannsynligvis allerede. + Unable to bind to port %d on this computer. Bitcoin is probably already running. @@ -1683,11 +1688,6 @@ Adresse: %4 Lommeboken måtte skrives om: start Bitcoin på nytt for å fullføre - - - Warning: Disk space is low - Advarsel: Lite ledig diskplass - Use the test network @@ -1852,7 +1852,7 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Bitcoin-Qt - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index 18ddf5ba64..ba04310352 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -68,7 +68,7 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d &Copy to Clipboard - &Kopieer naar Klembord + &Kopieer naar Klembord @@ -80,11 +80,6 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d &Delete &Verwijder - - - Export Address Book Data - Exporteer Gegevens van het Adresboek - Comma separated file (*.csv) @@ -95,6 +90,11 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Error exporting Fout bij exporteren + + + Export Address Book Data + Exporteer Gegevens van het Adresboek + Could not write to file %1. @@ -103,6 +103,11 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d AddressTableModel + + + (no label) + (geen label) + Label @@ -113,38 +118,23 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Address Adres - - - (no label) - (geen label) - AskPassphraseDialog - - - Enter passphrase - Huidig wachtwoord - New passphrase Nieuwe wachtwoord - - - Repeat new passphrase - Herhaal wachtwoord - Dialog Dialoog - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Vul een nieuw wachtwoord in voor uw portemonnee. <br/> Gebruik een wachtwoord van <b>10 of meer lukrake karakters</b>, of <b> acht of meer woorden</b> . + + Enter passphrase + Huidig wachtwoord @@ -157,9 +147,14 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Versleutel portemonnee - - This operation needs your wallet passphrase to unlock the wallet. - Deze operatie vereist uw portemonneewachtwoord om de portemonnee te openen. + + Wallet passphrase was successfully changed. + Portemonneewachtwoord is met succes gewijzigd. + + + + Repeat new passphrase + Herhaal wachtwoord @@ -186,17 +181,6 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Enter the old and new passphrase to the wallet. Vul uw oude en nieuwe portemonneewachtwoord in. - - - - Wallet encrypted - Portemonnee versleuteld - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. - @@ -210,17 +194,28 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Wallet encryption failed due to an internal error. Your wallet was not encrypted. Portemonneeversleuteling mislukt door een interne fout, Uw portemonnee is niet versleuteld. + + + + Wallet encrypted + Portemonnee versleuteld + + + + This operation needs your wallet passphrase to unlock the wallet. + Deze operatie vereist uw portemonneewachtwoord om de portemonnee te openen. + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. + The supplied passphrases do not match. De opgegeven wachtwoorden komen niet overeen - - - Wallet unlock failed - Portemonnee openen mislukt - @@ -233,6 +228,12 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Wallet decryption failed Portemonnee-ontsleuteling mislukt + + + + Warning: The Caps Lock key is on. + Waarschuwing: De Caps-Lock-toets staat aan. + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! @@ -241,24 +242,63 @@ Are you sure you wish to encrypt your wallet? Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? - - Wallet passphrase was successfully changed. - Portemonneewachtwoord is met succes gewijzigd. - - - - - Warning: The Caps Lock key is on. - Waarschuwing: De Caps-Lock-toets staat aan. + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Vul een nieuw wachtwoord in voor uw portemonnee. <br/> Gebruik een wachtwoord van <b>10 of meer lukrake karakters</b>, of <b> acht of meer woorden</b> . Confirm wallet encryption Bevestig versleuteling van de portemonnee + + + Wallet unlock failed + Portemonnee openen mislukt + BitcoinGUI + + + &Overview + &Overzicht + + + + &Transactions + &Transacties + + + + Change the passphrase used for wallet encryption + wijzig het wachtwoord voor uw portemonneversleuteling + + + + About &Qt + Over &Qt + + + + Send coins to a bitcoin address + Verstuur munten naar een bitcoin-adres + + + + E&xit + &Afsluiten + + + + &Change Passphrase + &Wijzig Wachtwoord + + + + Sending... + Versturen... + Bitcoin Wallet @@ -275,41 +315,16 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Block chain synchronization in progress Bezig met blokkenketen-synchronisatie - - - &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 - Bewerk de lijst van opgeslagen adressen en labels - - - - &Receive coins - &Ontvang munten - Show the list of addresses for receiving payments @@ -321,64 +336,29 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? &Verstuur munten - - Send coins to a bitcoin address - Verstuur munten naar een bitcoin-adres + + Edit the list of stored addresses and labels + Bewerk de lijst van opgeslagen adressen en labels - - E&xit - &Afsluiten + + &Receive coins + &Ontvang munten - - &About %1 - &Over %1 + + Show information about Qt + Toon informatie over Qt &Options... - &Opties... - - - - Show the Bitcoin window - Toon Bitcoin-venster - - - - Export the current view to a file - Exporteer huidige overzicht naar een bestand - - - - Encrypt or decrypt wallet - Versleutel of ontsleutel portemonnee + O&pties... - - &Change Passphrase - &Wijzig Wachtwoord - - - - Change the passphrase used for wallet encryption - wijzig het wachtwoord voor uw portemonneversleuteling - - - - Sending... - Versturen... - - - - About &Qt - Over &Qt - - - - Show information about Qt - Toon informatie over Qt + + &Export... + &Exporteer... @@ -391,24 +371,9 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? &Instellingen - - &Help - &Hulp - - - - Quit application - Programma afsluiten - - - - Tabs toolbar - Tab-werkbalk - - - - Show information about Bitcoin - Laat informatie zien over Bitcoin + + [testnet] + [testnetwerk] @@ -416,14 +381,14 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Actie-werkbalk - - [testnet] - [testnetwerk] + + &Address Book + &Adresboek - - Modify configuration options for bitcoin - Wijzig instellingen van Bitcoin + + &About %1 + &Over %1 @@ -431,9 +396,14 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Open &Bitcoin - - bitcoin-qt - + + Show the Bitcoin window + Toon Bitcoin-venster + + + + Export the current view to a file + Exporteer huidige overzicht naar een bestand @@ -443,16 +413,6 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? %n actieve connecties naar Bitcoinnetwerk - - - &Export... - &Exporteer... - - - - &Encrypt Wallet - &Versleutel Portemonnee - Downloaded %1 blocks of transaction history. @@ -505,11 +465,21 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Last received block was generated %1. Laatst ontvangen blok is %1 gegenereerd. + + + Quit application + Programma afsluiten + 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? Deze transactie overschrijdt de groottelimiet. Om de transactie alsnog te versturen kunt u transactiekosten betalen van %1. Deze transactiekosten gaan naar de nodes die uw transactie verwerken en het helpt op deze manier bij het ondersteunen van het netwerk. Wilt u de transactiekosten betalen? + + + Show information about Bitcoin + Laat informatie zien over Bitcoin + Sent transaction @@ -533,6 +503,21 @@ Type: %3 Adres: %4 + + + Modify configuration options for bitcoin + Wijzig instellingen van Bitcoin + + + + &Encrypt Wallet + &Versleutel Portemonnee + + + + Encrypt or decrypt wallet + Versleutel of ontsleutel portemonnee + Wallet is <b>encrypted</b> and currently <b>unlocked</b> @@ -543,16 +528,31 @@ Adres: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> Portemonnee is <b>versleuteld</b> en momenteel <b>gesloten</b> - - - Downloaded %1 of %2 blocks of transaction history. - %1 van %2 blokken van transactiehistorie opgehaald. - A fatal error occurred. Bitcoin can no longer continue safely and will quit. Er is een fatale fout opgetreden. Bitcoin kan niet meer veilig doorgaan en zal nu afgesloten worden. + + + &Help + &Hulp + + + + Tabs toolbar + Tab-werkbalk + + + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + %1 van %2 blokken van transactiehistorie opgehaald. + DisplayOptionsPage @@ -672,16 +672,16 @@ Adres: %4 Map port using &UPnP Portmapping via &UPnP - - - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Open de Bitcoin-poort automatisch op de router. Dit werkt alleen als de router UPnP ondersteunt. - M&inimize on close Minimaliseer bij &sluiten van het venster + + + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + Open de Bitcoin-poort automatisch op de router. Dit werkt alleen als de router UPnP ondersteunt. + 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. @@ -695,12 +695,12 @@ Adres: %4 Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) - Verbind met het Bitcoin-netwerk via een SOCKS4-proxy (bijv. wanneer u via Tor wilt verbinden) + Verbind met het Bitcoin-netwerk door een SOCKS4 proxy (bijv. wanneer Tor gebruikt wordt) Proxy &IP: - Proxy &IP: + Proxy &IP: @@ -710,7 +710,7 @@ Adres: %4 &Port: - &Poort: + &Poort: @@ -720,21 +720,16 @@ Adres: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Optionele transactiekosten per kB die helpen om uw transacties snel te verwerken. De meeste transacties zijn 1 kB. Transactiekosten van 0,01 wordt aangeraden. + Optionele transactiekosten per kB die helpen om uw transacties snel te verwerken. De meeste transacties zijn 1 kB. Transactiekosten van 0,01 wordt aangeraden Pay transaction &fee - Betaal &transactiekosten + Betaal &transactiekosten OptionsDialog - - - Options - Opties - Main @@ -745,23 +740,33 @@ Adres: %4 Display Beeldscherm + + + Options + Opties + OverviewPage + + + Total number of transactions in wallet + Totaal aantal transacties in uw portemonnee + Form Vorm - - Balance: - Saldo: + + 0 + 0 - - Number of transactions: - Aantal transacties: + + Wallet + Portemonnee @@ -769,14 +774,9 @@ Adres: %4 Onbevestigd: - - Wallet - Portemonnee - - - - 0 - 0 + + Balance: + Saldo: @@ -788,24 +788,19 @@ Adres: %4 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 zijn meegeteld in uw huidige saldo + + + Number of transactions: + Aantal transacties: + <b>Recent transactions</b> <b>Recente transacties</b> - - - Total number of transactions in wallet - Totaal aantal transacties in uw portemonnee - SendCoinsDialog - - - and - en - @@ -828,21 +823,6 @@ Adres: %4 Remove all transaction fields Verwijder alle transactievelden - - - &Add recipient... - Voeg &ontvanger toe... - - - - Balance: - Saldo: - - - - 123.456 BTC - 123.456 BTC - Confirm the send action @@ -853,26 +833,51 @@ Adres: %4 &Send &Verstuur + + + <b>%1</b> to %2 (%3) + <b>%1</b> aan %2 (%3) + + + + Are you sure you want to send %1? + Weet u zeker dat u %1 wil versturen? + + + + and + en + + + + The amount exceeds your balance. + Bedrag is hoger dan uw huidige saldo + + + + &Add recipient... + Voeg &ontvanger toe... + Clear all Verwijder alles - - <b>%1</b> to %2 (%3) - <b>%1</b> aan %2 (%3) + + Balance: + Saldo: + + + + 123.456 BTC + 123.456 BTC Confirm send coins Bevestig versturen munten - - - Are you sure you want to send %1? - Weet u zeker dat u %1 wil versturen? - The recipient address is not valid, please recheck. @@ -881,92 +886,87 @@ Adres: %4 The amount to pay must be larger than 0. - Het ingevoerde gedrag moet groter zijn dan 0. - - - - The amount exceeds your balance. - Bedrag is hoger dan uw huidige saldo. + Het ingevoerde bedrag moet groter zijn dan 0. The total exceeds your balance when the %1 transaction fee is included. - Totaal overschrijdt uw huidige saldo wanneer de %1 transactiekosten worden meegerekend. + Totaal overschrijdt uw huidige saldo wanneer de %1 transactiekosten worden meegerekend Duplicate address found, can only send to each address once per send operation. - Dubbel adres gevonden, u kunt slechts eenmaal naar een bepaald adres verzenden per verstuurtransactie. + Dubbel adres gevonden, u kunt slechts eenmaal naar een bepaald adres verzenden per verstuurtransactie Error: Transaction creation failed. - Fout: Aanmaak transactie mislukt. + Fout: Aanmaak 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 afgewezen. Dit kan gebeuren als u eerder uitgegeven munten opnieuw wilt versturen, zoals wanneer u een kopie van uw wallet.dat heeft gebruikt en in de kopie deze munten zijn gemarkeerd als uitgegeven, maar in de huidige nog niet. + Fout: De transactie was afgewezen. Dit kan gebeuren als u eerder uitgegeven munten opnieuw wilt versturen, zoals wanneer u een kopie van uw portemonneebestand (wallet.dat) heeft gebruikt en in de kopie deze munten zijn uitgegeven, maar in de huidige portemonnee deze nog niet als zodanig zijn gemarkeerd. - - SendCoinsEntry - - - Form - Vorm - - - - Pay &To: - Betaal &Aan: - - - - &Label: - &Label: - - - - Choose address from address book - Kies adres uit adresboek - + + SendCoinsEntry Paste address from clipboard Plak adres vanuit klembord - - Alt+P - Alt+P - - - - Remove this recipient - Verwijder deze ontvanger + + 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. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) Het adres waaraan u wilt betalen (bijv. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + Choose address from address book + Kies adres uit adresboek + Alt+A Alt+A + + + Alt+P + Alt+P + + + + Remove this recipient + Verwijder deze ontvanger + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -980,16 +980,6 @@ Adres: %4 %1 confirmations %1 bevestigingen - - - , has not been successfully broadcast yet - , is nog niet met succes uitgezonden - - - - <b>Status:</b> - <b>Status:</b> - Open for %1 blocks @@ -1000,6 +990,16 @@ Adres: %4 %1/offline? %1/niet verbonden? + + + %1/unconfirmed + %1/onbevestigd + + + + <b>Status:</b> + <b>Status:</b> + , broadcast through %1 node @@ -1018,35 +1018,20 @@ Adres: %4 <b>Source:</b> Generated<br> - <b>Bron:</b> Gegenereerd<br> + <b>Bron:</b>Gegenereerd<br> <b>From:</b> - <b>Van:</b> - - - - unknown - onbekend - - - - Open until %1 - Openen totdat %1 - - - - %1/unconfirmed - %1/onbevestigd + <b>Van:</b> <b>To:</b> - <b> Aan:</b> + <b>Aan:</b> @@ -1056,7 +1041,22 @@ Adres: %4 (yours) - (uw) + (uw) + + + + Open until %1 + Openen totdat %1 + + + + , has not been successfully broadcast yet + , is nog niet met succes uitgezonden + + + + unknown + onbekend @@ -1081,12 +1081,12 @@ Adres: %4 <b>Debit:</b> - <b>Af:</b> + <b>Af:</b> <b>Transaction fee:</b> - <b>Transactiekosten:</b> + <b>Transactiekosten:</b> @@ -1248,6 +1248,31 @@ Adres: %4 TransactionView + + + To yourself + Aan uzelf + + + + Mined + Ontgonnen + + + + Min amount + Min. bedrag + + + + This month + Deze maand + + + + Last month + Vorige maand + Edit label @@ -1278,11 +1303,6 @@ Adres: %4 Type Type - - - Label - Label - Address @@ -1318,17 +1338,22 @@ Adres: %4 to naar - - - Show details... - Toon details... - All Alles + + + Enter address or label to search + Vul adres of label in om te zoeken + + + + Copy address + Kopieer adres + Today @@ -1354,56 +1379,31 @@ Adres: %4 Received with Ontvangen met - - - Sent to - Verzonden aan - - - - To yourself - Aan uzelf - - - - Mined - Ontgonnen - Other Anders - - Enter address or label to search - Vul adres of label in om te zoeken + + Sent to + Verzonden aan - - Min amount - Min. bedrag + + Show details... + Toon details... - - Copy address - Kopieer adres + + Label + Label Copy label Kopieer label - - - This month - Deze maand - - - - Last month - Vorige maand - WalletModel @@ -1420,36 +1420,55 @@ Adres: %4 Bitcoin version Bitcoinversie + + + Loading addresses... + Adressen aan het laden... + + + + Loading wallet... + Portemonnee aan het laden... + Usage: Gebruik: - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Kan geen lock op de datamap %s verkrijgen. Bitcoin draait vermoedelijk reeds. + + Invalid -proxy address + Foutief -proxy adres - - Loading addresses... - Adressen aan het laden... + + 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. - - Loading block index... - Blokindex aan het laden... + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Kan niet binden aan poort %d op deze computer. Bitcoin draait vermoedelijk reeds. - - Loading wallet... - Portemonnee aan het laden... + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Waarschuwing: Controleer dat de datum en tijd op uw computer correct zijn ingesteld. Als uw klok fout staat zal Bitcoin niet correct werken. - - Wallet needed to be rewritten: restart Bitcoin to complete - - Portemonnee moest herschreven worden: Herstart Bitcoin om te voltooien + + Warning: Disk space is low + Waarschuwing: Weinig schijfruimte over + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Kan geen lock op de datamap %s verkrijgen. Bitcoin draait vermoedelijk reeds. + + + + Loading block index... + Blokindex aan het laden... @@ -1461,41 +1480,27 @@ Adres: %4 Done loading Klaar met laden - - - Invalid -proxy address - Foutief -proxy adres - Invalid amount for -paytxfee=<amount> Ongeldig bedrag voor -paytxfee=<bedrag> - - - 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. - Error: CreateThread(StartNode) failed Fout: CreateThread(StartNode) is mislukt - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Kan niet binden aan poort %d op deze computer. Bitcoin draait vermoedelijk reeds. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Waarschuwing: Controleer dat de datum en tijd op uw computer correct zijn ingesteld. Als uw klok fout staat zal Bitcoin niet correct werken. - beta beta + + + Wallet needed to be rewritten: restart Bitcoin to complete + + Portemonnee moest herschreven worden: Herstart Bitcoin om te voltooien + Send command to -server or bitcoind @@ -1657,11 +1662,6 @@ Adres: %4 Probeer geen UPnP te gebruiken om de poort waarop geluisterd wordt te mappen - - - Warning: Disk space is low - Waarschuwing: Weinig schijfruimte over - Attempt to use UPnP to map the listening port @@ -1853,7 +1853,7 @@ SSL opties: (zie de Bitcoin wiki voor SSL instructies) Bitcoin-Qt - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index b1e2808150..34c70c2c58 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -73,16 +73,6 @@ This product includes software developed by the OpenSSL Project for use in the O &Delete &Excluir - - - Export Address Book Data - Exportação de dados do Catálogo de Endereços - - - - Comma separated file (*.csv) - Arquivo separado por vírgulas (*. csv) - Error exporting @@ -93,18 +83,28 @@ This product includes software developed by the OpenSSL Project for use in the O Could not write to file %1. Could not write to file %1. + + + Export Address Book Data + Exportação de dados do Catálogo de Endereços + + + + Comma separated file (*.csv) + Arquivo separado por vírgulas (*. csv) + AddressTableModel - Label - Rótulo + Address + Endereço - Address - Endereço + Label + Rótulo @@ -119,11 +119,6 @@ This product includes software developed by the OpenSSL Project for use in the O Dialog Diálogo - - - TextLabel - TextoDoRótulo - Enter passphrase @@ -140,14 +135,25 @@ This product includes software developed by the OpenSSL Project for use in the O Repita a nova frase de segurança - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Digite a nova frase de seguraça da sua carteira. <br/> Por favor, use uma frase de <b>10 ou mais caracteres aleatórios,</b> ou <b>oito ou mais palavras.</b> + + TextLabel + TextoDoRótulo - - Encrypt wallet - Criptografar carteira + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + A criptografia da carteira falhou devido a um erro interno. Sua carteira não estava criptografada. + + + + Wallet unlock failed + A abertura da carteira falhou + + + + + The supplied passphrases do not match. + A frase de segurança fornecida não confere. @@ -155,30 +161,47 @@ This product includes software developed by the OpenSSL Project for use in the O Esta operação precisa de sua frase de segurança para desbloquear a carteira. - - Unlock wallet - Desbloquear carteira - - - - This operation needs your wallet passphrase to decrypt the wallet. - Esta operação precisa de sua frase de segurança para descriptografar a carteira. + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + O Bitcoin irá fechar agora para finalizar o processo de encriptação. Lembre-se de que encriptar sua carteira não protege totalmente suas bitcoins de serem roubadas por malwares que tenham infectado o seu computador. Decrypt wallet Descriptografar carteira - - - Change passphrase - Alterar frase de segurança - Enter the old and new passphrase to the wallet. Digite a frase de segurança antiga e nova para a carteira. + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Digite a nova frase de seguraça da sua carteira. <br/> Por favor, use uma frase de <b>10 ou mais caracteres aleatórios,</b> ou <b>oito ou mais palavras.</b> + + + + Wallet decryption failed + A descriptografia da carteira falhou + + + + + + The passphrase entered for the wallet decryption was incorrect. + A frase de segurança digitada para a descriptografia da carteira estava incorreta. + + + + This operation needs your wallet passphrase to decrypt the wallet. + Esta operação precisa de sua frase de segurança para descriptografar a carteira. + + + + Change passphrase + Alterar frase de segurança + Confirm wallet encryption @@ -196,19 +219,6 @@ Are you sure you wish to encrypt your wallet? Wallet encrypted Carteira criptografada - - - - - - Wallet encryption failed - A criptografia da carteira falhou - - - - Wallet unlock failed - A abertura da carteira falhou - Wallet passphrase was successfully changed. @@ -221,87 +231,26 @@ Are you sure you wish to encrypt your wallet? - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - A criptografia da carteira falhou devido a um erro interno. Sua carteira não estava criptografada. - - - - - The supplied passphrases do not match. - A frase de segurança fornecida não confere. - - - - - - The passphrase entered for the wallet decryption was incorrect. - A frase de segurança digitada para a descriptografia da carteira estava incorreta. + + Encrypt wallet + Criptografar carteira - - Wallet decryption failed - A descriptografia da carteira falhou + + Unlock wallet + Desbloquear carteira - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - O Bitcoin irá fechar agora para finalizar o processo de encriptação. Lembre-se de que encriptar sua carteira não protege totalmente suas bitcoins de serem roubadas por malwares que tenham infectado o seu computador. + + + + + Wallet encryption failed + A criptografia da carteira falhou BitcoinGUI - - - Show the Bitcoin window - Mostrar a janela Bitcoin - - - - &Change Passphrase - &Mudar frase de segurança - - - - Bitcoin Wallet - Carteira Bitcoin - - - - - Synchronizing with network... - Sincronizando com a rede... - - - - Block chain synchronization in progress - Sincronização da corrente de blocos em andamento - - - - &Overview - &Visão geral - - - - Show general overview of wallet - Mostrar visão geral da carteira - - - - &Transactions - &Transações - - - - Browse transaction history - Navegar pelo histórico de transações - - - - &Address Book - &Catálogo de endereços - Edit the list of stored addresses and labels @@ -312,60 +261,40 @@ Are you sure you wish to encrypt your wallet? &Receive coins &Receber moedas - - - Show the list of addresses for receiving payments - Mostrar a lista de endereços para receber pagamentos - - - - &Send coins - &Enviar moedas - - - - Send coins to a bitcoin address - Enviar moedas para um endereço bitcoin - E&xit E&xit - - Quit application - Sair da aplicação - - - - &About %1 - &About %1 + + &Address Book + &Catálogo de endereços - - Show information about Bitcoin - Mostrar informação sobre Bitcoin + + About &Qt + Sobre &Qt - - &Options... - &Opções... + + &File + &Arquivo - - Modify configuration options for bitcoin - Modificar opções de configuração para bitcoin + + &Export... + &Exportar... - - Open &Bitcoin - Abrir &Bitcoin + + Block chain synchronization in progress + Sincronização da corrente de blocos em andamento - - &Export... - &Exportar... + + Send coins to a bitcoin address + Enviar moedas para um endereço bitcoin @@ -383,49 +312,59 @@ Are you sure you wish to encrypt your wallet? Criptografar ou decriptogravar carteira - - About &Qt - Sobre &Qt + + Change the passphrase used for wallet encryption + Mudar a frase de segurança utilizada na criptografia da carteira - - Show information about Qt - Mostrar informações sobre o Qt + + Bitcoin Wallet + Carteira Bitcoin - - Change the passphrase used for wallet encryption - Mudar a frase de segurança utilizada na criptografia da carteira + + &Overview + &Visão geral - - &File - &Arquivo + + Show general overview of wallet + Mostrar visão geral da carteira - - &Settings - E configurações + + Show the Bitcoin window + Mostrar a janela Bitcoin - - &Help - &Ajuda + + Show the list of addresses for receiving payments + Mostrar a lista de endereços para receber pagamentos - - Tabs toolbar - Barra de ferramentas + + Quit application + Sair da aplicação - - Actions toolbar - Barra de ações + + Modify configuration options for bitcoin + Modificar opções de configuração para bitcoin - - [testnet] - [testnet] + + Open &Bitcoin + Abrir &Bitcoin + + + + Show information about Qt + Mostrar informações sobre o Qt + + + + &Send coins + &Enviar moedas @@ -435,10 +374,19 @@ Are you sure you wish to encrypt your wallet? %n conexões ativas na rede Bitcoin + + + %n day(s) ago + + %n dia atrás + %n dias atrás + + - - Downloaded %1 blocks of transaction history. - Carregados %1 blocos do histórico de transações. + + + Synchronizing with network... + Sincronizando com a rede... @@ -457,51 +405,80 @@ Are you sure you wish to encrypt your wallet? - - bitcoin-qt - bitcoin-qt + + &Settings + E configurações - - - %n hour(s) ago - - %n hora atrás - %n horas atrás - + + + Tabs toolbar + Barra de ferramentas - - - %n day(s) ago - - %n dia atrás - %n dias atrás - + + + Actions toolbar + Barra de ações - - Downloaded %1 of %2 blocks of transaction history. - Carregados %1 de %2 blocos do histórico de transações. + + [testnet] + [testnet] - - Up to date - Atualizado + + &Transactions + &Transações - - Catching up... - Recuperando o atraso ... + + Browse transaction history + Navegar pelo histórico de transações - - Last received block was generated %1. - Last received block was generated %1. + + Downloaded %1 blocks of transaction history. + Carregados %1 blocos do histórico de transações. + + + + &About %1 + &About %1 + + + + Show information about Bitcoin + Mostrar informação sobre Bitcoin + + + + &Options... + &Opções... + + + + &Change Passphrase + &Mudar frase de segurança 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? 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? + + + &Help + &Ajuda + + + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + Carregados %1 de %2 blocos do histórico de transações. + Sent transaction @@ -534,6 +511,29 @@ Endereço: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> Wallet is <b>encrypted</b> and currently <b>locked</b> + + + Catching up... + Recuperando o atraso ... + + + + Last received block was generated %1. + Last received block was generated %1. + + + + %n hour(s) ago + + %n hora atrás + %n horas atrás + + + + + Up to date + Atualizado + Sending... @@ -691,7 +691,7 @@ Endereço: %4 Proxy &IP: - + Proxy &IP: @@ -701,7 +701,7 @@ Endereço: %4 &Port: - + &Port: @@ -711,7 +711,7 @@ Endereço: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Taxa opcional de transações por kB que ajuda a garantir que suas transações serão processadas rapidamente. A maior parte das transações é de 1 kB. Taxa de 0.01 recomendada. + Taxa opcional de transações por kB que ajuda a garantir que suas transações serão processadas rapidamente. A maior parte das transações é de 1 kB. Taxa de 0.01 recomendada. @@ -721,11 +721,6 @@ Endereço: %4 OptionsDialog - - - Options - Options - Main @@ -736,48 +731,48 @@ Endereço: %4 Display Display + + + Options + Options + OverviewPage - - Form - Form + + Your current balance + Your current balance - - Balance: - Balance: + + 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 - - Number of transactions: - Number of transactions: + + Total number of transactions in wallet + Total number of transactions in wallet + + + + Form + Form 0 - + 0 Wallet - + Carteira - <b>Recent transactions</b> - <b>Recent transactions</b> - - - - Your current balance - Your current balance - - - - Total number of transactions in wallet - Total number of transactions in wallet + <b>Recent transactions</b> + <b>Recent transactions</b> @@ -785,13 +780,33 @@ Endereço: %4 Unconfirmed: - - 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 + + Balance: + Balance: + + + + Number of transactions: + Number of transactions: SendCoinsDialog + + + Send to multiple recipients at once + Send to multiple recipients at once + + + + Remove all transaction fields + Remover todos os campos da transação + + + + The amount to pay must be larger than 0. + The amount to pay must be larger than 0. + Confirm send coins @@ -810,19 +825,9 @@ Endereço: %4 Send Coins - - Remove all transaction fields - Remover todos os campos da transação - - - - Balance: - Balance: - - - - 123.456 BTC - 123.456 BTC + + &Add recipient... + &Add recipient... @@ -830,14 +835,9 @@ Endereço: %4 Confirm the send action - - Send to multiple recipients at once - Send to multiple recipients at once - - - - &Add recipient... - &Add recipient... + + &Send + &Send @@ -845,9 +845,14 @@ Endereço: %4 Clear all - - &Send - &Send + + Balance: + Balance: + + + + 123.456 BTC + 123.456 BTC @@ -869,11 +874,6 @@ Endereço: %4 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. @@ -907,32 +907,27 @@ Endereço: %4 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 + + + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + A&mount: + A&mount: + &Label: &Label: - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose address from address book @@ -959,17 +954,22 @@ Endereço: %4 Remove this recipient - - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + Pay &To: + Pay &To: + + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) TransactionDesc - - Open until %1 - Open until %1 + + unknown + unknown @@ -977,54 +977,39 @@ Endereço: %4 %1/unconfirmed - - %1 confirmations - %1 confirmations + + Open for %1 blocks + Open for %1 blocks - - , has not been successfully broadcast yet - , has not been successfully broadcast yet + + %1/offline? + %1/offline? + + + + <b>Status:</b> + <b>Status:</b> , broadcast through %1 node - + , broadcast through %1 node , broadcast through %1 nodes - + , broadcast through %1 nodes <b>Date:</b> - + <b>Date:</b> <b>Source:</b> Generated<br> - - - - - unknown - unknown - - - - Open for %1 blocks - Open for %1 blocks - - - - %1/offline? - %1/offline? - - - - <b>Status:</b> - <b>Status:</b> + <b>Source:</b> Generated<br> @@ -1077,13 +1062,23 @@ Endereço: %4 <b>Transaction fee:</b> - + <b>Transaction fee:</b> <b>Net amount:</b> <b>Net amount:</b> + + + Open until %1 + Open until %1 + + + + %1 confirmations + %1 confirmations + Message: @@ -1099,6 +1094,11 @@ Endereço: %4 Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + , has not been successfully broadcast yet + , has not been successfully broadcast yet + TransactionDescDialog @@ -1115,11 +1115,6 @@ Endereço: %4 TransactionTableModel - - - Date - Date - Type @@ -1135,19 +1130,6 @@ Endereço: %4 Amount Amount - - - Open for %n block(s) - - Open for %n block - Open for %n blocks - - - - - Open until %1 - Open until %1 - Offline (%1 confirmations) @@ -1178,11 +1160,6 @@ Endereço: %4 Received with Received with - - - Received from - Recebido de - Sent to @@ -1228,6 +1205,24 @@ Endereço: %4 Amount removed from or added to balance. Amount removed from or added to balance. + + + Date + Date + + + + Open for %n block(s) + + Open for %n block + Open for %n blocks + + + + + Open until %1 + Open until %1 + Mined balance will be available in %n more blocks @@ -1236,49 +1231,89 @@ Endereço: %4 Mined balance will be available in %n more blocks + + + Received from + Recebido de + TransactionView - - - All - All + + This week + This week + + + + This month + This month + + + + Last month + Last month + + + + This year + This year + + + + Range... + Range... + + + + Received with + Received with + + + + Date + Date + + + + Type + Type - - Today - Today + + Address + Address - - This week - This week + + Amount + Amount - - This month - This month + + to + to - - Last month - Last month + + Label + Label - - This year - This year + + Could not write to file %1. + Could not write to file %1. - - Range... - Range... + + + All + All - - Received with - Received with + + Today + Today @@ -1325,6 +1360,11 @@ Endereço: %4 Edit label Edit label + + + Confirmed + Confirmed + Export Transaction Data @@ -1335,36 +1375,6 @@ Endereço: %4 Comma separated file (*.csv) Comma separated file (*.csv) - - - Confirmed - Confirmed - - - - Date - Date - - - - Type - Type - - - - Label - Label - - - - Address - Address - - - - Amount - Amount - ID @@ -1375,21 +1385,11 @@ Endereço: %4 Error exporting Error exporting - - - Could not write to file %1. - Could not write to file %1. - Range: Range: - - - to - to - Show details... @@ -1406,11 +1406,6 @@ Endereço: %4 bitcoin-core - - - Bitcoin version - Bitcoin version - Usage: @@ -1426,20 +1421,15 @@ Endereço: %4 Loading wallet... Loading wallet... - - - Done loading - Done loading - Invalid -proxy address Invalid -proxy address - - Invalid amount for -paytxfee=<amount> - Invalid amount for -paytxfee=<amount> + + Loading addresses... + Loading addresses... @@ -1461,11 +1451,41 @@ Endereço: %4 Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + + + Bitcoin version + Bitcoin version + + + + Done loading + Done loading + + + + Invalid amount for -paytxfee=<amount> + Invalid amount for -paytxfee=<amount> + beta beta + + + Loading block index... + Loading block index... + + + + Rescanning... + Rescanning... + + + + 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. + Send command to -server or bitcoind @@ -1578,11 +1598,6 @@ Endereço: %4 Don't accept connections from outside - - - Loading addresses... - Loading addresses... - Fee per kB to add to transactions you send @@ -1590,11 +1605,6 @@ Endereço: %4 Fee per kB to add to transactions you send - - - Loading block index... - Loading block index... - Run in the background as a daemon and accept commands @@ -1614,18 +1624,6 @@ Endereço: %4 Manter no máximo <n> conexões aos peers (padrão: 125) - - - Don't find peers using internet relay chat - - - - - - Don't bootstrap list of peers using DNS - - - Threshold for disconnecting misbehaving peers (default: 100) @@ -1638,6 +1636,56 @@ Endereço: %4 Número de segundos para impedir que peers mal comportados reconectem (padrão: 86400) + + + Prepend debug output with timestamp + + Pré anexar a saída de debug com estampa de tempo + + + + 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 + + Mandar informação de trace/debug para o debugger + + + + Username for JSON-RPC connections + + Username for JSON-RPC connections + + + + + Wallet needed to be rewritten: restart Bitcoin to complete + + A Carteira precisou ser reescrita: reinicie o Bitcoin para completar + + + + Use OpenSSL (https) for JSON-RPC connections + + Use OpenSSL (https) for JSON-RPC connections + + + + + Don't find peers using internet relay chat + + + + + + Don't bootstrap list of peers using DNS + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) @@ -1680,31 +1728,6 @@ Endereço: %4 - - - Prepend debug output with timestamp - - Pré anexar a saída de debug com estampa de tempo - - - - 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 - - Mandar informação de trace/debug para o debugger - - - - Username for JSON-RPC connections - - Username for JSON-RPC connections - - Password for JSON-RPC connections @@ -1748,29 +1771,6 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - Wallet needed to be rewritten: restart Bitcoin to complete - - A Carteira precisou ser reescrita: reinicie o Bitcoin para completar - - - - Rescanning... - Rescanning... - - - - 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. - - - - Use OpenSSL (https) for JSON-RPC connections - - Use OpenSSL (https) for JSON-RPC connections - - Server certificate file (default: server.cert) diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts index 69386b1d1f..7b0f5436de 100644 --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -67,7 +67,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - &Kопировать + &Kопировать @@ -79,25 +79,25 @@ This product includes software developed by the OpenSSL Project for use in the O &Delete &Удалить + + + Could not write to file %1. + Невозможно записать в файл %1. + Export Address Book Data Экспортировать адресную книгу - - - Comma separated file (*.csv) - Текст, разделённый запятыми (*.csv) - Error exporting Ошибка экспорта - - Could not write to file %1. - Невозможно записать в файл %1. + + Comma separated file (*.csv) + Текст, разделённый запятыми (*.csv) @@ -107,43 +107,33 @@ This product includes software developed by the OpenSSL Project for use in the O Label Метка - - - Address - Адрес - (no label) [нет метки] + + + Address + Адрес + AskPassphraseDialog - - - Enter passphrase - Введите пароль - New passphrase Новый пароль - - - Repeat new passphrase - Повторите новый пароль - Dialog Dialog - - 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> + + Enter passphrase + Введите пароль @@ -151,24 +141,39 @@ This product includes software developed by the OpenSSL Project for use in the O TextLabel - - Encrypt wallet - Зашифровать бумажник + + + + + Wallet encryption failed + Не удалось зашифровать бумажник - - This operation needs your wallet passphrase to unlock the wallet. - Для выполнения операции требуется пароль вашего бумажника. + + Change passphrase + Сменить пароль - - Unlock wallet - Разблокировать бумажник + + Wallet decryption failed + Расшифрование бумажника не удалось - - This operation needs your wallet passphrase to decrypt the wallet. - Для выполнения операции требуется пароль вашего бумажника. + + Wallet unlock failed + Разблокировка бумажника не удалась + + + + + + The passphrase entered for the wallet decryption was incorrect. + Указанный пароль не подходит. + + + + Confirm wallet encryption + Подтвердите шифрование бумажника @@ -176,9 +181,19 @@ This product includes software developed by the OpenSSL Project for use in the O Расшифровать бумажник - - Change passphrase - Сменить пароль + + Unlock wallet + Разблокировать бумажник + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши биткоины от кражи с помощью инфицирования вашего компьютера вредоносным ПО. + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Шифрование бумажника не удалось из-за внутренней ошибки. Ваш бумажник не был зашифрован. @@ -192,45 +207,34 @@ This product includes software developed by the OpenSSL Project for use in the O Бумажник зашифрован - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши биткоины от кражи с помощью инфицирования вашего компьютера вредоносным ПО. - - - - - - - Wallet encryption failed - Не удалось зашифровать бумажник + + Wallet passphrase was successfully changed. + Пароль бумажника успешно изменён. - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Шифрование бумажника не удалось из-за внутренней ошибки. Ваш бумажник не был зашифрован. + + Repeat new passphrase + Повторите новый пароль - - - The supplied passphrases do not match. - Введённые пароли не совпадают. + + This operation needs your wallet passphrase to unlock the wallet. + Для выполнения операции требуется пароль вашего бумажника. - - Wallet unlock failed - Разблокировка бумажника не удалась + + 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> - - - - The passphrase entered for the wallet decryption was incorrect. - Указанный пароль не подходит. + + Encrypt wallet + Зашифровать бумажник - - Wallet decryption failed - Расшифрование бумажника не удалось + + This operation needs your wallet passphrase to decrypt the wallet. + Для выполнения операции требуется пароль вашего бумажника. @@ -240,9 +244,10 @@ Are you sure you wish to encrypt your wallet? Вы действительно хотите зашифровать ваш бумажник? - - Wallet passphrase was successfully changed. - Пароль бумажника успешно изменён. + + + The supplied passphrases do not match. + Введённые пароли не совпадают. @@ -250,18 +255,43 @@ Are you sure you wish to encrypt your wallet? Warning: The Caps Lock key is on. Внимание: Caps Lock включен. - - - Confirm wallet encryption - Подтвердите шифрование бумажника - BitcoinGUI - - Bitcoin Wallet - Bitcoin-бумажник + + &Overview + О&бзор + + + + Show general overview of wallet + Показать общий обзор действий с бумажником + + + + &Receive coins + &Получение монет + + + + E&xit + В&ыход + + + + Show the Bitcoin window + Показать окно бумажника + + + + &Export... + &Экспорт... + + + + Edit the list of stored addresses and labels + Изменить список сохранённых адресов и меток к ним @@ -274,16 +304,6 @@ Are you sure you wish to encrypt your wallet? Block chain synchronization in progress Идёт синхронизация цепочки блоков - - - &Overview - О&бзор - - - - Show general overview of wallet - Показать общий обзор действий с бумажником - &Transactions @@ -299,16 +319,6 @@ Are you sure you wish to encrypt your wallet? &Address Book &Адресная книга - - - Edit the list of stored addresses and labels - Изменить список сохранённых адресов и меток к ним - - - - &Receive coins - &Получение монет - Show the list of addresses for receiving payments @@ -319,99 +329,25 @@ Are you sure you wish to encrypt your wallet? &Send coins Отп&равка монет - - - Send coins to a bitcoin address - Отправить монеты на указанный адрес - - - - E&xit - В&ыход - &About %1 &О %1 - - - &Export... - &Экспорт... - - - - Export the current view to a file - Экспортировать в файл - - - - &Change Passphrase - &Изменить пароль - - - - Change the passphrase used for wallet encryption - Изменить пароль шифрования бумажника - - - - About &Qt - О &Qt - - - - Show information about Qt - Показать информацию о Qt - - - - &File - &Файл - - - - &Settings - &Настройки - &Help &Помощь - - - Tabs toolbar - Панель вкладок - - - - Actions toolbar - Панель действий - - - - [testnet] - [тестовая сеть] - - - - &Options... - Оп&ции... - - - - %n active connection(s) to Bitcoin network - - %n активное соединение с сетью - %n активных соединений с сетью - %n активных соединений с сетью - + + + Quit application + Закрыть приложение - - Modify configuration options for bitcoin - Изменить настройки + + &Options... + Оп&ции... @@ -419,29 +355,20 @@ Are you sure you wish to encrypt your wallet? &Показать бумажник - - Show the Bitcoin window - Показать окно бумажника + + Export the current view to a file + Экспортировать в файл - - Downloaded %1 blocks of transaction history. - Загружено %1 блоков истории транзакций. + + Encrypt or decrypt wallet + Зашифровать или расшифровать бумажник &Encrypt Wallet &Зашифровать бумажник - - - %n second(s) ago - - %n секунду назад - %n секунды назад - %n секунд назад - - %n minute(s) ago @@ -452,9 +379,9 @@ Are you sure you wish to encrypt your wallet? - - Quit application - Закрыть приложение + + &Settings + &Настройки @@ -466,9 +393,9 @@ Are you sure you wish to encrypt your wallet? - - Show information about Bitcoin - Показать информацию о Bitcoin'е + + Tabs toolbar + Панель вкладок @@ -479,11 +406,6 @@ Are you sure you wish to encrypt your wallet? %n дней назад - - - Up to date - Синхронизированно - Catching up... @@ -495,15 +417,25 @@ Are you sure you wish to encrypt your wallet? Последний полученный блок был сгенерирован %1. - - Encrypt or decrypt wallet - Зашифровать или расшифровать бумажник + + Bitcoin Wallet + Bitcoin-бумажник + + + + Up to date + Синхронизированно 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, которая отправится тем узлам, которые обработают Вашу транзакцию, и поможет поддержать сеть. Вы хотите добавить комиссию? + + + Send coins to a bitcoin address + Отправить монеты на указанный адрес + Sent transaction @@ -537,11 +469,84 @@ Address: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> + + + Show information about Bitcoin + Показать информацию о Bitcoin'е + + + + About &Qt + О &Qt + + + + Show information about Qt + Показать информацию о Qt + + + + Modify configuration options for bitcoin + Изменить настройки + + + + &Change Passphrase + &Изменить пароль + + + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + Произошла неисправимая ошибка. Bitcoin не может безопасно продолжать работу и будет закрыт. + + + + Change the passphrase used for wallet encryption + Изменить пароль шифрования бумажника + + + + &File + &Файл + + + + Actions toolbar + Панель действий + + + + [testnet] + [тестовая сеть] + bitcoin-qt bitcoin-qt + + + %n active connection(s) to Bitcoin network + + %n активное соединение с сетью + %n активных соединений с сетью + %n активных соединений с сетью + + + + + Downloaded %1 blocks of transaction history. + Загружено %1 блоков истории транзакций. + + + + %n second(s) ago + + %n секунду назад + %n секунды назад + %n секунд назад + + Downloaded %1 of %2 blocks of transaction history. @@ -552,11 +557,6 @@ Address: %4 Sending... Отправка... - - - A fatal error occurred. Bitcoin can no longer continue safely and will quit. - Произошла неисправимая ошибка. Bitcoin не может безопасно продолжать работу и будет закрыт. - DisplayOptionsPage @@ -608,11 +608,6 @@ Address: %4 The address associated with this address book entry. This can only be modified for sending addresses. Адрес, связанный с данной записью. - - - New receiving address - Новый адрес для получения - New sending address @@ -633,21 +628,26 @@ Address: %4 The entered address "%1" is already in the address book. Введённый адрес «%1» уже находится в адресной книге. - - - Could not unlock wallet. - Не удается разблокировать бумажник. - New key generation failed. Генерация нового ключа не удалась. + + + New receiving address + Новый адрес для получения + The entered address "%1" is not a valid bitcoin address. Введённый адрес «%1» не является правильным Bitcoin-адресом. + + + Could not unlock wallet. + Не удается разблокировать бумажник. + MainOptionsPage @@ -699,7 +699,7 @@ Address: %4 Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) - Подключаться к сети Bitcoin через прокси SOCKS4 (например, при подключении через Tor) + Подключаться к сети Bitcoin через SOCKS4 прокси (например, при использовании Tor) @@ -724,12 +724,12 @@ Address: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработана быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. + Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработана быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. Pay transaction &fee - Заплатить ко&миссию + Добавлять ко&миссию @@ -739,33 +739,33 @@ Address: %4 Main Основное - - - Display - Отображение - Options Опции + + + Display + Отображение + OverviewPage - - Form - Форма + + Wallet + Бумажник - - Balance: - Баланс: + + <b>Recent transactions</b> + <b>Последние транзакции</b> - - Number of transactions: - Количество транзакций: + + Form + Форма @@ -773,14 +773,14 @@ Address: %4 Не подтверждено: - - Wallet - Бумажник + + Balance: + Баланс: - - 0 - 0 + + Your current balance + Ваш текущий баланс @@ -788,19 +788,19 @@ Address: %4 Общая сумма всех транзакций, которые до сих пор не подтверждены, и до сих пор не учитываются в текущем балансе - - Total number of transactions in wallet - Общее количество транзакций в Вашем бумажнике + + Number of transactions: + Количество транзакций: - - <b>Recent transactions</b> - <b>Последние транзакции</b> + + 0 + 0 - - Your current balance - Ваш текущий баланс + + Total number of transactions in wallet + Общее количество транзакций в Вашем бумажнике @@ -817,21 +817,11 @@ Address: %4 Send Coins Отправка - - - Send to multiple recipients at once - Отправить нескольким получателям одновременно - &Add recipient... &Добавить получателя... - - - Clear all - Очистить всё - Balance: @@ -852,11 +842,6 @@ Address: %4 &Send &Отправить - - - Remove all transaction fields - Удалить все поля транзакции - <b>%1</b> to %2 (%3) @@ -868,14 +853,24 @@ Address: %4 Подтвердите отправку монет - - Are you sure you want to send %1? - Вы уверены, что хотите отправить %1? + + Send to multiple recipients at once + Отправить нескольким получателям одновременно + + + + Clear all + Очистить всё + + + + Remove all transaction fields + Удалить все поля транзакции - and - и + Are you sure you want to send %1? + Вы уверены, что хотите отправить %1? @@ -912,6 +907,11 @@ Address: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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, а монеты были потрачены из другой копии, но не были отмечены как потраченные в этой. + + + and + и + SendCoinsEntry @@ -954,17 +954,17 @@ Address: %4 Alt+A - Alt+A + Alt+A Paste address from clipboard - Вставить адрес из буфера обмена + Вставить адрес из буфера обмена Alt+P - Alt+P + Alt+P @@ -984,30 +984,15 @@ Address: %4 %1 confirmations %1 подтверждений - - - , has not been successfully broadcast yet - , ещё не было успешно разослано - - - - Open for %1 blocks - Открыто до получения %1 блоков - - - - Open until %1 - Открыто до %1 - %1/offline? %1/оффлайн? - - %1/unconfirmed - %1/не подтверждено + + Open for %1 blocks + Открыто до получения %1 блоков @@ -1055,7 +1040,7 @@ Address: %4 (yours, label: - (Ваш, метка: + (Ваш, метка: @@ -1075,6 +1060,21 @@ Address: %4 (%1 matures in %2 more blocks) (%1 станет доступно через %2 блоков) + + + Open until %1 + Открыто до %1 + + + + %1/unconfirmed + %1/не подтверждено + + + + , has not been successfully broadcast yet + , ещё не было успешно разослано + (not accepted) @@ -1097,16 +1097,16 @@ Address: %4 <b>Net amount:</b> <b>Общая сумма:</b> - - - Message: - Сообщение: - Comment: Комментарий: + + + Message: + Сообщение: + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. @@ -1255,20 +1255,46 @@ Address: %4 TransactionView - - Date - Дата + + Error exporting + Ошибка экспорта + + + + to + до + + + + + All + Все + + + + Copy label + Копировать метку + + + + Edit label + Изменить метку + + + + Copy address + Копировать адрес + + + + Show details... + Показать детали... Type Тип - - - Label - Метка - Address @@ -1284,11 +1310,6 @@ Address: %4 ID ID - - - Error exporting - Ошибка экспорта - Could not write to file %1. @@ -1299,47 +1320,11 @@ Address: %4 Range: Промежуток от: - - - to - до - - - - - All - Все - - - - Today - Сегодня - This week На этой неделе - - - This month - В этом месяце - - - - Last month - За последний месяц - - - - This year - В этом году - - - - Range... - Промежуток... - Received with @@ -1360,6 +1345,11 @@ Address: %4 Mined Добытые + + + Range... + Промежуток... + Other @@ -1371,14 +1361,9 @@ Address: %4 Введите адрес или метку для поиска - - Copy label - Копировать метку - - - - Edit label - Изменить метку + + Min amount + Мин. сумма @@ -1390,25 +1375,40 @@ Address: %4 Comma separated file (*.csv) Текст, разделённый запятыми (*.csv) + + + This month + В этом месяце + Confirmed Подтверждено - - Min amount - Мин. сумма + + Date + Дата - - Copy address - Копировать адрес + + Today + Сегодня - - Show details... - Показать детали... + + Label + Метка + + + + Last month + За последний месяц + + + + This year + В этом году @@ -1426,11 +1426,6 @@ Address: %4 Bitcoin version Версия - - - Usage: - Использование: - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. @@ -1441,36 +1436,20 @@ Address: %4 Loading addresses... Загрузка адресов... - - - Loading wallet... - Загрузка бумажника... - - - - Wallet needed to be rewritten: restart Bitcoin to complete - - Необходимо перезаписать бумажник, перезапустите Bitcoin для завершения операции - Rescanning... Сканирование... - - Done loading - Загрузка завершена - - - - Invalid -proxy address - Ошибка в адресе прокси + + Usage: + Использование: - - Invalid amount for -paytxfee=<amount> - Ошибка в сумме комиссии + + Loading block index... + Загрузка индекса блоков... @@ -1487,6 +1466,21 @@ Address: %4 Unable to bind to port %d on this computer. Bitcoin is probably already running. Невозможно забиндить порт %d на данном компьютере. Возможно, бумажник ужк запущен. + + + Invalid amount for -paytxfee=<amount> + Ошибка в сумме комиссии + + + + Loading wallet... + Загрузка бумажника... + + + + Done loading + Загрузка завершена + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. @@ -1497,6 +1491,22 @@ Address: %4 beta бета + + + Wallet needed to be rewritten: restart Bitcoin to complete + + Необходимо перезаписать бумажник, перезапустите Bitcoin для завершения операции + + + + Warning: Disk space is low + ВНИМАНИЕ: На диске заканчивается свободное пространство + + + + Invalid -proxy address + Ошибка в адресе прокси + Send command to -server or bitcoind @@ -1658,16 +1668,6 @@ Address: %4 Отправлять информацию трассировки/отладки в отладчик - - - Loading block index... - Загрузка индекса блоков... - - - - Warning: Disk space is low - ВНИМАНИЕ: На диске заканчивается свободное пространство - Add a node to connect to @@ -1859,7 +1859,7 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Bitcoin-Qt - + Bitcoin-Qt diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts index 454540090c..f317ff46cd 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -107,16 +107,16 @@ This product includes software developed by the OpenSSL Project for use in the O Label Назва - - - Address - Адреса - (no label) (немає назви) + + + Address + Адреса + AskPassphraseDialog @@ -126,19 +126,30 @@ This product includes software developed by the OpenSSL Project for use in the O Діалог - - TextLabel - Текстова мітка + + New passphrase + Новий пароль - - Enter passphrase - Введіть пароль + + Decrypt wallet + Дешифрувати гаманець - - New passphrase - Новий пароль + + + The supplied passphrases do not match. + Введені паролі не співпадають. + + + + Wallet unlock failed + Не вдалося розблокувати гаманець + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. @@ -146,67 +157,49 @@ 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>. - Введіть новий пароль для гаманця.<br/>Будь ласка, використовуйте паролі що містять <b> як мінімум 10 випадкових символів </b> або <b> як мінімум 8 слів</b>. - - - - Encrypt wallet - Зашифрувати гаманець + + TextLabel + Текстова мітка 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 - Підтвердити шифрування гаманця + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Введіть новий пароль для гаманця.<br/>Будь ласка, використовуйте паролі що містять <b> як мінімум 10 випадкових символів </b> або <b> як мінімум 8 слів</b>. - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - УВАГА: Якщо ви зашифруєте гаманець і забудете пароль, ви <b>ВТРАТИТЕ ВСІ СВОЇ БІТКОІНИ</b>! -Ви дійсно хочете зашифрувати свій гаманець? + + Encrypt wallet + Зашифрувати гаманець - - - Wallet encrypted - Гаманець зашифровано + + Unlock wallet + Розблокувати гаманець - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. + + Change passphrase + Змінити пароль + + + + Confirm wallet encryption + Підтвердити шифрування гаманця @@ -221,17 +214,6 @@ Are you sure you wish to encrypt your wallet? Wallet encryption failed due to an internal error. Your wallet was not encrypted. Виникла помилка під час шифрування гаманця. Ваш гаманець не було зашифровано. - - - - The supplied passphrases do not match. - Введені паролі не співпадають. - - - - Wallet unlock failed - Не вдалося розблокувати гаманець - @@ -244,6 +226,19 @@ Are you sure you wish to encrypt your wallet? Wallet decryption failed Не вдалося розшифрувати гаманець + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + УВАГА: Якщо ви зашифруєте гаманець і забудете пароль, ви <b>ВТРАТИТЕ ВСІ СВОЇ БІТКОІНИ</b>! +Ви дійсно хочете зашифрувати свій гаманець? + + + + + Wallet encrypted + Гаманець зашифровано + Wallet passphrase was successfully changed. @@ -255,18 +250,38 @@ Are you sure you wish to encrypt your wallet? Warning: The Caps Lock key is on. Увага: Ввімкнено Caps Lock + + + Enter passphrase + Введіть пароль + BitcoinGUI - - &About %1 - П&ро %1 + + E&xit + &Вихід - - Bitcoin Wallet - Гаманець + + Encrypt or decrypt wallet + Зашифрувати чи розшифрувати гаманець + + + + Show information about Bitcoin + Показати інформацію про Bitcoin + + + + Change the passphrase used for wallet encryption + Змінити пароль, який використовується для шифрування гаманця + + + + About &Qt + &Про Qt @@ -274,16 +289,16 @@ Are you sure you wish to encrypt your wallet? Synchronizing with network... Синхронізація з мережею... + + + Bitcoin Wallet + Гаманець + Block chain synchronization in progress Відбувається синхронізація ланцюжка блоків... - - - &Overview - &Огляд - Show general overview of wallet @@ -314,11 +329,6 @@ Are you sure you wish to encrypt your wallet? &Receive coins О&тримати - - - Show the list of addresses for receiving payments - Показати список адрес для отримання платежів - &Send coins @@ -329,20 +339,15 @@ Are you sure you wish to encrypt your wallet? Send coins to a bitcoin address Відправити монети на вказану адресу - - - E&xit - &Вихід - Quit application Вийти - - Show information about Bitcoin - Показати інформацію про Bitcoin + + &About %1 + П&ро %1 @@ -359,51 +364,16 @@ Are you sure you wish to encrypt your wallet? Open &Bitcoin Показати &гаманець - - - Show the Bitcoin window - Показати вікно гаманця - - - - &Export... - &Експорт... - - - - Export the current view to a file - Експортувати в файл - - - - &Encrypt Wallet - &Шифрування гаманця - - - - Encrypt or decrypt wallet - Зашифрувати чи розшифрувати гаманець - - - - &Change Passphrase - Змінити парол&ь - - - - Change the passphrase used for wallet encryption - Змінити пароль, який використовується для шифрування гаманця - - - - About &Qt - &Про Qt - Show information about Qt Показати інформацію про Qt + + + &Overview + &Огляд + &File @@ -415,9 +385,9 @@ Are you sure you wish to encrypt your wallet? &Налаштування - - &Help - &Довідка + + Show the list of addresses for receiving payments + Показати список адрес для отримання платежів @@ -425,9 +395,9 @@ Are you sure you wish to encrypt your wallet? Панель вкладок - - Actions toolbar - Панель дій + + &Export... + &Експорт... @@ -435,9 +405,9 @@ Are you sure you wish to encrypt your wallet? [тестова мережа] - - bitcoin-qt - bitcoin-qt + + &Change Passphrase + Змінити парол&ь @@ -449,15 +419,20 @@ Are you sure you wish to encrypt your wallet? - - Downloaded %1 of %2 blocks of transaction history. - Завантажено %1 з %2 блоків історії переказів. + + &Help + &Довідка Downloaded %1 blocks of transaction history. Завантажено %1 блоків історії транзакцій. + + + Actions toolbar + Панель дій + %n second(s) ago @@ -467,6 +442,31 @@ Are you sure you wish to encrypt your wallet? %n секунд тому + + + bitcoin-qt + bitcoin-qt + + + + Show the Bitcoin window + Показати вікно гаманця + + + + Export the current view to a file + Експортувати в файл + + + + &Encrypt Wallet + &Шифрування гаманця + + + + Downloaded %1 of %2 blocks of transaction history. + Завантажено %1 з %2 блоків історії переказів. + %n minute(s) ago @@ -514,11 +514,6 @@ Are you sure you wish to encrypt your wallet? 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, яка відправиться тим вузлам що оброблять ваш переказ, та допоможе підтримати мережу. Ви хочете додати комісію? - - - Sending... - Відправлення... - Sent transaction @@ -552,6 +547,11 @@ Address: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> <b>Зашифрований</b> гаманець <b>заблоковано</b> + + + Sending... + Відправлення... + A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -603,16 +603,6 @@ Address: %4 &Address &Адреса - - - The address associated with this address book entry. This can only be modified for sending addresses. - Адреса, пов’язана з цим записом адресної книги. - - - - New receiving address - Нова адреса для отримання - New sending address @@ -623,11 +613,6 @@ Address: %4 Edit receiving address Редагувати адресу для отримання - - - Edit sending address - Редагувати адресу для відправлення - The entered address "%1" is already in the address book. @@ -643,6 +628,21 @@ Address: %4 New key generation failed. Не вдалося згенерувати нові ключі. + + + The address associated with this address book entry. This can only be modified for sending addresses. + Адреса, пов’язана з цим записом адресної книги. + + + + New receiving address + Нова адреса для отримання + + + + Edit sending address + Редагувати адресу для відправлення + The entered address "%1" is not a valid bitcoin address. @@ -676,16 +676,16 @@ Address: %4 Map port using &UPnP Відображення порту через &UPnP - - - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Автоматично відкривати порт для клієнту біткоін на роутері. Працює лише якщо ваш роутер підтримує UPnP і ця функція увімкнена. - M&inimize on close Згортати замість закритт&я + + + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + Автоматично відкривати порт для клієнту біткоін на роутері. Працює лише якщо ваш роутер підтримує UPnP і ця функція увімкнена. + 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. @@ -701,6 +701,16 @@ Address: %4 Connect to the Bitcoin network through a SOCKS4 proxy (e.g. when connecting through Tor) Підключатись до мережі Bitcoin через SOCKS4-проксі (наприклад при використанні Tor) + + + Proxy &IP: + &IP проксі: + + + + IP address of the proxy (e.g. 127.0.0.1) + IP-адреса проксі-сервера (наприклад 127.0.0.1) + &Port: @@ -714,22 +724,12 @@ Address: %4 Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. - Добровільна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. + Добровільна комісія за кожен Кб переказу, яка дозволяє бути впевненим у тому, що ваш переказ буде оброблено швидко. Розмір більшості переказів рівен 1 Кб. Рекомендована комісія: 0,01. Pay transaction &fee - Заплатити комісі&ю - - - - Proxy &IP: - &IP проксі: - - - - IP address of the proxy (e.g. 127.0.0.1) - IP-адреса проксі-сервера (наприклад 127.0.0.1) + Заплатити комісі&ю @@ -752,6 +752,16 @@ Address: %4 OverviewPage + + + Your current balance + Ваш поточний баланс + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Загальна сума всіх переказів, які ще не підтверджені, та до сих пір не враховуються в загальному балансі + Form @@ -767,41 +777,31 @@ Address: %4 Number of transactions: Кількість переказів: + + + 0 + 0 + Wallet Гаманець + + + <b>Recent transactions</b> + <b>Недавні перекази</b> + Unconfirmed: Непідтверджені: - - - 0 - 0 - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Загальна сума всіх переказів, які ще не підтверджені, та до сих пір не враховуються в загальному балансі - Total number of transactions in wallet Загальна кількість переказів в гаманці - - - <b>Recent transactions</b> - <b>Недавні перекази</b> - - - - Your current balance - Ваш поточний баланс - SendCoinsDialog @@ -817,6 +817,11 @@ Address: %4 Send Coins Відправити + + + and + і + Send to multiple recipients at once @@ -825,7 +830,7 @@ Address: %4 &Add recipient... - Дод&ати одержувача... + Дод&ати одержувача... @@ -872,11 +877,6 @@ Address: %4 Are you sure you want to send %1? Ви впевнені що хочете відправити %1 - - - and - і - The recipient address is not valid, please recheck. @@ -920,6 +920,16 @@ Address: %4 Form Форма + + + A&mount: + &Кількість: + + + + Pay &To: + &Отримувач: + @@ -931,45 +941,35 @@ Address: %4 &Label: &Мітка: - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Адреса для отримувача платежу (наприклад, 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose address from address book Вибрати адресу з адресної книги + + + Alt+A + Alt+A + Paste address from clipboard Вставити адресу + + + Alt+P + Alt+P + Remove this recipient Видалити цього отримувача - - A&mount: - &Кількість: - - - - Pay &To: - &Отримувач: - - - - Alt+A - Alt+A - - - - Alt+P - Alt+P + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Адреса для отримувача платежу (наприклад, 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -979,40 +979,25 @@ Address: %4 TransactionDesc - - - %1 confirmations - %1 підтверджень - - - - , has not been successfully broadcast yet - , ще не було успішно розіслано - Open for %1 blocks Відкрити для %1 блоків - - - Open until %1 - Відкрити до %1 - %1/offline? %1/поза інтернетом? - - %1/unconfirmed - %1/не підтверджено + + %1 confirmations + %1 підтверджень <b>Status:</b> - <b>Статус:</b> + <b>Статус:</b> @@ -1027,7 +1012,7 @@ Address: %4 <b>Date:</b> - <b>Дата:</b> + <b>Дата:</b> @@ -1045,6 +1030,40 @@ Address: %4 unknown невідомий + + + + + <b>To:</b> + <b>Одержувач:</b> + + + + (yours) + (ваша) + + + + (%1 matures in %2 more blocks) + (%1 «дозріє» через %2 блоків) + + + + + + <b>Debit:</b> + <b>Дебет:</b> + + + + <b>Net amount:</b> + <b>Загальна сума:</b> + + + + Message: + Повідомлення: + Comment: @@ -1056,22 +1075,25 @@ Address: %4 Після генерації монет, потрібно зачекати 120 блоків, перш ніж їх можна буде використати. Коли ви згенерували цей блок, його було відправлено в мережу для того, щоб він був доданий до ланцюжка блоків. Якщо ця процедура не вдасться, статус буде змінено на «не підтверджено» і ви не зможете потратити згенеровані монету. Таке може статись, якщо хтось інший згенерував блок на декілька секунд раніше. - - - - <b>To:</b> - <b>Одержувач:</b> + + , has not been successfully broadcast yet + , ще не було успішно розіслано + + + + Open until %1 + Відкрити до %1 + + + + %1/unconfirmed + %1/не підтверджено (yours, label: (Ваша, мітка: - - - (yours) - (ваша) - @@ -1080,37 +1102,15 @@ Address: %4 <b>Credit:</b> <b>Кредит:</b> - - - (%1 matures in %2 more blocks) - (%1 «дозріє» через %2 блоків) - (not accepted) (не прийнято) - - - - <b>Debit:</b> - <b>Дебет:</b> - - - - <b>Transaction fee:</b> - <b>Комісія за переказ:</b> - - - - <b>Net amount:</b> - <b>Загальна сума:</b> - - - - Message: - Повідомлення: + + <b>Transaction fee:</b> + <b>Комісія за переказ:</b> @@ -1177,15 +1177,6 @@ Address: %4 Confirmed (%1 confirmations) Підтверджено (%1 підтверджень) - - - Mined balance will be available in %n more blocks - - Добутими монетами можна буде скористатись через %n блок - Добутими монетами можна буде скористатись через %n блок - Добутими монетами можна буде скористатись через %n блоки - - This block was not received by any other nodes and will probably not be accepted! @@ -1251,48 +1242,52 @@ Address: %4 Amount removed from or added to balance. Сума, додана чи знята з балансу. + + + Mined balance will be available in %n more blocks + + Добутими монетами можна буде скористатись через %n блок + Добутими монетами можна буде скористатись через %n блоки + Добутими монетами можна буде скористатись через %n блоків + + TransactionView - - Type - Тип - - - - Label - Мітка + + Enter address or label to search + Введіть адресу чи мітку для пошуку - - Address - Адреса + + Min amount + Мінімальна сума - - Amount - Кількість + + Copy label + Скопіювати мітку - - ID - Ідентифікатор + + Comma separated file (*.csv) + Файли, розділені комою (*.csv) - - Error exporting - Помилка експорту + + Date + Дата - - Could not write to file %1. - Неможливо записати у файл %1 + + to + до - - Range: - Діапазон від: + + ID + Ідентифікатор @@ -1300,11 +1295,6 @@ Address: %4 All Всі - - - Today - Сьогодні - This week @@ -1316,34 +1306,34 @@ Address: %4 На цьому місяці - - Last month - Минулого місяця + + Error exporting + Помилка експорту - - This year - Цього року + + Could not write to file %1. + Неможливо записати у файл %1 - - Range... - Проміжок + + Range: + Діапазон від: - - Received with - Отримані на + + Show details... + Показати деталі... - - Sent to - Відправлені на + + Type + Тип - - To yourself - Відправлені собі + + Address + Адреса @@ -1351,30 +1341,30 @@ Address: %4 Добуті - - Other - Інше + + Amount + Кількість - - Enter address or label to search - Введіть адресу чи мітку для пошуку + + This year + Цього року - - Min amount - Мінімальна сума + + Received with + Отримані на + + + + Sent to + Відправлені на Copy address Скопіювати адресу - - - Copy label - Скопіювати мітку - Edit label @@ -1386,29 +1376,39 @@ Address: %4 Експортувати дані переказів - - Comma separated file (*.csv) - Файли, розділені комою (*.csv) + + Today + Сьогодні - - Confirmed - Підтверджені + + Last month + Минулого місяця - - Date - Дата + + Range... + Проміжок - - Show details... - Показати деталі... + + Label + Мітка - - to - до + + To yourself + Відправлені собі + + + + Other + Інше + + + + Confirmed + Підтверджені @@ -1426,6 +1426,12 @@ Address: %4 Usage: Вкористання: + + + Don't find peers using internet relay chat + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. @@ -1437,25 +1443,20 @@ Address: %4 Завантаження адрес... - - Loading block index... - Завантаження індексу блоків... + + Done loading + Завантаження завершене + + + + Bitcoin version + Версія Loading wallet... Завантаження гаманця... - - - Rescanning... - Сканування... - - - - Done loading - Завантаження завершене - Invalid amount for -paytxfee=<amount> @@ -1476,16 +1477,36 @@ Address: %4 Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Увага: будь ласка, перевірте дату і час на свому комп’ютері. Якщо ваш годинник йде неправильно, Bitcoin може працювати некоректно. + + + Invalid -proxy address + Помилка в адресі проксі-сервера + + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + Увага: встановлено занадто велику комісію (-paytxfee). Комісія зніматиметься кожен раз коли ви проводитимете перекази. + + + + Warning: Disk space is low + Увага: На диску мало вільного місця + + + + Rescanning... + Сканування... + + + + Loading block index... + Завантаження індексу блоків... + beta бета - - - Bitcoin version - Версія - Send command to -server or bitcoind @@ -1600,12 +1621,6 @@ Address: %4 Підключитись лише до вказаного вузла - - - Don't find peers using internet relay chat - - - Don't accept connections from outside @@ -1697,21 +1712,6 @@ Address: %4 Потрібно перезаписати гаманець: перезапустіть Біткоін-клієнт для завершення - - - Invalid -proxy address - Помилка в адресі проксі-сервера - - - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - Увага: встановлено занадто велику комісію (-paytxfee). Комісія зніматиметься кожен раз коли ви проводитимете перекази. - - - - Warning: Disk space is low - Увага: На диску мало вільного місця - Run in the background as a daemon and accept commands diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index 5bbb8bcea6..b9c9cc9fe8 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -69,6 +69,11 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard &复制到剪贴板 + + + Export Address Book Data + 导出地址簿数据 + Delete the currently selected address from the list. Only sending addresses can be deleted. @@ -79,11 +84,6 @@ This product includes software developed by the OpenSSL Project for use in the O &Delete &删除 - - - Export Address Book Data - 导出地址簿数据 - Comma separated file (*.csv) @@ -91,13 +91,13 @@ This product includes software developed by the OpenSSL Project for use in the O - Error exporting - 导出错误 + Could not write to file %1. + 无法写入文件 %1。 - Could not write to file %1. - 无法写入文件 %1。 + Error exporting + 导出错误 @@ -107,34 +107,29 @@ This product includes software developed by the OpenSSL Project for use in the O Label 标签 - - - Address - 地址 - (no label) (没有标签) + + + Address + 地址 + AskPassphraseDialog - - - Enter passphrase - 输入口令 - - - - Dialog - 会话 - New passphrase 新口令 + + + Enter passphrase + 输入口令 + TextLabel @@ -145,52 +140,45 @@ This product includes software developed by the OpenSSL Project for use in the O Repeat new passphrase 重复新口令 - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - 输入钱包的新口令。<br/>使用的口令请至少包含<b>10个以上随机字符</>,或者是<b>8个以上的单词</b>。 - - - - Encrypt wallet - 加密钱包 - - - - This operation needs your wallet passphrase to unlock the wallet. - 该操作需要您首先使用口令解锁钱包。 - Unlock wallet 解锁钱包 + + + Dialog + 会话 + This operation needs your wallet passphrase to decrypt the wallet. 该操作需要您首先使用口令解密钱包。 - - Decrypt wallet - 解密钱包 + + 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>。 - - Change passphrase - 修改口令 + + Wallet decryption failed + 钱包解密失败。 - - Enter the old and new passphrase to the wallet. - 请输入钱包的旧口令与新口令。 + + Encrypt wallet + 加密钱包 - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - 警告:如果您加密了您的钱包之后忘记了口令,您将会<b>失去所有的比特币</b>! -确定要加密钱包吗? + + This operation needs your wallet passphrase to unlock the wallet. + 该操作需要您首先使用口令解锁钱包。 + + + + Confirm wallet encryption + 确认加密钱包 @@ -198,11 +186,6 @@ Are you sure you wish to encrypt your wallet? Wallet encrypted 钱包已加密 - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的比特币还是有可能丢失。 - @@ -235,9 +218,31 @@ Are you sure you wish to encrypt your wallet? 用于解密钱包的口令不正确。 - - Wallet decryption failed - 钱包解密失败。 + + Change passphrase + 修改口令 + + + + Decrypt wallet + 解密钱包 + + + + Enter the old and new passphrase to the wallet. + 请输入钱包的旧口令与新口令。 + + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + 警告:如果您加密了您的钱包之后忘记了口令,您将会<b>失去所有的比特币</b>! +确定要加密钱包吗? + + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的比特币还是有可能丢失。 @@ -250,18 +255,18 @@ Are you sure you wish to encrypt your wallet? Warning: The Caps Lock key is on. 警告:大写锁定键CapsLock开启 - - - Confirm wallet encryption - 确认加密钱包 - BitcoinGUI - - Bitcoin Wallet - 比特币钱包 + + Edit the list of stored addresses and labels + 修改存储的地址和标签列表 + + + + &Receive coins + &收款地址 @@ -287,7 +292,7 @@ Are you sure you wish to encrypt your wallet? &Transactions - &交易 + &交易记录 @@ -297,17 +302,7 @@ Are you sure you wish to encrypt your wallet? &Address Book - &地址薄 - - - - Edit the list of stored addresses and labels - 修改存储的地址和标签列表 - - - - &Receive coins - &接收货币 + &地址簿 @@ -319,11 +314,6 @@ Are you sure you wish to encrypt your wallet? &Send coins &发送货币 - - - Send coins to a bitcoin address - 将货币发送到一个比特币地址 - E&xit @@ -345,55 +335,15 @@ Are you sure you wish to encrypt your wallet? 显示比特币的相关信息 - - &Options... - &选项... - - - - Modify configuration options for bitcoin - 修改比特币配置选项 - - - - Open &Bitcoin - 打开 &比特币 - - - - Show the Bitcoin window - 显示比特币窗口 - - - - &Export... - &导出... - - - - Export the current view to a file - 导出当前视图到指定文件 - - - - &Encrypt Wallet - &加密钱包 - - - - Show information about Qt - 显示Qt相关信息 + + Incoming transaction + 流入交易 &File &文件 - - - &Settings - &设置 - &Help @@ -420,16 +370,29 @@ Are you sure you wish to encrypt your wallet? [testnet] - - Change the passphrase used for wallet encryption - 修改钱包加密口令 + + &Settings + &设置 - - - %n active connection(s) to Bitcoin network - - 您连接到比特币网络的连接数量共有%n条 - + + + Send coins to a bitcoin address + 将货币发送到一个比特币地址 + + + + Downloaded %1 blocks of transaction history. + %1 个交易历史数据区块已下载 + + + + Show information about Qt + 显示Qt相关信息 + + + + Bitcoin Wallet + 比特币钱包 @@ -437,9 +400,34 @@ Are you sure you wish to encrypt your wallet? 关于 &Qt - - Downloaded %1 blocks of transaction history. - %1 个交易历史数据区块已下载 + + &Options... + &选项... + + + + Modify configuration options for bitcoin + 修改比特币配置选项 + + + + Open &Bitcoin + 打开 &比特币 + + + + Show the Bitcoin window + 显示比特币窗口 + + + + Export the current view to a file + 导出当前视图到指定文件 + + + + Change the passphrase used for wallet encryption + 修改钱包加密口令 @@ -469,6 +457,11 @@ Are you sure you wish to encrypt your wallet? %n 天前 + + + &Encrypt Wallet + &加密钱包 + Up to date @@ -484,31 +477,6 @@ Are you sure you wish to encrypt your wallet? 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 交易费, 交易费将支付给处理该笔交易的网络节点,有助于维持比特币网络的运行. 您愿意支付交易费用吗? - - - - bitcoin-qt - bitcoin-qt - - - - &Change Passphrase - &修改口令 - - - - Sent transaction - 已发送交易 - - - - Incoming transaction - 流入交易 - Date: %1 @@ -522,11 +490,6 @@ Address: %4 地址: %4 - - - Downloaded %1 of %2 blocks of transaction history. - %1 / %2 个交易历史的区块已下载 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> @@ -537,11 +500,48 @@ Address: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> 钱包已被<b>加密</b>,当前为<b>锁定</b>状态 + + + &Export... + &导出... + + + + %n active connection(s) to Bitcoin network + + 您连接到比特币网络的连接数量共有%n条 + + + + + bitcoin-qt + bitcoin-qt + + + + 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 交易费, 交易费将支付给处理该笔交易的网络节点,有助于维持比特币网络的运行. 您愿意支付交易费用吗? + Sending... 发送中 + + + Sent transaction + 已发送交易 + + + + &Change Passphrase + &修改口令 + + + + Downloaded %1 of %2 blocks of transaction history. + %1 / %2 个交易历史的区块已下载 + A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -563,7 +563,7 @@ Address: %4 &Display addresses in transaction list - 在交易清单中&显示比特币地址 + &在交易列表中显示地址 @@ -583,26 +583,11 @@ Address: %4 &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 @@ -623,11 +608,6 @@ Address: %4 The entered address "%1" is already in the address book. 输入的地址 "%1" 已经存在于地址簿。 - - - The entered address "%1" is not a valid bitcoin address. - 输入的地址 "%1" 并不是一个有效的比特币地址 - Could not unlock wallet. @@ -638,14 +618,29 @@ Address: %4 New key generation failed. 密钥创建失败. + + + The label associated with this address book entry + 与此地址条目关联的标签 + + + + The address associated with this address book entry. This can only be modified for sending addresses. + 该地址与地址簿中的条目已关联,无法作为发送地址编辑。 + + + + New receiving address + 新接收地址 + + + + The entered address "%1" is not a valid bitcoin address. + 输入的地址 "%1" 并不是一个有效的比特币地址 + MainOptionsPage - - - &Start Bitcoin on window system startup - &开机启动比特币 - Automatically start Bitcoin after the computer is turned on @@ -666,15 +661,20 @@ Address: %4 Map port using &UPnP 使用 &UPnP 映射端口 + + + M&inimize on close + 关闭时最小化 + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. 自动在路由器中打开比特币端口。只有当您的路由器开启 UPnP 选项时此功能才有效。 - - M&inimize on close - 关闭时最小化 + + &Start Bitcoin on window system startup + &开机启动比特币 @@ -699,7 +699,7 @@ Address: %4 IP address of the proxy (e.g. 127.0.0.1) - 代理服务器IP (如 127.0.0.1) + 代理服务器IP (如 127.0.0.1) @@ -709,7 +709,7 @@ Address: %4 Port of the proxy (e.g. 1234) - 代理端口(例如 9050) {1234)?} + 代理端口 (比如 1234) @@ -719,16 +719,11 @@ Address: %4 Pay transaction &fee - 支付交易 &费用 + 支付交易 &费用 OptionsDialog - - - Options - 选项 - Main @@ -739,9 +734,34 @@ Address: %4 Display 查看 + + + Options + 选项 + OverviewPage + + + Your current balance + 您的当前余额 + + + + Total number of transactions in wallet + 钱包总交易数量 + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + 尚未确认的交易总额, 未计入当前余额 + + + + Wallet + 钱包 + Form @@ -757,59 +777,24 @@ Address: %4 Number of transactions: 交易笔数: - - - Unconfirmed: - 未确认: - - - - Wallet - 钱包 - 0 0 - - Your current balance - 您的当前余额 - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - 尚未确认的交易总额, 未计入当前余额 - - - - <b>Recent transactions</b> - <b>最近交易记录</b> - - - - Total number of transactions in wallet - 钱包总交易数量 - - - - SendCoinsDialog - - - and - - - - - Send to multiple recipients at once - 一次发送给多个接收者 + + Unconfirmed: + 未确认: - - Remove all transaction fields - 移除所有交易项 + + <b>Recent transactions</b> + <b>最近交易记录</b> + + + SendCoinsDialog @@ -823,9 +808,14 @@ Address: %4 发送货币 - - &Add recipient... - &添加接收者... + + Send to multiple recipients at once + 一次发送给多个接收者 + + + + Remove all transaction fields + 移除所有交易项 @@ -847,6 +837,26 @@ Address: %4 &Send &发送 + + + Confirm send coins + 确认发送货币 + + + + The total exceeds your balance when the %1 transaction fee is included. + 计入 %1 交易费后的金额超出您的账上余额。 + + + + and + + + + + &Add recipient... + &添加接收者... + Clear all @@ -857,21 +867,11 @@ Address: %4 <b>%1</b> to %2 (%3) <b>%1</b> 到 %2 (%3) - - - Confirm send coins - 确认发送货币 - Are you sure you want to send %1? 确定您要发送 %1? - - - The recipient address is not valid, please recheck. - 接收者地址不合法,请检查。 - The amount to pay must be larger than 0. @@ -882,26 +882,26 @@ Address: %4 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. 错误: 交易被拒绝. 如果您使用的是备份钱包,可能存在两个钱包不同步的情况,另一个钱包中的比特币已经被使用,但本地的这个钱包尚没有记录。 + + + The recipient address is not valid, please recheck. + 接收者地址不合法,请检查。 + + + + Error: Transaction creation failed. + 错误: 创建交易失败. + SendCoinsEntry @@ -910,11 +910,6 @@ Address: %4 &Label: &标签: - - - Choose address from address book - 从地址簿选择地址 - Paste address from clipboard @@ -923,27 +918,22 @@ Address: %4 Alt+P - Alt+P + Alt+P - - Remove this recipient - 移除此接收者 + + Form + 表单 A&mount: - 金额 - - - - Form - 表单 + 金额 Pay &To: - 支付 &到: + 付款&给: @@ -956,11 +946,21 @@ Address: %4 The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) 付款地址 (例如: 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + Choose address from address book + 从地址簿选择地址 + Alt+A Alt+A + + + Remove this recipient + 移除此接收者 + Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -970,30 +970,14 @@ Address: %4 TransactionDesc - - %1 confirmations - %1 确认项 - - - - , has not been successfully broadcast yet - , 未被成功广播 - - - - , broadcast through %1 node - ,同过 %1 节点广播 - - - - , broadcast through %1 nodes - ,同过 %1 节点组广播 + + <b>Net amount:</b> + <b>网络金额:</b> - - - <b>From:</b> - <b>从:</b> + + <b>Date:</b> + <b>日期:</b> @@ -1001,9 +985,16 @@ Address: %4 未知 - - Open until %1 - 至 %1 个数据块时开启 + + (yours, label: + (您的, 标签: + + + + + + <b>To:</b> + <b>到:</b> @@ -1015,20 +1006,20 @@ Address: %4 %1/offline? %1/离线? - - - %1/unconfirmed - %1/未确认 - <b>Status:</b> <b>状态:</b> - - <b>Date:</b> - <b>日期:</b> + + , broadcast through %1 node + ,同过 %1 节点广播 + + + + , broadcast through %1 nodes + ,同过 %1 节点组广播 @@ -1036,16 +1027,10 @@ Address: %4 <b>来源:</b> 生成<br> - - - - <b>To:</b> - <b>到:</b> - - - - (yours, label: - (您的, 标签: + + + <b>From:</b> + <b>从:</b> @@ -1065,6 +1050,26 @@ Address: %4 (%1 matures in %2 more blocks) (%1 成熟于 %2 以上数据块) + + + , has not been successfully broadcast yet + , 未被成功广播 + + + + Open until %1 + 至 %1 个数据块时开启 + + + + %1/unconfirmed + %1/未确认 + + + + %1 confirmations + %1 确认项 + (not accepted) @@ -1082,11 +1087,6 @@ Address: %4 <b>Transaction fee:</b> 交易费 - - - <b>Net amount:</b> - <b>网络金额:</b> - Message: @@ -1196,54 +1196,115 @@ Address: %4 付款给自己 - - Mined - 挖矿所得 + + 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. + 从余额添加或移除的金额。 + + + + Mined balance will be available in %n more blocks + + 挖矿所得将在 %n 个数据块之后可用 + + + + + TransactionView + + + Last month + 上月 + + + + This year + 今年 + + + + Received with + 接收于 + + + + To yourself + 到自己 + + + + Other + 其他 - - (n/a) - (n/a) + + Min amount + 最小金额 - - Transaction status. Hover over this field to show number of confirmations. - 交易状态。 鼠标移到此区域上可显示确认消息项的数目。 + + Copy label + 复制标签 - - Date and time that the transaction was received. - 接收比特币的时间 + + to + - - Type of transaction. - 交易类别。 + + + All + 全部 - - Destination address of transaction. - 交易目的地址。 + + Today + 今天 - - Amount removed from or added to balance. - 从余额添加或移除的金额。 + + This week + 本周 - - - Mined balance will be available in %n more blocks - - 挖矿所得将在 %n 个数据块之后可用 - + + + This month + 本月 - - - TransactionView - - Edit label - 编辑标签 + + Range... + 范围... @@ -1300,101 +1361,40 @@ Address: %4 Could not write to file %1. 无法写入文件 %1。 - - - Show details... - 显示细节... - Range: 范围: - - - - 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 - 复制标签 + + Mined + 挖矿所得 - - to - + + Edit label + 编辑标签 + + + + Show details... + 显示细节... @@ -1413,9 +1413,28 @@ Address: %4 比特币版本 - - Usage: - 使用: + + Threshold for disconnecting misbehaving peers (default: 100) + + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + + @@ -1423,9 +1442,9 @@ Address: %4 无法给数据目录 %s 加锁。比特币进程可能已在运行。 - - Loading addresses... - 正在加载地址... + + Rescanning... + 正在重新扫描... @@ -1437,31 +1456,11 @@ Address: %4 Loading wallet... 正在加载钱包... - - - Rescanning... - 正在重新扫描... - - - - Done loading - 加载完成 - Invalid -proxy address 代理地址不合法 - - - Invalid amount for -paytxfee=<amount> - 不合适的交易费 -paytxfee=<amount> - - - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - 警告: -paytxfee 交易费设置过高. 每进行一笔交易您都将支付该数量的交易费. - Error: CreateThread(StartNode) failed @@ -1477,11 +1476,41 @@ Address: %4 Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. 警告:请确定您当前计算机的日期和时间是正确的。比特币将无法在错误的时间下正常工作。 + + + Usage: + 使用: + + + + Loading addresses... + 正在加载地址... + + + + Done loading + 加载完成 + + + + Invalid amount for -paytxfee=<amount> + 不合适的交易费 -paytxfee=<amount> + + + + Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. + 警告: -paytxfee 交易费设置过高. 每进行一笔交易您都将支付该数量的交易费. + beta 测试 + + + Warning: Disk space is low + 警告:磁盘空间不足 + Send command to -server or bitcoind @@ -1612,30 +1641,6 @@ Address: %4 不要用DNS启动 - - - Threshold for disconnecting misbehaving peers (default: 100) - - - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - - Don't attempt to use UPnP to map the listening port @@ -1667,11 +1672,6 @@ Address: %4 跟踪/调试信息输出到 调试器debugger - - - Warning: Disk space is low - 警告:磁盘空间不足 - Attempt to use UPnP to map the listening port diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index 8f6c376394..14d4eba51e 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -67,7 +67,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - 複製到剪貼簿 + 複製到剪貼簿 @@ -79,11 +79,6 @@ This product includes software developed by the OpenSSL Project for use in the O &Delete 刪除 - - - Export Address Book Data - 匯出位址簿資料 - Comma separated file (*.csv) @@ -99,18 +94,23 @@ This product includes software developed by the OpenSSL Project for use in the O Could not write to file %1. 無法寫入檔案 %1. + + + Export Address Book Data + 匯出位址簿資料 + AddressTableModel - Label - 標記 + Address + 位址 - Address - 位址 + Label + 標記 @@ -120,15 +120,35 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog + + + New passphrase + 新的密碼 + + + + TextLabel + 文字標籤 + Enter passphrase 輸入密碼 - - New passphrase - 新的密碼 + + Unlock wallet + 錢包解鎖 + + + + Confirm wallet encryption + 錢包加密確認 + + + + This operation needs your wallet passphrase to unlock the wallet. + 這個動作需要用你的錢包密碼來解鎖 @@ -146,24 +166,30 @@ This product includes software developed by the OpenSSL Project for use in the O 輸入錢包的新密碼.<br/>請用<b>10個以上的字元</b>, 或是<b>8個以上的單字</b>. - - TextLabel - 文字標籤 + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + 錢包加密因程式內部有誤而失敗. 你的錢包還是沒有加密. - - Encrypt wallet - 錢包加密 + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + 位元幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的位元幣. - - This operation needs your wallet passphrase to unlock the wallet. - 這個動作需要用你的錢包密碼來解鎖 + + Decrypt wallet + 錢包解密 - - Unlock wallet - 錢包解鎖 + + + Wallet encrypted + 錢包已加密 + + + + Wallet decryption failed + 錢包解密失敗 @@ -171,31 +197,15 @@ This product includes software developed by the OpenSSL Project for use in the O 這個動作需要用你的錢包密碼來解密 - - Decrypt wallet - 錢包解密 + + Wallet passphrase was successfully changed. + 錢包密碼變更成功. Change passphrase 變更密碼 - - - Enter the old and new passphrase to the wallet. - 輸入錢包的新舊密碼. - - - - - Wallet encrypted - 錢包已加密 - - - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 位元幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的位元幣. - @@ -204,11 +214,6 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet encryption failed 錢包加密失敗 - - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - 錢包加密因程式內部有誤而失敗. 你的錢包還是沒有加密. - @@ -228,9 +233,10 @@ This product includes software developed by the OpenSSL Project for use in the O 用來解密錢包的密碼輸入錯誤. - - Wallet decryption failed - 錢包解密失敗 + + + Warning: The Caps Lock key is on. + 警告: 鍵盤輸入鎖定為大寫字母中. @@ -240,44 +246,73 @@ Are you sure you wish to encrypt your wallet? 你確定要將錢包加密嗎? - - Wallet passphrase was successfully changed. - 錢包密碼變更成功. - - - - - Warning: The Caps Lock key is on. - 警告: 鍵盤輸入鎖定為大寫字母中. + + Encrypt wallet + 錢包加密 - - Confirm wallet encryption - 錢包加密確認 + + Enter the old and new passphrase to the wallet. + 輸入錢包的新舊密碼. BitcoinGUI - - - Bitcoin Wallet - 位元幣錢包 - Synchronizing with network... 網路同步中... + + + &Overview + 總覽 + + + + Browse transaction history + 瀏覽交易紀錄 + + + + E&xit + 結束 + + + + Show information about Qt + 顯示有關於 Qt 的資訊 + + + + Open &Bitcoin + 開啟位元幣 + + + + Show the Bitcoin window + 顯示位元幣主視窗 + + + + &Change Passphrase + 變更密碼 + + + + Sending... + 付出中... + Block chain synchronization in progress 正在進行區塊鎖鏈的同步中 - - &Overview - 總覽 + + Bitcoin Wallet + 位元幣錢包 @@ -289,11 +324,6 @@ Are you sure you wish to encrypt your wallet? &Transactions 交易 - - - Browse transaction history - 瀏覽交易紀錄 - &Address Book @@ -314,70 +344,50 @@ Are you sure you wish to encrypt your wallet? Show the list of addresses for receiving payments 顯示收款位址的列表 - - - &Send coins - 付錢 - Send coins to a bitcoin address 付錢至某個位元幣位址 - - - E&xit - 結束 - - - - &About %1 - 關於%1 - &Options... 選項... - - Show the Bitcoin window - 顯示位元幣主視窗 + + Show information about Bitcoin + 顯示位元幣相關資訊 - - Export the current view to a file - 將目前版面匯出至檔案 + + About &Qt + 關於 &Qt + + + + &Export... + 匯出... Encrypt or decrypt wallet 將錢包加解密 - - - &Change Passphrase - 變更密碼 - Change the passphrase used for wallet encryption 變更錢包加密用的密碼 - - Sending... - 付出中... - - - - About &Qt - 關於 &Qt + + Quit application + 結束應用程式 - - Show information about Qt - 顯示有關於 Qt 的資訊 + + Export the current view to a file + 將目前版面匯出至檔案 @@ -385,55 +395,20 @@ Are you sure you wish to encrypt your wallet? 檔案 - - &Settings - 設定 - - - - &Help - 求助 - - - - Quit application - 結束應用程式 + + [testnet] + [testnet] Tabs toolbar 分頁工具列 - - - Show information about Bitcoin - 顯示位元幣相關資訊 - Actions toolbar 動作工具列 - - - [testnet] - [testnet] - - - - Modify configuration options for bitcoin - 修改位元幣的設定選項 - - - - Open &Bitcoin - 開啟位元幣 - - - - bitcoin-qt - - %n active connection(s) to Bitcoin network @@ -441,21 +416,16 @@ Are you sure you wish to encrypt your wallet? 與位元幣網路有 %n 個連線在使用中 - - - &Export... - 匯出... - - - - &Encrypt Wallet - 錢包加密 - Downloaded %1 blocks of transaction history. 已下載了 %1 個交易紀錄的區塊. + + + &Send coins + 付錢 + %n second(s) ago @@ -499,11 +469,21 @@ Are you sure you wish to encrypt your wallet? Last received block was generated %1. 最近收到的區塊產生於 %1. + + + &About %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 的費用來傳送. 這筆費用會付給處理該筆交易的節點, 並幫助維持整個網路. 你願意支付這項費用嗎? + + + Modify configuration options for bitcoin + 修改位元幣的設定選項 + Sent transaction @@ -526,6 +506,11 @@ Address: %4 類別: %3 位址: %4 + + + &Encrypt Wallet + 錢包加密 + Wallet is <b>encrypted</b> and currently <b>unlocked</b> @@ -536,16 +521,31 @@ Address: %4 Wallet is <b>encrypted</b> and currently <b>locked</b> 錢包<b>已加密</b>並且正<b>上鎖中</b> - - - Downloaded %1 of %2 blocks of transaction history. - 已下載了 %1/%2 個交易紀錄的區塊. - A fatal error occurred. Bitcoin can no longer continue safely and will quit. 發生了致命的錯誤. 位元幣程式無法再繼續安全執行, 只好結束. + + + &Help + 求助 + + + + &Settings + 設定 + + + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + 已下載了 %1/%2 個交易紀錄的區塊. + DisplayOptionsPage @@ -655,25 +655,25 @@ Address: %4 &Minimize to the tray instead of the taskbar 最小化至通知區域而非工作列 - - - Show only a tray icon after minimizing the window - 視窗最小化時只顯示圖示於通知區域 - Map port using &UPnP 用 &UPnP 設定通訊埠對應 + + + M&inimize on close + 關閉時最小化 + Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. 自動在路由器上開啟位元幣的客戶端通訊埠. 只有在你的路由器支援 UPnP 且開啟時才有作用. - - M&inimize on close - 關閉時最小化 + + Show only a tray icon after minimizing the window + 視窗最小化時只顯示圖示於通知區域 @@ -698,7 +698,7 @@ Address: %4 IP address of the proxy (e.g. 127.0.0.1) - 代理伺服器的 IP 位址 (比如說 127.0.0.1) + 代理伺服器的網際網路位址 (比如說 127.0.0.1) @@ -718,16 +718,11 @@ Address: %4 Pay transaction &fee - 付交易手續費 + 付交易手續費 OptionsDialog - - - Options - 選項 - Main @@ -738,23 +733,33 @@ Address: %4 Display 顯示 + + + Options + 選項 + OverviewPage + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + 尚未確認之交易的總額, 不包含在目前餘額中 + + + + Total number of transactions in wallet + 錢包中紀錄的總交易次數 + Form 表單 - - Balance: - 餘額: - - - - Number of transactions: - 交易次數: + + 0 + 0 @@ -767,9 +772,9 @@ Address: %4 錢包 - - 0 - 0 + + Balance: + 餘額: @@ -777,28 +782,18 @@ Address: %4 目前餘額 - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - 尚未確認之交易的總額, 不包含在目前餘額中 + + Number of transactions: + 交易次數: <b>Recent transactions</b> <b>最近交易</b> - - - Total number of transactions in wallet - 錢包中紀錄的總交易次數 - SendCoinsDialog - - - and - - @@ -822,39 +817,24 @@ Address: %4 移除所有交易欄位 - - &Add recipient... - 加收款人... - - - - Balance: - 餘額: + + Confirm the send action + 確認付款動作 123.456 BTC 123.456 BTC - - - Confirm the send action - 確認付款動作 - &Send 付出 - - Clear all - 全部清掉 - - - - <b>%1</b> to %2 (%3) - <b>%1</b> 給 %2 (%3) + + and + @@ -866,6 +846,36 @@ Address: %4 Are you sure you want to send %1? 確定要付出 %1 嗎? + + + The amount exceeds your balance. + 金額超過了餘額 + + + + Duplicate address found, can only send to each address once per send operation. + 發現有重複的位址. 在一次付款動作中, 只能付給每個位址一次. + + + + &Add recipient... + 加收款人... + + + + Balance: + 餘額: + + + + Clear all + 全部清掉 + + + + <b>%1</b> to %2 (%3) + <b>%1</b> 給 %2 (%3) + The recipient address is not valid, please recheck. @@ -876,20 +886,10 @@ Address: %4 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. - 發現有重複的位址. 在一次付款動作中, 只能付給每個位址一次. + The total exceeds your balance when the %1 transaction fee is included. + 包含 %1 的交易手續費後, 總金額超過了你的餘額 @@ -905,15 +905,36 @@ Address: %4 SendCoinsEntry - - Form - 表單 + + Paste address from clipboard + 從剪貼簿貼上位址 Pay &To: 付給: + + + + Enter a label for this address to add it to your address book + 給這個位址輸入一個標記, 並加到位址簿中 + + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + 付款的目標位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Form + 表單 + + + + A&mount: + 金額: + &Label: @@ -925,41 +946,20 @@ Address: %4 從位址簿中選一個位址 - - Paste address from clipboard - 從剪貼簿貼上位址 + + Alt+A + Alt+A Alt+P - Alt+P + Alt+P Remove this recipient 去掉這個收款人 - - - A&mount: - 金額: - - - - - Enter a label for this address to add it to your address book - 給這個位址輸入一個標記, 並加到位址簿中 - - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - 付款的目標位址 (比如說 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - - - - Alt+A - Alt+A - Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) @@ -968,30 +968,35 @@ Address: %4 TransactionDesc + + + Open for %1 blocks + 在 %1 個區塊內未定 + + + + %1/offline? + %1/離線中? + + + + %1/unconfirmed + %1/未確認 + %1 confirmations 經確認 %1 次 - - - , has not been successfully broadcast yet - , 尚未成功公告出去 - <b>Status:</b> <b>狀態:</b> - - Open for %1 blocks - 在 %1 個區塊內未定 - - - - %1/offline? - %1/離線中? + + , has not been successfully broadcast yet + , 尚未成功公告出去 @@ -1019,21 +1024,6 @@ Address: %4 <b>From:</b> <b>來自:</b> - - - unknown - 未知 - - - - Open until %1 - 在 %1 前未定 - - - - %1/unconfirmed - %1/未確認 - @@ -1069,6 +1059,16 @@ Address: %4 (not accepted) (不被接受) + + + Open until %1 + 在 %1 前未定 + + + + unknown + 未知 + @@ -1239,11 +1239,46 @@ Address: %4 TransactionView + + + Type + 種類 + + + + To yourself + 給自己 + + + + Min amount + 最小金額 + + + + Copy address + 複製位址 + + + + This month + 這個月 + + + + Last month + 上個月 + Edit label 編輯標記 + + + Show details... + 顯示明細... + Export Transaction Data @@ -1264,11 +1299,6 @@ Address: %4 Date 日期 - - - Type - 種類 - Label @@ -1309,11 +1339,6 @@ Address: %4 to - - - Show details... - 顯示明細... - @@ -1350,11 +1375,6 @@ Address: %4 Sent to 付出至 - - - To yourself - 給自己 - Mined @@ -1365,35 +1385,15 @@ Address: %4 Other 其他 - - - Enter address or label to search - 輸入位址或標記來搜尋 - - - - Min amount - 最小金額 - - - - Copy address - 複製位址 - Copy label 複製標記 - - This month - 這個月 - - - - Last month - 上個月 + + Enter address or label to search + 輸入位址或標記來搜尋 @@ -1406,11 +1406,6 @@ Address: %4 bitcoin-core - - - Bitcoin version - 位元幣版本 - Usage: @@ -1426,6 +1421,36 @@ Address: %4 Loading addresses... 載入位址中... + + + Invalid -proxy address + 無效的 -proxy 位址 + + + + Invalid amount for -paytxfee=<amount> + -paytxfee=<金額> 中的金額無效 + + + + 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 Bitcoin will not work properly. + 警告: 請檢查電腦時間日期是否正確. 位元幣無法在時鐘不準的情況下正常運作. + + + + Warning: Disk space is low + 警告: 磁碟空間很少 + + + + Bitcoin version + 位元幣版本 + Loading block index... @@ -1436,12 +1461,6 @@ Address: %4 Loading wallet... 載入錢包中... - - - Wallet needed to be rewritten: restart Bitcoin to complete - - 錢包需要重寫: 請重啟位元幣來完成 - Rescanning... @@ -1452,21 +1471,6 @@ Address: %4 Done loading 載入完成 - - - Invalid -proxy address - 無效的 -proxy 位址 - - - - Invalid amount for -paytxfee=<amount> - -paytxfee=<金額> 中的金額無效 - - - - Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction. - 警告: -paytxfee 設定得很高. 這是當你交易付款時所要支付的手續費. - Error: CreateThread(StartNode) failed @@ -1478,9 +1482,10 @@ Address: %4 無法與這台電腦上的通訊埠 %d 連結. 也許 Bitcoin 已經在執行了. - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - 警告: 請檢查電腦時間日期是否正確. 位元幣無法在時鐘不準的情況下正常運作. + + Wallet needed to be rewritten: restart Bitcoin to complete + + 錢包需要重寫: 請重啟位元幣來完成 @@ -1648,11 +1653,6 @@ Address: %4 不嘗試用 UPnP 來設定服務連接埠的對應 - - - Warning: Disk space is low - 警告: 磁碟空間很少 - Attempt to use UPnP to map the listening port -- cgit v1.2.3 From 423cece29d7990fa73d8a4b19378552258863503 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 7 Sep 2012 00:32:15 +0000 Subject: Update supported translations --- src/qt/locale/bitcoin_ca_ES.ts | 228 ++++----- src/qt/locale/bitcoin_cs.ts | 936 +++++++++++++++++------------------ src/qt/locale/bitcoin_et.ts | 56 +-- src/qt/locale/bitcoin_eu_ES.ts | 6 +- src/qt/locale/bitcoin_fa.ts | 1020 +++++++++++++++++++------------------- src/qt/locale/bitcoin_fa_IR.ts | 679 ++++++++++++------------- src/qt/locale/bitcoin_fi.ts | 922 +++++++++++++++++----------------- src/qt/locale/bitcoin_fr_CA.ts | 16 +- src/qt/locale/bitcoin_fr_FR.ts | 46 +- src/qt/locale/bitcoin_he.ts | 1062 ++++++++++++++++++++-------------------- src/qt/locale/bitcoin_hr.ts | 840 +++++++++++++++---------------- src/qt/locale/bitcoin_lt.ts | 708 +++++++++++++-------------- src/qt/locale/bitcoin_pl.ts | 992 ++++++++++++++++++------------------- src/qt/locale/bitcoin_ro_RO.ts | 494 +++++++++---------- src/qt/locale/bitcoin_sk.ts | 900 +++++++++++++++++----------------- src/qt/locale/bitcoin_sr.ts | 282 +++++------ src/qt/locale/bitcoin_sv.ts | 892 ++++++++++++++++----------------- src/qt/locale/bitcoin_tr.ts | 886 ++++++++++++++++----------------- 18 files changed, 5484 insertions(+), 5481 deletions(-) diff --git a/src/qt/locale/bitcoin_ca_ES.ts b/src/qt/locale/bitcoin_ca_ES.ts index 05d1460d4d..15277d99cf 100644 --- a/src/qt/locale/bitcoin_ca_ES.ts +++ b/src/qt/locale/bitcoin_ca_ES.ts @@ -101,7 +101,7 @@ This product includes software developed by the OpenSSL Project for use in the O Edit - + Editar @@ -286,11 +286,6 @@ Are you sure you wish to encrypt your wallet? BitcoinGUI - - - Bitcoin Wallet - - @@ -322,11 +317,6 @@ Are you sure you wish to encrypt your wallet? Browse transaction history Cerca a l'historial de transaccions - - - &Address Book - llibreta d'&adreces - Edit the list of stored addresses and labels @@ -345,7 +335,7 @@ Are you sure you wish to encrypt your wallet? &Send coins - + &Enviar monedes @@ -372,31 +362,111 @@ Are you sure you wish to encrypt your wallet? Quit application Sortir de l'aplicació - - - &About %1 - &Sobre %1 - Show information about Bitcoin Mostra informació sobre Bitcoin - - - About &Qt - Sobre &Qt - Show information about Qt - + Mostra informació sobre Qt &Options... &Opcions ... + + + &Help + &Ajuda + + + + Actions toolbar + Accions de la barra d'eines + + + + %n active connection(s) to Bitcoin network + + + + + + + + + %n second(s) ago + + + + + + + + + %n minute(s) ago + + + + + + + + + %n hour(s) ago + + + + + + + + + %n day(s) ago + + + + + + + + + Up to date + Al dia + + + + Catching up... + Posar-se al dia ... + + + + Sent transaction + Transacció enviada + + + + &Address Book + llibreta d'&adreces + + + + Bitcoin Wallet + + + + + &About %1 + &Sobre %1 + + + + About &Qt + Sobre &Qt + Modify configuration options for bitcoin @@ -462,21 +532,11 @@ Are you sure you wish to encrypt your wallet? &Settings - - - &Help - &Ajuda - Tabs toolbar - - - Actions toolbar - Accions de la barra d'eines - [testnet] @@ -487,15 +547,6 @@ Are you sure you wish to encrypt your wallet? bitcoin-qt - - - %n active connection(s) to Bitcoin network - - - - - - Downloaded %1 of %2 blocks of transaction history. @@ -506,52 +557,6 @@ Are you sure you wish to encrypt your wallet? 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 - Al dia - - - - Catching up... - Posar-se al dia ... - Last received block was generated %1. @@ -567,11 +572,6 @@ Are you sure you wish to encrypt your wallet? Sending... L'enviament de ... - - - Sent transaction - Transacció enviada - Incoming transaction @@ -1054,11 +1054,6 @@ Address: %4 Balance: Balanç: - - - 123.456 BTC - - Confirm the send action @@ -1069,6 +1064,16 @@ Address: %4 &Send + + + The amount to pay must be larger than 0. + La quantitat a pagar ha de ser major que 0. + + + + 123.456 BTC + + <b>%1</b> to %2 (%3) @@ -1095,9 +1100,9 @@ Address: %4 - - 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. @@ -1119,11 +1124,6 @@ Address: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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. - Import superi el saldo de la seva compte. - SendCoinsEntry @@ -1151,7 +1151,7 @@ Address: %4 &Label: - + &Etiqueta: @@ -1592,11 +1592,6 @@ Address: %4 Type - - - Label - Etiqueta - Address @@ -1632,6 +1627,11 @@ Address: %4 to + + + Label + Etiqueta + WalletModel @@ -1646,7 +1646,7 @@ Address: %4 Bitcoin version - + Bitcoin versió @@ -1671,7 +1671,7 @@ Address: %4 Options: - + Opcions: diff --git a/src/qt/locale/bitcoin_cs.ts b/src/qt/locale/bitcoin_cs.ts index 0761a4d791..4847cd0bf9 100644 --- a/src/qt/locale/bitcoin_cs.ts +++ b/src/qt/locale/bitcoin_cs.ts @@ -74,11 +74,6 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Show &QR Code Zobraz &QR kód - - - Sign a message to prove you own this address - Podepiš zprávu, čímž prokážeš, že jsi vlastníkem této adresy - &Sign Message @@ -94,6 +89,11 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open &Delete S&maž + + + Sign a message to prove you own this address + Podepiš zprávu, čímž prokážeš, že jsi vlastníkem této adresy + Copy address @@ -102,7 +102,7 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Copy label - Kopíruj její označení + Kopíruj označení @@ -175,6 +175,11 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Repeat new passphrase Totéž heslo ještě jednou + + + TextLabel + Textový popisek + 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>. @@ -221,15 +226,11 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Potvrď zašifrování peněženky - - - Warning: The Caps Lock key is on. - Upozornění: Caps Lock je zapnutý. - - - - TextLabel - Textový popisek + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + VAROVÁNÍ: Pokud zašifruješ peněženku a ztratíš či zapomeneš heslo, <b>PŘIJDEŠ O VŠECHNY BITCOINY</b>! +Jsi si jistý, že chceš peněženku zašifrovat? @@ -284,11 +285,10 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Heslo k peněžence bylo v pořádku změněno. - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - VAROVÁNÍ: Pokud zašifruješ peněženku a ztratíš či zapomeneš heslo, <b>PŘIJDEŠ O VŠECHNY BITCOINY</b>! -Jsi si jistý, že chceš peněženku zašifrovat? + + + Warning: The Caps Lock key is on. + Upozornění: Caps Lock je zapnutý. @@ -329,6 +329,11 @@ Jsi si jistý, že chceš peněženku zašifrovat? &Address Book &Adresář + + + Bitcoin Wallet + Bitcoinová peněženka + Edit the list of stored addresses and labels @@ -339,11 +344,6 @@ Jsi si jistý, že chceš peněženku zašifrovat? &Receive coins Pří&jem mincí - - - Bitcoin Wallet - Bitcoinová peněženka - E&xit @@ -364,6 +364,11 @@ Jsi si jistý, že chceš peněženku zašifrovat? About &Qt O &Qt + + + &Backup Wallet + &Zazálohovat peněženku + [testnet] @@ -374,21 +379,31 @@ Jsi si jistý, že chceš peněženku zašifrovat? &Options... &Možnosti... - - - Block chain synchronization in progress - Provádí se synchronizace řetězce bloků - Browse transaction history Procházet historii transakcí + + + Backup wallet to another location + Zazálohuj peněženku na jiné místo + + + + Block chain synchronization in progress + Provádí se synchronizace řetězce bloků + Sign &message Po&depiš zprávu + + + Incoming transaction + Příchozí transakce + &About %1 @@ -400,24 +415,29 @@ Jsi si jistý, že chceš peněženku zašifrovat? Zašifruj nebo dešifruj peněženku - - &Backup Wallet - &Zazálohovat peněženku + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> - - Backup wallet to another location - Zazálohuj peněženku na jiné místo + + &Send coins + P&oslání mincí - - Change the passphrase used for wallet encryption - Změň heslo k šifrování peněženky + + &Change Passphrase + Změň &heslo - - &File - &Soubor + + Backup Wallet + Záloha peněženky + + + + Wallet Data (*.dat) + Data peněženky (*.dat) @@ -429,25 +449,6 @@ Jsi si jistý, že chceš peněženku zašifrovat? &Help Ná&pověda - - - Tabs toolbar - Panel s listy - - - - Downloaded %1 of %2 blocks of transaction history. - Staženo %1 z %2 bloků transakční historie. - - - - %n second(s) ago - - před vteřinou - před %n vteřinami - před %n vteřinami - - %n day(s) ago @@ -458,14 +459,19 @@ Jsi si jistý, že chceš peněženku zašifrovat? - - Sent transaction - Odeslané transakce + + Up to date + Aktuální - - Incoming transaction - Příchozí transakce + + 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? + Tahle transakce přesahuje velikostní limit. I tak ji ale můžeš poslat, pokud za ni zaplatíš poplatek %1, který půjde uzlům, které tvou transakci zpracují, a navíc tak podpoříš síť. Chceš zaplatit poplatek? + + + + Actions toolbar + Panel akcí @@ -473,14 +479,9 @@ Jsi si jistý, že chceš peněženku zašifrovat? Pošli mince na Bitcoinovou adresu - - Sending... - Posílám... - - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> + + Downloaded %1 blocks of transaction history. + Staženo %1 bloků transakční historie. @@ -488,50 +489,28 @@ Jsi si jistý, že chceš peněženku zašifrovat? Prokaž vlastnictví adresy - - &Send coins - P&oslání mincí - - - - There was an error trying to save the wallet data to the new location. - Při ukládání peněženky na nové místo se přihodila nějaká chyba. - - - - Backup Wallet - Záloha peněženky + + Sent transaction + Odeslané transakce - - Wallet Data (*.dat) - Data peněženky (*.dat) + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum: %1 +Částka: %2 +Typ: %3 +Adresa: %4 + Modify configuration options for bitcoin Uprav nastavení Bitcoinu - - - Open &Bitcoin - Otevři &Bitcoin - - - - Show the Bitcoin window - Zobraz okno Bitcoinu - - - - &Encrypt Wallet - Zaši&fruj peněženku - - - - &Change Passphrase - Změň &heslo - Show information about Qt @@ -543,9 +522,24 @@ Jsi si jistý, že chceš peněženku zašifrovat? Exportovat data z tohoto panelu do souboru - - Actions toolbar - Panel akcí + + Change the passphrase used for wallet encryption + Změň heslo k šifrování peněženky + + + + &File + &Soubor + + + + Tabs toolbar + Panel s listy + + + + bitcoin-qt + bitcoin-qt @@ -557,9 +551,18 @@ Jsi si jistý, že chceš peněženku zašifrovat? - - Downloaded %1 blocks of transaction history. - Staženo %1 bloků transakční historie. + + Downloaded %1 of %2 blocks of transaction history. + Staženo %1 z %2 bloků transakční historie. + + + + %n second(s) ago + + před vteřinou + před %n vteřinami + před %n vteřinami + @@ -590,14 +593,9 @@ Jsi si jistý, že chceš peněženku zašifrovat? Poslední stažený blok byl vygenerován %1. - - Up to date - Aktuální - - - - 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? - Tahle transakce přesahuje velikostní limit. I tak ji ale můžeš poslat, pokud za ni zaplatíš poplatek %1, který půjde uzlům, které tvou transakci zpracují, a navíc tak podpoříš síť. Chceš zaplatit poplatek? + + Sending... + Posílám... @@ -610,22 +608,24 @@ Jsi si jistý, že chceš peněženku zašifrovat? Zálohování selhalo - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Datum: %1 -Částka: %2 -Typ: %3 -Adresa: %4 - + + There was an error trying to save the wallet data to the new location. + Při ukládání peněženky na nové místo se přihodila nějaká chyba. - - bitcoin-qt - bitcoin-qt + + &Encrypt Wallet + Zaši&fruj peněženku + + + + Open &Bitcoin + Otevři &Bitcoin + + + + Show the Bitcoin window + Zobraz okno Bitcoinu @@ -932,6 +932,11 @@ Adresa: %4 Balance: Stav účtu: + + + 0 + 0 + Wallet @@ -962,11 +967,6 @@ Adresa: %4 <b>Recent transactions</b> <b>Poslední transakce</b> - - - 0 - 0 - QRCodeDialog @@ -990,6 +990,11 @@ Adresa: %4 Amount: Částka: + + + BTC + BTC + Label: @@ -1000,11 +1005,6 @@ Adresa: %4 Message: Zpráva: - - - BTC - BTC - &Save As... @@ -1055,6 +1055,11 @@ Adresa: %4 Remove all transaction fields Smaž všechny transakční formuláře + + + Clear all + Všechno smaž + Balance: @@ -1130,14 +1135,14 @@ Adresa: %4 The amount to pay must be larger than 0. Odesílaná částka musí být větší než 0. - - - Clear all - Všechno smaž - SendCoinsEntry + + + Alt+P + Alt+P + Form @@ -1184,11 +1189,6 @@ Adresa: %4 Paste address from clipboard Vlož adresu ze schránky - - - Alt+P - Alt+P - Remove this recipient @@ -1263,11 +1263,6 @@ Adresa: %4 <b>From:</b> <b>Od:</b> - - - unknown - neznámo - @@ -1275,6 +1270,36 @@ Adresa: %4 <b>To:</b> <b>Pro:</b> + + + (not accepted) + (neakceptováno) + + + + Message: + Zpráva: + + + + Comment: + Komentář: + + + + Transaction ID: + ID transakce: + + + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Vygenerované mince musí čekat 120 bloků, než mohou být utraceny. Když jsi vygeneroval tenhle blok, tak byl rozposlán do sítě, aby byl přidán do řetězce bloků. Pokud se mu nepodaří dostat se do řetězce, změní se na "neakceptovaný" a nepůjde utratit. Občas se to může stát, když jiný uzel vygeneruje blok zhruba ve stejném okamžiku jako ty. + + + + unknown + neznámo + (yours, label: @@ -1298,11 +1323,6 @@ Adresa: %4 (%1 matures in %2 more blocks) (%1 dozraje po %2 blocích) - - - (not accepted) - (neakceptováno) - @@ -1320,26 +1340,6 @@ Adresa: %4 <b>Net amount:</b> <b>Čistá částka:</b> - - - Message: - Zpráva: - - - - Comment: - Komentář: - - - - Transaction ID: - ID transakce: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Vygenerované mince musí čekat 120 bloků, než mohou být utraceny. Když jsi vygeneroval tenhle blok, tak byl rozposlán do sítě, aby byl přidán do řetězce bloků. Pokud se mu nepodaří dostat se do řetězce, změní se na "neakceptovaný" a nepůjde utratit. Občas se to může stát, když jiný uzel vygeneruje blok zhruba ve stejném okamžiku jako ty. - TransactionDescDialog @@ -1356,6 +1356,46 @@ Adresa: %4 TransactionTableModel + + + This block was not received by any other nodes and will probably not be accepted! + Tento blok nedostal žádný jiný uzel a pravděpodobně nebude akceptován! + + + + Generated but not accepted + Vygenerováno, ale neakceptováno + + + + Received with + Přijato do + + + + Received from + Přijato od + + + + Sent to + Posláno na + + + + 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. + Date @@ -1368,13 +1408,13 @@ Adresa: %4 - Address - Adresa + Amount + Částka - Amount - Částka + Address + Adresa @@ -1414,31 +1454,6 @@ Adresa: %4 Vytěžené mince budou použitelné po %n blocích - - - This block was not received by any other nodes and will probably not be accepted! - Tento blok nedostal žádný jiný uzel a pravděpodobně nebude akceptován! - - - - Generated but not accepted - Vygenerováno, ale neakceptováno - - - - Received with - Přijato do - - - - Received from - Přijato od - - - - Sent to - Posláno na - Payment to yourself @@ -1454,21 +1469,6 @@ Adresa: %4 (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. @@ -1492,32 +1492,16 @@ Adresa: %4 Could not write to file %1. Nemohu zapisovat do souboru %1. + + + ID + ID + Range: Rozsah: - - - to - - - - - - All - Vše - - - - Today - Dnes - - - - This week - Tento týden - This month @@ -1533,21 +1517,6 @@ Adresa: %4 This year Letos - - - Range... - Rozsah... - - - - Received with - Přijato - - - - Sent to - Posláno - To yourself @@ -1559,20 +1528,51 @@ Adresa: %4 Vytěženo - - Other - Ostatní + + Min amount + Minimální částka + + + + + All + Vše + + + + Today + Dnes + + + + This week + Tento týden + + + + Range... + Rozsah... + + + + Received with + Přijato + + + + Sent to + Posláno + + + + Other + Ostatní Enter address or label to search Zadej adresu nebo označení pro její vyhledání - - - Min amount - Minimální částka - Copy address @@ -1633,16 +1633,16 @@ Adresa: %4 Amount Částka - - - ID - ID - Error exporting Chyba při exportu + + + to + + WalletModel @@ -1654,26 +1654,11 @@ Adresa: %4 bitcoin-core - - - Bitcoin version - Verze Bitcoinu - - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Čekat na spojení na <portu> (výchozí: 8333 nebo testnet: 18333) - Maintain at most <n> connections to peers (default: 125) Povol nejvýše <n> připojení k uzlům (výchozí: 125) - - - Run in the background as a daemon and accept commands - Běžet na pozadí jako démon a akceptovat příkazy - Specify configuration file (default: bitcoin.conf) @@ -1689,11 +1674,6 @@ Adresa: %4 Specify data directory Adresář pro data - - - Specify pid file (default: bitcoind.pid) - PID soubor (výchozí: bitcoind.pid) - Threshold for disconnecting misbehaving peers (default: 100) @@ -1714,11 +1694,6 @@ Adresa: %4 Options: Možnosti: - - - Username for JSON-RPC connections - Uživatelské jméno pro JSON-RPC spojení - Send trace/debug info to console instead of debug.log file @@ -1735,80 +1710,120 @@ Adresa: %4 Posílat příkazy uzlu běžícím na <ip> (výchozí: 127.0.0.1) - - Use the test network - Použít testovací síť (testnet) + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Akceptovatelné šifry (výchozí: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - This help message - Tato nápověda + + Error loading wallet.dat: Wallet corrupted + Chyba při načítání wallet.dat: peněženka je poškozená - - Loading addresses... - Načítám adresy... + + Cannot downgrade wallet + Nemohu převést peněženku do staršího formátu - - 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 + + Cannot write default address + Nemohu napsat výchozí adresu - - Error loading blkindex.dat - Chyba při načítání blkindex.dat + + Done loading + Načítání dokončeno - - Error loading wallet.dat: Wallet corrupted - Chyba při načítání wallet.dat: peněženka je poškozená + + Rescanning... + Přeskenovávám... - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Chyba při načítání wallet.dat: peněženka vyžaduje novější verzi Bitcoinu + + Loading block index... + Načítám index bloků... - - Wallet needed to be rewritten: restart Bitcoin to complete - Soubor s peněženkou potřeboval přepsat: restartuj Bitcoin, aby se operace dokončila + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Doba ve vteřinách, po kterou se nebudou moci nesprávně se chovající uzly znovu připojit (výchozí: 86400) - - Error loading wallet.dat - Chyba při načítání wallet.dat + + Accept command line and JSON-RPC commands + Akceptovat příkazy z příkazové řádky a přes JSON-RPC - - Cannot downgrade wallet - Nemohu převést peněženku do staršího formátu + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Nedaří se mi získat zámek na datový adresář %s. Bitcoin pravděpodobně už jednou běží. - - Cannot initialize keypool - Nemohu inicializovat zásobník klíčů + + 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) - - Cannot write default address - Nemohu napsat výchozí adresu + + Prepend debug output with timestamp + Připojit před ladicí výstup časové razítko - - Done loading - Načítání dokončeno + + Password for JSON-RPC connections + Heslo pro JSON-RPC spojení - - Fee per KB to add to transactions you send - Poplatek za KB, který se přidá ke každé odeslané transakci + + Listen for JSON-RPC connections on <port> (default: 8332) + Čekat na JSON-RPC spojení na <portu> (výchozí: 8332) + + + + Set key pool size to <n> (default: 100) + Nastavit zásobník klíčů na velikost <n> (výchozí: 100) + + + + Rescan the block chain for missing wallet transactions + Přeskenovat řetězec bloků na chybějící transakce tvé pěněženky + + + + Error loading blkindex.dat + Chyba při načítání blkindex.dat + + + + Upgrade wallet to latest format + Převést peněženku na nejnovější formát + + + + List commands + Výpis příkazů + + + + Get help for a command + Získat nápovědu pro příkaz + + + + Set database cache size in megabytes (default: 25) + Nastavit velikost databázové vyrovnávací paměti v megabajtech (výchozí: 25) Find peers using internet relay chat (default: 0) Hledat uzly přes IRC (výchozí: 0) + + + Fee per KB to add to transactions you send + Poplatek za KB, který se přidá ke každé odeslané transakci + How many blocks to check at startup (default: 2500, 0 = all) @@ -1820,59 +1835,69 @@ Adresa: %4 Jak moc důkladná má verifikace bloků být (0-6, výchozí: 1) - - Loading block index... - Načítám index bloků... + + Bitcoin version + Verze Bitcoinu - - Loading wallet... - Načítám peněženku... + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Čekat na spojení na <portu> (výchozí: 8333 nebo testnet: 18333) - - Rescanning... - Přeskenovávám... + + Run in the background as a daemon and accept commands + Běžet na pozadí jako démon a akceptovat příkazy - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Akceptovatelné šifry (výchozí: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Specify pid file (default: bitcoind.pid) + PID soubor (výchozí: bitcoind.pid) - - Set database cache size in megabytes (default: 25) - Nastavit velikost databázové vyrovnávací paměti v megabajtech (výchozí: 25) + + Username for JSON-RPC connections + Uživatelské jméno pro JSON-RPC spojení - - List commands - Výpis příkazů + + Use the test network + Použít testovací síť (testnet) - - Get help for a command - Získat nápovědu pro příkaz + + This help message + Tato nápověda - - Generate coins - Generovat mince + + Loading addresses... + Načítám adresy... - - Don't generate coins - Negenerovat mince + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Chyba při načítání wallet.dat: peněženka vyžaduje novější verzi Bitcoinu - - Start minimized - Startovat minimalizovaně + + Error loading wallet.dat + Chyba při načítání wallet.dat - - Connect through socks4 proxy - Připojovat se přes socks4 proxy + + Loading wallet... + Načítám peněženku... + + + + Cannot initialize keypool + Nemohu inicializovat zásobník klíčů + + + + Generate coins + Generovat mince @@ -1899,86 +1924,26 @@ Adresa: %4 Find peers using DNS lookup (default: 1) Hledat uzly přes DNS (výchozí: 1) - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Doba ve vteřinách, po kterou se nebudou moci nesprávně se chovající uzly znovu připojit (výchozí: 86400) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) Maximální velikost přijímacího bufferu pro každé spojení, <n>*1000 bytů (výchozí: 10000) - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maximální velikost odesílacího bufferu pro každé spojení, <n>*1000 bytů (výchozí: 10000) - Use Universal Plug and Play to map the listening port (default: 1) Použít UPnP k namapování naslouchacího portu (výchozí: 1) - - - Use Universal Plug and Play to map the listening port (default: 0) - Použít UPnP k namapování naslouchacího portu (výchozí: 0) - - - - Accept command line and JSON-RPC commands - Akceptovat příkazy z příkazové řádky a přes JSON-RPC - Show splash screen on startup (default: 1) Zobrazovat startovací obrazovku (výchozí: 1) - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Nedaří se mi získat zámek na datový adresář %s. Bitcoin pravděpodobně už jednou běží. - - - - 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) - Output extra debugging information Tisknout speciální ladící informace - - - Prepend debug output with timestamp - Připojit před ladící výstup časové razítko - - - - Password for JSON-RPC connections - Heslo pro JSON-RPC spojení - - - - Listen for JSON-RPC connections on <port> (default: 8332) - Čekat na JSON-RPC spojení na <portu> (výchozí: 8332) - - - - Allow JSON-RPC connections from specified IP address - Povolit JSON-RPC spojení ze specifikované IP adresy - - - - Set key pool size to <n> (default: 100) - Nastavit zásobník klíčů na velikost <n> (výchozí: 100) - - - - Rescan the block chain for missing wallet transactions - Přeskenovat řetězec bloků na chybějící transakce tvé pěněženky - @@ -1986,21 +1951,6 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Možnosti SSL: (viz instrukce nastavení SSL v Bitcoin Wiki) - - - Use OpenSSL (https) for JSON-RPC connections - Použít OpenSSL (https) pro JSON-RPC spojení - - - - Server certificate file (default: server.cert) - Soubor se serverovým certifikátem (výchozí: server.cert) - - - - Server private key (default: server.pem) - Soubor se serverovým soukromým klíčem (výchozí: server.pem) - Error loading addr.dat @@ -2017,20 +1967,15 @@ Možnosti SSL: (viz instrukce nastavení SSL v Bitcoin Wiki) Neplatná částka pro -paytxfee=<částka> - - 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: Disk space is low + Upozornění: Na disku je málo místa Error: CreateThread(StartNode) failed Chyba: Selhalo CreateThread(StartNode) - - - Warning: Disk space is low - Upozornění: Na disku je málo místa - Unable to bind to port %d on this computer. Bitcoin is probably already running. @@ -2041,15 +1986,70 @@ Možnosti SSL: (viz instrukce nastavení SSL v Bitcoin Wiki) Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Upozornění: Zkontroluj, že máš v počítači správně nastavený datum a čas. Pokud jsou nastaveny špatně, Bitcoin nebude fungovat správně. + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maximální velikost odesílacího bufferu pro každé spojení, <n>*1000 bytů (výchozí: 10000) + + + + Don't generate coins + Negenerovat mince + + + + Start minimized + Startovat minimalizovaně + + + + Allow JSON-RPC connections from specified IP address + Povolit JSON-RPC spojení ze specifikované IP adresy + + + + Connect through socks4 proxy + Připojovat se přes socks4 proxy + + + + 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 + + + + Use OpenSSL (https) for JSON-RPC connections + Použít OpenSSL (https) pro JSON-RPC spojení + + + + Server certificate file (default: server.cert) + Soubor se serverovým certifikátem (výchozí: server.cert) + + + + Server private key (default: server.pem) + Soubor se serverovým soukromým klíčem (výchozí: server.pem) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Použít UPnP k namapování naslouchacího portu (výchozí: 0) + + + + 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. + beta beta - - Upgrade wallet to latest format - Převést peněženku na nejnovější formát + + Wallet needed to be rewritten: restart Bitcoin to complete + Soubor s peněženkou potřeboval přepsat: restartuj Bitcoin, aby se operace dokončila diff --git a/src/qt/locale/bitcoin_et.ts b/src/qt/locale/bitcoin_et.ts index d09a941326..fd2fb9478a 100644 --- a/src/qt/locale/bitcoin_et.ts +++ b/src/qt/locale/bitcoin_et.ts @@ -660,7 +660,7 @@ Address: %4 &Address - + &Aadress @@ -796,7 +796,7 @@ Address: %4 Message - + Sõnum @@ -896,7 +896,7 @@ Address: %4 Options - + Valikud @@ -972,7 +972,7 @@ Address: %4 Amount: - + Kogus: @@ -982,7 +982,7 @@ Address: %4 Label: - + Silt: @@ -1130,7 +1130,7 @@ Address: %4 A&mount: - + &Kogus @@ -1146,7 +1146,7 @@ Address: %4 &Label: - + Si&lt: @@ -1214,7 +1214,7 @@ Address: %4 <b>Status:</b> - + <b>Staatus:</b> @@ -1234,7 +1234,7 @@ Address: %4 <b>Date:</b> - + <b>Kuupäev:</b> @@ -1388,14 +1388,6 @@ Address: %4 Confirmed (%1 confirmations) - - - Mined balance will be available in %n more blocks - - - - - This block was not received by any other nodes and will probably not be accepted! @@ -1461,9 +1453,27 @@ Address: %4 Amount removed from or added to balance. + + + Mined balance will be available in %n more blocks + + + + + TransactionView + + + Error exporting + Viga eksportimisel + + + + Date + Kuupäev + @@ -1575,11 +1585,6 @@ Address: %4 Confirmed - - - Date - Kuupäev - Type @@ -1605,11 +1610,6 @@ Address: %4 ID - - - Error exporting - Viga eksportimisel - Could not write to file %1. @@ -1664,7 +1664,7 @@ Address: %4 Options: - + Valikud: diff --git a/src/qt/locale/bitcoin_eu_ES.ts b/src/qt/locale/bitcoin_eu_ES.ts index d997eb2c39..54068a5480 100644 --- a/src/qt/locale/bitcoin_eu_ES.ts +++ b/src/qt/locale/bitcoin_eu_ES.ts @@ -325,7 +325,7 @@ Are you sure you wish to encrypt your wallet? &Address Book - + Helbide-liburu&a @@ -660,7 +660,7 @@ Address: %4 &Address - + Helbide&a @@ -1639,7 +1639,7 @@ Address: %4 Bitcoin version - + Bitcoin Bertsio diff --git a/src/qt/locale/bitcoin_fa.ts b/src/qt/locale/bitcoin_fa.ts index a7ee30152f..9adc50686e 100644 --- a/src/qt/locale/bitcoin_fa.ts +++ b/src/qt/locale/bitcoin_fa.ts @@ -75,11 +75,6 @@ This product includes software developed by the OpenSSL Project for use in the O Show &QR Code نمایش &کد QR - - - Sign a message to prove you own this address - یک پیام را امضا کنید تا ثابت کنید صاحب این نشانی هستید - &Sign Message @@ -95,6 +90,11 @@ This product includes software developed by the OpenSSL Project for use in the O &Delete حذف + + + Sign a message to prove you own this address + یک پیام را امضا کنید تا ثابت کنید صاحب این نشانی هستید + Copy address @@ -192,11 +192,6 @@ This product includes software developed by the OpenSSL Project for use in the O Encrypt wallet رمز بندی پنجره - - - Wallet decryption failed - ناموفق رمز بندی پنجره - This operation needs your wallet passphrase to unlock the wallet. @@ -291,6 +286,11 @@ Are you sure you wish to encrypt your wallet? Warning: The Caps Lock key is on. هشدار: کلید حروف بزرگ روشن است. + + + Wallet decryption failed + ناموفق رمز بندی پنجره + BitcoinGUI @@ -299,11 +299,6 @@ Are you sure you wish to encrypt your wallet? Edit the list of stored addresses and labels ویرایش لیست آدرسها و بر چسب های ذخیره ای - - - About &Qt - درباره &Qt - &Export... @@ -315,16 +310,6 @@ Are you sure you wish to encrypt your wallet? Synchronizing with network... همگام سازی با شبکه ... - - - Bitcoin Wallet - پنجره بیتکویین - - - - Block chain synchronization in progress - همگام زنجیر بلوک در حال پیشرفت - &Overview @@ -340,16 +325,6 @@ Are you sure you wish to encrypt your wallet? Show the list of addresses for receiving payments نمایش لیست آدرس ها برای در یافت پر داخت ها - - - Send coins to a bitcoin address - ارسال سکه به آدرس بیتکویین - - - - &Backup Wallet - پشتیبان گیری از wallet - Downloaded %1 blocks of transaction history. @@ -398,29 +373,9 @@ Are you sure you wish to encrypt your wallet? معامله ارسال شده - - Incoming transaction - معامله در یافت شده - - - - Show information about Qt - نمایش اطلاعات درباره Qt - - - - Export the data in the current tab to a file - داده ها نوارِ جاری را به فایل انتقال دهید - - - - Backup wallet to another location - نسخه پیشتیبان wallet را به محل دیگر انتقال دهید - - - - Prove you control an address - اثبات کنید که روی یک نشانی کنترل دارید + + Send coins to a bitcoin address + ارسال سکه به آدرس بیتکویین @@ -432,51 +387,16 @@ Are you sure you wish to encrypt your wallet? Up to date تا تاریخ - - - Sign &message - امضای &پیام - &Receive coins در یافت سکه - - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - زمایش شبکهه - Wallet is <b>encrypted</b> and currently <b>locked</b> زمایش شبکه - - - &About %1 - &حدود%1 - - - - Modify configuration options for bitcoin - صلاح تنظیمات برای بیتکویین - - - - Open &Bitcoin - باز کردن &amp;بیتکویین - - - - Show the Bitcoin window - نمایش پنجره بیتکویین - - - - &Change Passphrase - تغییر عبارت عبور - E&xit @@ -508,14 +428,9 @@ Are you sure you wish to encrypt your wallet? عبارت عبور رمز گشایی پنجره تغییر کنید - - &Settings - تنظیمات - - - - &Help - کمک + + Sign &message + امضای &پیام @@ -527,11 +442,6 @@ Are you sure you wish to encrypt your wallet? Actions toolbar نوار ابزار عملیت - - - [testnet] - آزمایش شبکه - %n active connection(s) to Bitcoin network @@ -539,12 +449,65 @@ Are you sure you wish to encrypt your wallet? در صد ارتباطات فعال بیتکویین با شبکه %n - - - %n second(s) ago - - %n بعد از چند دقیقه - + + + Modify configuration options for bitcoin + صلاح تنظیمات برای بیتکویین + + + + Bitcoin Wallet + پنجره بیتکویین + + + + Block chain synchronization in progress + همگام زنجیر بلوک در حال پیشرفت + + + + Prove you control an address + اثبات کنید که روی یک نشانی کنترل دارید + + + + &About %1 + &حدود%1 + + + + Open &Bitcoin + باز کردن &amp;بیتکویین + + + + Show the Bitcoin window + نمایش پنجره بیتکویین + + + + &Encrypt Wallet + &رمز بندی پنجره + + + + &Backup Wallet + پشتیبان گیری از wallet + + + + &Change Passphrase + تغییر عبارت عبور + + + + bitcoin-qt + بیتکویین + + + + Downloaded %1 of %2 blocks of transaction history. + %1 %2 دانلود 1% 2% بلوک معاملات @@ -588,81 +551,103 @@ Address: %4 عملیات پیشتیبان گیری انجام نشد - - There was an error trying to save the wallet data to the new location. - در زمان انتقال داده wallet به محل جدید خطا روی داد + + &Settings + تنظیمات - - Catching up... - ابتلا به بالا + + &Help + کمک - - &Encrypt Wallet - &رمز بندی پنجره + + A fatal error occurred. Bitcoin can no longer continue safely and will quit. + خطا روی داده است. Bitcoin نمی تواند بدون مشکل ادامه دهد و باید بسته شود - - - bitcoin-qt - بیتکویین + + + %n second(s) ago + + %n بعد از چند دقیقه + - - Downloaded %1 of %2 blocks of transaction history. - %1 %2 دانلود 1% 2% بلوک معاملات + + About &Qt + درباره &Qt - - Sending... - ارسال... + + Show information about Qt + نمایش اطلاعات درباره Qt - - A fatal error occurred. Bitcoin can no longer continue safely and will quit. - خطا روی داده است. Bitcoin نمی تواند بدون مشکل ادامه دهد و باید بسته شود + + Export the data in the current tab to a file + داده ها نوارِ جاری را به فایل انتقال دهید - - - DisplayOptionsPage - - &Unit to show amounts in: - &;واحد نمایش مبلغ + + Backup wallet to another location + نسخه پیشتیبان wallet را به محل دیگر انتقال دهید - - Choose the default subdivision unit to show in the interface, and when sending coins - زیر بخش پیش فرض در واسط انتخاب کنید و سکه ها ارسال کنید + + [testnet] + آزمایش شبکه - - &Display addresses in transaction list - نمایش آدرسها در فهرست تراکنش + + Catching up... + ابتلا به بالا - - Whether to show Bitcoin addresses in the transaction list - تا آدرسهای bITCOIN در فهرست تراکنش نمایش داده شوند یا نشوند. + + Incoming transaction + معامله در یافت شده + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + زمایش شبکهه + + + + There was an error trying to save the wallet data to the new location. + در زمان انتقال داده wallet به محل جدید خطا روی داد + + + + Sending... + ارسال... - EditAddressDialog + DisplayOptionsPage - - New key generation failed. - کلید نسل جدید ناموفق است + + &Unit to show amounts in: + &;واحد نمایش مبلغ - - Edit Address - اصلاح آدرس + + Choose the default subdivision unit to show in the interface, and when sending coins + زیر بخش پیش فرض در واسط انتخاب کنید و سکه ها ارسال کنید - - &Label - بر چسب + + &Display addresses in transaction list + نمایش آدرسها در فهرست تراکنش + + + + Whether to show Bitcoin addresses in the transaction list + تا آدرسهای bITCOIN در فهرست تراکنش نمایش داده شوند یا نشوند. + + + EditAddressDialog The label associated with this address book entry @@ -673,6 +658,16 @@ Address: %4 &Address آدرس + + + Edit Address + اصلاح آدرس + + + + &Label + بر چسب + The address associated with this address book entry. This can only be modified for sending addresses. @@ -698,6 +693,16 @@ Address: %4 Edit sending address اصلاح آدرس ارسال + + + Could not unlock wallet. + رمز گشایی پنجره امکان پذیر نیست + + + + New key generation failed. + کلید نسل جدید ناموفق است + The entered address "%1" is already in the address book. @@ -708,11 +713,6 @@ Address: %4 The entered address "%1" is not a valid bitcoin address. آدرس وارد شده آدرس معتبر بیتکویید نیست %1 - - - Could not unlock wallet. - رمز گشایی پنجره امکان پذیر نیست - MainOptionsPage @@ -942,16 +942,16 @@ Address: %4 Number of transactions: تعداد معامله - - - Total number of transactions in wallet - تعداد معاملات در صندوق - <b>Recent transactions</b> اخرین معاملات&lt + + + Total number of transactions in wallet + تعداد معاملات در صندوق + 0 @@ -970,25 +970,15 @@ Address: %4 Error encoding URI into QR Code. خطا در زمان رمزدار کردن URI در کد QR - - - PNG Images (*.png) - تصاویر با فرمت PNG (*.png) - Save Image... - - Dialog - تگفتگو - - - - QR Code - کد QR + + PNG Images (*.png) + تصاویر با فرمت PNG (*.png) @@ -1000,15 +990,25 @@ Address: %4 Amount: مقدار: + + + Label: + برچسب: + BTC BTC - - Label: - برچسب: + + Dialog + تگفتگو + + + + QR Code + کد QR @@ -1095,6 +1095,11 @@ Address: %4 The recipient address is not valid, please recheck. آدرس گیرنده نادرست است، لطفا دوباره بررسی کنید. + + + The amount to pay must be larger than 0. + مبلغ پر داخت باید از 0 بیشتر باشد + The amount exceeds your balance. @@ -1120,11 +1125,6 @@ Address: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 شما استفاده شده اند برای مثال اگر شما از WALLET.DAT استفاده کرده اید، ممکن است سکه ها استفاده شده باشند اما در اینجا نمایش داده نشوند - - - The amount to pay must be larger than 0. - مبلغ پر داخت باید از 0 بیشتر باشد - SendCoinsEntry @@ -1192,6 +1192,63 @@ Address: %4 TransactionDesc + + + %1/unconfirmed + %1 تایید نشده + + + + %1 confirmations + ایید %1 + + + + unknown + مشخص نیست + + + + + + <b>To:</b> + &lt;b&gt;به :&lt;/b&gt; + + + + (yours) + مال شما) ( + + + + <b>Transaction fee:</b> + &lt;b&gt;پر داخت معامله :&lt;/b&gt; + + + + <b>Net amount:</b> + &lt;b&gt;مبلغ خالص :&lt;/b&gt; + + + + Message: + پیام + + + + Comment: + مورد نظر + + + + Transaction ID: + شماره تراکنش: + + + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + برای ارسال واحد های تولید شده باید 120 بلوک باشند. هنگامی که بلون ایجاد می شود به شبکه ارسال می شود تا در زنجیر بلوکها اضافه شود. و گر نه بلوک به غیر قابول و غیر ارسال عوض می شود. این اتفاقی می افتد وقتی که همزمان گره دیگر در بلوک ایجاد می شود. + Open for %1 blocks @@ -1207,16 +1264,6 @@ Address: %4 %1/offline? %1 انلاین نیست - - - %1/unconfirmed - %1 تایید نشده - - - - %1 confirmations - ایید %1 - <b>Status:</b> @@ -1253,28 +1300,6 @@ Address: %4 <b>From:</b> &lt;b&gt;از:&lt;/b&gt; - - - unknown - مشخص نیست - - - - - - <b>To:</b> - &lt;b&gt;به :&lt;/b&gt; - - - - (yours, label: - مال شما ، بر چسب( - - - - (yours) - مال شما) ( - @@ -1301,34 +1326,9 @@ Address: %4 &lt;b&gt;مقدار خالص:&lt;/b&gt; - - <b>Transaction fee:</b> - &lt;b&gt;پر داخت معامله :&lt;/b&gt; - - - - <b>Net amount:</b> - &lt;b&gt;مبلغ خالص :&lt;/b&gt; - - - - Message: - پیام - - - - Comment: - مورد نظر - - - - Transaction ID: - شماره تراکنش: - - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - برای ارسال واحد های تولید شده باید 120 بلوک باشند. هنگامی که بلون ایجاد می شود به شبکه ارسال می شود تا در زنجیر بلوکها اضافه شود. و گر نه بلوک به غیر قابول و غیر ارسال عوض می شود. این اتفاقی می افتد وقتی که همزمان گره دیگر در بلوک ایجاد می شود. + + (yours, label: + مال شما ، بر چسب( @@ -1347,14 +1347,39 @@ Address: %4 TransactionTableModel - - Date - تاریخ + + This block was not received by any other nodes and will probably not be accepted! + این بلوک از دیگر گره ها در یافت نشده بدین دلیل شاید قابل قابول نیست - - Type - نوع + + Generated but not accepted + تولید شده ولی قبول نشده + + + + Received from + دریافتی از + + + + Sent to + ارسال به : + + + + Payment to yourself + پر داخت به خودتان + + + + Date + تاریخ + + + + Type + نوع @@ -1366,13 +1391,6 @@ Address: %4 Amount مبلغ - - - Open for %n block(s) - - بلوک %n باز شده برای - - Open until %1 @@ -1383,6 +1401,13 @@ Address: %4 Offline (%1 confirmations) افلایین (%1) + + + Open for %n block(s) + + بلوک %n باز شده برای + + Unconfirmed (%1 of %2 confirmations) @@ -1400,36 +1425,11 @@ Address: %4 و بیشتر باشند قابل قابول می شود %n تزار اصلی بعد از اینکه بلوکها - - - 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 @@ -1469,29 +1469,24 @@ Address: %4 TransactionView - - Confirmed - تایید شده - - - - ID - آی دی + + Could not write to file %1. + تا فایل %1 نمی شود نوشت - - Error exporting - خطای صادرت + + Copy amount + روگرفت مقدار - - Could not write to file %1. - تا فایل %1 نمی شود نوشت + + Type + نوع - - Range: - >محدوده + + Address + ایل جدا @@ -1499,11 +1494,6 @@ Address: %4 All همه - - - Today - امروز - This week @@ -1554,16 +1544,21 @@ Address: %4 Other یگر - - - Enter address or label to search - برای جست‌‌وجو نشانی یا برچسب را وارد کنید - Min amount حد اقل مبلغ + + + Today + امروز + + + + Enter address or label to search + برای جست‌‌وجو نشانی یا برچسب را وارد کنید + Copy address @@ -1574,11 +1569,6 @@ Address: %4 Copy label کپی بر چسب - - - Copy amount - روگرفت مقدار - Edit label @@ -1605,25 +1595,35 @@ Address: %4 تاریخ - - Type - نوع + + Confirmed + تایید شده Label ر چسب - - - Address - ایل جدا - Amount مبلغ + + + ID + آی دی + + + + Error exporting + خطای صادرت + + + + Range: + >محدوده + to @@ -1640,16 +1640,6 @@ Address: %4 bitcoin-core - - - Generate coins - سکه های تولید شده - - - - Accept command line and JSON-RPC commands - JSON-RPC قابل فرمانها و - Execute command when the best block changes (%s in cmd is replaced by block hash) @@ -1660,26 +1650,6 @@ Address: %4 Use the test network استفاده شبکه آزمایش - - - Prepend debug output with timestamp - به خروجی اشکال‌زدایی برچسب زمان بزنید - - - - Send trace/debug info to console instead of debug.log file - اطلاعات ردگیری/اشکال‌زدایی را به جای فایل لاگ اشکال‌زدایی به کنسول بفرستید - - - - Listen for JSON-RPC connections on <port> (default: 8332) - ( 8332پیش فرض :) &lt;poort&gt; JSON-RPC شنوایی برای ارتباطات - - - - Allow JSON-RPC connections from specified IP address - از آدرس آی پی خاص JSON-RPC قبول ارتباطات - Server private key (default: server.pem) @@ -1695,56 +1665,26 @@ Address: %4 Loading addresses... بار گیری آدرس ها - - - Add a node to connect to and attempt to keep the connection open - به اتصال یک گره اضافه کنید و اتصال را باز نگاه دارید - Error loading blkindex.dat خطا در بارگیری blkindex.dat - - - Error loading wallet.dat: Wallet corrupted - خطا در بارگیری wallet.dat: کیف پول خراب شده است - Error loading wallet.dat: Wallet requires newer version of Bitcoin خطا در بارگیری wallet.dat: کیف پول به ویرایش جدیدتری از Biticon نیاز دارد - - - Wallet needed to be rewritten: restart Bitcoin to complete - سلام - - - - Error loading wallet.dat - خطا در بارگیری wallet.dat - Cannot downgrade wallet امکان تنزل نسخه در wallet وجود ندارد - - - Cannot initialize keypool - امکان مقداردهی اولیه برای key pool وجود ندارد - Cannot write default address آدرس پیش فرض قابل ذخیره نیست - - - Done loading - بار گیری انجام شده است - Fee per KB to add to transactions you send @@ -1760,11 +1700,6 @@ Address: %4 How many blocks to check at startup (default: 2500, 0 = all) چند بلاک برای بررسی در زمان startup (پیش فرض:2500 , 0=همه) - - - How thorough the block verification is (0-6, default: 1) - چقد کامل بلوک تصدیق است (0-6, پیش فرض:1) - Loading block index... @@ -1775,11 +1710,6 @@ Address: %4 Loading wallet... بار گیری والت - - - Rescanning... - اسکان مجدد - Set database cache size in megabytes (default: 25) @@ -1791,59 +1721,69 @@ Address: %4 wallet را به جدیدترین فرمت روزآمد کنید - - Bitcoin version - سخه بیتکویین + + Threshold for disconnecting misbehaving peers (default: 100) + آستانه برای قطع ارتباط با همکاران بدرفتار (پیش‌فرض: 100) - - Usage: - ستفاده : + + Run in the background as a daemon and accept commands + اجرای در پس زمینه به عنوان شبح و قبول فرمان ها - - Send command to -server or bitcoind - ارسال فرمان به سرور یا باتکویین + + Send trace/debug info to debugger + اطلاعات ردگیری/اشکال‌زدایی را به اشکال‌زدا بفرستید - - List commands - لیست فومان ها + + Username for JSON-RPC connections + JSON-RPC شناسه برای ارتباطات - - Get help for a command - کمک برای فرمان + + Password for JSON-RPC connections + JSON-RPC عبارت عبور برای ارتباطات - - Options: - تنظیمات + + Send commands to node running on <ip> (default: 127.0.0.1) + (127.0.0.1پیش فرض: ) &lt;ip&gt; دادن فرمانها برای استفاده گره ها روی - - Specify configuration file (default: bitcoin.conf) - (: bitcoin.confپیش فرض: )فایل تنظیمی خاص + + Set key pool size to <n> (default: 100) + (100پیش فرض:)&lt;n&gt; گذاشتن اندازه کلید روی - - Specify pid file (default: bitcoind.pid) - (bitcoind.pidپیش فرض : ) فایل پید خاص + + Rescan the block chain for missing wallet transactions + اسکان مجدد زنجیر بلوکها برای گم والت معامله - - Don't generate coins - تولید سکه ها + + How thorough the block verification is (0-6, default: 1) + چقد کامل بلوک تصدیق است (0-6, پیش فرض:1) - - Start minimized - شروع حد اقل + + Server certificate file (default: server.cert) + (server.certپیش فرض: )گواهی نامه سرور - - Show splash screen on startup (default: 1) - نمایش صفحه splash در STARTUP (پیش فرض:1) + + List commands + لیست فومان ها + + + + Options: + تنظیمات + + + + Don't generate coins + تولید سکه ها @@ -1856,44 +1796,94 @@ Address: %4 (میلی ثانیه )فاصله ارتباط خاص - - Connect through socks4 proxy - socks4 proxy ارتباط توسط + + Generate coins + سکه های تولید شده - - Allow DNS lookups for addnode and connect - اجازه متغیر دی ان اس برای اضافه گره یا ارتباط + + Add a node to connect to and attempt to keep the connection open + به اتصال یک گره اضافه کنید و اتصال را باز نگاه دارید - - Listen for connections on <port> (default: 8333 or testnet: 18333) - برای اتصالات به <port> (پیش‌فرض: 8333 یا تست‌نت: 18333) گوش کنید + + Send trace/debug info to console instead of debug.log file + اطلاعات ردگیری/اشکال‌زدایی را به جای فایل لاگ اشکال‌زدایی به کنسول بفرستید - - Accept connections from outside (default: 1) - پذیرش اتصالات از بیرون (پیش فرض:1 بدون پراکسی یا اتصال) + + Accept command line and JSON-RPC commands + JSON-RPC قابل فرمانها و - - Set language, for example "de_DE" (default: system locale) - زبان را تنظیم کنید برای مثال "de_DE" (پیش فرض: system locale) + + Prepend debug output with timestamp + به خروجی اشکال‌زدایی برچسب زمان بزنید - - Find peers using DNS lookup (default: 1) - قرینه ها را برای جستجوی DNS بیاب (پیش فرض: 1 مگر در زمان اتصال) + + Listen for JSON-RPC connections on <port> (default: 8332) + ( 8332پیش فرض :) &lt;poort&gt; JSON-RPC شنوایی برای ارتباطات - - Use Universal Plug and Play to map the listening port (default: 1) - از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:1 در زمان شنیدن) + + Allow JSON-RPC connections from specified IP address + از آدرس آی پی خاص JSON-RPC قبول ارتباطات - - Use Universal Plug and Play to map the listening port (default: 0) - از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:0) + + Wallet needed to be rewritten: restart Bitcoin to complete + سلام + + + + Error loading wallet.dat + خطا در بارگیری wallet.dat + + + + Cannot initialize keypool + امکان مقداردهی اولیه برای key pool وجود ندارد + + + + Send command to -server or bitcoind + ارسال فرمان به سرور یا باتکویین + + + + Error loading wallet.dat: Wallet corrupted + خطا در بارگیری wallet.dat: کیف پول خراب شده است + + + + Specify configuration file (default: bitcoin.conf) + (: bitcoin.confپیش فرض: )فایل تنظیمی خاص + + + + Specify pid file (default: bitcoind.pid) + (bitcoind.pidپیش فرض : ) فایل پید خاص + + + + Start minimized + شروع حد اقل + + + + Done loading + بار گیری انجام شده است + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + برای اتصالات به <port> (پیش‌فرض: 8333 یا تست‌نت: 18333) گوش کنید + + + + Rescanning... + اسکان مجدد @@ -1915,11 +1905,6 @@ Address: %4 Cannot obtain a lock on data directory %s. Bitcoin is probably already running. رمز گشایی دایرکتور داده ها امکان پذیر نیست. شاید بیت کویین در حال فعال می باشد%s - - - Threshold for disconnecting misbehaving peers (default: 100) - آستانه برای قطع ارتباط با همکاران بدرفتار (پیش‌فرض: 100) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) @@ -1935,46 +1920,11 @@ Address: %4 Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) حداکثر بافر ارسالی در هر اتصال، 1000*<n> (پیش‌فرض: 10000) - - - Run in the background as a daemon and accept commands - اجرای در پس زمینه به عنوان شبح و قبول فرمان ها - Output extra debugging information اطلاعات اشکال‌زدایی اضافی خروجی - - - Send trace/debug info to debugger - اطلاعات ردگیری/اشکال‌زدایی را به اشکال‌زدا بفرستید - - - - Username for JSON-RPC connections - JSON-RPC شناسه برای ارتباطات - - - - Password for JSON-RPC connections - JSON-RPC عبارت عبور برای ارتباطات - - - - Send commands to node running on <ip> (default: 127.0.0.1) - (127.0.0.1پیش فرض: ) &lt;ip&gt; دادن فرمانها برای استفاده گره ها روی - - - - Set key pool size to <n> (default: 100) - (100پیش فرض:)&lt;n&gt; گذاشتن اندازه کلید روی - - - - Rescan the block chain for missing wallet transactions - اسکان مجدد زنجیر بلوکها برای گم والت معامله - @@ -1982,16 +1932,6 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) ( نگاه کنید Bitcoin Wiki در SSLتنظیمات ):SSL گزینه های - - - Use OpenSSL (https) for JSON-RPC connections - JSON-RPCبرای ارتباطات استفاده کنید OpenSSL (https) - - - - Server certificate file (default: server.cert) - (server.certپیش فرض: )گواهی نامه سرور - Warning: Disk space is low @@ -2027,15 +1967,75 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. هشدار: تاریخ و ساعت کامپیوتر شما چک کنید. اگر ساعت درست نیست بیتکویین مناسب نخواهد کار کرد - - - beta - بتا - Error: CreateThread(StartNode) failed خطا :ایجاد موضوع(گره) اشتباه بود + + + Bitcoin version + سخه بیتکویین + + + + Usage: + ستفاده : + + + + Get help for a command + کمک برای فرمان + + + + Show splash screen on startup (default: 1) + نمایش صفحه splash در STARTUP (پیش فرض:1) + + + + Connect through socks4 proxy + socks4 proxy ارتباط توسط + + + + Allow DNS lookups for addnode and connect + اجازه متغیر دی ان اس برای اضافه گره یا ارتباط + + + + Accept connections from outside (default: 1) + پذیرش اتصالات از بیرون (پیش فرض:1 بدون پراکسی یا اتصال) + + + + Use OpenSSL (https) for JSON-RPC connections + JSON-RPCبرای ارتباطات استفاده کنید OpenSSL (https) + + + + Set language, for example "de_DE" (default: system locale) + زبان را تنظیم کنید برای مثال "de_DE" (پیش فرض: system locale) + + + + Find peers using DNS lookup (default: 1) + قرینه ها را برای جستجوی DNS بیاب (پیش فرض: 1 مگر در زمان اتصال) + + + + Use Universal Plug and Play to map the listening port (default: 1) + از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:1 در زمان شنیدن) + + + + Use Universal Plug and Play to map the listening port (default: 0) + از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:0) + + + + beta + بتا + diff --git a/src/qt/locale/bitcoin_fa_IR.ts b/src/qt/locale/bitcoin_fa_IR.ts index 2e3691cb37..224bc5bd17 100644 --- a/src/qt/locale/bitcoin_fa_IR.ts +++ b/src/qt/locale/bitcoin_fa_IR.ts @@ -101,7 +101,7 @@ This product includes software developed by the OpenSSL Project for use in the O Edit - + و ویرایش @@ -351,52 +351,17 @@ Are you sure you wish to encrypt your wallet? Change the passphrase used for wallet encryption رمز مربوط به رمزگذاریِ wallet را تغییر دهید - - - &File - و فایل - - - - &Settings - و تنظیمات - - - - &Help - و راهنما - Tabs toolbar نوار ابزار - - - Actions toolbar - نوار عملیات - - - - [testnet] - [testnet] - Synchronizing with network... به روز رسانی با شبکه... - - - Bitcoin Wallet - - - - - Block chain synchronization in progress - - &Overview @@ -407,11 +372,6 @@ Are you sure you wish to encrypt your wallet? Show general overview of wallet نمای کلی از wallet را نشان بده - - - &Transactions - و تراکنش - Browse transaction history @@ -428,49 +388,24 @@ Are you sure you wish to encrypt your wallet? فهرست آدرسها را برای دریافت وجه نشان بده - - Send coins to a bitcoin address - + + &Transactions + و تراکنش Sign &message امضا و پیام - - - Prove you control an address - - - - - &About %1 - - Modify configuration options for bitcoin اصلاح انتخابها برای پیکربندی Bitcoin - - Open &Bitcoin - - - - - Show the Bitcoin window - - - - - &Encrypt Wallet - و رمزگذاری wallet - - - - &Backup Wallet - گرفتن نسخه پیشتیبان از Wallet + + Up to date + روزآمد @@ -483,22 +418,38 @@ Are you sure you wish to encrypt your wallet? تغییر رمز/پَس فرِیز - - bitcoin-qt - + + &File + و فایل + + + + &Settings + و تنظیمات + + + + &Help + و راهنما + + + + Actions toolbar + نوار عملیات + + + + [testnet] + [testnet] %n active connection(s) to Bitcoin network - + %n ارتباط فعال به شبکه Bitcoin +%n ارتباط فعال به شبکه Bitcoin - - - Downloaded %1 of %2 blocks of transaction history. - دانلود %1 از %2 بلاک مربوط به تاریخچه تراکنش - Downloaded %1 blocks of transaction history. @@ -508,18 +459,15 @@ Are you sure you wish to encrypt your wallet? %n day(s) ago - + %n روز قبل +%n روز قبل + - - Up to date - روزآمد - - - - Catching up... - در حال روزآمد سازی.. + + Downloaded %1 of %2 blocks of transaction history. + دانلود %1 از %2 بلاک مربوط به تاریخچه تراکنش @@ -531,6 +479,85 @@ Are you sure you wish to encrypt your wallet? 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 آن را ارسال کنید که این هزینه به گره هایی که تراکنش را برایتان انجام می دهد تعلق می گیرد و به حمایت از شبکه کمک می کند. آیا شما می خواهید این هزینه را پرداخت کنید؟ + + + %n second(s) ago + + %n ثانیه قبل +%n ثانیه قبل + + + + + Bitcoin Wallet + + + + + Block chain synchronization in progress + + + + + Send coins to a bitcoin address + + + + + Prove you control an address + + + + + &About %1 + درباره و %1 + + + + Open &Bitcoin + + + + + Show the Bitcoin window + نمایش یا عدم نمایش در صفحه bitcoin + + + + &Encrypt Wallet + و رمزگذاری wallet + + + + &Backup Wallet + گرفتن نسخه پیشتیبان از Wallet + + + + bitcoin-qt + + + + + %n minute(s) ago + + %n دقیقه قبل +%n دقیقه قبل + + + + + %n hour(s) ago + + %n ساعت قبل +%n ساعت قبل + + + + + Catching up... + در حال روزآمد سازی.. + Sending... @@ -587,30 +614,6 @@ Address: %4 There was an error trying to save the wallet data to the new location. در هنگام ذخیره داده های wallet به نسخه جدید خطایی ایجاد شده است - - - %n second(s) ago - - %n ثانیه قبل -%n ثانیه قبل - - - - - %n minute(s) ago - - %n دقیقه قبل -%n دقیقه قبل - - - - - %n hour(s) ago - - %n ساعت قبل -%n ساعت قبل - - A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -1217,42 +1220,11 @@ Address: %4 <b>Status:</b> - - - , has not been successfully broadcast yet - تا به حال با موفقیت انتشار نیافته است - - - - , broadcast through %1 node - - - - - , broadcast through %1 nodes - - <b>Date:</b> <b>تاریخ:</b> - - - <b>Source:</b> Generated<br> - - - - - - <b>From:</b> - - - - - unknown - ناشناس - @@ -1325,8 +1297,39 @@ Address: %4 Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - - + + + , has not been successfully broadcast yet + تا به حال با موفقیت انتشار نیافته است + + + + , broadcast through %1 node + + + + + , broadcast through %1 nodes + + + + + <b>Source:</b> Generated<br> + + + + + + <b>From:</b> + + + + + unknown + ناشناس + + + TransactionDescDialog @@ -1350,6 +1353,11 @@ Address: %4 دیگر: برای %n را باز کن + + + Address + آدرس + Date @@ -1360,11 +1368,6 @@ Address: %4 Type نوع - - - Address - آدرس - Amount @@ -1375,16 +1378,16 @@ Address: %4 Open until %1 باز کن تا %1 - - - Offline (%1 confirmations) - برون خطی (%1 تاییدها) - Unconfirmed (%1 of %2 confirmations) تایید نشده (%1 از %2 تاییدها) + + + Offline (%1 confirmations) + برون خطی (%1 تاییدها) + Confirmed (%1 confirmations) @@ -1465,6 +1468,11 @@ Address: %4 TransactionView + + + Range: + دامنه: + @@ -1616,11 +1624,6 @@ Address: %4 Could not write to file %1. قابل کپی به فایل نیست %1. - - - Range: - دامنه: - to @@ -1638,29 +1641,14 @@ Address: %4 bitcoin-core - - Bitcoin version - نسخه bitcoin - - - - Don't generate coins - سکه ها را تولید نکن - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - تعداد ثانیه ها برای اتصال دوباره قرینه های اشتباه (پیش فرض:86400) - - - - Generate coins - سکه ها را تولید کن + + Specify connection timeout (in milliseconds) + تعیین مدت زمان وقفه (time out) به هزارم ثانیه - - Get help for a command - درخواست کمک برای یک دستور + + Done loading + اتمام لود شدن @@ -1668,49 +1656,39 @@ Address: %4 دستور را وقتی بهترین بلاک تغییر کرد اجرا کن (%s در دستور توسط block hash جایگزین شده است) - - List commands - فهرست دستورها - - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - ارتباطات را در <PORT> بشنوید (پیش فرض: 8333 or testnet: 18333) - - - - Maintain at most <n> connections to peers (default: 125) - نگهداری <N> ارتباطات برای قرینه سازی (پیش فرض:125) + + Send commands to node running on <ip> (default: 127.0.0.1) + دستورات را به گره اجرا شده در<ip> ارسال کنید (پیش فرض:127.0.0.1) - - Options: - انتخابها: + + Loading wallet... + wallet در حال لود شدن است... - - Accept command line and JSON-RPC commands - command line و JSON-RPC commands را قبول کنید + + Threshold for disconnecting misbehaving peers (default: 100) + آستانه قطع برای قرینه سازی اشتباه (پیش فرض:100) - - Send command to -server or bitcoind - ارسال دستور به سرور یا bitcoined + + Server private key (default: server.pem) + رمز اختصاصی سرور (پیش فرض: server.pem) - - Set database cache size in megabytes (default: 25) - حافظه بانک داده را به مگابایت تنظیم کنید (پیش فرض: 25) + + Set key pool size to <n> (default: 100) + حجم key pool را به اندازه <n> تنظیم کنید (پیش فرض:100) - - Specify connection timeout (in milliseconds) - تعیین مدت زمان وقفه (time out) به هزارم ثانیه + + This help message + این پیام راهنما - - Specify data directory - دایرکتوری داده را مشخص کن + + Use OpenSSL (https) for JSON-RPC connections + برای ارتباطاتِ JSON-RPC از OpenSSL (https) استفاده کنید @@ -1777,6 +1755,11 @@ Address: %4 Output extra debugging information + + + Allow JSON-RPC connections from specified IP address + ارتباطاتِ JSON-RPC را از آدرس آی.پی. مشخصی برقرار کنید. + @@ -1784,24 +1767,14 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - Error loading addr.dat - خطا در هنگام لود شدن addr.dat - - - - Error loading blkindex.dat - خطا در هنگام لود شدن فایل blkindex.dat - - - - Error loading wallet.dat - خطا در هنگام لود شدن wallet.dat + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + ciphers قابل قبول (پیش فرض: default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - Cannot downgrade wallet - قابلیت برگشت به نسخه قبلی برای wallet امکان پذیر نیست + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + قفل دایرکتوری داده ها %s قابل دریافت نیست. احتمال این وجود دارد که Bitcoin در حال اجرا باشد @@ -1811,7 +1784,7 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Invalid amount for -paytxfee=<amount> - + میزان اشتباه است for -paytxfee=<amount> @@ -1843,26 +1816,136 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) beta + + + Add a node to connect to and attempt to keep the connection open + یک گره برای اتصال اضافه کنید و تلاش کنید تا اتصال را باز نگاه دارید + + + + Use the test network + از تستِ شبکه استفاده نمایید + + + + Send trace/debug info to console instead of debug.log file + ارسال اطلاعات پیگیری/خطایابی به کنسول به جای ارسال به فایل debug.log + + + + Send trace/debug info to debugger + ارسال اطاعات خطایابی/پیگیری به سیستم خطایاب + + + + Specify configuration file (default: bitcoin.conf) + فایل پیکربندیِ را مشخص کنید (پیش فرض: bitcoin.conf) + + + + Specify data directory + دایرکتوری داده را مشخص کن + + + + Specify pid file (default: bitcoind.pid) + فایل pid را مشخص کنید (پیش فرض: bitcoind.pid) + + + + Prepend debug output with timestamp + برونداد اشکال زدایی با timestamp + + + + Bitcoin version + نسخه bitcoin + + + + Don't generate coins + سکه ها را تولید نکن + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + تعداد ثانیه ها برای اتصال دوباره قرینه های اشتباه (پیش فرض:86400) + + + + Generate coins + سکه ها را تولید کن + + + + Get help for a command + درخواست کمک برای یک دستور + + + + List commands + فهرست دستورها + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + ارتباطات را در <PORT> بشنوید (پیش فرض: 8333 or testnet: 18333) + + + + Maintain at most <n> connections to peers (default: 125) + نگهداری <N> ارتباطات برای قرینه سازی (پیش فرض:125) + + + + Options: + انتخابها: + + + + Accept command line and JSON-RPC commands + command line و JSON-RPC commands را قبول کنید + + + + Send command to -server or bitcoind + ارسال دستور به سرور یا bitcoined + + + + Set database cache size in megabytes (default: 25) + حافظه بانک داده را به مگابایت تنظیم کنید (پیش فرض: 25) + + + + Error loading addr.dat + خطا در هنگام لود شدن addr.dat + + + + Error loading blkindex.dat + خطا در هنگام لود شدن فایل blkindex.dat + + + + Error loading wallet.dat + خطا در هنگام لود شدن wallet.dat + + + + Cannot downgrade wallet + قابلیت برگشت به نسخه قبلی برای wallet امکان پذیر نیست + Error loading wallet.dat: Wallet corrupted خطا در هنگام لود شدن wallet.dat: Wallet corrupted - - - Cannot initialize keypool - initialize keypool امکان پذیر نیست - Error loading wallet.dat: Wallet requires newer version of Bitcoin خطا در هنگام لود شدن wallet.dat. به نسخه جدید Bitocin برای wallet نیاز است. - - - Cannot write default address - آدرس پیش فرض قابل ذخیره نیست - How many blocks to check at startup (default: 2500, 0 = all) @@ -1873,11 +1956,6 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) How thorough the block verification is (0-6, default: 1) چگونگی تایید تمامی بلاکها (پیش فرض: 1 و 0-6) - - - Done loading - اتمام لود شدن - Listen for JSON-RPC connections on <port> (default: 8332) @@ -1893,16 +1971,6 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Fee per KB to add to transactions you send هزینه بر اساس کیلو بایت برای اضافه شدن به تراکنشی که ارسال کرده اید - - - Find peers using internet relay chat (default: 0) - یافتن همتا/دوست با استفاده از internet relay chat (پیش فرض:0) - - - - Loading addresses... - لود شدن آدرسها.. - Run in the background as a daemon and accept commands @@ -1919,119 +1987,54 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) زنجیره بلاک را برای تراکنش جا افتاده در WALLET دوباره اسکن کنید - - Send commands to node running on <ip> (default: 127.0.0.1) - دستورات را به گره اجرا شده در<ip> ارسال کنید (پیش فرض:127.0.0.1) + + Cannot initialize keypool + initialize keypool امکان پذیر نیست - - Loading wallet... - wallet در حال لود شدن است... + + Cannot write default address + آدرس پیش فرض قابل ذخیره نیست - - Threshold for disconnecting misbehaving peers (default: 100) - آستانه قطع برای قرینه سازی اشتباه (پیش فرض:100) + + Find peers using internet relay chat (default: 0) + یافتن همتا/دوست با استفاده از internet relay chat (پیش فرض:0) + + + + Loading addresses... + لود شدن آدرسها.. Server certificate file (default: server.cert) فایل certificate سرور (پیش فرض server.cert) - - - Server private key (default: server.pem) - رمز اختصاصی سرور (پیش فرض: server.pem) - - - - Set key pool size to <n> (default: 100) - حجم key pool را به اندازه <n> تنظیم کنید (پیش فرض:100) - Rescanning... اسکنِ دوباره... - - - This help message - این پیام راهنما - Upgrade wallet to latest format wallet را به جدیدترین نسخه روزآمد کنید - - - Use OpenSSL (https) for JSON-RPC connections - برای ارتباطاتِ JSON-RPC از OpenSSL (https) استفاده کنید - - - - Allow JSON-RPC connections from specified IP address - ارتباطاتِ JSON-RPC را از آدرس آی.پی. مشخصی برقرار کنید. - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - ciphers قابل قبول (پیش فرض: default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - قفل دایرکتوری داده ها %s قابل دریافت نیست. احتمال این وجود دارد که Bitcoin در حال اجرا باشد - - - - Add a node to connect to and attempt to keep the connection open - یک گره برای اتصال اضافه کنید و تلاش کنید تا اتصال را باز نگاه دارید - - - - Use the test network - از تستِ شبکه استفاده نمایید - - - - Wallet needed to be rewritten: restart Bitcoin to complete - wallet نیاز به بازنویسی دارد. Bitcoin را برای تکمیل عملیات دوباره اجرا کنید. - - - - 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 - - Specify configuration file (default: bitcoin.conf) - فایل پیکربندیِ را مشخص کنید (پیش فرض: bitcoin.conf) - - - - Specify pid file (default: bitcoind.pid) - فایل pid را مشخص کنید (پیش فرض: bitcoind.pid) + + Wallet needed to be rewritten: restart Bitcoin to complete + wallet نیاز به بازنویسی دارد. Bitcoin را برای تکمیل عملیات دوباره اجرا کنید. Usage: میزان استفاده: - - - Prepend debug output with timestamp - برونداد اشکال زدایی با timestamp - diff --git a/src/qt/locale/bitcoin_fi.ts b/src/qt/locale/bitcoin_fi.ts index 019c2269b2..c2f157857a 100644 --- a/src/qt/locale/bitcoin_fi.ts +++ b/src/qt/locale/bitcoin_fi.ts @@ -200,6 +200,11 @@ This product includes software developed by the OpenSSL Project for use in the O Unlock wallet Avaa lompakko + + + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Bitcoin sulkeutuu lopettaakseen salausprosessin. Muista, että salattu lompakko ei täysin suojaa sitä haittaohjelmien aiheuttamilta varkauksilta. + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! @@ -208,9 +213,28 @@ Are you sure you wish to encrypt your wallet? Tahdotko varmasti salata lompakon? - - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin sulkeutuu lopettaakseen salausprosessin. Muista, että salattu lompakko ei täysin suojaa sitä haittaohjelmien aiheuttamilta varkauksilta. + + This operation needs your wallet passphrase to decrypt the wallet. + Tätä toimintoa varten sinun täytyy antaa lompakon tunnuslause salauksen purkuun. + + + + + + + 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. Lompakkoa ei salattu. + + + + + The supplied passphrases do not match. + Annetut tunnuslauseet eivät täsmää. @@ -230,9 +254,15 @@ Tahdotko varmasti salata lompakon? Lompakon salauksen purku epäonnistui. - - This operation needs your wallet passphrase to decrypt the wallet. - Tätä toimintoa varten sinun täytyy antaa lompakon tunnuslause salauksen purkuun. + + Wallet passphrase was successfully changed. + Lompakon tunnuslause on vaihdettu. + + + + + Warning: The Caps Lock key is on. + Varoitus: Caps Lock on päällä. @@ -260,45 +290,85 @@ Tahdotko varmasti salata lompakon? Wallet encrypted Lompakko salattu + + + BitcoinGUI - - Wallet passphrase was successfully changed. - Lompakon tunnuslause on vaihdettu. + + &Receive coins + &Vastaanota Bitcoineja - - - Warning: The Caps Lock key is on. - Varoitus: Caps Lock on päällä. + + Show the list of addresses for receiving payments + Näytä Bitcoinien vastaanottamiseen käytetyt osoitteet - - - - - Wallet encryption failed - Lompakon salaus epäonnistui + + &Send coins + &Lähetä Bitcoineja - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Lompakon salaaminen epäonnistui sisäisen virheen vuoksi. Lompakkoa ei salattu. + + Backup wallet to another location + Varmuuskopioi lompakko toiseen sijaintiin - - - The supplied passphrases do not match. - Annetut tunnuslauseet eivät täsmää. + + Change the passphrase used for wallet encryption + Vaihda lompakon salaukseen käytettävä tunnuslause + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Päivä: %1 +Määrä: %2 +Tyyppi: %3 +Osoite: %4 + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Lompakko on <b>salattu</b> ja tällä hetkellä <b>lukittuna</b> + + + + Tabs toolbar + Välilehtipalkki + + + + Actions toolbar + Toimintopalkki + + + + %n day(s) ago + + %n päivä sitten + %n päivää sitten + + + + + Catching up... + Kurotaan kiinni... - - - BitcoinGUI Synchronizing with network... Synkronoidaan verkon kanssa... + + + Block chain synchronization in progress + Block chainin synkronointi kesken + &Overview @@ -330,19 +400,9 @@ Tahdotko varmasti salata lompakon? Muokkaa tallennettujen nimien ja osoitteiden listaa - - &Help - &Apua - - - - Tabs toolbar - Välilehtipalkki - - - - Actions toolbar - Toimintopalkki + + Sign &message + Allekirjoita &viesti @@ -355,34 +415,24 @@ Tahdotko varmasti salata lompakon? Lopeta ohjelma - - Prove you control an address - Todista että hallitset osoitetta - - - - Show information about Bitcoin - Näytä tietoa Bitcoin-projektista - - - - About &Qt - Tietoja &Qt + + Modify configuration options for bitcoin + Muokkaa asetuksia - - Show information about Qt - Näytä tietoja QT:ta + + Open &Bitcoin + Avaa &Bitcoin - - &Options... - &Asetukset... + + Show the Bitcoin window + Näytä Bitcoin-ikkuna - - Export the data in the current tab to a file - Vie aukiolevan välilehden tiedot tiedostoon + + &Encrypt Wallet + &Salaa lompakko @@ -390,9 +440,9 @@ Tahdotko varmasti salata lompakon? Kryptaa tai dekryptaa lompakko - - Backup wallet to another location - Varmuuskopioi lompakko toiseen sijaintiin + + &Change Passphrase + &Vaihda tunnuslause @@ -405,9 +455,14 @@ Tahdotko varmasti salata lompakon? &Asetukset - - Bitcoin Wallet - Bitcoin-lompakko + + bitcoin-qt + bitcoin-qt + + + + Downloaded %1 of %2 blocks of transaction history. + Ladattu %1 of %2 rahansiirtohistorian lohkoa. @@ -426,54 +481,34 @@ Tahdotko varmasti salata lompakon? - - Sign &message - Allekirjoita &viesti - - - - Catching up... - Kurotaan kiinni... - - - - Modify configuration options for bitcoin - Muokkaa asetuksia - - - - Open &Bitcoin - Avaa &Bitcoin - - - - Show the Bitcoin window - Näytä Bitcoin-ikkuna + + Prove you control an address + Todista että hallitset osoitetta - - &Export... - &Vie... + + Show information about Bitcoin + Näytä tietoa Bitcoin-projektista - - &Encrypt Wallet - &Salaa lompakko + + About &Qt + Tietoja &Qt - - &Change Passphrase - &Vaihda tunnuslause + + Show information about Qt + Näytä tietoja QT:ta - - Change the passphrase used for wallet encryption - Vaihda lompakon salaukseen käytettävä tunnuslause + + &Options... + &Asetukset... - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Lompakko on <b>salattu</b> ja tällä hetkellä <b>lukittuna</b> + + Export the data in the current tab to a file + Vie auki olevan välilehden tiedot tiedostoon @@ -481,34 +516,14 @@ Tahdotko varmasti salata lompakon? Ladattu %1 lohkoa rahansiirron historiasta. - - Block chain synchronization in progress - Block chainin synkronointi kesken - - - - Send coins to a bitcoin address - Lähetä kolikoita Bitcoin-osoitteeseen - - - - &About %1 - &Tietoja %1 - - - - &Backup Wallet - &Varmuuskopioi lompakko - - - - bitcoin-qt - bitcoin-qt + + &Export... + &Vie... - - Downloaded %1 of %2 blocks of transaction history. - Ladattu %1 of %2 rahansiirtohistorian lohkoa. + + Bitcoin Wallet + Bitcoin-lompakko @@ -518,19 +533,6 @@ Tahdotko varmasti salata lompakon? %n sekuntia sitten - - - %n minute(s) ago - - %n minuutti sitten - %n minuuttia sitten - - - - - Up to date - Ohjelmisto on ajan tasalla - Last received block was generated %1. @@ -541,21 +543,16 @@ Tahdotko varmasti salata lompakon? 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ää kokorajoituksen. Voit siitä huolimatta lähettää sen %1 siirtopalkkion mikä menee solmuille jotka käsittelevät rahansiirtosi tämä auttaa myös verkostoa. Haluatko maksaa siirtopalkkion? + + + Sending... + Lähetetään... + Sent transaction Lähetetyt rahansiirrot - - - Incoming transaction - Saapuva rahansiirto - - - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Lompakko on <b>salattu</b> ja tällä hetkellä <b>avoinna</b> - Backup Wallet @@ -577,50 +574,53 @@ Tahdotko varmasti salata lompakon? Virhe tallennettaessa lompakkodataa uuteen sijaintiin. - - Sending... - Lähetetään... - - - - &Receive coins - &Vastaanota Bitcoineja + + Send coins to a bitcoin address + Lähetä Bitcoin-osoitteeseen - - Show the list of addresses for receiving payments - Näytä Bitcoinien vastaanottamiseen käytetyt osoitteet + + &About %1 + &Tietoja %1 - - &Send coins - &Lähetä Bitcoineja + + &Backup Wallet + &Varmuuskopioi lompakko - - %n day(s) ago + + %n minute(s) ago - %n päivä sitten - %n päivää sitten + %n minuutti sitten + %n minuuttia sitten - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Päivä: %1 -Määrä: %2 -Tyyppi: %3 -Osoite: %4 + + Up to date + Rahansiirtohistoria on ajan tasalla + + + + Incoming transaction + Saapuva rahansiirto + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Lompakko on <b>salattu</b> ja tällä hetkellä <b>avoinna</b> [testnet] [testnet] + + + &Help + &Apua + A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -652,16 +652,16 @@ Osoite: %4 EditAddressDialog - - - Edit Address - Muokkaa osoitetta - &Label &Nimi + + + Edit Address + Muokkaa osoitetta + The label associated with this address book entry @@ -790,16 +790,16 @@ Osoite: %4 Port of the proxy (e.g. 1234) Portti, johon Bitcoin-asiakasohjelma yhdistää (esim. 1234) - - - Pay transaction &fee - Maksa rahansiirtopalkkio - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Vapaaehtoinen rahansiirtopalkkio per kB auttaa nopeuttamaan siirtoja. Useimmat rahansiirrot ovat 1 kB. 0.01 palkkio on suositeltava. + + + Pay transaction &fee + Maksa rahansiirtopalkkio + MessagePage @@ -916,6 +916,11 @@ Osoite: %4 Unconfirmed: Vahvistamatta: + + + Wallet + Lompakko + Form @@ -956,11 +961,6 @@ Osoite: %4 Total number of transactions in wallet Lompakolla tehtyjen rahansiirtojen yhteismäärä - - - Wallet - Lompakko - QRCodeDialog @@ -1004,6 +1004,11 @@ Osoite: %4 Label: Tunniste: + + + Save Image... + Tallenna kuva... + Message: @@ -1014,11 +1019,6 @@ Osoite: %4 &Save As... &Tallenna nimellä... - - - Save Image... - Tallenna kuva... - SendCoinsDialog @@ -1042,7 +1042,7 @@ Osoite: %4 Remove all transaction fields - Poista kaikki rahansiirtokentät + Poista kaikki rahansiiron kentät @@ -1094,16 +1094,16 @@ Osoite: %4 and ja - - - The recipient address is not valid, please recheck. - Vastaanottajan osoite ei kelpaa, ole hyvä ja tarkista. - The amount to pay must be larger than 0. Maksettavan summan tulee olla suurempi kuin 0 Bitcoinia. + + + The recipient address is not valid, please recheck. + Vastaanottajan osoite ei kelpaa, ole hyvä ja tarkista. + The amount exceeds your balance. @@ -1196,41 +1196,11 @@ Osoite: %4 TransactionDesc - - - Open for %1 blocks - Avoinna %1 lohkolle - - - - Open until %1 - Avoinna %1 asti - %1/unconfirmed %1/vahvistamaton - - - %1 confirmations - %1 vahvistusta - - - - %1/offline? - %1/ei linjalla? - - - - <b>Status:</b> - <b>Tila:</b> - - - - , has not been successfully broadcast yet - , ei ole vielä onnistuneesti lähetetty - , broadcast through %1 node @@ -1269,6 +1239,31 @@ Osoite: %4 <b>To:</b> <b>Vast. ott.:</b> + + + Open for %1 blocks + Avoinna %1 lohkolle + + + + Open until %1 + Avoinna %1 asti + + + + %1 confirmations + %1 vahvistusta + + + + %1/offline? + %1/ei linjalla? + + + + <b>Status:</b> + <b>Tila:</b> + (yours, label: @@ -1334,6 +1329,11 @@ Osoite: %4 Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Luotujen kolikoiden on odotettava 120 lohkoa ennen kuin ne voidaan käyttää. Kun loit tämän lohkon, se lähetettiin verkkoon lisättäväksi lohkoketjuun. Jos se epäonnistuu ketjuun liittymisessä, se tila tulee muuttumaan "ei hyväksytty" eikä sitä voi käyttää. Tätä voi silloin tällöin esiintyä jos toinen solmu luo lohkon muutamia sekunteja omastasi. + + + , has not been successfully broadcast yet + , ei ole vielä onnistuneesti lähetetty + TransactionDescDialog @@ -1350,11 +1350,46 @@ Osoite: %4 TransactionTableModel + + + 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. + + + + Destination address of transaction. + Rahansiirron kohteen Bitcoin-osoite + + + + Amount removed from or added to balance. + Saldoon lisätty tai siitä vähennetty määrä. + Date Päivämäärä + + + Amount + Määrä + Type @@ -1365,11 +1400,6 @@ Osoite: %4 Address Osoite - - - Amount - Määrä - Open for %n block(s) @@ -1402,8 +1432,8 @@ Osoite: %4 Mined balance will be available in %n more blocks - - + Louhittu saldo tulee saataville %n lohkossa + Louhittu saldo tulee saataville %n lohkossa @@ -1436,41 +1466,11 @@ Osoite: %4 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 @@ -1495,6 +1495,11 @@ Osoite: %4 This week Tällä viikolla + + + Received with + Vastaanotettu osoitteella + This month @@ -1515,11 +1520,6 @@ Osoite: %4 Range... Alue... - - - Received with - Vastaanotettu osoitteella - Sent to @@ -1550,6 +1550,11 @@ Osoite: %4 Min amount Minimimäärä + + + Edit label + Muokkaa nimeä + Copy address @@ -1565,11 +1570,6 @@ Osoite: %4 Copy amount Kopioi määrä - - - Edit label - Muokkaa nimeä - Show details... @@ -1578,7 +1578,7 @@ Osoite: %4 Export Transaction Data - Vie transaktion tiedot + Vie rahansiirron tiedot @@ -1651,31 +1651,16 @@ Osoite: %4 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 - Server certificate file (default: server.cert) Palvelimen sertifikaatti-tiedosto (oletus: server.cert) - - - Server private key (default: server.pem) - Palvelimen yksityisavain (oletus: server.pem) - This help message Tämä ohjeviesti - - - Use the test network - Käytä test -verkkoa - Prepend debug output with timestamp @@ -1687,45 +1672,115 @@ Osoite: %4 Lähetä jäljitys/debug-tieto konsoliin, debug.log-tiedoston sijaan - - Send trace/debug info to debugger - Lähetä jäljitys/debug-tieto debuggeriin + + Send commands to node running on <ip> (default: 127.0.0.1) + Lähetä käskyjä solmuun osoitteessa <ip> (oletus: 127.0.0.1) + + + + Set key pool size to <n> (default: 100) + Aseta avainpoolin koko arvoon <n> (oletus: 100) + + + + Use OpenSSL (https) for JSON-RPC connections + Käytä OpenSSL:ää (https) JSON-RPC-yhteyksille + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Hyväksyttävä salaus (oletus: +TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Lompakko tarvitsee uudelleenkirjoittaa: käynnistä Bitcoin uudelleen + + + + Error loading wallet.dat + Virhe ladattaessa wallet.dat-tiedostoa + + + + Loading wallet... + Ladataan lompakkoa... + + + + Bitcoin version + Bitcoinin versio + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Kuuntele yhteyksiä portista <port> (oletus: 8333 tai testnet: 18333) + + + + Listen for JSON-RPC connections on <port> (default: 8332) + Kuuntele JSON-RPC -yhteyksiä portista <port> (oletus: 8332) + + + + Allow JSON-RPC connections from specified IP address + Salli JSON-RPC yhteydet tietystä ip-osoitteesta + + + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + En pääse käsiksi data-hakemiston lukitukseen %s. Bitcoin on todennäköisesti jo käynnistetty. + + + + Loading addresses... + Ladataan osoitteita... + + + + Loading block index... + Ladataan lohkoindeksiä... + + + + 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) - - Username for JSON-RPC connections - Käyttäjätunnus JSON-RPC-yhteyksille + + Set database cache size in megabytes (default: 25) + Aseta tietokannan välimuistin koko megatavuina (oletus: 25) - - Password for JSON-RPC connections - Salasana JSON-RPC-yhteyksille + + How many blocks to check at startup (default: 2500, 0 = all) + Kuinka monta lohkoa tarkistetaan käynnistettäessä (oletus: 2500, 0 = kaikki) - - Send commands to node running on <ip> (default: 127.0.0.1) - Lähetä käskyjä solmuun osoitteessa <ip> (oletus: 127.0.0.1) + + Get help for a command + Hanki apua käskyyn - - Set key pool size to <n> (default: 100) - Aseta avainpoolin koko arvoon <n> (oletus: 100) + + Don't generate coins + Älä generoi kolikoita - - Rescan the block chain for missing wallet transactions - Skannaa uudelleen lohkoketju lompakon puuttuvien rahasiirtojen vuoksi + + Add a node to connect to and attempt to keep the connection open + Linää solmu mihin liittyä pitääksesi yhteyden auki - - Use OpenSSL (https) for JSON-RPC connections - Käytä OpenSSL:ää (https) JSON-RPC-yhteyksille + + Rescanning... + Skannataan uudelleen... - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Hyväksyttävä salaus (oletus: -TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Find peers using internet relay chat (default: 0) + Etsi solmuja käyttäen internet relay chatia (oletus: 0) @@ -1733,19 +1788,24 @@ TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Virhe ladattaessa wallet.dat-tiedostoa: Tarvitset uudemman version Bitcoinista - - Wallet needed to be rewritten: restart Bitcoin to complete - Lompakko tarvitsee uudelleenkirjoittaa: käynnistä Bitcoin uudelleen + + Run in the background as a daemon and accept commands + Aja taustalla daemonina ja hyväksy komennot - - Error loading wallet.dat - Virhe ladattaessa wallet.dat-tiedostoa + + Server private key (default: server.pem) + Palvelimen yksityisavain (oletus: server.pem) - - Add a node to connect to and attempt to keep the connection open - Linää solmu mihin liittyä pitääksesi yhteyden auki + + Use the test network + Käytä test -verkkoa + + + + Upgrade wallet to latest format + Päivitä lompakko uusimpaan formaattiin @@ -1762,46 +1822,21 @@ TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Cannot write default address Oletusosoitetta ei voi kirjoittaa + + + Rescan the block chain for missing wallet transactions + Skannaa uudelleen lohkoketju lompakon puuttuvien rahasiirtojen vuoksi + Done loading Lataus on valmis - - - Loading block index... - Ladataan lohkoindeksiä... - Fee per KB to add to transactions you send Rahansiirtopalkkio per KB lisätään lähettämääsi rahansiirtoon - - - Find peers using internet relay chat (default: 0) - Etsi solmuja käyttäen internet relay chatia (oletus: 0) - - - - Loading wallet... - Ladataan lompakkoa... - - - - Rescanning... - Skannataan uudelleen... - - - - Upgrade wallet to latest format - Päivitä lompakko uusimpaan formaattiin - - - - Bitcoin version - Bitcoinin versio - Usage: @@ -1812,46 +1847,16 @@ TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Send command to -server or bitcoind Lähetä käsky palvelimelle tai bitcoind:lle - - - List commands - Lista komennoista - - - - Get help for a command - Hanki apua käskyyn - Options: Asetukset: - - - Specify configuration file (default: bitcoin.conf) - Määritä asetustiedosto (oletus: bitcoin.conf) - - - - Specify pid file (default: bitcoind.pid) - Määritä pid-tiedosto (oletus: bitcoin.pid) - Generate coins Generoi kolikoita - - - Don't generate coins - Älä generoi kolikoita - - - - Start minimized - Käynnistä pienennettynä - Show splash screen on startup (default: 1) @@ -1877,11 +1882,6 @@ TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Allow DNS lookups for addnode and connect Salli DNS haut lisäsolmulle ja yhdistä - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Kuuntele yhteyksiä portista <port> (oletus: 8333 tai testnet: 18333) - Maintain at most <n> connections to peers (default: 125) @@ -1892,11 +1892,6 @@ TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Connect only to the specified node Ota yhteys vain tiettyyn solmuun - - - Set language, for example "de_DE" (default: system locale) - Set language, for example "de_DE" (default: system locale) - Find peers using DNS lookup (default: 1) @@ -1912,11 +1907,6 @@ TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) 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: 10000) - Maksimi verkkoyhteyden vastaanottopuskuri, <n>*1000 tavua (oletus: 10000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) @@ -1927,32 +1917,12 @@ TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Output extra debugging information Tulosta ylimääräistä debuggaustietoa - - - Listen for JSON-RPC connections on <port> (default: 8332) - Kuuntele JSON-RPC -yhteyksiä portista <port> (oletus: 8332) - - - - Allow JSON-RPC connections from specified IP address - Salli JSON-RPC yhteydet tietystä ip-osoitteesta - SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-asetukset: (lisätietoja Bitcoin-Wikistä) - - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - En pääse käsiksi data-hakemiston lukitukseen %s. Bitcoin on todennäköisesti jo käynnistetty. - - - - Loading addresses... - Ladataan osoitteita... - Error loading addr.dat @@ -1963,11 +1933,6 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Error loading blkindex.dat Virhe ladattaessa blkindex.dat-tiedostoa - - - Error loading wallet.dat: Wallet corrupted - Virhe ladattaessa wallet.dat-tiedostoa: Lompakko vioittunut - Invalid -proxy address @@ -1998,30 +1963,65 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Varoitus: Tarkista, ovatko tietokoneesi päivämäärä ja aika oikein. Mikäli aika on väärin, Bitcoin-ohjelma ei toimi oikein. - - - beta - beta - Warning: Disk space is low Varoitus: Kiintolevytila on loppumassa - - 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) + + Accept connections from outside (default: 1) + Älä hyväksy ulkopuolisia yhteyksiä - - Set database cache size in megabytes (default: 25) - Aseta tietokannan välimuistin koko megatavuina (oletus: 25) + + Use Universal Plug and Play to map the listening port (default: 1) + Yritä käyttää UPnP toimintoa kartoittamaan avointa porttia (default: 1) - - How many blocks to check at startup (default: 2500, 0 = all) - Kuinka monta lohkoa tarkistetaan käynnistettäessä (oletus: 2500, 0 = kaikki) + + Use Universal Plug and Play to map the listening port (default: 0) + Yritä käyttää UPnP toimintoa kartoittamaan avointa porttia (default: 0) + + + + List commands + Lista komennoista + + + + Specify configuration file (default: bitcoin.conf) + Määritä asetustiedosto (oletus: bitcoin.conf) + + + + Specify pid file (default: bitcoind.pid) + Määritä pid-tiedosto (oletus: bitcoin.pid) + + + + Start minimized + Käynnistä pienennettynä + + + + Set language, for example "de_DE" (default: system locale) + Set language, for example "de_DE" (default: system locale) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maksimi verkkoyhteyden vastaanottopuskuri, <n>*1000 tavua (oletus: 10000) + + + + Error loading wallet.dat: Wallet corrupted + Virhe ladattaessa wallet.dat-tiedostoa: Lompakko vioittunut + + + + beta + beta @@ -2029,19 +2029,19 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Kuinka tiukka lohkovarmistus on (0-6, oletus: 1) - - Accept connections from outside (default: 1) - Älä hyväksy ulkopuolisia yhteyksiä + + Password for JSON-RPC connections + Salasana JSON-RPC-yhteyksille - - Use Universal Plug and Play to map the listening port (default: 1) - Yritä käyttää UPnP toimintoa kartoittamaan avointa porttia (default: 1) + + Send trace/debug info to debugger + Lähetä jäljitys/debug-tieto debuggeriin - - Use Universal Plug and Play to map the listening port (default: 0) - Yritä käyttää UPnP toimintoa kartoittamaan avointa porttia (default: 0) + + Username for JSON-RPC connections + Käyttäjätunnus JSON-RPC-yhteyksille diff --git a/src/qt/locale/bitcoin_fr_CA.ts b/src/qt/locale/bitcoin_fr_CA.ts index 63a062d8c1..b9365a3035 100644 --- a/src/qt/locale/bitcoin_fr_CA.ts +++ b/src/qt/locale/bitcoin_fr_CA.ts @@ -106,7 +106,7 @@ This product includes software developed by the OpenSSL Project for use in the O Delete - + Supprimer @@ -139,7 +139,7 @@ This product includes software developed by the OpenSSL Project for use in the O Address - + Adresse @@ -325,7 +325,7 @@ Are you sure you wish to encrypt your wallet? &Address Book - + Carnet d'&adresses @@ -375,7 +375,7 @@ Are you sure you wish to encrypt your wallet? &About %1 - + &A propos de %1 @@ -385,7 +385,7 @@ Are you sure you wish to encrypt your wallet? About &Qt - + A propos de &Qt @@ -660,7 +660,7 @@ Address: %4 &Address - + &Adresse @@ -1353,7 +1353,7 @@ Address: %4 Address - + Adresse @@ -1593,7 +1593,7 @@ Address: %4 Address - + Adresse diff --git a/src/qt/locale/bitcoin_fr_FR.ts b/src/qt/locale/bitcoin_fr_FR.ts index d1438d1628..f9c729ce72 100644 --- a/src/qt/locale/bitcoin_fr_FR.ts +++ b/src/qt/locale/bitcoin_fr_FR.ts @@ -625,7 +625,7 @@ Adresse : %4 A fatal error occurred. Bitcoin can no longer continue safely and will quit. - + Une erreur fatale est survenue. Bitcoin ne peut plus continuer à fonctionner de façon sûre et va s'arrêter. @@ -648,7 +648,7 @@ Adresse : %4 Whether to show Bitcoin addresses in the transaction list - + Détermine si les adresses Bitcoin seront affichées sur la liste des transactions. @@ -862,7 +862,7 @@ Adresse : %4 Copy the current signature to the system clipboard - + Copier la signature actuelle dans le presse-papiers @@ -1008,7 +1008,7 @@ Adresse : %4 Error encoding URI into QR Code. - + Erreur de l'encodage de l'URI dans le QR Code. @@ -1705,7 +1705,7 @@ Adresse : %4 Show splash screen on startup (default: 1) - + Afficher l'écran d'accueil au démarrage (par défaut : 1) @@ -1715,7 +1715,7 @@ Adresse : %4 Set database cache size in megabytes (default: 25) - + Définir la taille du tampon en mégaoctets (par défaut : 25) @@ -1750,22 +1750,22 @@ Adresse : %4 Find peers using internet relay chat (default: 0) - + Trouver des pairs en utilisant Internet Relay Chat (par défaut : 0) Accept connections from outside (default: 1) - + Accepter les connexions entrantes (par défaut : 1) Set language, for example "de_DE" (default: system locale) - + Définir la langue, par exemple « de_DE » (par défaut : la langue du système) Find peers using DNS lookup (default: 1) - + Trouver des pairs en utilisant la recherche DNS (par défaut : 1) @@ -1850,12 +1850,12 @@ Adresse : %4 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 est remplacé par le hachage du bloc dans cmd) Upgrade wallet to latest format - + Mettre à jour le format du porte-monnaie @@ -1870,12 +1870,12 @@ Adresse : %4 How many blocks to check at startup (default: 2500, 0 = all) - + Nombre de blocs à tester au démarrage (par défaut : 2500, 0 = tous) How thorough the block verification is (0-6, default: 1) - + Profondeur de la vérification des blocs (0-6, par défaut : 1) @@ -1962,17 +1962,17 @@ Options SSL : (cf. le wiki Bitcoin pour les réglages SSL) Cannot downgrade wallet - + Impossible de revenir à une version antérieure du porte-monnaie Cannot initialize keypool - + Impossible d'initialiser la plage des clefs Cannot write default address - + Impossible d'écrire l'adresse par défaut @@ -2014,11 +2014,6 @@ Options SSL : (cf. le wiki Bitcoin pour les réglages SSL) Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Attention : veuillez vérifier que l'heure et la date de votre ordinateur sont corrects. Si votre horloge n'est pas à l'heure, Bitcoin ne fonctionnera pas correctement. - - - beta - bêta - Warning: Disk space is low @@ -2027,7 +2022,7 @@ Options SSL : (cf. le wiki Bitcoin pour les réglages SSL) Add a node to connect to and attempt to keep the connection open - Ajouter un nœud auquel se connecter and attempt to keep the connection open + Ajouter un nœud auquel se connecter et tenter de garder la connexion ouverte @@ -2044,5 +2039,10 @@ Options SSL : (cf. le wiki Bitcoin pour les réglages SSL) Fee per KB to add to transactions you send Frais par ko à ajouter aux transactions que vous enverrez + + + beta + bêta + diff --git a/src/qt/locale/bitcoin_he.ts b/src/qt/locale/bitcoin_he.ts index 53c5b545af..3534ab9683 100644 --- a/src/qt/locale/bitcoin_he.ts +++ b/src/qt/locale/bitcoin_he.ts @@ -155,11 +155,6 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - - - Dialog - שיח - Enter passphrase @@ -176,21 +171,9 @@ This product includes software developed by the OpenSSL Project for use in the O חזור על הסיסמה החדשה - - TextLabel - טקסטתוית - - - - Wallet unlock failed - פתיחת הארנק נכשלה - - - - - - The passphrase entered for the wallet decryption was incorrect. - הסיסמה שהוכנסה לפענוח הארנק שגויה. + + Dialog + שיח @@ -208,9 +191,9 @@ This product includes software developed by the OpenSSL Project for use in the O הפעולה הזו דורשת את סיסמת הארנק שלך בשביל לפתוח את הארנק. - - Wallet decryption failed - פענוח הארנק נכשל + + TextLabel + טקסטתוית @@ -242,13 +225,6 @@ This product includes software developed by the OpenSSL Project for use in the O Confirm wallet encryption אשר הצפנת ארנק - - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - אזהרה: אם תצפין את הארנק שלך ותאבד את הסיסמה אתה <b>תאבד את כל הביטקוין שלך</b>! -אתה בטוח שברצונך להצפין את הארנק? - @@ -271,6 +247,23 @@ Are you sure you wish to encrypt your wallet? 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. @@ -282,6 +275,13 @@ Are you sure you wish to encrypt your wallet? Warning: The Caps Lock key is on. אזהרה: מקש Caps Lock מופעל. + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + אזהרה: אם תצפין את הארנק שלך ותאבד את הסיסמה אתה <b>תאבד את כל הביטקוין שלך</b>! +אתה בטוח שברצונך להצפין את הארנק? + @@ -314,6 +314,21 @@ Are you sure you wish to encrypt your wallet? &Overview &סקירה + + + Tabs toolbar + סרגל כלים טאבים + + + + Actions toolbar + סרגל כלים פעולות + + + + [testnet] + [רשת-בדיקה] + Show general overview of wallet @@ -339,55 +354,81 @@ Are you sure you wish to encrypt your wallet? Edit the list of stored addresses and labels ערוך את רשימת הכתובות והתויות - - - Show the Bitcoin window - הצג את חלון ביטקוין + + + %n active connection(s) to Bitcoin network + + חיבור פעיל אחד לרשת הביטקוין + %n חיבורים פעילים לרשת הביטקוין + - - &Backup Wallet - &גיבוי ארנק + + Downloaded %1 blocks of transaction history. + הורדו %1 בלוקים של היסטוריית פעולות. + + + + %n second(s) ago + + לפני שניה + לפני %n שניות + + + + + %n day(s) ago + + לפני יום + לפני %n ימים + - - Actions toolbar - סרגל כלים פעולות + + Incoming transaction + פעולה שהתקבלה - - [testnet] - [רשת-בדיקה] + + Catching up... + מתעדכן... - - &Send coins - &שלח מטבעות + + Wallet is <b>encrypted</b> and currently <b>locked</b> + הארנק <b>מוצפן</b> וכרגע <b>נעול</b> - - E&xit - י&ציאה + + 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, שמגיעה לצמתים שמעבדים את הפעולה ועוזרת לתמוך ברשת. האם אתה מעוניין לשלם את העמלה? - - Quit application - סגור תוכנה + + Sent transaction + פעולה שנשלחה - - About &Qt - אודות Qt + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + תאריך: %1 +כמות: %2 +סוג: %3 +כתובת: %4 - - &Options... - &אפשרויות + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + הארנק <b>מוצפן</b> וכרגע <b>פתוח</b> - - &About %1 - &אודות %1 + + &File + &קובץ @@ -400,9 +441,9 @@ Are you sure you wish to encrypt your wallet? גיבוי הארנק למקום אחר - - Open &Bitcoin - פתח את &ביטקוין + + About &Qt + אודות Qt @@ -410,57 +451,14 @@ Are you sure you wish to encrypt your wallet? שנה את הסיסמה להצפנת הארנק - - &File - &קובץ - - - - bitcoin-qt - bitcoin-qt - - - - %n day(s) ago - - לפני יום - לפני %n ימים - - - - - Up to date - עדכני - - - - Tabs toolbar - סרגל כלים טאבים - - - - Sending... - שולח... - - - - Incoming transaction - פעולה שהתקבלה - - - - Bitcoin Wallet - ארנק ביטקוין - - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - הארנק <b>מוצפן</b> וכרגע <b>נעול</b> + + Show the Bitcoin window + הצג את חלון ביטקוין - - Backup Wallet - גיבוי ארנק + + &Backup Wallet + &גיבוי ארנק @@ -473,138 +471,140 @@ Are you sure you wish to encrypt your wallet? &עזרה - - Block chain synchronization in progress - סנכרון עם שרשרת הבלוקים בעיצומו + + E&xit + י&ציאה - - Send coins to a bitcoin address - שלח מטבעות לכתובת ביטקוין + + Quit application + סגור תוכנה - - Sign &message - חתום על הו&דעה + + &Options... + &אפשרויות - - &Receive coins - &קבלת מטבעות + + &About %1 + &אודות %1 - - Prove you control an address - הוכח שאתה שולט בכתובת + + Open &Bitcoin + פתח את &ביטקוין - - - Show the list of addresses for receiving payments - הצג את רשימת הכתובות לקבלת תשלומים + + + %n minute(s) ago + + לפני דקה + לפני %n דקות + - - - Modify configuration options for bitcoin - שנה הגדרות עבור ביטקוין + + + %n hour(s) ago + + לפני שעה + לפני %n שעות + - - &Encrypt Wallet - הצ&פן ארנק + + bitcoin-qt + bitcoin-qt - - &Change Passphrase - שנה &סיסמה + + &Receive coins + &קבלת מטבעות Encrypt or decrypt wallet הצפן או פענח ארנק + + + Show the list of addresses for receiving payments + הצג את רשימת הכתובות לקבלת תשלומים + Show information about Qt הצג מידע על Qt - - - %n active connection(s) to Bitcoin network - - חיבור פעיל אחד לרשת הביטקוין - %n חיבורים פעילים לרשת הביטקוין - + + + Block chain synchronization in progress + סנכרון עם שרשרת הבלוקים בעיצומו - - Downloaded %1 of %2 blocks of transaction history. - הורדו %1 מתוך %2 בלוקים של היסטוריית פעולות. + + Bitcoin Wallet + ארנק ביטקוין - - Downloaded %1 blocks of transaction history. - הורדו %1 בלוקים של היסטוריית פעולות. + + &Send coins + &שלח מטבעות - - - %n second(s) ago - - לפני שניה - לפני %n שניות - + + + Send coins to a bitcoin address + שלח מטבעות לכתובת ביטקוין - - - %n minute(s) ago - - לפני דקה - לפני %n דקות - + + + Sign &message + חתום על הו&דעה - - - %n hour(s) ago - - לפני שעה - לפני %n שעות - + + + Prove you control an address + הוכח שאתה שולט בכתובת - - Catching up... - מתעדכן... + + Modify configuration options for bitcoin + שנה הגדרות עבור ביטקוין - - Last received block was generated %1. - הבלוק האחרון שהתקבל נוצר ב-%1. + + &Encrypt Wallet + הצ&פן ארנק - - 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, שמגיעה לצמתים שמעבדים את הפעולה ועוזרת לתמוך ברשת. האם אתה מעוניין לשלם את העמלה? + + &Change Passphrase + שנה &סיסמה - - Sent transaction - פעולה שנשלחה + + Downloaded %1 of %2 blocks of transaction history. + הורדו %1 מתוך %2 בלוקים של היסטוריית פעולות. - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - תאריך: %1 -כמות: %2 -סוג: %3 -כתובת: %4 + + Up to date + עדכני - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - הארנק <b>מוצפן</b> וכרגע <b>פתוח</b> + + Last received block was generated %1. + הבלוק האחרון שהתקבל נוצר ב-%1. + + + + Sending... + שולח... + + + + Backup Wallet + גיבוי ארנק @@ -652,6 +652,16 @@ Address: %4 EditAddressDialog + + + The label associated with this address book entry + התוית המשויכת לרשומה הזו בפנקס הכתובות + + + + &Address + &כתובת + New key generation failed. @@ -667,16 +677,6 @@ Address: %4 &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. @@ -702,6 +702,11 @@ Address: %4 Edit sending address ערוך כתובת לשליחה + + + Could not unlock wallet. + פתיחת הארנק נכשלה. + The entered address "%1" is already in the address book. @@ -712,11 +717,6 @@ Address: %4 The entered address "%1" is not a valid bitcoin address. הכתובת שהכנסת "%1" אינה כתובת ביטקוין תקינה. - - - Could not unlock wallet. - פתיחת הארנק נכשלה. - MainOptionsPage @@ -911,6 +911,16 @@ Address: %4 OverviewPage + + + Your current balance + היתרה הנוכחית שלך + + + + Unconfirmed: + ממתין לאישור: + Form @@ -926,16 +936,6 @@ Address: %4 Wallet ארנק - - - Your current balance - היתרה הנוכחית שלך - - - - Unconfirmed: - ממתין לאישור: - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance @@ -946,16 +946,16 @@ Address: %4 Number of transactions: מספר פעולות: - - - Total number of transactions in wallet - המספר הכולל של פעולות בארנק - <b>Recent transactions</b> <b>פעולות אחרונות</b> + + + Total number of transactions in wallet + המספר הכולל של פעולות בארנק + 0 @@ -969,11 +969,6 @@ Address: %4 &Save As... &שמור בשם... - - - PNG Images (*.png) - תמונות PNG (*.png) - Dialog @@ -1019,6 +1014,11 @@ Address: %4 Save Image... שמור תמונה... + + + PNG Images (*.png) + תמונות PNG (*.png) + SendCoinsDialog @@ -1039,6 +1039,11 @@ Address: %4 Send to multiple recipients at once שלח למספר מקבלים בו-זמנית + + + &Add recipient... + &הוסף מקבל... + Remove all transaction fields @@ -1109,11 +1114,6 @@ Address: %4 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. @@ -1125,9 +1125,9 @@ Address: %4 שגיאה: הפעולה נדחתה. זה עשוי לקרות עם חלק מהמטבעות בארנק שלך כבר נוצלו, למשל אם השתמשת בעותק של wallet.dat ומטבעות נוצלו בעותק אך לא סומנו כמנוצלות כאן. - - &Add recipient... - &הוסף מקבל... + + Duplicate address found, can only send to each address once per send operation. + כתובת כפולה נמצאה, ניתן לשלוח לכל כתובת רק פעם אחת בכל פעולת שליחה. @@ -1196,6 +1196,11 @@ Address: %4 TransactionDesc + + + unknown + לא ידוע + Open for %1 blocks @@ -1252,11 +1257,6 @@ Address: %4 <b>From:</b> <b>מאת:</b> - - - unknown - לא ידוע - @@ -1351,59 +1351,94 @@ Address: %4 TransactionTableModel - - Date - תאריך + + Received with + התקבל עם - - Type - סוג + + Sent to + נשלח ל - - Address - כתובת + + Payment to yourself + תשלום לעצמך - - Amount - כמות + + Mined + נכרה - - - Open for %n block(s) - - פתוח למשך בלוק אחד - פתוח למשך %n בלוקים - + + + (n/a) + (n/a) + + + + Transaction status. Hover over this field to show number of confirmations. + מצב הפעולה. השהה את הסמן מעל שדה זה כדי לראות את מספר האישורים. + + + + Destination address of transaction. + כתובת היעד של הפעולה. Open until %1 פתוח עד %1 + + + Confirmed (%1 confirmations) + מאושר (%1 אישורים) + Offline (%1 confirmations) לא מחובר (%1 אישורים) + + + Date + תאריך + + + + Type + סוג + + + + Address + כתובת + + + + Amount + כמות + + + + Open for %n block(s) + + + + + Unconfirmed (%1 of %2 confirmations) ממתין לאישור (%1 מתוך %2 אישורים) - - - Confirmed (%1 confirmations) - מאושר (%1 אישורים) - Mined balance will be available in %n more blocks - יתרה שנכרתה תהיה זמינה עוד בלוק אחד - יתרה שנכרתה תהיה זמינה עוד %n בלוקים + + @@ -1416,41 +1451,11 @@ Address: %4 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. @@ -1461,11 +1466,6 @@ Address: %4 Type of transaction. סוג הפעולה. - - - Destination address of transaction. - כתובת היעד של הפעולה. - Amount removed from or added to balance. @@ -1479,41 +1479,35 @@ Address: %4 Edit label ערוך תוית - - - Confirmed - מאושר - Error exporting שגיאה ביצוא - - Range: - טווח: + + Export Transaction Data + יצוא נתוני פעולות - - - All - הכל + + Comma separated file (*.csv) + קובץ מופרד בפסיקים (*.csv) - - Today - היום + + Type + סוג - - This week - השבוע + + Sent to + נשלח ל - - This month - החודש + + Mined + נכרה @@ -1525,36 +1519,47 @@ Address: %4 This year השנה - - - Range... - טווח... - Received with התקבל עם - - - Sent to - נשלח ל - To yourself לעצמך - - - Mined - נכרה - Other אחר + + + + All + הכל + + + + Today + היום + + + + This week + השבוע + + + + This month + החודש + + + + Range... + טווח... + Enter address or label to search @@ -1585,25 +1590,15 @@ Address: %4 Show details... הצג פרטים... - - - Export Transaction Data - יצוא נתוני פעולות - - - - Comma separated file (*.csv) - קובץ מופרד בפסיקים (*.csv) - Date תאריך - - Type - סוג + + Confirmed + מאושר @@ -1630,6 +1625,11 @@ Address: %4 Could not write to file %1. לא מסוגל לכתוב לקובץ %1. + + + Range: + טווח: + to @@ -1656,46 +1656,11 @@ Address: %4 Add a node to connect to and attempt to keep the connection open הוסף צומת להתחברות ונסה לשמור את החיבור פתוח - - - Specify pid file (default: bitcoind.pid) - ציין קובץ pid (ברירת מחדל: bitcoind.pid) - Specify connection timeout (in milliseconds) ציין הגבלת זמן לחיבור (במילישניות) - - - Cannot downgrade wallet - לא יכול להוריד דרגת הארנק - - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - האזן לחיבורים ב<פורט> (ברירת מחדל: 8333 או ברשת הבדיקה: 18333) - - - - Cannot initialize keypool - לא יכול לאתחל את מאגר המפתחות - - - - Maintain at most <n> connections to peers (default: 125) - החזק לכל היותר <n> חיבורים לעמיתים (ברירת מחדל: 125) - - - - Done loading - טעינה הושלמה - - - - Error loading blkindex.dat - שגיאה בטעינת הקובץ blkindex.dat - Password for JSON-RPC connections @@ -1706,11 +1671,6 @@ Address: %4 Listen for JSON-RPC connections on <port> (default: 8332) האזן לחיבורי JSON-RPC ב<פורט> (ברירת מחדל: 8332) - - - How many blocks to check at startup (default: 2500, 0 = all) - מספר הבלוקים לבדוק בעת ההפעלה (ברירת מחדל: 2500, 0=כולם) - How thorough the block verification is (0-6, default: 1) @@ -1721,16 +1681,6 @@ Address: %4 Send commands to node running on <ip> (default: 127.0.0.1) שלח פקודות לצומת ב-<ip> (ברירת מחדל: 127.0.0.1) - - - Use Universal Plug and Play to map the listening port (default: 1) - השתמש ב-UPnP כדי למפות את הפורט להאזנה (ברירת מחדל: 1 בעת האזנה) - - - - Use Universal Plug and Play to map the listening port (default: 0) - השתמש ב-UPnP כדי למפות את הפורט להאזנה (ברירת מחדל: 0) - Set key pool size to <n> (default: 100) @@ -1747,30 +1697,110 @@ Address: %4 השתמש ב-OpenSSL (https( עבור חיבורי JSON-RPC - - Server certificate file (default: server.cert) - קובץ תעודת שרת (ברירת מחדל: server.cert) + + Loading addresses... + טוען כתובות... - - Server private key (default: server.pem) - מפתח פרטי של השרת (ברירת מחדל: server.pem) + + Threshold for disconnecting misbehaving peers (default: 100) + סף להתנתקות מעמיתים הנוהגים שלא כהלכה (ברירת מחדל: 100) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - צפנים קבילים (ברירת מחדל: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + מספר שניות למנוע מעמיתים הנוהגים שלא כהלכה מלהתחבר מחדש (ברירת מחדל: 86400) - - Loading addresses... - טוען כתובות... + + Accept command line and JSON-RPC commands + קבל פקודות משורת הפקודה ו- JSON-RPC + + + + Run in the background as a daemon and accept commands + רוץ ברקע כדימון וקבל פקודות + + + + Use the test network + השתמש ברשת הבדיקה + + + + Send trace/debug info to console instead of debug.log file + שלח מידע דיבאג ועקבה לקונסולה במקום לקובץ debug.log + + + + Username for JSON-RPC connections + שם משתמש לחיבורי JSON-RPC + + + + Allow JSON-RPC connections from specified IP address + אפשר חיבורי JSON-RPC מכתובת האינטרנט המצוינת + + + + Fee per KB to add to transactions you send + עמלה להוסיף לפעולות שאתה שולח עבור כל KB + + + + Find peers using internet relay chat (default: 0) + מצא עמיתים תוך שימוש ב-IRC (ברירת מחדל: 0) Loading block index... טוען את אינדקס הבלוקים... + + + Done loading + טעינה הושלמה + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + שגיאה בטעינת הקובץ wallet.dat: הארנק דורש גרסה חדשה יותר של ביטקוין + + + + Error loading wallet.dat + שגיאה בטעינת הקובץ wallet.dat + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + בצע פקודה זו כשהבלוק הטוב ביותר משתנה (%s בפקודה יוחלף בגיבוב הבלוק) + + + + Error loading blkindex.dat + שגיאה בטעינת הקובץ blkindex.dat + + + + Specify pid file (default: bitcoind.pid) + ציין קובץ pid (ברירת מחדל: bitcoind.pid) + + + + Cannot downgrade wallet + לא יכול להוריד דרגת הארנק + + + + Use Universal Plug and Play to map the listening port (default: 1) + השתמש ב-UPnP כדי למפות את הפורט להאזנה (ברירת מחדל: 1 בעת האזנה) + + + + Use Universal Plug and Play to map the listening port (default: 0) + השתמש ב-UPnP כדי למפות את הפורט להאזנה (ברירת מחדל: 0) + Loading wallet... @@ -1801,56 +1831,16 @@ Address: %4 Upgrade wallet to latest format שדרג את הארנק לפורמט העדכני - - - Set database cache size in megabytes (default: 25) - קבע את גודל המטמון של מסד הנתונים במגהבייט (ברירת מחדל: 25) - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - בצע פקודה זו כשהבלוק הטוב ביותר משתנה (%s בפקודה יוחלף בגיבוב הבלוק) - Error loading wallet.dat: Wallet corrupted שגיאה בטעינת הקובץ wallet.dat: הארנק מושחת - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - שגיאה בטעינת הקובץ wallet.dat: הארנק דורש גרסה חדשה יותר של ביטקוין - - - - Error loading wallet.dat - שגיאה בטעינת הקובץ wallet.dat - - - - Usage: - שימוש: - Send command to -server or bitcoind שלח פקודה ל -server או bitcoind - - - List commands - רשימת פקודות - - - - Get help for a command - קבל עזרה עבור פקודה - - - - Options: - אפשרויות: - Specify configuration file (default: bitcoin.conf) @@ -1901,16 +1891,6 @@ Address: %4 Find peers using DNS lookup (default: 1) - - - 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: 10000) @@ -1926,66 +1906,11 @@ Address: %4 Show splash screen on startup (default: 1) הצג מסך פתיחה בעת הפעלה (ברירת מחדל: 1) - - - 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 פלוט מידע דיבאג נוסף - - - Prepend debug output with timestamp - הוסף חותמת זמן לפני פלט דיבאג - - - - 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 - - - - Allow JSON-RPC connections from specified IP address - אפשר חיבורי JSON-RPC מכתובת האינטרנט המצוינת - - - - Cannot write default address - לא יכול לכתוב את כתובת ברירת המחדל - - - - Fee per KB to add to transactions you send - עמלה להוסיף לפעולות שאתה שולח עבור כל KB - - - - Find peers using internet relay chat (default: 0) - מצא עמיתים תוך שימוש ב-IRC (ברירת מחדל: 0) - @@ -2032,15 +1957,90 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. אזהרה: אנא בדוק שהתאריך והשעה של המחשב הזה נכונים. אם השעון שלך שגוי ביטקוין לא יפעל כהלכה. - - - beta - בטא - Warning: Disk space is low אזהרה: מעט מקום בדיסק + + + Prepend debug output with timestamp + הוסף חותמת זמן לפני פלט דיבאג + + + + Send trace/debug info to debugger + שלח מידע דיבאג ועקבה לכלי דיבאג + + + + Get help for a command + קבל עזרה עבור פקודה + + + + How many blocks to check at startup (default: 2500, 0 = all) + מספר הבלוקים לבדוק בעת ההפעלה (ברירת מחדל: 2500, 0=כולם) + + + + List commands + רשימת פקודות + + + + Server certificate file (default: server.cert) + קובץ תעודת שרת (ברירת מחדל: server.cert) + + + + Server private key (default: server.pem) + מפתח פרטי של השרת (ברירת מחדל: server.pem) + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + האזן לחיבורים ב<פורט> (ברירת מחדל: 8333 או ברשת הבדיקה: 18333) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + צפנים קבילים (ברירת מחדל: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Maintain at most <n> connections to peers (default: 125) + החזק לכל היותר <n> חיבורים לעמיתים (ברירת מחדל: 125) + + + + Options: + אפשרויות: + + + + Cannot initialize keypool + לא יכול לאתחל את מאגר המפתחות + + + + Cannot write default address + לא יכול לכתוב את כתובת ברירת המחדל + + + + Set database cache size in megabytes (default: 25) + קבע את גודל המטמון של מסד הנתונים במגהבייט (ברירת מחדל: 25) + + + + Usage: + שימוש: + + + + beta + בטא + diff --git a/src/qt/locale/bitcoin_hr.ts b/src/qt/locale/bitcoin_hr.ts index ba37761fa4..6260de9b80 100644 --- a/src/qt/locale/bitcoin_hr.ts +++ b/src/qt/locale/bitcoin_hr.ts @@ -287,6 +287,11 @@ Jeste li sigurni da želite šifrirati svoj novčanik? BitcoinGUI + + + Export the data in the current tab to a file + Izvoz podataka iz trenutnog taba u datoteku + E&xit @@ -297,20 +302,40 @@ Jeste li sigurni da želite šifrirati svoj novčanik? Quit application Izlazak iz programa + + + Encrypt or decrypt wallet + Šifriranje ili dešifriranje novčanika + Show information about Bitcoin Prikaži informacije o Bitcoinu - - Show information about Qt - Prikaži informacije o Qt + + Open &Bitcoin + Otvori &Bitcoin - - &Options... - &Postavke + + &Encrypt Wallet + &Šifriraj novčanik + + + + Backup wallet to another location + Napravite sigurnosnu kopiju novčanika na drugoj lokaciji + + + + Downloaded %1 of %2 blocks of transaction history. + Preuzeto %1 od %2 blokova povijesti transakcije. + + + + Sending... + Slanje... @@ -332,11 +357,86 @@ Jeste li sigurni da želite šifrirati svoj novčanik? There was an error trying to save the wallet data to the new location. Došlo je do pogreške kod spremanja podataka novčanika na novu lokaciju. + + + Up to date + Ažurno + + + + Catching up... + Ažuriranje... + + + + Last received block was generated %1. + Zadnji primljeni blok je generiran %1. + + + + Sent transaction + Poslana transakcija + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum:%1 +Iznos:%2 +Tip:%3 +Adresa:%4 + + + + + Downloaded %1 blocks of transaction history. + Preuzeto %1 blokova povijesti transakcije. + + + + %n minute(s) ago + + prije %n minute + prije %n minute + prije %n minuta + + + + + %n hour(s) ago + + prije %n sata + prije %n sata + prije %n sati + + + + + %n day(s) ago + + prije %n dana + prije %n dana + prije %n dana + + &Transactions &Transakcije + + + Bitcoin Wallet + Bitcoin novčanik + + + + Show general overview of wallet + Prikaži opći pregled novčanika + Browse transaction history @@ -352,11 +452,6 @@ Jeste li sigurni da želite šifrirati svoj novčanik? Edit the list of stored addresses and labels Uređivanje popisa pohranjenih adresa i oznaka - - - &Export... - &Izvoz... - Show the list of addresses for receiving payments @@ -365,13 +460,33 @@ Jeste li sigurni da želite šifrirati svoj novčanik? &Send coins - &Pošalji novac + &Slanje novca + + + + Sign &message + &Potpišite poruku + + + + Prove you control an address + &About %1 &Više o %1 + + + Show information about Qt + Prikaži informacije o Qt + + + + &Options... + &Postavke + Modify configuration options for bitcoin @@ -388,29 +503,9 @@ Jeste li sigurni da želite šifrirati svoj novčanik? Slanje novca na bitcoin adresu - - Open &Bitcoin - Otvori &Bitcoin - - - - &Encrypt Wallet - &Šifriraj novčanik - - - - Show the Bitcoin window - Prikaži Bitcoin prozor - - - - &Change Passphrase - &Promijena lozinke - - - - Change the passphrase used for wallet encryption - Promijenite lozinku za šifriranje novčanika + + Incoming transaction + Dolazna transakcija @@ -418,9 +513,9 @@ Jeste li sigurni da želite šifrirati svoj novčanik? &Datoteka - - &Settings - &Konfiguracija + + Show the Bitcoin window + Prikaži Bitcoin prozor @@ -433,14 +528,14 @@ Jeste li sigurni da želite šifrirati svoj novčanik? Traka kartica - - Sent transaction - Poslana transakcija + + &Change Passphrase + &Promijena lozinke - - Incoming transaction - Dolazna transakcija + + Change the passphrase used for wallet encryption + Promijenite lozinku za šifriranje novčanika @@ -451,16 +546,6 @@ Jeste li sigurni da želite šifrirati svoj novčanik? %n aktivnih veza na Bitcoin mrežu - - - Downloaded %1 of %2 blocks of transaction history. - Preuzeto %1 od %2 blokova povijesti transakcije. - - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b> - %n second(s) ago @@ -471,24 +556,24 @@ Jeste li sigurni da želite šifrirati svoj novčanik? - - Bitcoin Wallet - Bitcoin novčanik + + About &Qt + Više o &Qt - - Sign &message - &Potpišite poruku + + 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? + Ova transakcija je preko ograničenja veličine. Možete ju ipak poslati za naknadu od %1, koja se daje čvorovima koji procesiraju vaše transakcije i tako podržavate mrežu. Želite li platiti naknadu? - - Prove you control an address - + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Novčanik je <b>šifriran</b> i trenutno <b>otključan</b> - - About &Qt - Više o &Qt + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b> @@ -500,75 +585,10 @@ Jeste li sigurni da želite šifrirati svoj novčanik? bitcoin-qt bitcoin-qt - - - %n minute(s) ago - - prije %n minute - prije %n minute - prije %n minuta - - - - - %n hour(s) ago - - prije %n sata - prije %n sata - prije %n sati - - - - - %n day(s) ago - - prije %n dana - prije %n dana - prije %n dana - - - - - Up to date - Ažurno - - - - Catching up... - Ažuriranje... - - - - Last received block was generated %1. - Zadnji primljeni blok je generiran %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? - Ova transakcija je preko ograničenja veličine. Možete ju ipak poslati za naknadu od %1, koja se daje čvorovima koji procesiraju vaše transakcije i tako podržavate mrežu. Želite li platiti naknadu? - - - - Sending... - Slanje... - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Datum:%1 -Iznos:%2 -Tip:%3 -Adresa:%4 - - - - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Novčanik je <b>šifriran</b> i trenutno <b>otključan</b> + + &Overview + &Pregled @@ -577,14 +597,9 @@ Adresa:%4 Usklađivanje s mrežom ... - - &Overview - &Pregled - - - - Show general overview of wallet - Prikaži opći pregled novčanika + + Actions toolbar + Traka akcija @@ -592,35 +607,20 @@ Adresa:%4 &Primanje novca - - Export the data in the current tab to a file - Izvoz podataka iz trenutnog taba u datoteku - - - - Encrypt or decrypt wallet - Šifriranje ili dešifriranje novčanika - - - - Backup wallet to another location - Napravite sigurnosnu kopiju novčanika na drugoj lokaciji + + &Export... + &Izvoz... - - Actions toolbar - Traka akcija + + &Settings + &Konfiguracija [testnet] [testnet] - - - Downloaded %1 blocks of transaction history. - Preuzeto %1 blokova povijesti transakcije. - A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -868,6 +868,11 @@ Adresa:%4 &Copy to Clipboard &Kopiraj u međuspremnik + + + %1 is not a valid address. + Upisana adresa "%1" nije valjana bitcoin adresa. + @@ -875,11 +880,6 @@ Adresa:%4 Error signing - - - %1 is not a valid address. - Upisana adresa "%1" nije valjana bitcoin adresa. - Private key for %1 is not available. @@ -921,11 +921,6 @@ Adresa:%4 Unconfirmed: Nepotvrđene: - - - <b>Recent transactions</b> - <b>Nedavne transakcije</b> - Form @@ -954,13 +949,18 @@ Adresa:%4 Total number of transactions in wallet - Ukupni broj tansakcija u lisnici + Ukupni broj tansakcija u novčaniku Wallet Novčanik + + + <b>Recent transactions</b> + <b>Nedavne transakcije</b> + QRCodeDialog @@ -1047,6 +1047,11 @@ Adresa:%4 Confirm the send action Potvrdi akciju slanja + + + &Send + &Pošalji + @@ -1057,7 +1062,7 @@ Adresa:%4 Send Coins - Pošalji novac + Slanje novca @@ -1069,11 +1074,6 @@ Adresa:%4 Clear all Obriši sve - - - &Send - &Pošalji - <b>%1</b> to %2 (%3) @@ -1094,16 +1094,16 @@ Adresa:%4 and i - - - 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 recipient address is not valid, please recheck. + Adresa primatelja je nevaljala, molimo provjerite je ponovo. + The amount exceeds your balance. @@ -1206,11 +1206,6 @@ Adresa:%4 Open until %1 Otvoren do %1 - - - %1 confirmations - %1 potvrda - %1/offline? @@ -1222,34 +1217,9 @@ Adresa:%4 %1/nepotvrđeno - - <b>Status:</b> - <b>Status:</b> - - - - , has not been successfully broadcast yet - , još nije bio uspješno emitiran - - - - , broadcast through %1 node - , emitiran kroz nod %1 - - - - , broadcast through %1 nodes - , emitiran kroz nodove %1 - - - - <b>Date:</b> - <b>Datum:</b> - - - - <b>Source:</b> Generated<br> - <b>Izvor:</b> Generirano<br> + + %1 confirmations + %1 potvrda @@ -1279,31 +1249,6 @@ Adresa:%4 (yours) (tvoje) - - - - - - <b>Credit:</b> - <b>Uplaćeno:</b> - - - - (%1 matures in %2 more blocks) - (%1 stasava za %2 dodatna bloka) - - - - (not accepted) - (Nije prihvaćeno) - - - - - - <b>Debit:</b> - <b>Potrošeno:</b> - <b>Transaction fee:</b> @@ -1334,6 +1279,61 @@ Adresa:%4 Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Generirani novčići moraju pričekati nastanak 120 blokova prije nego što ih je moguće potrošiti. Kad ste generirali taj blok, on je bio emitiran u mrežu kako bi bio dodan postojećim lancima blokova. Ako ne uspije biti dodan, njegov status bit će promijenjen u "nije prihvaćen" i on neće biti potrošiv. S vremena na vrijeme tako nešto se može desiti ako neki drugi nod generira blok u približno isto vrijeme. + + + <b>Status:</b> + <b>Status:</b> + + + + , has not been successfully broadcast yet + , još nije bio uspješno emitiran + + + + , broadcast through %1 node + , emitiran kroz nod %1 + + + + , broadcast through %1 nodes + , emitiran kroz nodove %1 + + + + <b>Date:</b> + <b>Datum:</b> + + + + <b>Source:</b> Generated<br> + <b>Izvor:</b> Generirano<br> + + + + + + + <b>Credit:</b> + <b>Uplaćeno:</b> + + + + (%1 matures in %2 more blocks) + (%1 stasava za %2 dodatna bloka) + + + + (not accepted) + (Nije prihvaćeno) + + + + + + <b>Debit:</b> + <b>Potrošeno:</b> + TransactionDescDialog @@ -1351,9 +1351,14 @@ Adresa:%4 TransactionTableModel - - Date - Datum + + Open until %1 + Otvoren do %1 + + + + Received from + Primljeno od @@ -1370,6 +1375,11 @@ Adresa:%4 Amount Iznos + + + Date + Datum + Open for %n block(s) @@ -1379,11 +1389,6 @@ Adresa:%4 Otvoren za %n blokova - - - Open until %1 - Otvoren do %1 - Offline (%1 confirmations) @@ -1403,9 +1408,9 @@ Adresa:%4 Mined balance will be available in %n more blocks - Saldo iskovanih novčićća bit de dostupan nakon %n dodatnog bloka - Saldo iskovanih novčićća bit de dostupan nakon %n dodatnih blokova - Saldo iskovanih novčićća bit de dostupan nakon %n dodatnih blokova + + + @@ -1413,6 +1418,11 @@ Adresa:%4 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! + + + Amount removed from or added to balance. + Iznos odbijen od ili dodan k saldu. + Generated but not accepted @@ -1423,36 +1433,16 @@ Adresa:%4 Received with Primljeno s - - - Received from - Primljeno od - Sent to Poslano za - - - Payment to yourself - Plaćanje samom sebi - - - - Mined - Rudareno - (n/a) (n/d) - - - Transaction status. Hover over this field to show number of confirmations. - Status transakcije - Date and time that the transaction was received. @@ -1469,9 +1459,19 @@ Adresa:%4 Odredište transakcije - - Amount removed from or added to balance. - Iznos odbijen od ili dodan k saldu. + + Payment to yourself + Plaćanje samom sebi + + + + Mined + Rudareno + + + + Transaction status. Hover over this field to show number of confirmations. + Status transakcije @@ -1557,6 +1557,11 @@ Adresa:%4 Copy label Kopirati oznaku + + + Copy amount + Kopiraj iznos + Edit label @@ -1568,14 +1573,9 @@ Adresa:%4 Prikazati detalje... - - to - za - - - - Copy amount - Kopiraj iznos + + Comma separated file (*.csv) + Datoteka podataka odvojenih zarezima (*.csv) @@ -1583,19 +1583,29 @@ Adresa:%4 Izvoz podataka transakcija - - Comma separated file (*.csv) - Datoteka podataka odvojenih zarezima (*.csv) + + Confirmed + Potvrđeno + + + + Date + Datum + + + + Label + Oznaka - - Confirmed - Potvrđeno + + Range: + Raspon: - - Date - Datum + + to + za @@ -1603,20 +1613,15 @@ Adresa:%4 Tip - - Label - Oznaka + + Amount + Iznos Address Adresa - - - Amount - Iznos - ID @@ -1632,11 +1637,6 @@ Adresa:%4 Could not write to file %1. Ne mogu pisati u datoteku %1. - - - Range: - Raspon: - WalletModel @@ -1698,15 +1698,35 @@ Adresa:%4 Loading addresses... Učitavanje adresa... + + + Specify data directory + Odredi direktorij za datoteke + + + + Specify connection timeout (in milliseconds) + Odredi vremenski prozor za spajanje na mrežu (u milisekundama) + + + + Accept command line and JSON-RPC commands + Prihvati komande iz tekst moda i JSON-RPC + Loading block index... Učitavanje indeksa blokova... - - Loading wallet... - Učitavanje novčanika... + + Done loading + Učitavanje gotovo + + + + Run in the background as a daemon and accept commands + Izvršavaj u pozadini kao uslužnik i prihvaćaj komande @@ -1714,70 +1734,40 @@ Adresa:%4 Rescaniranje - - Done loading - Učitavanje gotovo - - - - 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) + + Use the test network + Koristi test mrežu - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Slušaj na <port>u (default: 8333 ili testnet: 18333) + + Username for JSON-RPC connections + Korisničko ime za JSON-RPC veze - - Maintain at most <n> connections to peers (default: 125) - Održavaj najviše <n> veza sa članovima (default: 125) + + Listen for JSON-RPC connections on <port> (default: 8332) + Prihvaćaj JSON-RPC povezivanje na portu broj <port> (ugrađeni izbor: 8332) - - Error loading blkindex.dat - Greška kod učitavanja blkindex.dat + + Allow JSON-RPC connections from specified IP address + Dozvoli JSON-RPC povezivanje s određene IP adrese - - Fee per KB to add to transactions you send - Naknada posredniku po KB-u koja će biti dodana svakoj transakciji koju pošalješ + + 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) Error loading wallet.dat Greška kod učitavanja wallet.dat - - - Error loading wallet.dat: Wallet corrupted - Greška kod učitavanja wallet.dat: Novčanik pokvaren - Error loading wallet.dat: Wallet requires newer version of Bitcoin Greška kod učitavanja wallet.dat: Novčanik zahtjeva noviju verziju Bitcoina - - - Threshold for disconnecting misbehaving peers (default: 100) - Prag za odspajanje članova koji se čudno ponašaju (default: 100) - - - - Prepend debug output with timestamp - Dodaj izlaz debuga na početak sa vremenskom oznakom - - - - Send trace/debug info to console instead of debug.log file - Šalji trace/debug informacije na konzolu umjesto u debug.log datoteku - - - - Send trace/debug info to debugger - Pošalji trace/debug informacije u debugger - Wallet needed to be rewritten: restart Bitcoin to complete @@ -1798,6 +1788,46 @@ Adresa:%4 Send command to -server or bitcoind Pošalji komandu usluzi -server ili bitcoind + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Slušaj na <port>u (default: 8333 ili testnet: 18333) + + + + 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) + + + + Loading wallet... + Učitavanje novčanika... + + + + Fee per KB to add to transactions you send + Naknada posredniku po KB-u koja će biti dodana svakoj transakciji koju pošalješ + + + + Threshold for disconnecting misbehaving peers (default: 100) + Prag za odspajanje članova koji se čudno ponašaju (default: 100) + + + + Send trace/debug info to console instead of debug.log file + Šalji trace/debug informacije na konzolu umjesto u debug.log datoteku + + + + Send trace/debug info to debugger + Pošalji trace/debug informacije u debugger + + + + Error loading blkindex.dat + Greška kod učitavanja blkindex.dat + List commands @@ -1843,21 +1873,11 @@ Adresa:%4 Show splash screen on startup (default: 1) - - - Specify data directory - Odredi direktorij za datoteke - Set database cache size in megabytes (default: 25) - - - Specify connection timeout (in milliseconds) - Odredi vremenski prozor za spajanje na mrežu (u milisekundama) - Connect through socks4 proxy @@ -1903,46 +1923,11 @@ Adresa:%4 Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - - - Accept command line and JSON-RPC commands - Prihvati komande iz tekst moda i JSON-RPC - - - - Run in the background as a daemon and accept commands - Izvršavaj u pozadini kao uslužnik i prihvaćaj komande - - - - Use the test network - Koristi test mrežu - Output extra debugging information - - - Username for JSON-RPC connections - Korisničko ime za JSON-RPC veze - - - - Listen for JSON-RPC connections on <port> (default: 8332) - Prihvaćaj JSON-RPC povezivanje na portu broj <port> (ugrađeni izbor: 8332) - - - - 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) @@ -1974,6 +1959,11 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Error loading addr.dat Greška kod učitavanja addr.dat + + + Error loading wallet.dat: Wallet corrupted + Greška kod učitavanja wallet.dat: Novčanik pokvaren + Cannot downgrade wallet @@ -2004,26 +1994,6 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) 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. - - - Error: CreateThread(StartNode) failed - Greška: CreateThread(StartNode) nije uspjela - - - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Program ne može koristiti port %d na ovom računalu. Bitcoin program je vjerojatno već pokrenut. - - - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Upozorenje: Molimo provjerite jesu li datum i vrijeme na vašem računalu točni. Ako vaš sat ide krivo, Bitcoin neće raditi ispravno. - - - - beta - beta - Warning: Disk space is low @@ -2044,5 +2014,35 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Use Universal Plug and Play to map the listening port (default: 0) Pokušaj koristiti UPnP da otvoriš port za uslugu (default: 0) + + + Maintain at most <n> connections to peers (default: 125) + Održavaj najviše <n> veza sa članovima (default: 125) + + + + Prepend debug output with timestamp + Dodaj izlaz debuga na početak sa vremenskom oznakom + + + + Error: CreateThread(StartNode) failed + Greška: CreateThread(StartNode) nije uspjela + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Program ne može koristiti port %d na ovom računalu. Bitcoin program je vjerojatno već pokrenut. + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Upozorenje: Molimo provjerite jesu li datum i vrijeme na vašem računalu točni. Ako vaš sat ide krivo, Bitcoin neće raditi ispravno. + + + + beta + beta + diff --git a/src/qt/locale/bitcoin_lt.ts b/src/qt/locale/bitcoin_lt.ts index aadb35ad64..8afe58e901 100644 --- a/src/qt/locale/bitcoin_lt.ts +++ b/src/qt/locale/bitcoin_lt.ts @@ -385,6 +385,16 @@ Ar jūs tikrai norite užšifruoti savo piniginę? &About %1 &Apie %1 + + + Encrypt or decrypt wallet + Užšifruoti ar iššifruoti piniginę + + + + Change the passphrase used for wallet encryption + Pakeisti slaptažodį naudojamą piniginės užšifravimui + Show information about Bitcoin @@ -405,61 +415,21 @@ Ar jūs tikrai norite užšifruoti savo piniginę? &Options... &Opcijos... - - - Modify configuration options for bitcoin - Keisti bitcoin konfigūracijos galimybes - - - - Open &Bitcoin - Atidaryti &Bitcoin - Show the Bitcoin window Rodyti Bitcoin langą - - - &Export... - &Eksportas... - Export the data in the current tab to a file - - - &Encrypt Wallet - &E Užšifruoti piniginę - - - - Encrypt or decrypt wallet - Užšifruoti ar iššifruoti piniginę - - - - &Backup Wallet - &Backup piniginę - Backup wallet to another location - - - &Change Passphrase - &C Pakeisti slaptažodį - - - - Change the passphrase used for wallet encryption - Pakeisti slaptažodį naudojamą piniginės užšifravimui - &File @@ -490,20 +460,6 @@ Ar jūs tikrai norite užšifruoti savo piniginę? [testnet] [testavimotinklas] - - - bitcoin-qt - bitcoin-qt - - - - %n active connection(s) to Bitcoin network - - %n Bitcoin tinklo aktyvus ryšys - %n Bitcoin tinklo aktyvūs ryšiai - %n Bitcoin tinklo aktyvūs ryšiai - - Downloaded %1 of %2 blocks of transaction history. @@ -570,32 +526,15 @@ Ar jūs tikrai norite užšifruoti savo piniginę? 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? Šis sandoris viršija leistiną dydį. Jūs galite įvykdyti jį papildomai sumokėję %1 mokesčių, kurie bus išsiųsti tais pačiais mazgais kuriais vyko sandoris ir padės palaikyti tinklą. Ar jūs norite apmokėti papildomą mokestį? - - - Sending... - Siunčiama... - Sent transaction Sandoris nusiųstas - - Incoming transaction - Ateinantis sandoris - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Data: %1 -Suma: %2 -Tipas: %3 -Adresas: %4 + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Piniginė <b>užšifruota</b> ir šiuo metu <b>atrakinta</b> @@ -623,9 +562,70 @@ Adresas: %4 - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Piniginė <b>užšifruota</b> ir šiuo metu <b>atrakinta</b> + + Modify configuration options for bitcoin + Keisti bitcoin konfigūracijos galimybes + + + + Open &Bitcoin + Atidaryti &Bitcoin + + + + &Export... + &Eksportas... + + + + &Encrypt Wallet + &E Užšifruoti piniginę + + + + &Backup Wallet + &Backup piniginę + + + + &Change Passphrase + &C Pakeisti slaptažodį + + + + %n active connection(s) to Bitcoin network + + %n Bitcoin tinklo aktyvus ryšys + %n Bitcoin tinklo aktyvūs ryšiai + %n Bitcoin tinklo aktyvūs ryšiai + + + + + Incoming transaction + Ateinantis sandoris + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1 +Suma: %2 +Tipas: %3 +Adresas: %4 + + + + bitcoin-qt + bitcoin-qt + + + + Sending... + Siunčiama... @@ -899,16 +899,16 @@ Adresas: %4 OptionsDialog - - - Options - Opcijos - Main Pagrindinis + + + Options + Opcijos + Display @@ -917,6 +917,16 @@ Adresas: %4 OverviewPage + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Iš viso sandorių, įskaitant tuos kurie dar turi būti patvirtinti, ir jie dar nėra įskaičiuotii į einamosios sąskaitos balansą + + + + Total number of transactions in wallet + Bandras sandorių kiekis piniginėje + Form @@ -937,16 +947,6 @@ Adresas: %4 0 0 - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Iš viso sandorių, įskaitant tuos kurie dar turi būti patvirtinti, ir jie dar nėra įskaičiuotii į einamosios sąskaitos balansą - - - - Total number of transactions in wallet - Bandras sandorių kiekis piniginėje - Unconfirmed: @@ -970,21 +970,11 @@ Adresas: %4 QRCodeDialog - - - Dialog - Dialogas - QR Code QR kodas - - - Request Payment - Prašau išmokėti - Amount: @@ -1010,6 +1000,16 @@ Adresas: %4 &Save As... &S išsaugoti kaip... + + + Dialog + Dialogas + + + + Request Payment + Prašau išmokėti + Error encoding URI into QR Code. @@ -1033,11 +1033,6 @@ Adresas: %4 123.456 BTC 123.456 BTC - - - Confirm the send action - Patvirtinti siuntimo veiksmą - &Send @@ -1048,6 +1043,16 @@ Adresas: %4 <b>%1</b> to %2 (%3) <b>%1</b> to %2 (%3) + + + Balance: + Balansas: + + + + Confirm the send action + Patvirtinti siuntimo veiksmą + Confirm send coins @@ -1085,11 +1090,6 @@ Adresas: %4 Clear all Ištrinti viską - - - Balance: - Balansas: - Are you sure you want to send %1? @@ -1100,21 +1100,11 @@ Adresas: %4 and ir - - - The recipient address is not valid, please recheck. - Negaliojantis gavėjo adresas. Patikrinkite. - The amount to pay must be larger than 0. Apmokėjimo suma turi būti didesnė negu 0. - - - The amount exceeds your balance. - Suma viršija jūsų balansą. - The total exceeds your balance when the %1 transaction fee is included. @@ -1135,6 +1125,16 @@ Adresas: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Klaida: sandoris buvo atmestas.Tai gali įvykti, jei kai kurios monetos iš jūsų piniginėje jau buvo panaudotos, pvz. jei naudojote wallet.dat kopiją ir monetos buvo išleistos kopijoje, bet nepažymėtos kaip skirtos išleisti čia. + + + The recipient address is not valid, please recheck. + Negaliojantis gavėjo adresas. Patikrinkite. + + + + The amount exceeds your balance. + Suma viršija jūsų balansą. + SendCoinsEntry @@ -1203,9 +1203,9 @@ Adresas: %4 TransactionDesc - - Open for %1 blocks - Atidaryta %1 blokams + + %1/offline? + %1/atjungtas? @@ -1223,9 +1223,9 @@ Adresas: %4 %1 patvirtinimai - - %1/offline? - %1/atjungtas? + + Open for %1 blocks + Atidaryta %1 blokams @@ -1263,11 +1263,6 @@ Adresas: %4 <b>From:</b> <b>Nuo:</b> - - - unknown - nežinomas - @@ -1340,6 +1335,11 @@ Adresas: %4 Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Išgautos monetos turi sulaukti 120 blokų, kol jos gali būti naudojamos. Kai sukūrėte šį bloką, jis buvo transliuojamas tinkle ir turėjo būti įtrauktas į blokų grandinę. Jei nepavyksta patekti į grandinę, bus pakeista į "nepriėmė", o ne "vartojamas". Tai kartais gali atsitikti, jei kitas mazgas per keletą sekundžių sukuria bloką po jūsų bloko. + + + unknown + nežinomas + TransactionDescDialog @@ -1356,6 +1356,36 @@ Adresas: %4 TransactionTableModel + + + (n/a) + nepasiekiama + + + + Transaction status. Hover over this field to show number of confirmations. + Sandorio būklė. Užvedus pelės žymeklį ant šios srities matysite patvirtinimų skaičių. + + + + Date and time that the transaction was received. + Sandorio gavimo data ir laikas + + + + Type of transaction. + Sandorio tipas + + + + Destination address of transaction. + Sandorio paskirties adresas + + + + Amount removed from or added to balance. + Suma pridėta ar išskaičiuota iš balanso + Date @@ -1409,9 +1439,9 @@ Adresas: %4 Mined balance will be available in %n more blocks - - - + Išgautas balansas bus pasiekiamas po %n bloko + Išgautas balansas bus pasiekiamas po %n blokų + Išgautas balansas bus pasiekiamas po %n blokų @@ -1449,36 +1479,6 @@ Adresas: %4 Mined Išgauta - - - (n/a) - nepasiekiama - - - - Transaction status. Hover over this field to show number of confirmations. - Sandorio būklė. Užvedus pelės žymeklį ant šios srities matysite patvirtinimų skaičių. - - - - Date and time that the transaction was received. - Sandorio gavimo data ir laikas - - - - Type of transaction. - Sandorio tipas - - - - Destination address of transaction. - Sandorio paskirties adresas - - - - Amount removed from or added to balance. - Suma pridėta ar išskaičiuota iš balanso - TransactionView @@ -1519,14 +1519,9 @@ Adresas: %4 Grupė - - Received with - Gauta su - - - - Sent to - Išsiųsta + + Confirmed + Patvirtintas @@ -1563,6 +1558,11 @@ Adresas: %4 Copy label Kopijuoti žymę + + + Received with + Gauta su + Copy amount @@ -1573,6 +1573,11 @@ Adresas: %4 Edit label Taisyti žymę + + + Sent to + Išsiųsta + Show details... @@ -1588,11 +1593,6 @@ Adresas: %4 Comma separated file (*.csv) Kableliais atskirtų duomenų failas (*.csv) - - - Confirmed - Patvirtintas - Date @@ -1619,20 +1619,15 @@ Adresas: %4 Suma - - ID - ID + + Could not write to file %1. + Neįmanoma įrašyti į failą %1. Error exporting Eksportavimo klaida - - - Could not write to file %1. - Neįmanoma įrašyti į failą %1. - Range: @@ -1643,6 +1638,11 @@ Adresas: %4 to skirta + + + ID + ID + WalletModel @@ -1669,6 +1669,11 @@ Adresas: %4 Don't generate coins Neišgavinėti monetų + + + Done loading + Pakrovimas baigtas + Username for JSON-RPC connections @@ -1694,85 +1699,100 @@ Adresas: %4 Error loading blkindex.dat blkindex.dat pakrovimo klaida - - - Error loading wallet.dat: Wallet corrupted - wallet.dat pakrovimo klaida, wallet.dat sugadintas - - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - wallet.dat pakrovimo klaida, wallet.dat reikalauja naujasnės Bitcoin versijos - Wallet needed to be rewritten: restart Bitcoin to complete Piniginė turi būti prrašyta: įvykdymui perkraukite Bitcoin - - - Error loading wallet.dat - wallet.dat pakrovimo klaida - Loading block index... Užkraunami blokų indeksai... - - Loading wallet... - Užkraunama piniginė... + + Usage: + Naudojimas: - - Cannot downgrade wallet - + + Run in the background as a daemon and accept commands + Dirbti fone kaip šešėlyje ir priimti komandas - - Cannot initialize keypool - + + Use the test network + Naudoti testavimo tinklą - - Cannot write default address - + + Prepend debug output with timestamp + Prideėti laiko žymę derinimo rezultatams - - Done loading - Pakrovimas baigtas + + Send trace/debug info to console instead of debug.log file + Siųsti atsekimo/derinimo info į konsolę vietoj debug.log failo - - Rescanning... - Peržiūra + + Send trace/debug info to debugger + Siųsti sekimo/derinimo info derintojui - - Bitcoin version - Bitcoin versija + + Password for JSON-RPC connections + Slaptažodis JSON-RPC sujungimams - - Usage: - Naudojimas: + + Listen for JSON-RPC connections on <port> (default: 8332) + Klausymas JSON-RPC sujungimui prijungčiai <port> (pagal nutylėjimą: 8332) - - Send command to -server or bitcoind - Siųsti komandą serveriui arba bitcoind + + Allow JSON-RPC connections from specified IP address + Leisti JSON-RPC tik iš nurodytų IP adresų - - List commands - Komandų sąrašas + + 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) - - Get help for a command - Suteikti pagalba komandai + + Set key pool size to <n> (default: 100) + Nustatyti rakto apimties dydį <n> (pagal nutylėjimą: 100) + + + + Rescan the block chain for missing wallet transactions + Ieškoti prarastų piniginės sandorių blokų grandinėje + + + + Use OpenSSL (https) for JSON-RPC connections + Naudoti OpenSSL (https) jungimuisi JSON-RPC + + + + Server certificate file (default: server.cert) + Serverio sertifikato failas (pagal nutylėjimą: server.cert) + + + + Server private key (default: server.pem) + Serverio privatus raktas (pagal nutylėjimą: server.pem) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Priimtini šifrai (pagal nutylėjimą: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Send command to -server or bitcoind + Siųsti komandą serveriui arba bitcoind @@ -1784,45 +1804,70 @@ Adresas: %4 Specify configuration file (default: bitcoin.conf) Nurodyti konfigūracijos failą (pagal nutylėjimąt: bitcoin.conf) - - - Start minimized - Pradžia sumažinta - - - - Show splash screen on startup (default: 1) - - Specify data directory Nustatyti duomenų direktoriją - - - Set database cache size in megabytes (default: 25) - - Specify connection timeout (in milliseconds) Nustatyti sujungimo trukmę (milisekundėmis) - - Connect through socks4 proxy - Prisijungti per socks4 proxy + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Sujungimo klausymas prijungčiai <port> (pagal nutylėjimą: 8333 arba testnet: 18333) - - Allow DNS lookups for addnode and connect - Leisti DNS paiešką sujungimui ir mazgo pridėjimui + + Rescanning... + Peržiūra - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Sujungimo klausymas prijungčiai <port> (pagal nutylėjimą: 8333 arba testnet: 18333) + + Threshold for disconnecting misbehaving peers (default: 100) + Atjungimo dėl netinkamo kolegų elgesio riba (pagal nutylėjimą: 100) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Sekundžių kiekis eikiamas palaikyti ryšį dėl lygiarangių nestabilumo (pagal nutylėjimą: 86.400) + + + + Error loading wallet.dat: Wallet corrupted + wallet.dat pakrovimo klaida, wallet.dat sugadintas + + + + Error loading wallet.dat + wallet.dat pakrovimo klaida + + + + Loading wallet... + Užkraunama piniginė... + + + + List commands + Komandų sąrašas + + + + Get help for a command + Suteikti pagalba komandai + + + + Show splash screen on startup (default: 1) + + + + + Set database cache size in megabytes (default: 25) + @@ -1834,11 +1879,6 @@ Adresas: %4 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 - - - Connect only to the specified node - Prisijungti tik prie nurodyto mazgo - Find peers using internet relay chat (default: 0) @@ -1859,16 +1899,6 @@ Adresas: %4 Find peers using DNS lookup (default: 1) - - - Threshold for disconnecting misbehaving peers (default: 100) - Atjungimo dėl netinkamo kolegų elgesio riba (pagal nutylėjimą: 100) - - - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Sekundžių kiekis eikiamas palaikyti ryšį dėl lygiarangių nestabilumo (pagal nutylėjimą: 86.400) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) @@ -1889,66 +1919,16 @@ Adresas: %4 Use Universal Plug and Play to map the listening port (default: 0) Bandymas naudoti UPnP struktūra klausymosi prievadui (default: 0) - - - Fee per KB to add to transactions you send - Įtraukti mokestį už kB siunčiamiems sandoriams - Accept command line and JSON-RPC commands Priimti komandinę eilutę ir JSON-RPC komandas - - - Run in the background as a daemon and accept commands - Dirbti fone kaip šešėlyje ir priimti komandas - - - - Use the test network - Naudoti testavimo tinklą - Output extra debugging information Išėjimo papildomas derinimo informacija - - - Prepend debug output with timestamp - Prideėti laiko žymę derinimo rezultatams - - - - Send trace/debug info to console instead of debug.log file - Siųsti atsekimo/derinimo info į konsolę vietoj debug.log failo - - - - Send trace/debug info to debugger - Siųsti sekimo/derinimo info derintojui - - - - Password for JSON-RPC connections - Slaptažodis JSON-RPC sujungimams - - - - Listen for JSON-RPC connections on <port> (default: 8332) - Klausymas JSON-RPC sujungimui prijungčiai <port> (pagal nutylėjimą: 8332) - - - - Allow JSON-RPC connections from specified IP address - Leisti JSON-RPC tik iš nurodytų IP adresų - - - - Send commands to node running on <ip> (default: 127.0.0.1) - Siųsti komandą mazgui dirbančiam <ip> (pagal nutylėjimą: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) @@ -1959,16 +1939,6 @@ Adresas: %4 Upgrade wallet to latest format - - - Set key pool size to <n> (default: 100) - Nustatyti rakto apimties dydį <n> (pagal nutylėjimą: 100) - - - - Rescan the block chain for missing wallet transactions - Ieškoti prarastų piniginės sandorių blokų grandinėje - How many blocks to check at startup (default: 2500, 0 = all) @@ -1986,29 +1956,24 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL opcijos (žr.e Bitcoin Wiki for SSL setup instructions) - - Use OpenSSL (https) for JSON-RPC connections - Naudoti OpenSSL (https) jungimuisi JSON-RPC - - - - Server certificate file (default: server.cert) - Serverio sertifikato failas (pagal nutylėjimą: server.cert) + + Error loading addr.dat + addr.dat pakrovimo klaida - - Server private key (default: server.pem) - Serverio privatus raktas (pagal nutylėjimą: server.pem) + + Cannot downgrade wallet + - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Priimtini šifrai (pagal nutylėjimą: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Cannot initialize keypool + - - Error loading addr.dat - addr.dat pakrovimo klaida + + Cannot write default address + @@ -2040,15 +2005,50 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Įspėjimas: Patikrinkite, kad kompiuterio data ir laikas yra teisingi.Jei Jūsų laikrodis neteisingai nustatytas Bitcoin, veiks netinkamai. + + + Warning: Disk space is low + Įspėjimas: nepakanka vietos diske + + + + Start minimized + Pradžia sumažinta + + + + Connect through socks4 proxy + Prisijungti per socks4 proxy + + + + Allow DNS lookups for addnode and connect + Leisti DNS paiešką sujungimui ir mazgo pridėjimui + + + + Connect only to the specified node + Prisijungti tik prie nurodyto mazgo + + + + Bitcoin version + Bitcoin versija + + + + Fee per KB to add to transactions you send + Įtraukti mokestį už kB siunčiamiems sandoriams + beta beta - - Warning: Disk space is low - Įspėjimas: nepakanka vietos diske + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + wallet.dat pakrovimo klaida, wallet.dat reikalauja naujasnės Bitcoin versijos diff --git a/src/qt/locale/bitcoin_pl.ts b/src/qt/locale/bitcoin_pl.ts index ba1b99a450..7d8eb71730 100644 --- a/src/qt/locale/bitcoin_pl.ts +++ b/src/qt/locale/bitcoin_pl.ts @@ -160,11 +160,6 @@ www.transifex.net/projects/p/bitcoin/ AskPassphraseDialog - - - Dialog - Dialog - Enter passphrase @@ -181,9 +176,9 @@ www.transifex.net/projects/p/bitcoin/ Powtórz nowe hasło - - TextLabel - TekstEtykiety + + Dialog + Dialog @@ -206,9 +201,9 @@ www.transifex.net/projects/p/bitcoin/ Odblokuj portfel - - Wallet decryption failed - Odszyfrowywanie portfela nie powiodło się + + TextLabel + TekstEtykiety @@ -284,6 +279,11 @@ Czy na pewno chcesz zaszyfrować swój portfel? The passphrase entered for the wallet decryption was incorrect. Wprowadzone hasło do odszyfrowania portfela jest niepoprawne. + + + Wallet decryption failed + Odszyfrowywanie portfela nie powiodło się + Wallet passphrase was successfully changed. @@ -298,16 +298,6 @@ Czy na pewno chcesz zaszyfrować swój portfel? BitcoinGUI - - - Edit the list of stored addresses and labels - Edytuj listę zapisanych adresów i i etykiet - - - - Show information about Bitcoin - Pokaż informację o Bitcoin - About &Qt @@ -360,29 +350,29 @@ Czy na pewno chcesz zaszyfrować swój portfel? Pokazuje informacje o Qt - - Block chain synchronization in progress - Synchronizacja bloku łańcucha w toku. + + Open &Bitcoin + Otwórz &Bitcoin - - Downloaded %1 blocks of transaction history. - Pobrano %1 bloków z historią transakcji. + + &Backup Wallet + &Backup portfel - - Quit application - Zamknij program + + &Change Passphrase + Zmień h&asło - - Up to date - Aktualny + + Downloaded %1 of %2 blocks of transaction history. + Pobrano %1 z %2 bloków z historią transakcji. - - Catching up... - Łapanie bloków... + + Downloaded %1 blocks of transaction history. + Pobrano %1 bloków z historią transakcji. @@ -399,34 +389,19 @@ Czy na pewno chcesz zaszyfrować swój portfel? Wy&syłka monet - - Send coins to a bitcoin address - Wyślij monety na adres bitcoin - - - - Sign &message - Podpisz wiado&mość - - - - Prove you control an address - Udowodnij, że kontrolujesz adres - - - - &About %1 - &O %1 + + Block chain synchronization in progress + Synchronizacja bloku łańcucha w toku. - - &Backup Wallet - &Backup portfel + + &Options... + &Opcje... - - bitcoin-qt - bitcoin-qt + + Encrypt or decrypt wallet + Zaszyfruj lub odszyfruj portfel @@ -438,23 +413,14 @@ Czy na pewno chcesz zaszyfrować swój portfel? 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> + + + %n minute(s) ago + + %n minutę temu + %n minuty temu + %n minut temu + @@ -462,60 +428,40 @@ Adres: %4 Portfel jest <b>zaszyfrowany</b> i obecnie <b>zablokowany</b> - - &Settings - P&referencje - - - - 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? - Transakcja przekracza limit. Możesz wysłać ją płacąc prowizję %1, która zostaje przekazana do węzłów, które ją prześlą i pomoże wspierać sieć Bitcoin. Czy chcesz zapłacić prowizję? - - - - &Encrypt Wallet - Zaszyfruj portf&el - - - - Bitcoin Wallet - Portfel Bitcoin + + &Overview + P&odsumowanie - - Modify configuration options for bitcoin - Zmienia opcje konfiguracji bitcoina + + Edit the list of stored addresses and labels + Edytuj listę zapisanych adresów i i etykiet - - Open &Bitcoin - Otwórz &Bitcoin + + Show the list of addresses for receiving payments + Pokaż listę adresów do otrzymywania płatności - - Show the Bitcoin window - Pokaż okno Bitcoin + + Send coins to a bitcoin address + Wyślij monety na adres bitcoin - - &Overview - P&odsumowanie + + Sign &message + Podpisz wiado&mość - - Show the list of addresses for receiving payments - Pokaż listę adresów do otrzymywania płatności + + Prove you control an address + Udowodnij, że kontrolujesz adres Export the data in the current tab to a file Eksportuj dane z aktywnej karty do pliku - - - Encrypt or decrypt wallet - Zaszyfruj lub odszyfruj portfel - Backup wallet to another location @@ -527,14 +473,19 @@ Adres: %4 Zmień hasło użyte do szyfrowania portfela - - &Change Passphrase - Zmień h&asło + + &About %1 + &O %1 - - E&xit - &Zakończ + + Tabs toolbar + Pasek zakładek + + + + Quit application + Zamknij program @@ -542,75 +493,129 @@ Adres: %4 &Plik - - &Options... - &Opcje... + + Show information about Bitcoin + Pokaż informację o Bitcoin - - &Export... - &Eksportuj... + + &Settings + P&referencje - - Tabs toolbar - Pasek zakładek + + Wallet Data (*.dat) + Dane Portfela (*.dat) Actions toolbar Pasek akcji - - - %n second(s) ago - - %n sekundę temu - %n sekundy temu - %n sekund temu - - - - - %n minute(s) ago - - %n minutę temu - %n minuty temu - %n minut temu - - - - - %n hour(s) ago - - %n godzinę temu - %n godziny temu - %n godzin temu - - - - - %n day(s) ago - - %n dzień temu - %n dni temu - %n dni temu - + + + bitcoin-qt + bitcoin-qt - - Last received block was generated %1. - Ostatnio otrzymany blok została wygenerowany %1. + + &Export... + &Eksportuj... - - Backup Wallet - Kopia Zapasowa Portfela + + E&xit + &Zakończ + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1 +Kwota: %2 +Typ: %3 +Adres: %4 + + + + + Modify configuration options for bitcoin + Zmienia opcje konfiguracji bitcoina + + + + &Encrypt Wallet + Zaszyfruj portf&el + + + + Bitcoin Wallet + Portfel Bitcoin + + + + Show the Bitcoin window + Pokaż okno Bitcoin + + + + %n day(s) ago + + %n dzień temu + %n dni temu + %n dni temu + + + + + %n second(s) ago + + %n sekundę temu + %n sekundy temu + %n sekund temu + + + + + %n hour(s) ago + + %n godzinę temu + %n godziny temu + %n godzin temu + + + + + Up to date + Aktualny + + + + Catching up... + Łapanie bloków... + + + + Last received block was generated %1. + Ostatnio otrzymany blok została wygenerowany %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? + Transakcja przekracza limit. Możesz wysłać ją płacąc prowizję %1, która zostaje przekazana do węzłów, które ją prześlą i pomoże wspierać sieć Bitcoin. Czy chcesz zapłacić prowizję? + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Portfel jest <b>zaszyfrowany</b> i obecnie <b>niezablokowany</b> - Wallet Data (*.dat) - Dane Portfela (*.dat) + Backup Wallet + Kopia Zapasowa Portfela @@ -622,11 +627,6 @@ Adres: %4 There was an error trying to save the wallet data to the new location. Wystąpił błąd podczas próby zapisu portfela do nowej lokalizacji. - - - Downloaded %1 of %2 blocks of transaction history. - Pobrano %1 z %2 bloków z historią transakcji. - Sending... @@ -663,11 +663,6 @@ Adres: %4 EditAddressDialog - - - New key generation failed. - Tworzenie nowego klucza nie powiodło się. - Edit Address @@ -728,6 +723,11 @@ Adres: %4 Could not unlock wallet. Nie można było odblokować portfela. + + + New key generation failed. + Tworzenie nowego klucza nie powiodło się. + MainOptionsPage @@ -801,16 +801,16 @@ Adres: %4 Port of the proxy (e.g. 1234) Port proxy (np. 1234) - - - Pay transaction &fee - Płać prowizję za t&ransakcje - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended. Opcjonalna prowizja za transakcje za kB, wspomaga ona szybkość przebiegu transakcji. Większość transakcji jest 1 kB. Zalecana prowizja 0.01 . + + + Pay transaction &fee + Płać prowizję za t&ransakcje + MessagePage @@ -1015,16 +1015,16 @@ Adres: %4 Request Payment Prośba o płatność - - - Amount: - Kwota: - Label: Etykieta: + + + Amount: + Kwota: + BTC @@ -1060,6 +1060,11 @@ Adres: %4 Clear all Wyczyść wszystko + + + &Add recipient... + Dod&aj odbiorcę... + Balance: @@ -1135,14 +1140,29 @@ Adres: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. Błąd: transakcja została odrzucona. Może się to zdarzyć, gdy monety z Twojego portfela zostały już wydane, na przykład gdy używałeś kopii wallet.dat i bitcoiny które tam wydałeś nie zostały jeszcze odjęte z portfela z którego teraz korzystasz. - - - &Add recipient... - Dod&aj odbiorcę... - SendCoinsEntry + + + Pay &To: + Płać &Do: + + + + &Label: + &Etykieta: + + + + The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + Adres do wysłania należności do (np. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) + + + + Paste address from clipboard + Wklej adres ze schowka + Form @@ -1153,27 +1173,12 @@ Adres: %4 A&mount: Su&ma: - - - Pay &To: - Płać &Do: - 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: - - - - The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Adres do wysłania należności do (np. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L) - Choose address from address book @@ -1184,11 +1189,6 @@ Adres: %4 Alt+A Alt+A - - - Paste address from clipboard - Wklej adres ze schowka - Alt+P @@ -1207,20 +1207,20 @@ Adres: %4 TransactionDesc + + + Open until %1 + Otwórz do %1 + %1 confirmations %1 potwierdzeń - - unknown - nieznany - - - - Open until %1 - Otwórz do %1 + + %1/unconfirmed + %1/niezatwierdzone @@ -1232,21 +1232,11 @@ Adres: %4 %1/offline? %1/offline? - - - %1/unconfirmed - %1/niezatwierdzone - <b>Status:</b> <b>Status:</b> - - - , has not been successfully broadcast yet - , nie został jeszcze pomyślnie wyemitowany - , broadcast through %1 node @@ -1267,12 +1257,6 @@ Adres: %4 <b>Source:</b> Generated<br> <b>Źródło:</b> Wygenerowano<br> - - - - <b>From:</b> - <b>Od:</b> - @@ -1345,6 +1329,22 @@ Adres: %4 Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Wygenerowane monety muszą zaczekać 120 bloków zanim będzie można je wydać. Kiedy wygenerowałeś ten blok, został on wyemitowany do sieci, aby dodać go do łańcucha bloków. Jeśli to się nie powiedzie nie zostanie on zaakceptowany i wygenerowanych monet nie będzie można wysyłać. Może się to czasami zdarzyć jeśli inny węzeł wygeneruje blok tuż przed tobą. + + + , has not been successfully broadcast yet + , nie został jeszcze pomyślnie wyemitowany + + + + + <b>From:</b> + <b>Od:</b> + + + + unknown + nieznany + TransactionDescDialog @@ -1362,92 +1362,83 @@ Adres: %4 TransactionTableModel - - Date - Data + + Unconfirmed (%1 of %2 confirmations) + Niezatwierdzony (%1 z %2 potwierdzeń) - - Type - Typ + + Generated but not accepted + Wygenerowano ale nie zaakceptowano - - Address - Adres + + Received with + Otrzymane przez - - Amount - Kwota - - - - Open for %n block(s) - - Otwórz dla %n bloku - Otwórz dla %n bloków - Otwórz dla %n bloków - + + Received from + Odebrano od - - Open until %1 - Otwórz do %1 + + Sent to + Wysłano do - - Offline (%1 confirmations) - Offline (%1 potwierdzeń) + + Payment to yourself + Płatność do siebie - - Unconfirmed (%1 of %2 confirmations) - Niezatwierdzony (%1 z %2 potwierdzeń) + + Date + Data - - Confirmed (%1 confirmations) - Zatwierdzony (%1 potwierdzeń) + + Address + Adres - - Mined balance will be available in %n more blocks + + Open for %n block(s) - Wydobyta kwota będzie dostępna za %n blok - Wydobyta kwota będzie dostępna za %n bloków - Wydobyta kwota będzie dostępna za %n bloki + Otwórz dla %n bloku + Otwórz dla %n bloków + Otwórz dla %n bloków - - This block was not received by any other nodes and will probably not be accepted! - Ten blok nie został odebrany przez jakikolwiek inny węzeł i prawdopodobnie nie zostanie zaakceptowany! + + Open until %1 + Otwórz do %1 - - Generated but not accepted - Wygenerowano ale nie zaakceptowano + + Confirmed (%1 confirmations) + Zatwierdzony (%1 potwierdzeń) - - Received with - Otrzymane przez + + Offline (%1 confirmations) + Offline (%1 potwierdzeń) - - Received from - Odebrano od + + Type + Typ - - Sent to - Wysłano do + + Amount + Kwota - - Payment to yourself - Płatność do siebie + + This block was not received by any other nodes and will probably not be accepted! + Ten blok nie został odebrany przez jakikolwiek inny węzeł i prawdopodobnie nie zostanie zaakceptowany! @@ -1469,11 +1460,6 @@ Adres: %4 Date and time that the transaction was received. Data i czas odebrania transakcji. - - - Type of transaction. - Rodzaj transakcji. - Destination address of transaction. @@ -1484,30 +1470,79 @@ Adres: %4 Amount removed from or added to balance. Kwota usunięta z lub dodana do konta. + + + Type of transaction. + Rodzaj transakcji. + + + + Mined balance will be available in %n more blocks + + Wydobyta kwota będzie dostępna za %n blok + Wydobyta kwota będzie dostępna za %n bloków + Wydobyta kwota będzie dostępna za %n bloki + + TransactionView - - Min amount - Min suma + + Export Transaction Data + Eksportuj Dane Transakcyjne + + + + Confirmed + Potwierdzony + + + + Date + Data + + + + Address + Adres + + + + Amount + Kwota + + + + Error exporting + Błąd podczas eksportowania + + + + Range: + Zakres: + + + + to + do Type Typ + + + Today + Dzisiaj + All Wszystko - - - Today - Dzisiaj - This week @@ -1563,6 +1598,11 @@ Adres: %4 Enter address or label to search Wprowadź adres albo etykietę żeby wyszukać + + + Min amount + Min suma + Copy address @@ -1588,66 +1628,26 @@ Adres: %4 Show details... Pokaż szczegóły... - - - Export Transaction Data - Eksportuj Dane Transakcyjne - Comma separated file (*.csv) CSV (rozdzielany przecinkami) - - - Confirmed - Potwierdzony - - - - Date - Data - Label Etykieta - - - Address - Adres - - - - Amount - Kwota - ID ID - - - Error exporting - Błąd podczas eksportowania - Could not write to file %1. Błąd zapisu do pliku %1. - - - Range: - Zakres: - - - - to - do - WalletModel @@ -1679,11 +1679,6 @@ Adres: %4 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: 8332) @@ -1695,54 +1690,64 @@ Adres: %4 Wysyłaj polecenia do węzła działającego na <ip> (domyślnie: 127.0.0.1) - - Set key pool size to <n> (default: 100) - Ustaw rozmiar puli kluczy na <n> (domyślnie: 100) + + Send trace/debug info to debugger + Wyślij informację/raport do debuggera. - - Rescan the block chain for missing wallet transactions - Przeskanuj blok łańcuchów żeby znaleźć zaginione transakcje portfela + + Done loading + Wczytywanie zakończone - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. - Nie można zablokować folderu danych %s. Bitcoin prawdopodobnie już działa. + + Specify data directory + Wskaż folder danych - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Błąd ładowania wallet.dat: Portfel wymaga nowszej wersji Bitcoin + + Specify connection timeout (in milliseconds) + Wskaż czas oczekiwania bezczynności połączenia (w milisekundach) - - Wallet needed to be rewritten: restart Bitcoin to complete - Portfel wymaga przepisania: zrestartuj Bitcoina żeby ukończyć + + Use OpenSSL (https) for JSON-RPC connections + Użyj OpenSSL (https) do połączeń JSON-RPC - - Send trace/debug info to console instead of debug.log file - Wyślij informację/raport do konsoli zamiast do pliku debug.log. + + Server certificate file (default: server.cert) + Plik certyfikatu serwera (domyślnie: server.cert) - - Error loading wallet.dat - Błąd ładowania wallet.dat + + Server private key (default: server.pem) + Klucz prywatny serwera (domyślnie: server.pem) - - Send trace/debug info to debugger - Wyślij informację/raport do debuggera. + + This help message + Ta wiadomość pomocy - - How many blocks to check at startup (default: 2500, 0 = all) - Ile bloków sprawdzać przy uruchomieniu (domyślnie: 2500, 0 = wszystkie) + + Loading addresses... + Wczytywanie adresów... - - Set database cache size in megabytes (default: 25) - Ustaw rozmiar w megabajtach cache-u bazy danych (domyślnie: 25) + + Error loading blkindex.dat + Błąd ładownia blkindex.dat + + + + Loading wallet... + Wczytywanie portfela... + + + + Upgrade wallet to latest format + Zaktualizuj portfel do najnowszego formatu. @@ -1750,24 +1755,29 @@ Adres: %4 Ładowanie indeksu bloku... - - Cannot downgrade wallet - Nie można dezaktualizować portfela + + Options: + Opcje: - - Cannot initialize keypool - + + Set database cache size in megabytes (default: 25) + Ustaw rozmiar w megabajtach cache-u bazy danych (domyślnie: 25) - - Cannot write default address - + + Rescanning... + Ponowne skanowanie... - - Done loading - Wczytywanie zakończone + + Find peers using internet relay chat (default: 0) + Znajdź peery używające IRC (domyślnie: 0) + + + + Send trace/debug info to console instead of debug.log file + Wyślij informację/raport do konsoli zamiast do pliku debug.log. @@ -1776,49 +1786,49 @@ Adres: %4 - - Find peers using internet relay chat (default: 0) - Znajdź peery używające IRC (domyślnie: 0) + + How many blocks to check at startup (default: 2500, 0 = all) + Ile bloków sprawdzać przy uruchomieniu (domyślnie: 2500, 0 = wszystkie) - - Loading wallet... - Wczytywanie portfela... + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Błąd ładowania wallet.dat: Portfel wymaga nowszej wersji Bitcoin - - Rescanning... - Ponowne skanowanie... + + Cannot downgrade wallet + Nie można dezaktualizować portfela - - Bitcoin version - Wersja Bitcoin + + Password for JSON-RPC connections + Hasło do połączeń JSON-RPC - - Send command to -server or bitcoind - Wyślij polecenie do -server lub bitcoind + + Set key pool size to <n> (default: 100) + Ustaw rozmiar puli kluczy na <n> (domyślnie: 100) - - List commands - Lista poleceń + + Rescan the block chain for missing wallet transactions + Przeskanuj blok łańcuchów żeby znaleźć zaginione transakcje portfela - - Get help for a command - Uzyskaj pomoc do polecenia + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + Nie można zablokować folderu danych %s. Bitcoin prawdopodobnie już działa. - - Options: - Opcje: + + Wallet needed to be rewritten: restart Bitcoin to complete + Portfel wymaga przepisania: zrestartuj Bitcoina żeby ukończyć - - Specify configuration file (default: bitcoin.conf) - Wskaż plik konfiguracyjny (domyślnie: bitcoin.conf) + + Get help for a command + Uzyskaj pomoc do polecenia @@ -1845,21 +1855,6 @@ Adres: %4 Show splash screen on startup (default: 1) Pokazuj okno powitalne przy starcie (domyślnie: 1) - - - Specify data directory - Wskaż folder danych - - - - Specify connection timeout (in milliseconds) - Wskaż czas oczekiwania bezczynności połączenia (w milisekundach) - - - - Connect through socks4 proxy - Łączy przez proxy socks4 - Allow DNS lookups for addnode and connect @@ -1900,11 +1895,6 @@ Adres: %4 Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) Maksymalny bufor odbioru na połączenie, <n>*1000 bajtów (domyślnie: 10000) - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maksymalny bufor wysyłu na połączenie, <n>*1000 bajtów (domyślnie: 10000) - Output extra debugging information @@ -1937,45 +1927,20 @@ opcje SSL: (sprawdź Bitcoin Wiki dla instrukcje konfiguracji SSL) Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) Aceptowalne szyfry (domyślnie: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - Use OpenSSL (https) for JSON-RPC connections - Użyj OpenSSL (https) do połączeń JSON-RPC - - - - Server certificate file (default: server.cert) - Plik certyfikatu serwera (domyślnie: server.cert) - - - - Server private key (default: server.pem) - Klucz prywatny serwera (domyślnie: server.pem) - - - - This help message - Ta wiadomość pomocy - - - - Loading addresses... - Wczytywanie adresów... - Error loading addr.dat Błąd ładowania addr.dat - - Error loading blkindex.dat - Błąd ładownia blkindex.dat + + Cannot initialize keypool + - - Error loading wallet.dat: Wallet corrupted - Błąd ładowania wallet.dat: Uszkodzony portfel + + Cannot write default address + @@ -2007,21 +1972,6 @@ opcje SSL: (sprawdź Bitcoin Wiki dla instrukcje konfiguracji SSL) Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Ostrzeżenie: Proszę sprawdzić poprawność czasu i daty na tym komputerze. Jeśli czas jest zły Bitcoin może nie działać prawidłowo. - - - beta - beta - - - - Upgrade wallet to latest format - Zaktualizuj portfel do najnowszego formatu. - - - - Allow JSON-RPC connections from specified IP address - Przyjmuj połączenia JSON-RPC ze wskazanego adresu IP - Add a node to connect to and attempt to keep the connection open @@ -2037,11 +1987,6 @@ opcje SSL: (sprawdź Bitcoin Wiki dla instrukcje konfiguracji SSL) Set language, for example "de_DE" (default: system locale) Ustaw Język, na przykład "pl_PL" (domyślnie: systemowy) - - - Accept command line and JSON-RPC commands - Akceptuj linię poleceń oraz polecenia JSON-RPC - Use Universal Plug and Play to map the listening port (default: 1) @@ -2057,5 +2002,60 @@ opcje SSL: (sprawdź Bitcoin Wiki dla instrukcje konfiguracji SSL) Warning: Disk space is low Uwaga: Mało miejsca na dysku + + + Allow JSON-RPC connections from specified IP address + Przyjmuj połączenia JSON-RPC ze wskazanego adresu IP + + + + Accept command line and JSON-RPC commands + Akceptuj linię poleceń oraz polecenia JSON-RPC + + + + Bitcoin version + Wersja Bitcoin + + + + Send command to -server or bitcoind + Wyślij polecenie do -server lub bitcoind + + + + List commands + Lista poleceń + + + + Specify configuration file (default: bitcoin.conf) + Wskaż plik konfiguracyjny (domyślnie: bitcoin.conf) + + + + Connect through socks4 proxy + Łączy przez proxy socks4 + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maksymalny bufor wysyłu na połączenie, <n>*1000 bajtów (domyślnie: 10000) + + + + Error loading wallet.dat: Wallet corrupted + Błąd ładowania wallet.dat: Uszkodzony portfel + + + + beta + beta + + + + Error loading wallet.dat + Błąd ładowania wallet.dat + diff --git a/src/qt/locale/bitcoin_ro_RO.ts b/src/qt/locale/bitcoin_ro_RO.ts index ace886707f..2b27b24c6e 100644 --- a/src/qt/locale/bitcoin_ro_RO.ts +++ b/src/qt/locale/bitcoin_ro_RO.ts @@ -338,21 +338,31 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? &Receive coins &Primiţi Bitcoin + + + &Export... + &Exportă... + Show the list of addresses for receiving payments Lista de adrese pentru recepţionarea plăţilor + + + Encrypt or decrypt wallet + Criptează şi decriptează portofelul electronic + + + + Change the passphrase used for wallet encryption + &Schimbă parola folosită pentru criptarea portofelului electronic + &Send coins &Trimiteţi Bitcoin - - - Send coins to a bitcoin address - &Trimiteţi Bitcoin către o anumită adresă - Sign &message @@ -368,135 +378,21 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? E&xit - - - Quit application - Părăsiţi aplicaţia - - - - &About %1 - &Despre %1 - - - - Show information about Bitcoin - Informaţii despre Bitcoin - - - - About &Qt - Despre &Qt - - - - Show information about Qt - Informaţii despre Qt - - - - &Options... - &Setări... - - - - Modify configuration options for bitcoin - Modifică setările pentru Bitcoin - - - - Open &Bitcoin - Deschide &Bitcoin - Show the Bitcoin window Afişează fereastra Bitcoin - - - &Export... - &Exportă... - Export the data in the current tab to a file - - - &Encrypt Wallet - Criptează portofelul electronic - - - - Encrypt or decrypt wallet - Criptează şi decriptează portofelul electronic - - - - &Backup Wallet - &Backup portofelul electronic - Backup wallet to another location - - - &Change Passphrase - &Schimbă parola - - - - Change the passphrase used for wallet encryption - &Schimbă parola folosită pentru criptarea portofelului electronic - - - - &File - &Fişier - - - - &Settings - &Setări - - - - &Help - &Ajutor - - - - Tabs toolbar - Bara de ferestre de lucru - - - - Actions toolbar - Bara de acţiuni - - - - [testnet] - [testnet] - - - - bitcoin-qt - bitcoin-qt - - - - %n active connection(s) to Bitcoin network - - %n active connections to Bitcoin network - %n active connections to Bitcoin network - %n active connections to Bitcoin network - - Downloaded %1 of %2 blocks of transaction history. @@ -558,26 +454,11 @@ Sunteţi sigur că doriţi să criptaţi portofelul electronic? 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ă tranzacţie depăşeşte limita. Puteţi iniţia tranzacţia platind un comision de %1, de care vor beneficia nodurile care procesează tranzacţia şi ajută la menţinerea reţelei. Acceptaţi plata comisionului? - - - - Sending... - Expediază... - Sent transaction Tranzacţie expediată - - - Incoming transaction - Tranzacţie recepţionată - Date: %1 @@ -617,6 +498,125 @@ Address: %4 There was an error trying to save the wallet data to the new location. + + + Send coins to a bitcoin address + &Trimiteţi Bitcoin către o anumită adresă + + + + Quit application + Părăsiţi aplicaţia + + + + &About %1 + &Despre %1 + + + + Show information about Bitcoin + Informaţii despre Bitcoin + + + + About &Qt + Despre &Qt + + + + Show information about Qt + Informaţii despre Qt + + + + &Options... + &Setări... + + + + Modify configuration options for bitcoin + Modifică setările pentru Bitcoin + + + + Open &Bitcoin + Deschide &Bitcoin + + + + &Encrypt Wallet + Criptează portofelul electronic + + + + &Backup Wallet + &Backup portofelul electronic + + + + &Change Passphrase + &Schimbă parola + + + + &File + &Fişier + + + + &Settings + &Setări + + + + &Help + &Ajutor + + + + %n active connection(s) to Bitcoin network + + %n active connections to Bitcoin network + %n active connections to Bitcoin network + %n active connections to Bitcoin network + + + + + Actions toolbar + Bara de acţiuni + + + + 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ă tranzacţie depăşeşte limita. Puteţi iniţia tranzacţia platind un comision de %1, de care vor beneficia nodurile care procesează tranzacţia şi ajută la menţinerea reţelei. Acceptaţi plata comisionului? + + + + bitcoin-qt + bitcoin-qt + + + + Incoming transaction + Tranzacţie recepţionată + + + + Sending... + Expediază... + + + + Tabs toolbar + Bara de ferestre de lucru + + + + [testnet] + [testnet] + A fatal error occurred. Bitcoin can no longer continue safely and will quit. @@ -866,15 +866,15 @@ Address: %4 - - - Error signing - + %1 is not a valid address. + Adresa introdusă "%1" nu este o adresă bitcoin valabilă. - %1 is not a valid address. - Adresa introdusă "%1" nu este o adresă bitcoin valabilă. + + + Error signing + Eroare @@ -890,9 +890,9 @@ Address: %4 OptionsDialog - - Main - Principal + + Options + Setări @@ -900,18 +900,13 @@ Address: %4 Afişare - - Options - Setări + + Main + Principal OverviewPage - - - Form - Form - Balance: @@ -922,16 +917,21 @@ Address: %4 Number of transactions: Număr total de tranzacţii: + + + Your current balance + Soldul contul + + + + Form + Form + 0 0 - - - Unconfirmed: - Neconfirmat: - Wallet @@ -942,11 +942,6 @@ Address: %4 <b>Recent transactions</b> <b>Ultimele tranzacţii</b> - - - Your current balance - Soldul contul - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance @@ -957,6 +952,11 @@ Address: %4 Total number of transactions in wallet Numărul total de tranzacţii din portofelul electronic + + + Unconfirmed: + Neconfirmat: + QRCodeDialog @@ -1018,6 +1018,11 @@ Address: %4 SendCoinsDialog + + + Confirm send coins + Confirmaţi trimiterea de bitcoin + Confirm the send action @@ -1033,16 +1038,21 @@ Address: %4 <b>%1</b> to %2 (%3) <b>%1</b> la %2 (%3) - - - Confirm send coins - Confirmaţi trimiterea de bitcoin - Are you sure you want to send %1? Sunteţi sigur că doriţi să trimiteţi %1? + + + and + ş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. @@ -1110,21 +1120,11 @@ Address: %4 Clear all Şterge tot - - - 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. - SendCoinsEntry @@ -1217,6 +1217,17 @@ Address: %4 %1/offline? %1/offline? + + + + <b>From:</b> + <b>De la:</b> + + + + unknown + necunoscut + <b>Status:</b> @@ -1242,22 +1253,6 @@ Address: %4 <b>Date:</b> <b>Data:</b> - - - <b>Source:</b> Generated<br> - <b>Sursă:</b> Generat<br> - - - - - <b>From:</b> - <b>De la:</b> - - - - unknown - necunoscut - @@ -1330,6 +1325,11 @@ Address: %4 Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Monedele bitcoin generate se pot cheltui dupa parcurgerea a 120 de blocuri. După ce a fost generat, s-a propagat în reţea, urmând să fie adăugat lanţului de blocuri. Dacă nu poate fi inclus in lanţ, starea sa va deveni "neacceptat" si nu va putea fi folosit la tranzacţii. Acest fenomen se întâmplă atunci cand un alt nod a generat un bloc la o diferenţa de câteva secunde. + + + <b>Source:</b> Generated<br> + <b>Sursă:</b> Generat<br> + TransactionDescDialog @@ -1346,6 +1346,11 @@ Address: %4 TransactionTableModel + + + Destination address of transaction. + Adresa de destinaţie a tranzacţiei. + Date @@ -1459,11 +1464,6 @@ Address: %4 Type of transaction. Tipul tranzacţiei. - - - Destination address of transaction. - Adresa de destinaţie a tranzacţiei. - Amount removed from or added to balance. @@ -1493,6 +1493,36 @@ Address: %4 All Toate + + + Label + Etichetă + + + + Address + Adresă + + + + Amount + Sumă + + + + ID + ID + + + + Error exporting + Eroare în timpul exportului + + + + Could not write to file %1. + Fisierul %1 nu a putut fi accesat pentru scriere. + Today @@ -1533,16 +1563,16 @@ Address: %4 To yourself Către propriul cont - - - Mined - Produs - Other Altele + + + Mined + Produs + Enter address or label to search @@ -1553,26 +1583,26 @@ Address: %4 Min amount Cantitatea produsă - - - Copy address - Copiază adresa - - - - Copy label - Copiază eticheta - Copy amount Copiază sumă + + + Copy address + Copiază adresa + Edit label Editează eticheta + + + Copy label + Copiază eticheta + Show details... @@ -1603,36 +1633,6 @@ Address: %4 Type Tipul - - - Label - Etichetă - - - - Address - Adresă - - - - Amount - Sumă - - - - ID - ID - - - - Error exporting - Eroare în timpul exportului - - - - Could not write to file %1. - Fisierul %1 nu a putut fi accesat pentru scriere. - WalletModel @@ -1779,11 +1779,6 @@ Address: %4 Specify connection timeout (in milliseconds) - - - Connect through socks4 proxy - Conectează prin proxy SOCKS4 - Allow DNS lookups for addnode and connect @@ -2040,5 +2035,10 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) beta + + + Connect through socks4 proxy + Conectează prin proxy SOCKS4 + diff --git a/src/qt/locale/bitcoin_sk.ts b/src/qt/locale/bitcoin_sk.ts index 48d839767a..978a9aeb3b 100644 --- a/src/qt/locale/bitcoin_sk.ts +++ b/src/qt/locale/bitcoin_sk.ts @@ -316,7 +316,7 @@ Ste si istí, že si želáte zašifrovať peňaženku? &Transactions - &Preklady + &Transakcie @@ -378,119 +378,65 @@ Ste si istí, že si želáte zašifrovať peňaženku? &About %1 &O %1 - - - Show information about Bitcoin - Zobraziť informácie o Bitcoin - - - - About &Qt - O &Qt - - - - Show information about Qt - Zobrazit informácie o Qt - - - - &Options... - &Možnosti... - - - - Modify configuration options for bitcoin - Upraviť možnosti nastavenia pre bitcoin - - - - Open &Bitcoin - Otvoriť &Bitcoin - Show the Bitcoin window Zobraziť okno Bitcoin - - &Export... - &Export... + + Export the data in the current tab to a file + Exportovať tento náhľad do súboru &Encrypt Wallet &Zašifrovať Peňaženku - - - Encrypt or decrypt wallet - Zašifrovať alebo dešifrovať peňaženku - &Backup Wallet &Backup peňaženku - - &Change Passphrase - &Zmena Hesla - - - - Change the passphrase used for wallet encryption - Zmeniť heslo použité na šifrovanie peňaženky - - - - &File - &Súbor + + Backup wallet to another location + Zálohovať peňaženku na iné miesto - - &Settings - &Nastavenia + + Backup Failed + - - &Help - &Pomoc + + Show information about Bitcoin + Zobraziť informácie o Bitcoin - - Tabs toolbar - Lišta záložiek + + About &Qt + O &Qt - - Actions toolbar - Lišta aktvivít + + Show information about Qt + Zobrazit informácie o Qt - - [testnet] - [testovacia sieť] + + &Options... + &Možnosti... - - bitcoin-qt - bitcoin-qt - - - - %n active connection(s) to Bitcoin network - - %n aktívne spojenie v Bitcoin sieti - %n aktívne spojenia v Bitcoin sieti - %n aktívnych spojení v Bitconi sieti - + + &Change Passphrase + &Zmena Hesla - - Downloaded %1 of %2 blocks of transaction history. - Stiahnutých %1 (of %2) blokov transakčnej histórie + + Downloaded %1 blocks of transaction history. + Stiahnutých %1 blokov transakčnej histórie @@ -533,15 +479,20 @@ Ste si istí, že si želáte zašifrovať peňaženku? Up to date Aktualizovaný + + + Catching up... + Sťahujem... + Last received block was generated %1. Posledný prijatý blok bol generovaný %1. - - Sending... - Odosielanie... + + 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? + Veľkosť tejto transakcie prekračuje limit. Stále ju však môžete odoslať za poplatok %1 ktorý bude pripísaný uzlu spracúvajúcemu vašu transakciu. Chcete zaplatiť poplatok? @@ -565,11 +516,6 @@ Suma: %2 Typ: %3 Adresa: %4 - - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Peňaženka je <b>zašifrovaná</b> a momentálne <b>odomknutá</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> @@ -577,48 +523,102 @@ Adresa: %4 - Backup Wallet - Zálohovať peňaženku + Wallet Data (*.dat) + - Backup Failed - + There was an error trying to save the wallet data to the new location. + Nastala chyba pri pokuse uložiť peňaženku na nové miesto. - - Export the data in the current tab to a file - Exportovať tento náhľad do súboru + + Modify configuration options for bitcoin + Upraviť možnosti nastavenia pre bitcoin - - Backup wallet to another location - Zálohovať peňaženku na iné miesto + + Open &Bitcoin + Otvoriť &Bitcoin - - Catching up... - Sťahujem... + + &Export... + &Export... - - 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? - Veľkosť tejto transakcie prekračuje limit. Stále ju však môžete odoslať za poplatok %1 ktorý bude pripísaný uzlu spracúvajúcemu vašu transakciu. Chcete zaplatiť poplatok? + + Encrypt or decrypt wallet + Zašifrovať alebo dešifrovať peňaženku - - Wallet Data (*.dat) - + + Change the passphrase used for wallet encryption + Zmeniť heslo použité na šifrovanie peňaženky - - There was an error trying to save the wallet data to the new location. - Nastala chyba pri pokuse uložiť peňaženku na nové miesto. + + &File + &Súbor - - Downloaded %1 blocks of transaction history. - Stiahnutých %1 blokov transakčnej histórie + + &Settings + &Nastavenia + + + + &Help + &Pomoc + + + + Tabs toolbar + Lišta záložiek + + + + Actions toolbar + Lišta aktvivít + + + + [testnet] + [testovacia sieť] + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Peňaženka je <b>zašifrovaná</b> a momentálne <b>odomknutá</b> + + + + bitcoin-qt + bitcoin-qt + + + + %n active connection(s) to Bitcoin network + + %n aktívne spojenie v Bitcoin sieti + %n aktívne spojenia v Bitcoin sieti + %n aktívnych spojení v Bitconi sieti + + + + + Downloaded %1 of %2 blocks of transaction history. + Stiahnutých %1 (of %2) blokov transakčnej histórie + + + + Backup Wallet + Zálohovať peňaženku + + + + Sending... + Odosielanie... @@ -651,6 +651,16 @@ Adresa: %4 EditAddressDialog + + + &Label + &Popis + + + + Edit sending address + Upraviť odosielaciu adresu + Edit Address @@ -671,11 +681,6 @@ Adresa: %4 The address associated with this address book entry. This can only be modified for sending addresses. Adresa spojená s týmto záznamom v adresári. Možno upravovať len pre odosielajúce adresy. - - - &Label - &Popis - New receiving address @@ -692,9 +697,9 @@ Adresa: %4 Upraviť prijímacie adresy - - Edit sending address - Upraviť odosielaciu adresu + + New key generation failed. + Generovanie nového kľúča zlyhalo. @@ -711,11 +716,6 @@ Adresa: %4 Could not unlock wallet. Nepodarilo sa odomknúť peňaženku. - - - New key generation failed. - Generovanie nového kľúča zlyhalo. - MainOptionsPage @@ -910,31 +910,16 @@ Adresa: %4 OverviewPage - - - Form - Forma - - - - Balance: - Zostatok: - - - - Number of transactions: - Počet transakcií: - - - - 0 - 0 - Unconfirmed: Nepotvrdené: + + + Form + Forma + Wallet @@ -955,29 +940,39 @@ Adresa: %4 Total of transactions that have yet to be confirmed, and do not yet count toward the current balance Suma transakcií ktoré ešte neboli potvrdené a nezapočítavaju sa do celkového zostatku. + + + 0 + 0 + Total number of transactions in wallet Celkový počet transakcií v peňaženke + + + Balance: + Zostatok: + + + + Number of transactions: + Počet transakcií: + QRCodeDialog - - Dialog - Dialóg + + Request Payment + Vyžiadať platbu QR Code QR kód - - - Request Payment - Vyžiadať platbu - Amount: @@ -1003,6 +998,11 @@ Adresa: %4 &Save As... &Uložiť ako... + + + Dialog + Dialóg + Error encoding URI into QR Code. @@ -1021,16 +1021,6 @@ Adresa: %4 SendCoinsDialog - - - Balance: - Zostatok: - - - - Confirm the send action - Potvrďte odoslanie - &Send @@ -1046,6 +1036,26 @@ Adresa: %4 Confirm send coins Potvrdiť odoslanie bitcoins + + + Remove all transaction fields + Odobrať všetky políčka transakcie + + + + Balance: + Zostatok: + + + + 123.456 BTC + 123.456 BTC + + + + Confirm the send action + Potvrďte odoslanie + Are you sure you want to send %1? @@ -1073,31 +1083,16 @@ Adresa: %4 &Add recipient... &Pridať príjemcu... - - - Remove all transaction fields - Odobrať všetky políčka transakcie - Clear all Zmazať všetko - - - 123.456 BTC - 123.456 BTC - and a - - - The recipient address is not valid, please recheck. - Adresa príjemcu je neplatná, prosím, overte ju. - The amount to pay must be larger than 0. @@ -1128,6 +1123,11 @@ Adresa: %4 Error: The transaction was rejected. This might happen if some of the coins in your wallet were already 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 odmietnutá. Toto sa môže stať ak niektoré z mincí vo vašej peňaženke boli už utratené, napríklad ak používaš kópiu wallet.dat a mince označené v druhej kópií neboli označené ako utratené v tejto. + + + The recipient address is not valid, please recheck. + Adresa príjemcu je neplatná, prosím, overte ju. + SendCoinsEntry @@ -1195,11 +1195,21 @@ Adresa: %4 TransactionDesc + + + Open for %1 blocks + + Open until %1 Otvorené do %1 + + + %1/offline? + + %1/unconfirmed @@ -1230,16 +1240,6 @@ Adresa: %4 , broadcast through %1 nodes , odoslaná cez %1 nód - - - Open for %1 blocks - - - - - %1/offline? - - <b>Date:</b> @@ -1350,53 +1350,39 @@ Adresa: %4 TransactionTableModel - - Date - Dátum - - - - Type - Typ + + Mined + Vyfárané - - Address - Adresa + + Transaction status. Hover over this field to show number of confirmations. + Status transakcie. Pohybujte myšou nad týmto poľom a zjaví sa počet potvrdení. - - Amount - Hodnota + + Date and time that the transaction was received. + Dátum a čas prijatia transakcie. - - Unconfirmed (%1 of %2 confirmations) - Nepotvrdené (%1 z %2 potvrdení) + + Type of transaction. + Typ transakcie. - - Confirmed (%1 confirmations) - Potvrdené (%1 potvrdení) + + Destination address of transaction. + Cieľová adresa transakcie. - - This block was not received by any other nodes and will probably not be accepted! - Ten blok nebol prijatý žiadnou inou nódou a pravdepodobne nebude akceptovaný! + + Amount removed from or added to balance. + Suma pridaná alebo odobraná k zostatku. - - Generated but not accepted - Vypočítané ale neakceptované - - - - Open for %n block(s) - - - - - + + Address + Adresa @@ -1427,6 +1413,21 @@ Adresa: %4 + + + Date + Dátum + + + + Type + Typ + + + + Amount + Hodnota + Open until %1 @@ -1437,40 +1438,39 @@ Adresa: %4 Offline (%1 confirmations) Offline (%1 potvrdení) - - - Mined - Vyfárané - - - - (n/a) - (n/a) + + + Open for %n block(s) + + + + + - - Transaction status. Hover over this field to show number of confirmations. - Status transakcie. Pohybujte myšou nad týmto poľom a zjaví sa počet potvrdení. + + Unconfirmed (%1 of %2 confirmations) + Nepotvrdené (%1 z %2 potvrdení) - - Date and time that the transaction was received. - Dátum a čas prijatia transakcie. + + Confirmed (%1 confirmations) + Potvrdené (%1 potvrdení) - - Type of transaction. - Typ transakcie. + + This block was not received by any other nodes and will probably not be accepted! + Ten blok nebol prijatý žiadnou inou nódou a pravdepodobne nebude akceptovaný! - - Destination address of transaction. - Cieľová adresa transakcie. + + Generated but not accepted + Vypočítané ale neakceptované - - Amount removed from or added to balance. - Suma pridaná alebo odobraná k zostatku. + + (n/a) + (n/a) @@ -1502,44 +1502,49 @@ Adresa: %4 Minulý mesiac - - This year - Tento rok + + To yourself + Samému sebe - - Range... - Rozsah... + + Other + Iné - - Received with - Prijaté s + + Enter address or label to search + Vložte adresu alebo popis pre vyhľadávanie - - Sent to - Odoslané na + + Confirmed + Potvrdené - - To yourself - Samému sebe + + Date + Dátum - - Mined - Vyfárané + + Address + Adresa - - Other - Iné + + Could not write to file %1. + Nedalo sa zapisovať do súboru %1. - - Enter address or label to search - Vložte adresu alebo popis pre vyhľadávanie + + Range: + Rozsah: + + + + to + do @@ -1551,11 +1556,41 @@ Adresa: %4 Copy address Kopírovať adresu + + + This year + Tento rok + + + + Range... + Rozsah... + + + + Received with + Prijaté s + + + + Sent to + Odoslané na + + + + Mined + Vyfárané + Copy label Kopírovať popis + + + Show details... + Ukázať detaily... + Copy amount @@ -1566,11 +1601,6 @@ Adresa: %4 Edit label Editovať popis - - - Show details... - Ukázať detaily... - Export Transaction Data @@ -1581,16 +1611,6 @@ Adresa: %4 Comma separated file (*.csv) Čiarkou oddelovaný súbor (*.csv) - - - Confirmed - Potvrdené - - - - Date - Dátum - Type @@ -1601,11 +1621,6 @@ Adresa: %4 Label Popis - - - Address - Adresa - Amount @@ -1621,21 +1636,6 @@ Adresa: %4 Error exporting Chyba exportu - - - Could not write to file %1. - Nedalo sa zapisovať do súboru %1. - - - - Range: - Rozsah: - - - - to - do - WalletModel @@ -1662,15 +1662,80 @@ Adresa: %4 This help message Táto pomocná správa + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + Chyba načítania wallet.dat: Peňaženka vyžaduje novšiu verziu Bitcoin + Loading addresses... Načítavanie adries... - - Error loading blkindex.dat - Chyba načítania blkindex.dat + + 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ť + + + + Prepend debug output with timestamp + Pridať na začiatok ladiaceho výstupu časový údaj + + + + 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 + Odoslať trace/debug informácie do ladiaceho programu + + + + Username for JSON-RPC connections + Užívateľské meno pre JSON-RPC spojenia + + + + Allow JSON-RPC connections from specified IP address + Povoliť JSON-RPC spojenia z určenej IP adresy. + + + + Send commands to node running on <ip> (default: 127.0.0.1) + Poslať príkaz nóde bežiacej na <ip> (predvolené: 127.0.0.1) + + + + Set key pool size to <n> (default: 100) + Nastaviť zásobu adries na <n> (predvolené: 100) + + + + 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) + Prijateľné šifry (predvolené: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) @@ -1678,39 +1743,59 @@ Adresa: %4 Chyba načítania wallet.dat: Peňaženka je poškodená - - Error loading wallet.dat: Wallet requires newer version of Bitcoin - Chyba načítania wallet.dat: Peňaženka vyžaduje novšiu verziu Bitcoin + + Rescan the block chain for missing wallet transactions + Znovu skenovať reťaz blokov pre chýbajúce transakcie - - Wallet needed to be rewritten: restart Bitcoin to complete - Bolo potrebné prepísať peňaženku: dokončite reštartovaním Bitcoin + + Bitcoin version + Bitcoin verzia - - Error loading wallet.dat - Chyba načítania wallet.dat + + Specify pid file (default: bitcoind.pid) + Určiť súbor pid (predvolené: bitcoind.pid) - - Cannot downgrade wallet - + + Generate coins + Počítaj bitcoins - - Cannot initialize keypool - + + Don't generate coins + Nepočítaj bitcoins - - Cannot write default address - + + Specify data directory + Určiť priečinok s dátami - - Rescanning... - + + Specify connection timeout (in milliseconds) + Určiť aut spojenia (v milisekundách) + + + + Loading wallet... + Načítavam peňaženku... + + + + Error loading blkindex.dat + Chyba načítania blkindex.dat + + + + Wallet needed to be rewritten: restart Bitcoin to complete + Bolo potrebné prepísať peňaženku: dokončite reštartovaním Bitcoin + + + + Error loading wallet.dat + Chyba načítania wallet.dat @@ -1722,16 +1807,6 @@ Adresa: %4 Loading block index... Načítavanie zoznamu blokov... - - - Loading wallet... - Načítavam peňaženku... - - - - Bitcoin version - Bitcoin verzia - Usage: @@ -1762,21 +1837,6 @@ Adresa: %4 Specify configuration file (default: bitcoin.conf) Určiť súbor s nastaveniami (predvolené: bitcoin.conf) - - - Specify pid file (default: bitcoind.pid) - Určiť súbor pid (predvolené: bitcoind.pid) - - - - Generate coins - Počítaj bitcoins - - - - Don't generate coins - Nepočítaj bitcoins - Start minimized @@ -1787,31 +1847,11 @@ Adresa: %4 Show splash screen on startup (default: 1) - - - Specify data directory - Určiť priečinok s dátami - Set database cache size in megabytes (default: 25) - - - Specify connection timeout (in milliseconds) - Určiť aut spojenia (v milisekundách) - - - - Connect through socks4 proxy - Pripojenie cez socks4 proxy - - - - Allow DNS lookups for addnode and connect - Povoliť vyhľadávanie DNS pre pridanie nódy a spojenie - Listen for connections on <port> (default: 8333 or testnet: 18333) @@ -1892,51 +1932,11 @@ Adresa: %4 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 Produkovať extra ladiace informácie - - - Prepend debug output with timestamp - Pridať na začiatok ladiaceho výstupu časový údaj - - - - 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 - Odoslať trace/debug informácie do ladiaceho programu - - - - Username for JSON-RPC connections - Užívateľské meno pre JSON-RPC spojenia - - - - Allow JSON-RPC connections from specified IP address - Povoliť JSON-RPC spojenia z určenej IP adresy. - - - - Send commands to node running on <ip> (default: 127.0.0.1) - Poslať príkaz nóde bežiacej na <ip> (predvolené: 127.0.0.1) - Execute command when the best block changes (%s in cmd is replaced by block hash) @@ -1947,11 +1947,6 @@ Adresa: %4 Upgrade wallet to latest format - - - Set key pool size to <n> (default: 100) - Nastaviť zásobu adries na <n> (predvolené: 100) - How many blocks to check at startup (default: 2500, 0 = all) @@ -1969,34 +1964,34 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL možnosť: (pozrite Bitcoin Wiki pre návod na nastavenie SSL) - - Use OpenSSL (https) for JSON-RPC connections - Použiť OpenSSL (https) pre JSON-RPC spojenia + + Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + - - Server certificate file (default: server.cert) - Súbor s certifikátom servra (predvolené: server.cert) + + Error loading addr.dat + Chyba načítania addr.dat - - Server private key (default: server.pem) - Súkromný kľúč servra (predvolené: server.pem) + + Cannot downgrade wallet + - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Prijateľné šifry (predvolené: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + Cannot initialize keypool + - - Cannot obtain a lock on data directory %s. Bitcoin is probably already running. + + Cannot write default address - - Error loading addr.dat - Chyba načítania addr.dat + + Rescanning... + @@ -2018,6 +2013,21 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Error: CreateThread(StartNode) failed Chyba: zlyhalo CreateThread(StartNode) + + + Warning: Disk space is low + Varovanie: Málo voľného miesta na disku + + + + Connect through socks4 proxy + Pripojenie cez socks4 proxy + + + + Allow DNS lookups for addnode and connect + Povoliť vyhľadávanie DNS pre pridanie nódy a spojenie + Unable to bind to port %d on this computer. Bitcoin is probably already running. @@ -2033,15 +2043,5 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) beta beta - - - Warning: Disk space is low - Varovanie: Málo voľného miesta na disku - - - - Rescan the block chain for missing wallet transactions - Znovu skenovať reťaz blokov pre chýbajúce transakcie - diff --git a/src/qt/locale/bitcoin_sr.ts b/src/qt/locale/bitcoin_sr.ts index 2beff7ea83..f598d7e73d 100644 --- a/src/qt/locale/bitcoin_sr.ts +++ b/src/qt/locale/bitcoin_sr.ts @@ -338,21 +338,31 @@ Are you sure you wish to encrypt your wallet? &Receive coins П&римање новца + + + &Export... + &Извоз... + Show the list of addresses for receiving payments Прегледајте листу адреса на којима прихватате уплате + + + Encrypt or decrypt wallet + Шифровање и дешифровање новчаника + + + + Change the passphrase used for wallet encryption + Мењање лозинке којом се шифрује новчаник + &Send coins &Слање новца - - - Send coins to a bitcoin address - Пошаљите новац на bitcoin адресу - Sign &message @@ -368,71 +378,16 @@ Are you sure you wish to encrypt your wallet? E&xit - - - Quit application - Напустите програм - - - - &About %1 - &О %1-у - - - - Show information about Bitcoin - Прегледајте информације о Bitcoin-у - - - - About &Qt - О &Qt-у - - - - Show information about Qt - Прегледајте информације о Qt-у - - - - &Options... - П&оставке... - - - - Modify configuration options for bitcoin - Изаберите могућности bitcoin-а - - - - Open &Bitcoin - Отвори &Bitcoin - Show the Bitcoin window Приказује прозор Bitcoin-а - - - &Export... - &Извоз... - Export the data in the current tab to a file - - - &Encrypt Wallet - &Шифровање новчаника - - - - Encrypt or decrypt wallet - Шифровање и дешифровање новчаника - &Backup Wallet @@ -443,16 +398,6 @@ Are you sure you wish to encrypt your wallet? Backup wallet to another location - - - &Change Passphrase - Промени &лозинку - - - - Change the passphrase used for wallet encryption - Мењање лозинке којом се шифрује новчаник - &File @@ -483,20 +428,6 @@ Are you sure you wish to encrypt your wallet? [testnet] [testnet] - - - bitcoin-qt - bitcoin-qt - - - - %n active connection(s) to Bitcoin network - - %n активна веза са Bitcoin мрежом - %n активне везе са Bitcoin мрежом - %n активних веза са Bitcoin мрежом - - Downloaded %1 of %2 blocks of transaction history. @@ -543,6 +474,26 @@ Are you sure you wish to encrypt your wallet? пре %n дана + + + Backup Wallet + Backup новчаника + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to the new location. + + Up to date @@ -558,26 +509,11 @@ Are you sure you wish to encrypt your wallet? 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, која ће отићи чвору који прерађује трансакцију и помаже издржавању целе мреже. Да ли желите да дате напојницу? - - - - Sending... - Слање... - Sent transaction Послана трансакција - - - Incoming transaction - Придошла трансакција - Date: %1 @@ -598,24 +534,88 @@ Address: %4 Новчаник јс <b>шифрован</b> и тренутно <b>закључан</b> - - Backup Wallet - Backup новчаника + + Send coins to a bitcoin address + Пошаљите новац на bitcoin адресу - - Wallet Data (*.dat) - + + Quit application + Напустите програм - - Backup Failed - + + &About %1 + &О %1-у - - There was an error trying to save the wallet data to the new location. - + + Show information about Bitcoin + Прегледајте информације о Bitcoin-у + + + + About &Qt + О &Qt-у + + + + Show information about Qt + Прегледајте информације о Qt-у + + + + &Options... + П&оставке... + + + + Modify configuration options for bitcoin + Изаберите могућности bitcoin-а + + + + Open &Bitcoin + Отвори &Bitcoin + + + + &Encrypt Wallet + &Шифровање новчаника + + + + %n active connection(s) to Bitcoin network + + %n активна веза са Bitcoin мрежом + %n активне везе са Bitcoin мрежом + %n активних веза са Bitcoin мрежом + + + + + &Change Passphrase + Промени &лозинку + + + + 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, која ће отићи чвору који прерађује трансакцију и помаже издржавању целе мреже. Да ли желите да дате напојницу? + + + + Incoming transaction + Придошла трансакција + + + + bitcoin-qt + bitcoin-qt + + + + Sending... + Слање... @@ -648,6 +648,31 @@ Address: %4 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 @@ -688,31 +713,6 @@ Address: %4 New key generation failed. - - - 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. - - MainOptionsPage @@ -1644,6 +1644,11 @@ Address: %4 bitcoin-core + + + Loading wallet... + Новчаник се учитава... + Bitcoin version @@ -1950,11 +1955,6 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) Error loading blkindex.dat - - - Loading wallet... - Новчаник се учитава... - Error loading wallet.dat: Wallet corrupted diff --git a/src/qt/locale/bitcoin_sv.ts b/src/qt/locale/bitcoin_sv.ts index aef5c4f3f8..71d001d479 100644 --- a/src/qt/locale/bitcoin_sv.ts +++ b/src/qt/locale/bitcoin_sv.ts @@ -95,15 +95,20 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni Visa &QR-kod - - Copy label - Kopiera etikett + + Copy address + Kopiera adress Edit Editera + + + Delete + Ta bort + Export Address Book Data @@ -125,14 +130,9 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni Kunde inte skriva till filen %1. - - Copy address - Kopiera adress - - - - Delete - Ta bort + + Copy label + Kopiera etikett @@ -155,11 +155,6 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni AskPassphraseDialog - - - Dialog - Dialog - Enter passphrase @@ -191,25 +186,14 @@ Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användni Kryptera plånbok - - WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - VARNING: Om du krypterar din plånbok och glömmer din lösenfras, kommer du att <b>förlora alla dina BITCOINS!</b> Är du säker på att du vill kryptera din plånbok? - - - - Wallet decryption failed - Dekryptering av plånbok misslyckades - - - - Wallet passphrase was successfully changed. - Plånbokens lösenord har ändrats. + + Dialog + Dialog This operation needs your wallet passphrase to unlock the wallet. - Denna operation behöver din plånboks lösenfras för att låsa upp plånboken. + Denna operation behöver din plånboks lösenord för att låsa upp plånboken. @@ -242,10 +226,10 @@ Are you sure you wish to encrypt your wallet? Bekräfta kryptering av plånbok - - - Warning: The Caps Lock key is on. - Varning: Caps Lock är påslaget. + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + VARNING: Om du krypterar din plånbok och glömmer din lösenfras, kommer du att <b>förlora alla dina BITCOINS!</b> Är du säker på att du vill kryptera din plånbok? @@ -275,7 +259,7 @@ Are you sure you wish to encrypt your wallet? The supplied passphrases do not match. - De angivna lösenfraserna överensstämmer inte. + De angivna lösenorden överensstämmer inte. @@ -289,6 +273,22 @@ Are you sure you wish to encrypt your wallet? 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. + + + + + Warning: The Caps Lock key is on. + Varning: Caps Lock är påslaget. + BitcoinGUI @@ -297,26 +297,16 @@ Are you sure you wish to encrypt your wallet? &Options... &Alternativ... - - - &Export... - &Exportera... - Encrypt or decrypt wallet Kryptera eller dekryptera plånbok - - - &Settings - &Inställningar - Synchronizing with network... - Synkroniserar med nätverk ... + Synkroniserar med nätverk... @@ -326,13 +316,48 @@ Are you sure you wish to encrypt your wallet? &Overview - &amp; Översikt + &Översikt Show general overview of wallet Visa översiktsvy av plånbok + + + Browse transaction history + Bläddra i transaktionshistorik + + + + Send coins to a bitcoin address + Skicka bitcoins till en bitcoinadress + + + + Prove you control an address + + + + + &About %1 + &Om %1 + + + + Open &Bitcoin + Öppna &amp;Bitcoin + + + + Show the Bitcoin window + Visa Bitcoin-fönster + + + + Downloaded %1 of %2 blocks of transaction history. + Laddat ner %1 av %2 block från transaktionshistoriken. + Downloaded %1 blocks of transaction history. @@ -346,28 +371,15 @@ Are you sure you wish to encrypt your wallet? %n sekunder sedan - - - %n minute(s) ago - - %n minut sedan - %n minuter sedan - - - - - Edit the list of stored addresses and labels - Redigera listan med lagrade adresser och etiketter - - - Catching up... - Hämtar senaste... + + Backup wallet to another location + Säkerhetskopiera plånboken till en annan plats - - Last received block was generated %1. - Senast mottagna block genererades %1. + + &Help + &Hjälp @@ -375,14 +387,9 @@ Are you sure you wish to encrypt your wallet? Visa listan med adresser för att ta emot betalningar - - Browse transaction history - Bläddra i transaktionshistorik - - - - &Send coins - &amp; Skicka bitcoins + + Backup Failed + Säkerhetskopiering misslyckades @@ -413,19 +420,9 @@ Adress: %4 Denna plånbok är <b>krypterad</b> och för närvarande <b>låst</b> - - Export the data in the current tab to a file - Exportera informationen i den nuvarande fliken till en fil - - - - Backup wallet to another location - Säkerhetskopiera plånboken till en annan plats - - - - E&xit - &Avsluta + + &Transactions + &Transaktioner @@ -437,110 +434,50 @@ Adress: %4 Show information about Bitcoin Visa information om Bitcoin - - - About &Qt - Om &Qt - Show information about Qt Visa information om Qt - - 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? - Transaktionen överskrider storleksgränsen. Du kan dock fortfarande skicka den mot en kostnad av %1. Denna avgift går till noderna som behandlar din transaktion och bidrar till nätverket. Vill du betala denna avgift? - - - - Modify configuration options for bitcoin - Ändra konfigurationsalternativ för bitcoin - - - - Show the Bitcoin window - Visa Bitcoin-fönster - - - - &Encrypt Wallet - &amp;Kryptera plånbok - - - - Send coins to a bitcoin address - Skicka bitcoins till en bitcoinadress - - - - Bitcoin Wallet - Bitcoin-plånbok - - - - &Transactions - &Transaktioner - - - - &Address Book - &Adressbok - - - - &Receive coins - &Ta emot bitcoins - - - - Sign &message - Signera &meddelande - - - - Prove you control an address - + + About &Qt + Om &Qt - - &About %1 - &Om %1 + + &Export... + &Exportera... - - Open &Bitcoin - Öppna &amp;Bitcoin + + Export the data in the current tab to a file + Exportera informationen i den nuvarande fliken till en fil - - &Backup Wallet - &Säkerhetskopiera Plånbok + + &File + &Arkiv - - &Change Passphrase - &amp;Byt lösenfras + + Tabs toolbar + Verktygsfält för Tabbar Change the passphrase used for wallet encryption - Byt lösenfras för kryptering av plånbok - - - - &File - &Arkiv + Byt lösenord för kryptering av plånbok - - &Help - &Hjälp + + &Settings + &Inställningar - - Tabs toolbar - Verktygsfält för Tabbar + + Actions toolbar + Verktygsfältet för Handlingar @@ -551,14 +488,17 @@ Adress: %4 %n active connection(s) to Bitcoin network - %n aktiv anslutning till Bitcoin-nätverket. - %n aktiva anslutningar till Bitcoin-nätverket. + %n aktiv anslutning till Bitcoin-nätverket + %n aktiva anslutningar till Bitcoin-nätverket - - - Actions toolbar - Verktygsfältet för Handlingar + + + %n minute(s) ago + + %n minut sedan + %n minuter sedan + @@ -576,6 +516,31 @@ Adress: %4 %n dagar sedan + + + Catching up... + Hämtar senaste... + + + + Last received block was generated %1. + Senast 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? + Transaktionen överskrider storleksgränsen. Du kan dock fortfarande skicka den mot en kostnad av %1. Denna avgift går till noderna som behandlar din transaktion och bidrar till nätverket. Vill du betala denna avgift? + + + + Sent transaction + Transaktion skickad + + + + Incoming transaction + Inkommande transaktion + Backup Wallet @@ -588,34 +553,69 @@ Adress: %4 - Backup Failed - Säkerhetskopiering misslyckades + There was an error trying to save the wallet data to the new location. + Det inträffade ett fel när plånboken skulle sparas till den nya platsen. + + + + &Receive coins + &Ta emot bitcoins + + + + Edit the list of stored addresses and labels + Redigera listan med lagrade adresser och etiketter + + + + E&xit + &Avsluta + + + + &Send coins + &Skicka bitcoins + + + + Modify configuration options for bitcoin + Ändra konfigurationsalternativ för bitcoin + + + + &Encrypt Wallet + &amp;Kryptera plånbok + + + + Bitcoin Wallet + Bitcoin-plånbok + + + + &Address Book + &Adressbok - - There was an error trying to save the wallet data to the new location. - Det inträffade ett fel när plånboken skulle sparas till den nya platsen. + + Sign &message + Signera &meddelande - - Sent transaction - Transaktion skickad + + &Change Passphrase + &amp;Byt lösenfras - - Incoming transaction - Inkommande transaktion + + &Backup Wallet + &Säkerhetskopiera Plånbok bitcoin-qt bitcoin-qt - - - Downloaded %1 of %2 blocks of transaction history. - Laddat ner %1 av %2 block från transaktionshistoriken. - Sending... @@ -655,7 +655,7 @@ Adress: %4 Edit Address - Redigera adress + Redigera Adress @@ -866,7 +866,7 @@ Adress: %4 &Copy to Clipboard - &Kopiera till Urklipp + &amp; Kopiera till Urklipp @@ -931,6 +931,11 @@ Adress: %4 Wallet Plånbok + + + <b>Recent transactions</b> + <b>Nyligen genomförda transaktioner</b> + Number of transactions: @@ -956,11 +961,6 @@ Adress: %4 Total number of transactions in wallet Totalt antal transaktioner i plånboken - - - <b>Recent transactions</b> - <b>Nyligen genomförda transaktioner</b> - QRCodeDialog @@ -979,11 +979,6 @@ Adress: %4 Amount: Belopp: - - - BTC - BTC - Label: @@ -994,6 +989,11 @@ Adress: %4 Message: Meddelande: + + + BTC + BTC + &Save As... @@ -1049,6 +1049,16 @@ Adress: %4 Remove all transaction fields Ta bort alla transaktions-fält + + + Balance: + Balans: + + + + 123.456 BTC + 123,456 BTC + Confirm the send action @@ -1059,21 +1069,11 @@ Adress: %4 &Send &Skicka - - - Balance: - Balans: - Clear all Rensa alla - - - 123.456 BTC - 123,456 BTC - <b>%1</b> to %2 (%3) @@ -1092,7 +1092,7 @@ Adress: %4 and - and + och @@ -1140,12 +1140,12 @@ Adress: %4 A&mount: - &Belopp: + &Belopp Pay &To: - Betala &Till: + Betala & Till: @@ -1214,7 +1214,7 @@ Adress: %4 %1/unconfirmed - %1/obekräftade + %1/okonfirmerad @@ -1226,16 +1226,6 @@ Adress: %4 <b>Status:</b> <b>Status:</b> - - - (%1 matures in %2 more blocks) - - - - - Transaction ID: - Transaktions-ID: - , has not been successfully broadcast yet @@ -1261,6 +1251,18 @@ Adress: %4 <b>Source:</b> Generated<br> <b>Källa:</b> Genererade<br> + + + + + <b>Debit:</b> + <b>Debet:</b> + + + + <b>Transaction fee:</b> + <b>Transaktionsavgift:</b> + @@ -1297,23 +1299,16 @@ Adress: %4 <b>Credit:</b> <b>Kredit:</b> + + + (%1 matures in %2 more blocks) + + (not accepted) (inte accepterad) - - - - - <b>Debit:</b> - <b>Debet:</b> - - - - <b>Transaction fee:</b> - <b>Transaktionsavgift:</b> - <b>Net amount:</b> @@ -1329,6 +1324,11 @@ Adress: %4 Comment: Kommentar: + + + Transaction ID: + Transaktions-ID: + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. @@ -1350,6 +1350,26 @@ Adress: %4 TransactionTableModel + + + 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. + + + + Received with + Mottagen med + + + + Sent to + Skickad till + + + + Payment to yourself + Betalning till dig själv + (n/a) @@ -1378,7 +1398,7 @@ Adress: %4 Open for %n block(s) - + Öppen i %n block Öppen i %n block @@ -1411,50 +1431,20 @@ Adress: %4 - - - 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 - - - - Sent to - Skickad till - - - - Payment to yourself - Betalning till dig själv - - - - Mined - Skapad - Received from Mottaget från - - 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. + + Mined + Skapad @@ -1471,9 +1461,29 @@ Adress: %4 Amount removed from or added to balance. Belopp draget eller tillagt till balans. + + + 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. + TransactionView + + + Error exporting + Fel vid export + + + + Date + Datum + Confirmed @@ -1489,31 +1499,6 @@ Adress: %4 Amount Mängd - - - ID - ID - - - - Error exporting - Fel vid export - - - - Could not write to file %1. - Kunde inte skriva till filen %1. - - - - Range: - Intervall: - - - - to - till - @@ -1568,7 +1553,7 @@ Adress: %4 Mined - Skapad + Genererade @@ -1595,45 +1580,60 @@ Adress: %4 Copy label Kopiera etikett - - - Edit label - Editera etikett - - - - Show details... - Visa detaljer... - Copy amount Kopiera belopp + + + Edit label + Ändra etikett + Export Transaction Data - Exportera Transaktions Data + Exportera Transaktionsdata Comma separated file (*.csv) Kommaseparerad fil (*. csv) - - - Date - Datum - Type Typ - - Label - Etikett + + Label + Etikett + + + + ID + ID + + + + Could not write to file %1. + Kunde inte skriva till filen %1. + + + + Range: + Intervall: + + + + to + till + + + + Show details... + Visa detaljer... @@ -1686,6 +1686,71 @@ Adress: %4 Execute command when the best block changes (%s in cmd is replaced by block hash) Exekvera kommando när bästa blocket ändras (%s i cmd är utbytt av blockhash) + + + This help message + Det här hjälp medelandet + + + + Password for JSON-RPC connections + Lösenord för JSON-RPC-anslutningar + + + + Prepend debug output with timestamp + Skriv ut tid i felsökningsinformationen + + + + Specify connection timeout (in milliseconds) + Ange timeout för uppkoppling (i millisekunder) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Accepterade krypteringsalgoritmer (förval: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Find peers using internet relay chat (default: 0) + Sök efter klienter med internet relay chat (standard: 0) + + + + Maintain at most <n> connections to peers (default: 125) + Ha som mest <n> anslutningar till andra klienter (förval: 125) + + + + Cannot write default address + Kan inte skriva standardadress + + + + 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 initiera keypool + + + + Listen for JSON-RPC connections on <port> (default: 8332) + Lyssna på JSON-RPC-anslutningar på <port> (förval: 8332) + + + + Don't generate coins + Generera inte mynt + Use the test network @@ -1696,11 +1761,6 @@ Adress: %4 Rescan the block chain for missing wallet transactions Sök i block-kedjan efter saknade wallet transaktioner - - - This help message - Det här hjälp medelandet - Accept command line and JSON-RPC commands @@ -1721,11 +1781,6 @@ Adress: %4 Allow JSON-RPC connections from specified IP address Tillåt JSON-RPC-anslutningar från specifika IP-adresser - - - Error loading addr.dat - Fel vid inläsning av plånboksfilen addr.dat - Error loading wallet.dat: Wallet corrupted @@ -1741,46 +1796,6 @@ Adress: %4 Wallet needed to be rewritten: restart Bitcoin to complete Plånboken behöver skrivas om: Starta om Bitcoin för att färdigställa - - - 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 initiera keypool - - - - Fee per KB to add to transactions you send - Avgift per KB att lägga till på transaktioner du skickar - - - - Find peers using internet relay chat (default: 0) - Sök efter klienter med internet relay chat (standard: 0) - - - - How thorough the block verification is (0-6, default: 1) - Hur grundlig blockverifikationen är (0-6, standardvärde: 1) - - - - Listen for JSON-RPC connections on <port> (default: 8332) - Lyssna på JSON-RPC-anslutningar på <port> (förval: 8332) - - - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Lyssna efter anslutningar på <port> (förval: 8333 eller testnet: 18333) - Loading block index... @@ -1791,21 +1806,6 @@ Adress: %4 Loading wallet... Laddar plånbok... - - - Maintain at most <n> connections to peers (default: 125) - Ha som mest <n> anslutningar till andra klienter (förval: 125) - - - - Password for JSON-RPC connections - Lösenord för JSON-RPC-anslutningar - - - - Prepend debug output with timestamp - Skriv ut tid i felsökningsinformationen - Rescanning... @@ -1884,33 +1884,18 @@ Adress: %4 Specify configuration file (default: bitcoin.conf) - Ange konfigurationsfil (standard:bitcoin.conf) + Ange konfigurationsfil (standard: bitcoin.conf) Specify pid file (default: bitcoind.pid) - Ange pid fil (standard:bitcoind.pid) - - - - Don't generate coins - Generera ej mynt - - - - Start minimized - Starta som minimerad + Ange pid fil (standard: bitcoind.pid) Specify data directory Ange katalog för data - - - Specify connection timeout (in milliseconds) - Ange timeout för uppkoppling (i millisekunder) - Connect through socks4 proxy @@ -1931,16 +1916,16 @@ Adress: %4 Show splash screen on startup (default: 1) Visa startbilden vid uppstart (standard: 1) - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Accepterade krypteringsalgoritmer (förval: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Accept connections from outside (default: 1) Acceptera anslutningar utifrån (standard: 1) + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Lyssna efter anslutningar på <port> (förval: 8333 eller testnet: 18333) + Set language, for example "de_DE" (default: system locale) @@ -1957,14 +1942,19 @@ Adress: %4 Antal sekunder att hindra klienter som missköter sig från att ansluta (förval: 86400) - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - Maximal buffert för mottagning per anslutning, <n>*1000 byte (förval: 5000) {1000 ?} {10000)?} + + 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. - - Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - Maximal buffert för sändning per anslutning, <n>*1000 byte (förval: 5000) {1000 ?} {10000)?} + + Error: CreateThread(StartNode) failed + + + + + Unable to bind to port %d on this computer. Bitcoin is probably already running. + Det går inte att binda till %s på den här datorn. Bitcoin är förmodligen redan igång. @@ -1972,15 +1962,25 @@ Adress: %4 Use UPnP to map the listening port (default: 1) - - Use Universal Plug and Play to map the listening port (default: 0) - Use UPnP to map the listening port (default: 0) + + Warning: Disk space is low + Varning: Hårddiskutrymme är lågt + + + + Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. + Varning: Vänligen kolla så att din dators datum och tid är korrekt! Om din klocka går fel kommer Bitcoin inte fungera korrekt. Output extra debugging information Skriv ut extra felsökningsinformation + + + How thorough the block verification is (0-6, default: 1) + Hur grundlig blockverifikationen är (0-6, standardvärde: 1) + @@ -1989,19 +1989,9 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner) - - Cannot write default address - Kan inte skriva standardadress - - - - Error loading blkindex.dat - Fel vid inläsning av blkindex.dat - - - - How many blocks to check at startup (default: 2500, 0 = all) - Hur många block att kontrollera vid uppstart (standardvärde: 2500, 0 = alla) + + Error loading addr.dat + Fel vid inläsning av plånboksfilen addr.dat @@ -2014,34 +2004,44 @@ SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner)Ogiltigt belopp för -paytxfee=<belopp> - - 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. + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) + Maximal buffert för mottagning per anslutning, <n>*1000 byte (förval: 5000) {1000 ?} {10000)?} - - Error: CreateThread(StartNode) failed - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) + Maximal buffert för sändning per anslutning, <n>*1000 byte (förval: 5000) {1000 ?} {10000)?} - - Unable to bind to port %d on this computer. Bitcoin is probably already running. - Det går inte att binda till %s på den här datorn. Bitcoin är förmodligen redan igång. + + Use Universal Plug and Play to map the listening port (default: 0) + Use UPnP to map the listening port (default: 0) - - beta - beta + + Start minimized + Starta som minimerad - - Warning: Disk space is low - Varning: Hårddiskutrymme är lågt + + Error loading blkindex.dat + Fel vid inläsning av blkindex.dat - - Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. - Varning: Vänligen kolla så att din dators datum och tid är korrekt! Om din klocka går fel kommer Bitcoin inte fungera korrekt. + + Fee per KB to add to transactions you send + Avgift per KB att lägga till på transaktioner du skickar + + + + How many blocks to check at startup (default: 2500, 0 = all) + Hur många block att kontrollera vid uppstart (standardvärde: 2500, 0 = alla) + + + + beta + beta diff --git a/src/qt/locale/bitcoin_tr.ts b/src/qt/locale/bitcoin_tr.ts index b6059ce82c..8f06bdc628 100644 --- a/src/qt/locale/bitcoin_tr.ts +++ b/src/qt/locale/bitcoin_tr.ts @@ -74,11 +74,6 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) Show &QR Code &QR kodunu göster - - - Sign a message to prove you own this address - Bu adresin sizin olduğunu ispatlamak için mesaj imzalayın - &Sign Message @@ -94,6 +89,11 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) &Delete &Sil + + + Sign a message to prove you own this address + Bu adresin sizin olduğunu ispatlamak için mesaj imzalayın + Copy address @@ -190,11 +190,6 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) Encrypt wallet Cüzdanı şifrele - - - Wallet decryption failed - Cüzdan şifresinin açılması başarısız oldu - This operation needs your wallet passphrase to unlock the wallet. @@ -230,13 +225,6 @@ Bu ürün OpenSSL projesi tarafından OpenSSL Toolkit (http://www.openssl.org/) 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 BITCOINS</b>! -Are you sure you wish to encrypt your wallet? - UYARI: Eğer cüzdanınızı şifrelerseniz ve parolanızı kaybederseniz, <b>TÜM BİTCOİNLERİNİZİ KAYBEDERSİNİZ</b>! -Cüzdanınızı şifrelemek istediğinizden emin misiniz? - @@ -279,6 +267,11 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? 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. @@ -290,6 +283,13 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? Warning: The Caps Lock key is on. Uyarı: Caps Lock tuşu etkin durumda. + + + WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! +Are you sure you wish to encrypt your wallet? + UYARI: Eğer cüzdanınızı şifrelerseniz ve parolanızı kaybederseniz, <b>TÜM BİTCOİNLERİNİZİ KAYBEDERSİNİZ</b>! +Cüzdanınızı şifrelemek istediğinizden emin misiniz? + BitcoinGUI @@ -303,11 +303,6 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? Show information about Qt Qt hakkında bilgi görüntü - - - Tabs toolbar - Sekme araç çubuğu - Actions toolbar @@ -324,6 +319,11 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? Bitcoin Wallet Bitcoin cüzdanı + + + Block chain synchronization in progress + Blok zinciri senkronizasyonu sürüyor + &Overview @@ -332,7 +332,7 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? Show general overview of wallet - Cüzdana genel bakışı gösterir + Cüzdana genel bakışı göster @@ -352,22 +352,27 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? &Receive coins - Para &al + Bitcoin &al - - &About %1 - %1 &hakkında + + Show the list of addresses for receiving payments + Ödeme alma adreslerinin listesini göster - - &Backup Wallet - Cüzdanı &yedekle + + Open &Bitcoin + &Bitcoin'i aç - - Downloaded %1 of %2 blocks of transaction history. - Muamele tarihçesinin %2 sayıda blokundan %1 adet blok indirildi. + + Show the Bitcoin window + Bitcoin penceresini gösterir + + + + &Export... + &Dışa aktar... @@ -379,66 +384,43 @@ Cüzdanınızı şifrelemek istediğinizden emin misiniz? &Send coins - Para &yolla + Bitcoin &yolla [testnet] [testnet] - - - E&xit - &Çık - Catching up... Aralık kapatılıyor... - - - Last received block was generated %1. - Son alınan blok şu vakit oluşturulmuştu: %1. - - - - About &Qt - &Qt hakkında - &Options... &Seçenekler... - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Tarih: %1 -Miktar: %2 -Tür: %3 -Adres: %4 - - - - - Sign &message - &Mesaj imzala - Encrypt or decrypt wallet - Cüzdanı şifreler ya da şifreyi açar + Cüzdanı şifrele ya da şifreyi aç Backup wallet to another location Cüzdanı diğer bir konumda yedekle + + + bitcoin-qt + bitcoin-qt + + + + Sending... + Yollanıyor... + Wallet Data (*.dat) @@ -449,11 +431,6 @@ Adres: %4 Backup Failed Yedekleme başarısız oldu - - - &Settings - &Ayarlar - &Help @@ -465,49 +442,29 @@ Adres: %4 Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilidi açıktır</b> - - Block chain synchronization in progress - Blok zinciri senkronizasyonu sürüyor - - - - Send coins to a bitcoin address - Bir bitcoin adresine para (bitcoin) yollar - - - - Prove you control an address - Bu adresin kontrolünüz altında olduğunu ispatlayın - - - - Show the list of addresses for receiving payments - Ödeme alma adreslerinin listesini göster - - - - Modify configuration options for bitcoin - Bitcoin seçeneklerinin yapılandırmasını değiştirir + + Up to date + Güncel - - Open &Bitcoin - &Bitcoin'i aç + + Last received block was generated %1. + Son alınan blok şu vakit oluşturulmuştu: %1. - - Show the Bitcoin window - Bitcoin penceresini gösterir + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilitlidir</b> - - &Encrypt Wallet - Cüzdanı &şifrele + + &About %1 + %1 &hakkında - - &Change Passphrase - &Parolayı değiştir + + Export the data in the current tab to a file + Güncel sekmedeki verileri bir dosyaya aktar @@ -515,42 +472,20 @@ Adres: %4 Uygulamadan çık - - Show information about Bitcoin - Bitcoin hakkında bilgi göster - - - - &Export... - &Dışa aktar... + + &Backup Wallet + Cüzdanı &yedekle - - Export the data in the current tab to a file - Güncel sekmedeki verileri bir dosyaya aktar + + About &Qt + &Qt hakkında Change the passphrase used for wallet encryption Cüzdan şifrelemesi için kullanılan parolayı değiştir - - - &File - &Dosya - - - - %n active connection(s) to Bitcoin network - - Bitcoin şebekesine %n etkin bağlantı - - - - - Downloaded %1 blocks of transaction history. - Muamele tarihçesinin %1 adet bloku indirildi. - %n second(s) ago @@ -565,11 +500,6 @@ Adres: %4 %n saat önce - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilitlidir</b> - Backup Wallet @@ -581,14 +511,26 @@ Adres: %4 Cüzdan verilerinin başka bir konumda kaydedilmesi sırasında bir hata meydana geldi. - - Up to date - Güncel + + &Settings + &Ayarlar - - 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 muamele boyut sınırlarını aşmıştır. Gene de %1 ücret ödeyerek gönderebilirsiniz, ki bu ücret muamelenizi işleyen ve şebekeye yardım eden düğümlere ödenecektir. Ücreti ödemek istiyor musunuz? + + Tabs toolbar + Sekme araç çubuğu + + + + Downloaded %1 of %2 blocks of transaction history. + Muamele tarihçesinin %2 sayıda blokundan %1 adet blok indirildi. + + + + %n active connection(s) to Bitcoin network + + Bitcoin şebekesine %n faal bağlantı + @@ -596,9 +538,24 @@ Adres: %4 Muamele yollandı - - Incoming transaction - Gelen muamele + + Downloaded %1 blocks of transaction history. + Muamele tarihçesinin %1 adet bloku indirildi. + + + + E&xit + &Çık + + + + Show information about Bitcoin + Bitcoin hakkında bilgi göster + + + + Sign &message + &Mesaj imzala @@ -608,14 +565,57 @@ Adres: %4 - - bitcoin-qt - bitcoin-qt + + 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 muamele boyut sınırlarını aşmıştır. Gene de %1 ücret ödeyerek gönderebilirsiniz, ki bu ücret muamelenizi işleyen ve şebekeye yardım eden düğümlere ödenecektir. Ücreti ödemek istiyor musunuz? - - Sending... - Yollanıyor... + + Incoming transaction + Gelen muamele + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Tarih: %1 +Miktar: %2 +Tür: %3 +Adres: %4 + + + + + Send coins to a bitcoin address + Bir bitcoin adresine para (bitcoin) yollar + + + + Prove you control an address + Bu adresin kontrolünüz altında olduğunu ispatlayın + + + + Modify configuration options for bitcoin + Bitcoin seçeneklerinin yapılandırmasını değiştirir + + + + &Change Passphrase + &Parolayı değiştir + + + + &Encrypt Wallet + Cüzdanı &şifrele + + + + &File + &Dosya @@ -648,11 +648,6 @@ Adres: %4 EditAddressDialog - - - New key generation failed. - Yeni anahtar oluşturulması başarısız oldu. - Edit Address @@ -713,6 +708,11 @@ Adres: %4 Could not unlock wallet. Cüzdan kilidi açılamadı. + + + New key generation failed. + Yeni anahtar oluşturulması başarısız oldu. + MainOptionsPage @@ -971,9 +971,9 @@ Adres: %4 PNG resimleri (*.png) - - Dialog - Diyalog + + Save Image... + Resmi kaydet... @@ -985,6 +985,11 @@ Adres: %4 BTC BTC + + + Dialog + Diyalog + QR Code @@ -1010,11 +1015,6 @@ Adres: %4 Error encoding URI into QR Code. URI'nin QR koduna kodlanmasında hata oluştu. - - - Save Image... - Resmi kaydet... - SendCoinsDialog @@ -1147,7 +1147,7 @@ Adres: %4 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 + Adres defterinize eklemek için bu adres için bir etiket giriniz @@ -1192,26 +1192,26 @@ Adres: %4 TransactionDesc - - - Open for %1 blocks - %1 blok için açık - Open until %1 %1 değerine dek açık - - %1/offline? - %1/çevrimdışı mı? + + Open for %1 blocks + %1 blok için açık %1/unconfirmed %1/doğrulanmadı + + + %1/offline? + %1/çevrimdışı mı? + %1 confirmations @@ -1275,6 +1275,26 @@ Adres: %4 (yours) (sizin) + + + <b>Net amount:</b> + <b>Net miktar:</b> + + + + Message: + Mesaj: + + + + Comment: + Yorum: + + + + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Oluşturulan paraların (coin) harcanabilmelerinden önce 120 blok beklemeleri gerekmektedir. Bu blok, oluşturduğunuzda, blok zincirine eklenmesi için ağda yayınlandı. Zincire eklenmesi başarısız olursa, "kabul edilmedi" olarak değiştirilecek ve harcanamayacaktır. Bu, bazen başka bir düğüm sizden birkaç saniye önce ya da sonra blok oluşturursa meydana gelebilir. + @@ -1305,31 +1325,11 @@ Adres: %4 <b>Transaction fee:</b> <b>Muamele ücreti:<b> - - - <b>Net amount:</b> - <b>Net miktar:</b> - - - - Message: - Mesaj: - - - - Comment: - Yorum: - Transaction ID: Muamele kimliği: - - - Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Oluşturulan paraların (coin) harcanabilmelerinden önce 120 blok beklemeleri gerekmektedir. Bu blok, oluşturduğunuzda, blok zincirine eklenmesi için ağda yayınlandı. Zincire eklenmesi başarısız olursa, "kabul edilmedi" olarak değiştirilecek ve harcanamayacaktır. Bu, bazen başka bir düğüm sizden birkaç saniye önce ya da sonra blok oluşturursa meydana gelebilir. - TransactionDescDialog @@ -1347,14 +1347,24 @@ Adres: %4 TransactionTableModel - - Date - Tarih + + 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 + + + + Type of transaction. + Muamele türü. - Type - Tür + Date + Tarih @@ -1366,6 +1376,11 @@ Adres: %4 Amount Miktar + + + Type + Tür + Open for %n block(s) @@ -1391,7 +1406,7 @@ Adres: %4 Confirmed (%1 confirmations) - Doğrulandı (%1 doğrulama) + Doğrulandı (%1 teyit) @@ -1400,16 +1415,6 @@ Adres: %4 Madenden çıkarılan bakiye %n ek blok sonrasında kullanılabilecektir - - - 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 @@ -1450,11 +1455,6 @@ Adres: %4 Date and time that the transaction was received. Muamelenin alındığı tarih ve zaman. - - - Type of transaction. - Muamele türü. - Destination address of transaction. @@ -1469,14 +1469,9 @@ Adres: %4 TransactionView - - Confirmed - Doğrulandı - - - - ID - Tanımlayıcı + + Could not write to file %1. + %1 dosyasına yazılamadı. @@ -1484,9 +1479,14 @@ Adres: %4 Dışa aktarımda hata oluştu - - Could not write to file %1. - %1 dosyasına yazılamadı. + + ID + Tanımlayıcı + + + + Confirmed + Doğrulandı @@ -1524,11 +1524,6 @@ Adres: %4 Last month Geçen ay - - - This year - Bu sene - Range... @@ -1555,15 +1550,45 @@ Adres: %4 Oluşturulan - - Other - Diğer + + Date + Tarih + + + + Type + Tür + + + + Label + Etiket + + + + Address + Adres + + + + Amount + Miktar Enter address or label to search Aranacak adres ya da etiket giriniz + + + This year + Bu sene + + + + Other + Diğer + Min amount @@ -1604,31 +1629,6 @@ Adres: %4 Comma separated file (*.csv) Virgülle ayrılmış değerler dosyası (*.csv) - - - Date - Tarih - - - - Type - Tür - - - - Label - Etiket - - - - Address - Adres - - - - Amount - Miktar - WalletModel @@ -1640,71 +1640,26 @@ Adres: %4 bitcoin-core - - - Bitcoin version - Bitcoin sürümü - Don't generate coins Bitcoin oluşturmasını devre dışı bırak - - - Accept command line and JSON-RPC commands - Konut satırı ve JSON-RPC komutlarını kabul et - 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) - - - Use the test network - Deneme şebekesini kullan - - - - Prepend debug output with timestamp - Hata ayıklama çıktısına tarih ön ekleri ilâve et - - - - Send trace/debug info to console instead of debug.log file - Trace/hata ayıklama verilerini debug.log dosyası yerine konsola gönder - Listen for JSON-RPC connections on <port> (default: 8332) JSON-RPC bağlantıları için dinlenecek <port> (varsayılan: 8332) - - - Allow JSON-RPC connections from specified IP address - Belirtilen İP adresinden JSON-RPC bağlantılarını kabul et - - - - Server private key (default: server.pem) - Sunucu özel anahtarı (varsayılan: server.pem) - - - - This help message - Bu yardım mesajı - Loading addresses... Adresler 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ış - Error loading blkindex.dat @@ -1715,11 +1670,6 @@ Adres: %4 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 Bitcoin - wallet.dat dosyasının yüklenmesinde hata oluştu: cüzdanın daha yeni bir Bitcoin sürümüne ihtiyacı var - Wallet needed to be rewritten: restart Bitcoin to complete @@ -1735,26 +1685,11 @@ Adres: %4 Cannot downgrade wallet Cüzdan eski biçime geri alınamaz - - - Cannot initialize keypool - Keypool başlatılamadı - - - - Cannot write default address - Varsayılan adres yazılamadı - Done loading Yükleme tamamlandı - - - Fee per KB to add to transactions you send - Yolladığınız muameleler için eklenecek KB başı ücret - Find peers using internet relay chat (default: 0) @@ -1770,20 +1705,15 @@ Adres: %4 How thorough the block verification is (0-6, default: 1) Blok kontrolünün derinliği (0 ilâ 6, varsayılan: 1) - - - Loading block index... - Blok indeksi yükleniyor... - Loading wallet... Cüzdan yükleniyor... - - Rescanning... - Yeniden tarama... + + Cannot write default address + Varsayılan adres yazılamadı @@ -1801,54 +1731,59 @@ Adres: %4 Kullanım: - - Send command to -server or bitcoind - -server ya da bitcoind'ye komut gönder + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Kabul edilebilir şifreler (varsayılan: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - List commands - Komutları listele + + Run in the background as a daemon and accept commands + Arka planda daemon (servis) olarak çalış ve komutları kabul et - - Get help for a command - Bir komut için yardım al + + Send trace/debug info to debugger + Hata ayıklayıcıya -debugger- trace/hata ayıklama verileri gönder - - Options: - Seçenekler: + + Username for JSON-RPC connections + JSON-RPC bağlantıları için kullanıcı ismi - - Specify configuration file (default: bitcoin.conf) - Yapılandırma dosyası belirt (varsayılan: bitcoin.conf) + + Password for JSON-RPC connections + JSON-RPC bağlantıları için parola - - Specify pid file (default: bitcoind.pid) - Pid dosyası belirt (varsayılan: bitcoind.pid) + + 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 - - Generate coins - Madenî para (coin) oluştur + + Set key pool size to <n> (default: 100) + Anahtar alan boyutunu <n> değerine ayarla (varsayılan: 100) - - Start minimized - Küçültülmüş olarak başla + + Rescan the block chain for missing wallet transactions + Blok zincirini eksik cüzdan muameleleri için tekrar tara - - Show splash screen on startup (default: 1) - Başlatıldığında başlangıç ekranını göster (varsayılan: 1) + + Use OpenSSL (https) for JSON-RPC connections + JSON-RPC bağlantıları için OpenSSL (https) kullan - - Specify data directory - Veri dizinini belirt + + Specify pid file (default: bitcoind.pid) + Pid dosyası belirt (varsayılan: bitcoind.pid) + + + + Loading block index... + Blok indeksi yükleniyor... @@ -1856,49 +1791,89 @@ Adres: %4 Bağlantı zaman aşım süresini milisaniye olarak belirt - - Connect through socks4 proxy - Socks4 vekil sunucusu vasıtasıyla bağlan + + Add a node to connect to and attempt to keep the connection open + Bağlanılacak düğüm ekle ve bağlantıyı zinde tutmaya çalış - - Allow DNS lookups for addnode and connect - Düğüm ekleme ve bağlantı için DNS aramalarına izin ver + + Fee per KB to add to transactions you send + Yolladığınız muameleler için eklenecek KB başı ücret - - Listen for connections on <port> (default: 8333 or testnet: 18333) - Bağlantılar için dinlenecek <port> (varsayılan: 8333 ya da testnet: 18333) + + Accept command line and JSON-RPC commands + Konut satırı ve JSON-RPC komutlarını kabul et - - Accept connections from outside (default: 1) - Dışarıdan gelen bağlantıları kabul et (varsayılan: 1) + + Use the test network + Deneme şebekesini kullan - - Set language, for example "de_DE" (default: system locale) - Lisan belirt, mesela "de_De" (varsayılan: sistem dili) + + Prepend debug output with timestamp + Hata ayıklama çıktısına tarih ön ekleri ilâve et - - Find peers using DNS lookup (default: 1) - Eşleri DNS araması vasıtasıyla bul (varsayılan: 1) + + Send trace/debug info to console instead of debug.log file + Trace/hata ayıklama verilerini debug.log dosyası yerine konsola gönder - - Use Universal Plug and Play to map the listening port (default: 1) - Dinlenecek portu haritalamak için UPnP kullan (varsayılan: 1) + + Allow JSON-RPC connections from specified IP address + Belirtilen İP adresinden JSON-RPC bağlantılarını kabul et - - Use Universal Plug and Play to map the listening port (default: 0) - Dinlenecek portu haritalamak için UPnP kullan (varsayılan: 0) + + Server private key (default: server.pem) + Sunucu özel anahtarı (varsayılan: server.pem) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Kabul edilebilir şifreler (varsayılan: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + This help message + Bu yardım mesajı + + + + Error loading wallet.dat: Wallet requires newer version of Bitcoin + wallet.dat dosyasının yüklenmesinde hata oluştu: cüzdanın daha yeni bir Bitcoin sürümüne ihtiyacı var + + + + Cannot initialize keypool + Keypool başlatılamadı + + + + Get help for a command + Bir komut için yardım al + + + + Generate coins + Madenî para (Bitcoin) oluştur + + + + Start minimized + Küçültülmüş olarak başla + + + + Specify data directory + Veri dizinini belirt + + + + Listen for connections on <port> (default: 8333 or testnet: 18333) + Bağlantılar için dinlenecek <port> (varsayılan: 8333 ya da testnet: 18333) + + + + Rescanning... + Yeniden tarama... @@ -1935,46 +1910,11 @@ Adres: %4 Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) Her bağlantı için yollama tamponu, <n>*1000 bayt (varsayılan: 10000) - - - Run in the background as a daemon and accept commands - Arka planda daemon (servis) olarak çalış ve komutları kabul et - Output extra debugging information İlâve hata ayıklama verisi çıkar - - - Send trace/debug info to debugger - Hata ayıklayıcıya -debugger- trace/hata ayıklama verileri 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 - - - - 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 - - - - 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 - @@ -1982,16 +1922,6 @@ SSL options: (see the Bitcoin Wiki for SSL setup instructions) SSL seçenekleri: (SSL kurulum bilgisi için Bitcoin vikisine bakınız) - - - 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) - Warning: Disk space is low @@ -2027,15 +1957,85 @@ SSL seçenekleri: (SSL kurulum bilgisi için Bitcoin vikisine bakınız)Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly. Uyarı: Lütfen bilgisayarınızın tarih ve saatinin doğru olup olmadığını kontrol ediniz. Saatiniz doğru değilse Bitcoin gerektiği gibi çalışamaz. - - - beta - beta - Error: CreateThread(StartNode) failed Hata: CreateThread(StartNode) başarısız oldu + + + Send command to -server or bitcoind + -server ya da bitcoind'ye komut gönder + + + + List commands + Komutları listele + + + + Options: + Seçenekler: + + + + Specify configuration file (default: bitcoin.conf) + Yapılandırma dosyası belirt (varsayılan: bitcoin.conf) + + + + Show splash screen on startup (default: 1) + Başlatıldığında başlangıç ekranını göster (varsayılan: 1) + + + + Connect through socks4 proxy + Socks4 vekil sunucusu vasıtasıyla bağlan + + + + Allow DNS lookups for addnode and connect + Düğüm ekleme ve bağlantı için DNS aramalarına izin ver + + + + Accept connections from outside (default: 1) + Dışarıdan gelen bağlantıları kabul et (varsayılan: 1) + + + + Set language, for example "de_DE" (default: system locale) + Lisan belirt, mesela "de_De" (varsayılan: sistem dili) + + + + Bitcoin version + Bitcoin sürümü + + + + Server certificate file (default: server.cert) + Sunucu sertifika dosyası (varsayılan: server.cert) + + + + Find peers using DNS lookup (default: 1) + Eşleri DNS araması vasıtasıyla bul (varsayılan: 1) + + + + Use Universal Plug and Play to map the listening port (default: 1) + Dinlenecek portu haritalamak için UPnP kullan (varsayılan: 1) + + + + Use Universal Plug and Play to map the listening port (default: 0) + Dinlenecek portu haritalamak için UPnP kullan (varsayılan: 0) + + + + beta + beta + -- cgit v1.2.3 From 1ce15535f050bff064abff01261b64c8f721c0d8 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 10 Sep 2012 23:40:27 +0000 Subject: Bugfix: Don't consider invalid listening socket in hSocketMax Fixed upstream in 8f10a2889089af1b2ac64802360494b54c8c7ff1. --- src/net.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/net.cpp b/src/net.cpp index d2fa111d23..b479ff141e 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -843,8 +843,10 @@ void ThreadSocketHandler2(void* parg) SOCKET hSocketMax = 0; if(hListenSocket != INVALID_SOCKET) + { FD_SET(hListenSocket, &fdsetRecv); - hSocketMax = max(hSocketMax, hListenSocket); + hSocketMax = max(hSocketMax, hListenSocket); + } CRITICAL_BLOCK(cs_vNodes) { BOOST_FOREACH(CNode* pnode, vNodes) -- cgit v1.2.3 From 4ad495c2433a16edc1b6e2d2426fcefa69d06cd7 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Wed, 5 Sep 2012 16:01:28 -0400 Subject: select(): Use precise fd presence check, rather than imprecise hSocketMax test --- src/net.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index b479ff141e..e526da0ac5 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -841,11 +841,13 @@ void ThreadSocketHandler2(void* parg) FD_ZERO(&fdsetSend); FD_ZERO(&fdsetError); SOCKET hSocketMax = 0; + bool have_fds = false; if(hListenSocket != INVALID_SOCKET) { FD_SET(hListenSocket, &fdsetRecv); hSocketMax = max(hSocketMax, hListenSocket); + have_fds = true; } CRITICAL_BLOCK(cs_vNodes) { @@ -856,6 +858,7 @@ void ThreadSocketHandler2(void* parg) FD_SET(pnode->hSocket, &fdsetRecv); FD_SET(pnode->hSocket, &fdsetError); hSocketMax = max(hSocketMax, pnode->hSocket); + have_fds = true; TRY_CRITICAL_BLOCK(pnode->cs_vSend) if (!pnode->vSend.empty()) FD_SET(pnode->hSocket, &fdsetSend); @@ -863,15 +866,16 @@ void ThreadSocketHandler2(void* parg) } vnThreadsRunning[0]--; - int nSelect = select(hSocketMax + 1, &fdsetRecv, &fdsetSend, &fdsetError, &timeout); + int nSelect = select(have_fds ? hSocketMax + 1 : 0, + &fdsetRecv, &fdsetSend, &fdsetError, &timeout); vnThreadsRunning[0]++; if (fShutdown) return; if (nSelect == SOCKET_ERROR) { - int nErr = WSAGetLastError(); - if (hSocketMax != INVALID_SOCKET) + if (have_fds) { + int nErr = WSAGetLastError(); printf("socket select error %d\n", nErr); for (unsigned int i = 0; i <= hSocketMax; i++) FD_SET(i, &fdsetRecv); -- cgit v1.2.3 From 7648cd46a477a30bd089651bb4fa8d413ba6f48f Mon Sep 17 00:00:00 2001 From: xanatos Date: Fri, 7 Sep 2012 16:04:39 +0300 Subject: Wrong address added to collection in test The wrong address is added to the collection. As was written a second copy of address1 was added (and so address2 was useless). --- src/test/rpc_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/rpc_tests.cpp b/src/test/rpc_tests.cpp index 45424163f8..5b8086ffef 100644 --- a/src/test/rpc_tests.cpp +++ b/src/test/rpc_tests.cpp @@ -22,7 +22,7 @@ createArgs(int nRequired, const char* address1=NULL, const char* address2=NULL) result.push_back(nRequired); Array addresses; if (address1) addresses.push_back(address1); - if (address2) addresses.push_back(address1); + if (address2) addresses.push_back(address2); result.push_back(addresses); return result; } -- cgit v1.2.3 From 4c1bc220134aef99047294dc6673b59ec6d235cb Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 10 Sep 2012 23:52:27 +0000 Subject: Bugfix: Correct doubled-up &amp; in translations and remove extra spaces after ampersand in translations (this fixes hotkeys) Partial of upstream 4ee706243c670bf308123792d026d7dab6b5ae69. --- src/qt/locale/bitcoin_pt_BR.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index 34c70c2c58..568de45ca0 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -51,7 +51,7 @@ This product includes software developed by the OpenSSL Project for use in the O &New Address... - &amp; Novo endereço ... + &Novo endereço ... @@ -61,7 +61,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - &amp; Copie para a área de transferência do sistema + &Copie para a área de transferência do sistema -- cgit v1.2.3 From 2ff8456c11f389f5e7ce29ee0ba3183a6576a167 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 10 Sep 2012 23:52:27 +0000 Subject: Bugfix: Correct doubled-up &amp; in translations and remove extra spaces after ampersand in translations (this fixes hotkeys) Partial of upstream 4ee706243c670bf308123792d026d7dab6b5ae69. --- src/qt/locale/bitcoin_es_CL.ts | 2 +- src/qt/locale/bitcoin_fa.ts | 12 ++++++------ src/qt/locale/bitcoin_lt.ts | 2 +- src/qt/locale/bitcoin_pt_BR.ts | 6 +++--- src/qt/locale/bitcoin_sv.ts | 10 +++++----- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index be702c5e66..20f6369d79 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -881,7 +881,7 @@ Dirección: %4 &Sign Message - & Firmar Mensaje + &Firmar Mensaje diff --git a/src/qt/locale/bitcoin_fa.ts b/src/qt/locale/bitcoin_fa.ts index 9adc50686e..f6253df9f5 100644 --- a/src/qt/locale/bitcoin_fa.ts +++ b/src/qt/locale/bitcoin_fa.ts @@ -380,7 +380,7 @@ Are you sure you wish to encrypt your wallet? &Transactions - &amp;معاملات + &معاملات @@ -477,7 +477,7 @@ Are you sure you wish to encrypt your wallet? Open &Bitcoin - باز کردن &amp;بیتکویین + باز کردن &بیتکویین @@ -789,7 +789,7 @@ Address: %4 Pay transaction &fee - دستمزد&amp;پر داخت معامله + دستمزد&پر داخت معامله @@ -1136,12 +1136,12 @@ Address: %4 A&mount: - A&amp;مبلغ : + A&مبلغ : Pay &To: - به&amp;پر داخت : + به&پر داخت : @@ -1152,7 +1152,7 @@ Address: %4 &Label: - & بر چسب + &بر چسب diff --git a/src/qt/locale/bitcoin_lt.ts b/src/qt/locale/bitcoin_lt.ts index 8afe58e901..1ceedd4f93 100644 --- a/src/qt/locale/bitcoin_lt.ts +++ b/src/qt/locale/bitcoin_lt.ts @@ -749,7 +749,7 @@ Adresas: %4 Map port using &UPnP - Prievado struktūra naudojant & UPnP + Prievado struktūra naudojant &UPnP diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index 6f30fc2580..542819990e 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -56,7 +56,7 @@ This product includes software developed by the OpenSSL Project for use in the O &New Address... - &amp; Novo endereço ... + &Novo endereço ... @@ -66,7 +66,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Copy to Clipboard - &amp; Copie para a área de transferência do sistema + &Copie para a área de transferência do sistema @@ -819,7 +819,7 @@ Endereço: %4 &Copy to Clipboard - &amp; Copie para a área de transferência do sistema + &Copie para a área de transferência do sistema diff --git a/src/qt/locale/bitcoin_sv.ts b/src/qt/locale/bitcoin_sv.ts index 71d001d479..efa59e2a19 100644 --- a/src/qt/locale/bitcoin_sv.ts +++ b/src/qt/locale/bitcoin_sv.ts @@ -346,7 +346,7 @@ Are you sure you wish to encrypt your wallet? Open &Bitcoin - Öppna &amp;Bitcoin + Öppna &Bitcoin @@ -584,7 +584,7 @@ Adress: %4 &Encrypt Wallet - &amp;Kryptera plånbok + &Kryptera plånbok @@ -604,7 +604,7 @@ Adress: %4 &Change Passphrase - &amp;Byt lösenfras + &Byt lösenfras @@ -866,7 +866,7 @@ Adress: %4 &Copy to Clipboard - &amp; Kopiera till Urklipp + &Kopiera till Urklipp @@ -1145,7 +1145,7 @@ Adress: %4 Pay &To: - Betala & Till: + Betala &Till: -- cgit v1.2.3 From 82bcb7bf8008be758df6ec0be82067c47917f471 Mon Sep 17 00:00:00 2001 From: fanquake Date: Wed, 18 Jul 2012 22:11:56 +0800 Subject: Docs Tidy up Partial of f00a0dcfed248186811ae596dbe42f83c8550b31. --- contrib/debian/control | 4 ++-- contrib/debian/copyright | 6 +++--- doc/README | 2 +- doc/assets-attribution.txt | 4 ++-- doc/readme-qt.rst | 13 ++++++------- 5 files changed, 14 insertions(+), 15 deletions(-) diff --git a/contrib/debian/control b/contrib/debian/control index 9152339c4e..9d8764d6cb 100644 --- a/contrib/debian/control +++ b/contrib/debian/control @@ -42,7 +42,7 @@ Description: peer-to-peer network based digital currency - daemon Package: bitcoin-qt Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Description: peer-to-peer network based digital currency - QT GUI +Description: peer-to-peer network based digital currency - Qt GUI Bitcoin is a free open source peer-to-peer electronic cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and @@ -54,4 +54,4 @@ Description: peer-to-peer network based digital currency - QT GUI Full transaction history is stored locally at each client. This requires 2+ GB of space, slowly growing. . - This package provides bitcoin-qt, a GUI for Bitcoin based on QT. + This package provides Bitcoin-Qt, a GUI for Bitcoin based on Qt. diff --git a/contrib/debian/copyright b/contrib/debian/copyright index 5db418df3a..749682813e 100644 --- a/contrib/debian/copyright +++ b/contrib/debian/copyright @@ -6,7 +6,7 @@ Source: http://sourceforge.net/projects/bitcoin/files/ https://github.com/bitcoin/bitcoin Files: * -Copyright: 2009-2011, Bitcoin Developers +Copyright: 2009-2012, Bitcoin Developers License: Expat Comment: The Bitcoin Developers encompasses the current developers listed on bitcoin.org, as well as the numerous contributors to the project. @@ -57,7 +57,7 @@ Files: src/qt/res/icons/transaction*.png Copyright: md2k7 License: You are free to do with these icons as you wish, including selling, copying, modifying etc. -Comment: Site: https://forum.bitcoin.org/index.php?topic=15276.0 +Comment: Site: https://bitcointalk.org/index.php?topic=15276.0 Files: src/qt/res/icons/configure.png, src/qt/res/icons/quit.png, src/qt/res/icons/editcopy.png, src/qt/res/icons/editpaste.png, @@ -70,7 +70,7 @@ Comment: Icon Pack: Crystal SVG Files: src/qt/res/icons/bitcoin.png, src/qt/res/icons/toolbar.png Copyright: Bitboy (optimized for 16x16 by Wladimir van der Laan) License: PUB-DOM -Comment: Site: http://forum.bitcoin.org/?topic=1756.0 +Comment: Site: https://bitcointalk.org/?topic=1756.0 Files: scripts/img/reload.xcf, src/qt/res/movies/update_spinner.mng Copyright: Everaldo (Everaldo Coelho) diff --git a/doc/README b/doc/README index 07e480e7a8..6d2c77c638 100644 --- a/doc/README +++ b/doc/README @@ -18,7 +18,7 @@ with each other, with the help of a P2P network to check for double-spending. Setup ----- -You need the Qt4 run-time libraries to run bitcoin-qt. On Debian or Ubuntu: +You need the Qt4 run-time libraries to run Bitcoin-Qt. On Debian or Ubuntu: sudo apt-get install libqtgui4 Unpack the files into a directory and run: diff --git a/doc/assets-attribution.txt b/doc/assets-attribution.txt index 2ed25bbe9e..afbe3df67d 100644 --- a/doc/assets-attribution.txt +++ b/doc/assets-attribution.txt @@ -26,7 +26,7 @@ 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 +Site: https://bitcointalk.org/index.php?topic=15276.0 License: You are free to do with these icons as you wish, including selling, copying, modifying etc. @@ -41,7 +41,7 @@ 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 +Site: https://bitcointalk.org/?topic=1756.0 Icon: scripts/img/reload.xcf (modified),src/qt/res/movies/update_spinner.mng Icon Pack: Kids diff --git a/doc/readme-qt.rst b/doc/readme-qt.rst index 090177321e..07d59f9685 100644 --- a/doc/readme-qt.rst +++ b/doc/readme-qt.rst @@ -1,4 +1,4 @@ -Bitcoin-qt: Qt4 GUI for Bitcoin +Bitcoin-Qt: Qt4 GUI for Bitcoin =============================== Features @@ -60,21 +60,20 @@ Alternatively, install Qt Creator and open the `bitcoin-qt.pro` file. An executable named `bitcoin-qt` will be built. - Windows -------- Windows build instructions: -- Download the `QT Windows SDK`_ and install it. You don't need the Symbian stuff, just the desktop Qt. +- Download the `Qt Windows SDK`_ and install it. You don't need the Symbian stuff, just the desktop Qt. - Download and extract the `dependencies archive`_ [#]_, or compile openssl, boost and dbcxx yourself. - Copy the contents of the folder "deps" to "X:\\QtSDK\\mingw", replace X:\\ with the location where you installed the Qt SDK. Make sure that the contents of "deps\\include" end up in the current "include" directory. -- Open the .pro file in QT creator and build as normal (ctrl-B) +- Open the bitcoin-qt.pro file in Qt Creator and build as normal (ctrl-B) -.. _`QT Windows SDK`: http://qt.nokia.com/downloads/sdk-windows-cpp +.. _`Qt Windows SDK`: http://qt.nokia.com/downloads/sdk-windows-cpp .. _`dependencies archive`: https://download.visucore.com/bitcoin/qtgui_deps_1.zip .. [#] PGP signature: https://download.visucore.com/bitcoin/qtgui_deps_1.zip.sig (signed with RSA key ID `610945D0`_) .. _`610945D0`: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x610945D0 @@ -94,7 +93,7 @@ Mac OS X sudo port selfupdate sudo port install boost db48 -- Open the .pro file in Qt Creator and build as normal (cmd-B) +- Open the bitcoin-qt.pro file in Qt Creator and build as normal (cmd-B) .. _`Qt Mac OS X SDK`: http://qt.nokia.com/downloads/sdk-mac-os-cpp .. _`MacPorts`: http://www.macports.org/install.php @@ -103,7 +102,7 @@ Mac OS X Build configuration options ============================ -UPNnP port forwarding +UPnP port forwarding --------------------- To use UPnP for port forwarding behind a NAT router (recommended, as more connections overall allow for a faster and more stable bitcoin experience), pass the following argument to qmake: -- cgit v1.2.3 From cae8742130b31fc1b23b2108a90db28254807e85 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sat, 8 Sep 2012 21:51:52 +0000 Subject: Apply MIT license to md2k7 art [21:48:14] feel free to make it MIT if you like --- contrib/debian/copyright | 3 +-- doc/assets-attribution.txt | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/debian/copyright b/contrib/debian/copyright index 749682813e..fde33d3730 100644 --- a/contrib/debian/copyright +++ b/contrib/debian/copyright @@ -55,8 +55,7 @@ Comment: Icon Pack: Human-O2 Files: src/qt/res/icons/transaction*.png Copyright: md2k7 -License: You are free to do with these icons as you wish, including selling, - copying, modifying etc. +License: Expat Comment: Site: https://bitcointalk.org/index.php?topic=15276.0 Files: src/qt/res/icons/configure.png, src/qt/res/icons/quit.png, diff --git a/doc/assets-attribution.txt b/doc/assets-attribution.txt index afbe3df67d..479e0e7960 100644 --- a/doc/assets-attribution.txt +++ b/doc/assets-attribution.txt @@ -29,6 +29,7 @@ Designer: md2k7 Site: https://bitcointalk.org/index.php?topic=15276.0 License: You are free to do with these icons as you wish, including selling, copying, modifying etc. +License: MIT 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, -- cgit v1.2.3 From ea3e34dc3d710747f625e4f93eaed2686c9db045 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 11 Sep 2012 00:59:16 +0000 Subject: Update supported translations --- src/qt/locale/bitcoin_da.ts | 4 ++-- src/qt/locale/bitcoin_hu.ts | 6 +++--- src/qt/locale/bitcoin_zh_CN.ts | 13 ++++++++----- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index 6082143266..bf50e18a6b 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -189,7 +189,7 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin will close now to finish the encryption process. Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. + Bitcoin will close now to finish the encryption process. Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. @@ -775,7 +775,7 @@ Adresse: %4 Wallet - tegnebog + tegnebog diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index 81d74f7bd8..12cc66b346 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -242,7 +242,7 @@ Biztosan kódolni akarod a tárcát? Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. + Bitcoin will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. @@ -769,7 +769,7 @@ Cím: %4 Wallet - Tárca + Tárca @@ -1235,7 +1235,7 @@ Cím: %4 Received from - Erről az + Erről az diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index b9c9cc9fe8..cf440de916 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -545,7 +545,7 @@ Address: %4 A fatal error occurred. Bitcoin can no longer continue safely and will quit. - + 发生严重错误。 @@ -1416,25 +1416,28 @@ Address: %4 Threshold for disconnecting misbehaving peers (default: 100) - + Threshold for disconnecting misbehaving peers (缺省: 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: 10000) - + 每个连接的最大接收缓存,<n>*1000 字节(缺省:10000) + Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + 每个连接的最大发送缓存,<n>*1000 字节(缺省:10000) -- cgit v1.2.3 From a53b07313ffef3f4a3ad00a1a1befb4d9746d271 Mon Sep 17 00:00:00 2001 From: Gregory Maxwell Date: Sun, 9 Sep 2012 20:11:04 -0400 Subject: Apply BIP30 checks to all blocks except the two historic violations. Matt pointed out some time ago that there existed a minor DOS attack where a node in its initial block download could be wedged by an overwrite attack in a fork created between checkpoints before a time where BIP30 was enforced. Now that the BIP30 timestamp is irreversibly past the check can be more aggressive and apply to all blocks except the two historic violations. --- src/main.cpp | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 1860f471da..26adbf7178 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1173,9 +1173,18 @@ bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex) // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information. // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool // already refuses previously-known transaction ids entirely. - // This rule applies to all blocks whose timestamp is after March 15, 2012, 0:00 UTC. + // This rule was originally applied all blocks whose timestamp was after March 15, 2012, 0:00 UTC. + // Now that the whole chain is irreversibly beyond that time it is applied to all blocks except the + // two in the chain that violate it. This prevents exploiting the issue against nodes in their + // initial block download. // On testnet it is enabled as of februari 20, 2012, 0:00 UTC. - if (pindex->nTime > 1331769600 || (fTestNet && pindex->nTime > 1329696000)) + bool fEnforceBIP30; + if (fTestNet) + fEnforceBIP30 = pindex->nTime > 1329696000; + else + fEnforceBIP30 = !((pindex->nHeight==91842 && pindex->GetBlockHash() == uint256("0x00000000000a4d0a398161ffc163c503763b1f4360639393e0e4c8e300e0caec")) || + (pindex->nHeight==91880 && pindex->GetBlockHash() == uint256("0x00000000000743f190a18c5577a3c2d2a1f610ae9601ac046a38084ccb7cd721"))); + if (fEnforceBIP30) { BOOST_FOREACH(CTransaction& tx, vtx) { -- cgit v1.2.3 From 1d892253201258dab8db9c6254fa75bdb5b09927 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sat, 15 Sep 2012 12:10:00 +0200 Subject: update comment, secure_allocator is defined in allocators.h --- src/key.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/key.h b/src/key.h index bd58c84375..e465e23842 100644 --- a/src/key.h +++ b/src/key.h @@ -43,7 +43,7 @@ public: }; -// secure_allocator is defined in serialize.h +// secure_allocator is defined in allocators.h // CPrivKey is a serialized private key, with all parameters included (279 bytes) typedef std::vector > CPrivKey; // CSecret is a serialization of just the secret parameter (32 bytes) -- cgit v1.2.3 From 3d6adbe71a5504d77e78a8ffad5f91d11a32c065 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 20 Sep 2012 10:28:13 -0400 Subject: Update gitignore and Makefiles for build.h move from src/ to src/obj --- .gitignore | 1 - src/makefile.linux-mingw | 2 +- src/makefile.mingw | 1 - src/makefile.osx | 2 +- src/makefile.unix | 2 +- 5 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 2b70e2cca5..95152ce4fb 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,6 @@ src/*.exe src/bitcoin src/bitcoind src/test_bitcoin -src/build.h .*.swp *.*~* *.bak diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index e746424a33..a6f676af04 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -97,6 +97,6 @@ clean: -rm -f bitcoind.exe -rm -f obj-test/*.o -rm -f test_bitcoin.exe - -rm -f src/build.h + -rm -f obj/build.h FORCE: diff --git a/src/makefile.mingw b/src/makefile.mingw index 842b3c67ec..2addb0c2b2 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -87,4 +87,3 @@ clean: -del /Q bitcoind test_bitcoin -del /Q obj\* -del /Q obj-test\* - -del /Q build.h diff --git a/src/makefile.osx b/src/makefile.osx index 16a0edfe82..17cbce74ac 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -141,6 +141,6 @@ clean: -rm -f obj-test/*.o -rm -f obj/*.P -rm -f obj-test/*.P - -rm -f src/build.h + -rm -f obj/build.h FORCE: diff --git a/src/makefile.unix b/src/makefile.unix index 4d8f48143c..316cd19dd3 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -148,6 +148,6 @@ clean: -rm -f obj-test/*.o -rm -f obj/*.P -rm -f obj-test/*.P - -rm -f src/build.h + -rm -f obj/build.h FORCE: -- cgit v1.2.3 From 9769d14f037450316a54e2b4e89aa2b10ef6a5e9 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Fri, 21 Sep 2012 19:31:53 +0200 Subject: Change hotkey for "Send" button to "e" since "S" is already used for "Settings" menu Partial of upstream da9413d9134a7534369a55422cadc3fdd91ba608 --- src/qt/forms/sendcoinsdialog.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/forms/sendcoinsdialog.ui b/src/qt/forms/sendcoinsdialog.ui index 04cf404ae3..7eadec98b2 100644 --- a/src/qt/forms/sendcoinsdialog.ui +++ b/src/qt/forms/sendcoinsdialog.ui @@ -144,7 +144,7 @@ Confirm the send action - &Send + S&end -- cgit v1.2.3 From 599ec1e1153dc7ff393ebbf029d0669a6207bcbe Mon Sep 17 00:00:00 2001 From: fanquake Date: Sat, 22 Sep 2012 13:32:28 +0800 Subject: Update Bugreport Links Update Qt Links Revert Qt source link Update Qt links PARTIAL of e1eb3d4 --- doc/readme-qt.rst | 4 ++-- src/qt/bitcoinamountfield.h | 2 +- src/qt/bitcoingui.h | 2 +- src/qt/sendcoinsdialog.h | 2 +- src/qt/sendcoinsentry.h | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/readme-qt.rst b/doc/readme-qt.rst index 07d59f9685..960537165a 100644 --- a/doc/readme-qt.rst +++ b/doc/readme-qt.rst @@ -73,7 +73,7 @@ Windows build instructions: - Open the bitcoin-qt.pro file in Qt Creator and build as normal (ctrl-B) -.. _`Qt Windows SDK`: http://qt.nokia.com/downloads/sdk-windows-cpp +.. _`Qt Windows SDK`: http://qt-project.org/downloads/ .. _`dependencies archive`: https://download.visucore.com/bitcoin/qtgui_deps_1.zip .. [#] PGP signature: https://download.visucore.com/bitcoin/qtgui_deps_1.zip.sig (signed with RSA key ID `610945D0`_) .. _`610945D0`: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x610945D0 @@ -95,7 +95,7 @@ Mac OS X - Open the bitcoin-qt.pro file in Qt Creator and build as normal (cmd-B) -.. _`Qt Mac OS X SDK`: http://qt.nokia.com/downloads/sdk-mac-os-cpp +.. _`Qt Mac OS X SDK`: http://qt-project.org/downloads/ .. _`MacPorts`: http://www.macports.org/install.php diff --git a/src/qt/bitcoinamountfield.h b/src/qt/bitcoinamountfield.h index ca4a888e4e..66792e00a9 100644 --- a/src/qt/bitcoinamountfield.h +++ b/src/qt/bitcoinamountfield.h @@ -31,7 +31,7 @@ public: /** Make field empty and ready for new input. */ void clear(); - /** Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907), + /** Qt messes up the tab chain by default in some cases (issue https://bugreports.qt-project.org/browse/QTBUG-10907), in these cases we have to set it up manually. */ QWidget *setupTabChain(QWidget *prev); diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 313aa06c58..65340775cd 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -117,7 +117,7 @@ public slots: /** Asks the user whether to pay the transaction fee or to cancel the transaction. It is currently not possible to pass a return value to another thread through BlockingQueuedConnection, so an indirected pointer is used. - http://bugreports.qt.nokia.com/browse/QTBUG-10440 + https://bugreports.qt-project.org/browse/QTBUG-10440 @param[in] nFeeRequired the required fee @param[out] payFee true to pay the fee, false to not pay the fee diff --git a/src/qt/sendcoinsdialog.h b/src/qt/sendcoinsdialog.h index ed56214191..d26491c517 100644 --- a/src/qt/sendcoinsdialog.h +++ b/src/qt/sendcoinsdialog.h @@ -25,7 +25,7 @@ public: void setModel(WalletModel *model); - /** Set up the tab chain manually, as Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907). + /** 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); diff --git a/src/qt/sendcoinsentry.h b/src/qt/sendcoinsentry.h index db6cba0d80..0ac14c1472 100644 --- a/src/qt/sendcoinsentry.h +++ b/src/qt/sendcoinsentry.h @@ -27,7 +27,7 @@ public: void setValue(const SendCoinsRecipient &value); - /** Set up the tab chain manually, as Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907). + /** 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); -- cgit v1.2.3 From e25f0f0e53acc42e5c9611a646a3683eaad6cc39 Mon Sep 17 00:00:00 2001 From: fanquake Date: Sat, 22 Sep 2012 13:32:28 +0800 Subject: Update Bugreport Links Update Qt Links Revert Qt source link Update Qt links PARTIAL of e1eb3d4 --- doc/readme-qt.rst | 8 ++++---- src/qt/bitcoinamountfield.h | 2 +- src/qt/bitcoingui.h | 2 +- src/qt/sendcoinsdialog.h | 2 +- src/qt/sendcoinsentry.h | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/readme-qt.rst b/doc/readme-qt.rst index f55b9e7bd2..866b147c56 100644 --- a/doc/readme-qt.rst +++ b/doc/readme-qt.rst @@ -40,7 +40,7 @@ Windows build instructions: - Open the bitcoin-qt.pro file in Qt Creator and build as normal (ctrl-B) -.. _`Qt Windows SDK`: http://qt.nokia.com/downloads/sdk-windows-cpp +.. _`Qt Windows SDK`: http://qt-project.org/downloads/ .. _`dependencies archive`: https://download.visucore.com/bitcoin/qtgui_deps_1.zip .. [#] PGP signature: https://download.visucore.com/bitcoin/qtgui_deps_1.zip.sig (signed with RSA key ID `610945D0`_) .. _`610945D0`: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x610945D0 @@ -62,7 +62,7 @@ Mac OS X - Open the bitcoin-qt.pro file in Qt Creator and build as normal (cmd-B) -.. _`Qt Mac OS X SDK`: http://qt.nokia.com/downloads/sdk-mac-os-cpp +.. _`Qt Mac OS X SDK`: http://qt-project.org/downloads/ .. _`MacPorts`: http://www.macports.org/install.php @@ -106,8 +106,8 @@ FreeDesktop notification interface through DBUS using the following qmake option Generation of QR codes ----------------------- -libqrencode may be used to generate QRCode images for payment requests. -It can be downloaded from http://fukuchi.org/works/qrencode/index.html.en, or installed via your package manager. Pass the USE_QRCODE +libqrencode may be used to generate QRCode images for payment requests. +It can be downloaded from http://fukuchi.org/works/qrencode/index.html.en, or installed via your package manager. Pass the USE_QRCODE flag to qmake to control this: +--------------+--------------------------------------------------------------------------+ diff --git a/src/qt/bitcoinamountfield.h b/src/qt/bitcoinamountfield.h index ca4a888e4e..66792e00a9 100644 --- a/src/qt/bitcoinamountfield.h +++ b/src/qt/bitcoinamountfield.h @@ -31,7 +31,7 @@ public: /** Make field empty and ready for new input. */ void clear(); - /** Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907), + /** Qt messes up the tab chain by default in some cases (issue https://bugreports.qt-project.org/browse/QTBUG-10907), in these cases we have to set it up manually. */ QWidget *setupTabChain(QWidget *prev); diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 8bc30d3405..d22b8b2471 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -121,7 +121,7 @@ public slots: /** Asks the user whether to pay the transaction fee or to cancel the transaction. It is currently not possible to pass a return value to another thread through BlockingQueuedConnection, so an indirected pointer is used. - http://bugreports.qt.nokia.com/browse/QTBUG-10440 + https://bugreports.qt-project.org/browse/QTBUG-10440 @param[in] nFeeRequired the required fee @param[out] payFee true to pay the fee, false to not pay the fee diff --git a/src/qt/sendcoinsdialog.h b/src/qt/sendcoinsdialog.h index 2498a9a71e..94fa97d201 100644 --- a/src/qt/sendcoinsdialog.h +++ b/src/qt/sendcoinsdialog.h @@ -25,7 +25,7 @@ public: void setModel(WalletModel *model); - /** Set up the tab chain manually, as Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907). + /** 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); diff --git a/src/qt/sendcoinsentry.h b/src/qt/sendcoinsentry.h index db6cba0d80..0ac14c1472 100644 --- a/src/qt/sendcoinsentry.h +++ b/src/qt/sendcoinsentry.h @@ -27,7 +27,7 @@ public: void setValue(const SendCoinsRecipient &value); - /** Set up the tab chain manually, as Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907). + /** 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); -- cgit v1.2.3 From 207ef3008c28be30fb8ef2b50999d885f7c329c4 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sat, 22 Sep 2012 12:15:41 +0200 Subject: additional fix for #1843 - a shortcut on "receive coins" was used twice --- src/qt/forms/addressbookpage.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/forms/addressbookpage.ui b/src/qt/forms/addressbookpage.ui index e47eb57ff9..15a8f31996 100644 --- a/src/qt/forms/addressbookpage.ui +++ b/src/qt/forms/addressbookpage.ui @@ -96,7 +96,7 @@ Sign a message to prove you own this address - &Sign Message + Sign &Message -- cgit v1.2.3 From d1b75909117a22e9d701e8d6717842db0db3244d Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Fri, 21 Sep 2012 15:42:38 -0400 Subject: Compile/link Bitcoin-Qt.app with -pthread --- bitcoin-qt.pro | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index ae895ea9f0..a3ad4c9ec9 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -4,6 +4,7 @@ VERSION = 0.5.7 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB CONFIG += no_include_pwd +CONFIG += thread # for boost 1.37, add -mt to the boost libraries # use: qmake BOOST_LIB_SUFFIX=-mt @@ -269,6 +270,9 @@ macx:LIBS += -framework Foundation -framework ApplicationServices -framework App macx:DEFINES += MAC_OSX MSG_NOSIGNAL=0 macx:ICON = src/qt/res/icons/bitcoin.icns macx:TARGET = "Bitcoin-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 -- cgit v1.2.3 From 6a9a280ec775a376743f6395170435a6a77c300d Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sat, 22 Sep 2012 12:34:45 +0200 Subject: change last occurance of mac to macx in Qt project-file --- bitcoin-qt.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 135cf380eb..59f7a4718c 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -306,7 +306,7 @@ windows:!contains(MINGW_THREAD_BUGFIX, 0) { QMAKE_LIBS_QT_ENTRY = -lmingwthrd $$QMAKE_LIBS_QT_ENTRY } -!windows:!mac { +!windows:!macx { DEFINES += LINUX LIBS += -lrt } -- cgit v1.2.3 From cc57473222b8647d091b6aa9da4a000a11e5a221 Mon Sep 17 00:00:00 2001 From: xanatos Date: Fri, 28 Sep 2012 14:57:07 +0300 Subject: toHTML won't add empty wtx.mapValue elements As the code was before, toHTML added empty elements to mapValue to check for their existance. Now first it check for their existance and then for their non-emptiness. Removed a duplicated identical if There are two equal ifs, one inside another. If the first one is true, then the second one is true. --- src/qt/transactiondesc.cpp | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/qt/transactiondesc.cpp b/src/qt/transactiondesc.cpp index 6ca3ac8c4b..529a9d6ca1 100644 --- a/src/qt/transactiondesc.cpp +++ b/src/qt/transactiondesc.cpp @@ -82,11 +82,10 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) { strHTML += tr("Source: Generated
"); } - else if (!wtx.mapValue["from"].empty()) + else if (wtx.mapValue.count("from") && !wtx.mapValue["from"].empty()) { // Online transaction - if (!wtx.mapValue["from"].empty()) - strHTML += tr("From: ") + HtmlEscape(wtx.mapValue["from"]) + "
"; + strHTML += tr("From: ") + HtmlEscape(wtx.mapValue["from"]) + "
"; } else { @@ -123,7 +122,7 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) // To // string strAddress; - if (!wtx.mapValue["to"].empty()) + if (wtx.mapValue.count("to") && !wtx.mapValue["to"].empty()) { // Online transaction strAddress = wtx.mapValue["to"]; @@ -180,7 +179,7 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) if (wallet->IsMine(txout)) continue; - if (wtx.mapValue["to"].empty()) + if (!wtx.mapValue.count("to") || wtx.mapValue["to"].empty()) { // Offline transaction CBitcoinAddress address; @@ -229,9 +228,9 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) // // Message // - if (!wtx.mapValue["message"].empty()) + if (wtx.mapValue.count("message") && !wtx.mapValue["message"].empty()) strHTML += QString("
") + tr("Message:") + "
" + HtmlEscape(wtx.mapValue["message"], true) + "
"; - if (!wtx.mapValue["comment"].empty()) + if (wtx.mapValue.count("comment") && !wtx.mapValue["comment"].empty()) strHTML += QString("
") + tr("Comment:") + "
" + HtmlEscape(wtx.mapValue["comment"], true) + "
"; if (wtx.IsCoinBase()) -- cgit v1.2.3 From 135bee074d3eba3cb954535344d94c0099e3a466 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Sat, 29 Sep 2012 12:25:22 +0200 Subject: Windows: fix URI association setting in registry - fix for #1877 - fix was reported to work via https://bitcointalk.org/index.php?topic=110243.msg1230418#msg1230418 --- share/setup.nsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/setup.nsi b/share/setup.nsi index b49eff304e..dff2681cd4 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -103,7 +103,7 @@ Section -post SEC0001 # WriteRegStr HKCR "bitcoin" "URL Protocol" "" # WriteRegStr HKCR "bitcoin" "" "URL:Bitcoin" # WriteRegStr HKCR "bitcoin\DefaultIcon" "" $INSTDIR\bitcoin-qt.exe - # WriteRegStr HKCR "bitcoin\shell\open\command" "" '"$INSTDIR\bitcoin-qt.exe" "$$1"' + # WriteRegStr HKCR "bitcoin\shell\open\command" "" '"$INSTDIR\bitcoin-qt.exe" "%1"' SectionEnd # Macro for selecting uninstaller sections -- cgit v1.2.3 From bced903ae52b63c59ffde51e5c6d5e16dad9aaf5 Mon Sep 17 00:00:00 2001 From: kjj2 Date: Sun, 30 Sep 2012 08:50:59 -0500 Subject: Add a backup warning to the encryptwallet RPC command --- src/rpc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc.cpp b/src/rpc.cpp index c77c505572..67bd88c920 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -1479,7 +1479,7 @@ Value encryptwallet(const Array& params, bool fHelp) // slack space in .dat files; that is bad if the old data is // unencrypted private keys. So: CreateThread(Shutdown, NULL); - return "wallet encrypted; bitcoin server stopping, restart to run with encrypted wallet"; + return "wallet encrypted; bitcoin server stopping, restart to run with encrypted wallet. The keypool has been flushed, you need to make a new backup."; } -- cgit v1.2.3 From a7642282f6465f2d9e2091ec6279fa1db1241cf3 Mon Sep 17 00:00:00 2001 From: "Rune K. Svendsen" Date: Sun, 30 Sep 2012 11:37:45 +0200 Subject: When encrypting the wallet, warn user that old backups will become useless. Don't include HTML in translation strings. Do split the huge message over several lines. Prettier lines --- src/qt/askpassphrasedialog.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/qt/askpassphrasedialog.cpp b/src/qt/askpassphrasedialog.cpp index 2126edf0b2..cae021c982 100644 --- a/src/qt/askpassphrasedialog.cpp +++ b/src/qt/askpassphrasedialog.cpp @@ -109,7 +109,16 @@ void AskPassphraseDialog::accept() if(model->setWalletEncrypted(true, newpass1)) { QMessageBox::warning(this, tr("Wallet encrypted"), - tr("Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer.")); + "" + + tr("Bitcoin will close now to finish the encryption process. " + "Remember that encrypting your wallet cannot fully protect " + "your bitcoins from being stolen by malware infecting your computer.") + + "

" + + tr("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.") + + "
"); QApplication::quit(); } else -- cgit v1.2.3 From 638cecee77dba4bcffb225627f63658b247709ea Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Thu, 4 Oct 2012 07:47:10 +0200 Subject: When datadir missing, show messagebox instead of printing error to stderr --- src/qt/bitcoin.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 0a48b55951..836b9f6034 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -184,7 +184,10 @@ int main(int argc, char *argv[]) // ... then bitcoin.conf: if (!ReadConfigFile(mapArgs, mapMultiArgs)) { - fprintf(stderr, "Error: Specified directory does not exist\n"); + // 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) + QMessageBox::critical(0, "Bitcoin", + QString("Error: Specified data directory \"%1\" does not exist.").arg(QString::fromStdString(mapArgs["-datadir"]))); return 1; } -- cgit v1.2.3 From d37a2fd8080cffde4ffbcb9927a66258e9fef39e Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Thu, 4 Oct 2012 07:56:57 +0200 Subject: Send --help message to stdout i.s.o stderr This allows fun stuff such as `bitcoin --help | less`, and more easy piping to files. Looking at other tools such as bash, gcc, they all send their help text to stdout. --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index c6712fa715..5faa604394 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -232,7 +232,7 @@ bool AppInit2(int argc, char* argv[]) #else // Remove tabs strUsage.erase(std::remove(strUsage.begin(), strUsage.end(), '\t'), strUsage.end()); - fprintf(stderr, "%s", strUsage.c_str()); + fprintf(stdout, "%s", strUsage.c_str()); #endif return false; } -- cgit v1.2.3 From b3f8f6ab9409d3e901d22c09b0346a5a47779496 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 4 Oct 2012 16:35:08 -0400 Subject: Avoid crashes at shutdown due to printf() in global destructors. --- src/util.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/util.cpp b/src/util.cpp index 49415fc3b7..62fa4c0575 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -194,8 +194,14 @@ inline int OutputDebugStringF(const char* pszFormat, ...) if (fileout) { static bool fStartedNewLine = true; - static boost::mutex mutexDebugLog; - boost::mutex::scoped_lock scoped_lock(mutexDebugLog); + + // This routine may be called by global destructors during shutdown. + // Since the order of destruction of static/global objects is undefined, + // allocate mutexDebugLog on the heap the first time this routine + // is called to avoid crashes during shutdown. + static boost::mutex* mutexDebugLog = NULL; + if (mutexDebugLog == NULL) mutexDebugLog = new boost::mutex(); + boost::mutex::scoped_lock scoped_lock(*mutexDebugLog); // Debug print useful for profiling if (fLogTimestamps && fStartedNewLine) -- cgit v1.2.3 From 6ec7ac15ff84080e7cfa65c860dd90b33d596ef2 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 9 Oct 2012 23:28:53 +0000 Subject: Update supported translations --- src/qt/locale/bitcoin_da.ts | 83 +++++++++++++++++++------------------ src/qt/locale/bitcoin_de.ts | 83 +++++++++++++++++++------------------ src/qt/locale/bitcoin_en.ts | 83 +++++++++++++++++++------------------ src/qt/locale/bitcoin_es.ts | 93 ++++++++++++++++++++++-------------------- src/qt/locale/bitcoin_es_CL.ts | 85 ++++++++++++++++++++------------------ src/qt/locale/bitcoin_hu.ts | 85 ++++++++++++++++++++------------------ src/qt/locale/bitcoin_it.ts | 93 ++++++++++++++++++++++-------------------- src/qt/locale/bitcoin_nb.ts | 87 ++++++++++++++++++++------------------- src/qt/locale/bitcoin_nl.ts | 83 +++++++++++++++++++------------------ src/qt/locale/bitcoin_pt_BR.ts | 87 ++++++++++++++++++++------------------- src/qt/locale/bitcoin_ru.ts | 85 ++++++++++++++++++++------------------ src/qt/locale/bitcoin_uk.ts | 83 +++++++++++++++++++------------------ src/qt/locale/bitcoin_zh_CN.ts | 83 +++++++++++++++++++------------------ src/qt/locale/bitcoin_zh_TW.ts | 91 ++++++++++++++++++++++------------------- 14 files changed, 637 insertions(+), 567 deletions(-) diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index bf50e18a6b..b91e595938 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -157,7 +157,7 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open
- + Wallet encrypted Tegnebog krypteret @@ -187,43 +187,48 @@ Produktet indeholder software som er udviklet af OpenSSL Project til brug i Open Denne funktion har brug for din tegnebogs kodeord for at dekryptere tegnebogen.
- + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin will close now to finish the encryption process. Husk, at kryptere din tegnebog vil ikke fuldt ud beskytte dine bitcoins mod at blive stjålet af malware på din computer. - - - + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + Wallet encryption failed Tegnebogskryptering mislykkedes - + Wallet unlock failed Tegnebogsoplåsning mislykkedes - + Wallet passphrase was successfully changed. Tegnebogskodeord blev ændret. - - + + Warning: The Caps Lock key is on. - + 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 passphrase entered for the wallet decryption was incorrect. Det angivne kodeord for tegnebogsdekrypteringen er forkert. @@ -245,13 +250,13 @@ Are you sure you wish to encrypt your wallet? Er du sikker på at du ønsker at kryptere din tegnebog?
- - + + The supplied passphrases do not match. De angivne kodeord stemmer ikke overens. - + Wallet decryption failed Tegnebogsdekryptering mislykkedes @@ -839,7 +844,7 @@ Adresse: %4
- &Send + S&end &Afsend @@ -1020,38 +1025,38 @@ Adresse: %4 <b>Kilde:</b> Genereret<br> - - + + <b>From:</b> <b>Fra:</b> - + unknown ukendt - - - + + + <b>To:</b> <b>Til:</b> - + (yours, label: (din, etiket: - + (yours) (din) - - - - + + + + <b>Credit:</b> <b>Kredit:</b> @@ -1066,44 +1071,44 @@ Adresse: %4 %1 bekræftelser
- + (%1 matures in %2 more blocks) (%1 modnes i %2 blokke mere) - + (not accepted) (ikke accepteret) - - - + + + <b>Debit:</b> <b>Debet:</b> - + <b>Transaction fee:</b> <b>Transaktionsgebyr:</b> - + <b>Net amount:</b> <b>Nettobeløb:</b> - + Message: Besked: - + Comment: Kommentar: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Genererede coins skal vente 120 blokke, før de kan blive brugt. Da du genererede denne blok blev det transmitteret til netværket, for at blive føjet til blokkæden. Hvis det mislykkes at komme ind i kæden, vil den skifte til "ikke godkendt", og ikke blive kunne bruges. Dette kan lejlighedsvis ske, hvis en anden node genererer en blok inden for få sekunder af din. diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index fe4dbfbff2..22a289ffb3 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -146,7 +146,7 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Brieftasche verschlüsseln
- + Wallet passphrase was successfully changed. Die Passphrase der Brieftasche wurde erfolgreich geändert. @@ -182,20 +182,25 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open
- - - + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + Wallet encryption failed Verschlüsselung der Brieftasche fehlgeschlagen - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Die Verschlüsselung der Brieftasche ist aufgrund eines internen Fehlers fehlgeschlagen. Ihre Brieftasche wurde nicht verschlüsselt. - + Wallet encrypted Brieftasche verschlüsselt @@ -205,31 +210,31 @@ Dieses Produkt enthält Software, die vom OpenSSL Projekt zur Verwendung im Open Dieser Vorgang benötigt Ihre Passphrase um die Brieftasche zu entsperren.
- + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Verschlüsselung Ihrer Brieftasche nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadsoftware schützt, die Ihren Computer befällt. - - + + The supplied passphrases do not match. Die eingegebenen Passphrasen stimmen nicht überein. - - - + + + The passphrase entered for the wallet decryption was incorrect. Die eingegebene Passphrase zum Entschlüsseln der Brieftasche war nicht korrekt. - + Wallet decryption failed Entschlüsselung der Brieftasche fehlgeschlagen - - + + Warning: The Caps Lock key is on. Warnung: Die Feststelltaste ist aktiviert. @@ -250,7 +255,7 @@ Are you sure you wish to encrypt your wallet? Verschlüsselung der Brieftasche bestätigen - + Wallet unlock failed Entsperrung der Brieftasche fehlgeschlagen @@ -827,7 +832,7 @@ Adresse: %4 - &Send + S&end &Überweisen @@ -1013,38 +1018,38 @@ Adresse: %4 <b>Quelle:</b> Generiert<br> - - + + <b>From:</b> <b>Von:</b> - - - + + + <b>To:</b> <b>An:</b> - + (yours, label: (Eigene Adresse, Bezeichnung: - + (yours) (Eigene Adresse) - - - - + + + + <b>Credit:</b> <b>Gutschrift:</b> - + (%1 matures in %2 more blocks) %1 (reift noch %2 weitere Blöcke) @@ -1064,44 +1069,44 @@ Adresse: %4 , wurde noch nicht erfolgreich übertragen - + unknown unbekannt - + (not accepted) (nicht angenommen) - - - + + + <b>Debit:</b> <b>Belastung:</b> - + <b>Transaction fee:</b> <b>Transaktionsgebühr:</b> - + <b>Net amount:</b> <b>Nettobetrag:</b> - + Message: Nachricht: - + Comment: Kommentar: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Generierte Bitcoins müssen 120 Blöcke lang warten, bevor sie ausgegeben werden können. Als Sie diesen Block generierten, wurde er an das Netzwerk übertragen, um ihn der Blockkette hinzuzufügen. Falls dies fehlschlägt wird der Status in "nicht angenommen" geändert und der Betrag wird nicht verfügbar werden. Das kann gelegentlich passieren, wenn ein anderer Knoten einen Block zur selben Zeit wie Sie generierte. diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index e95625e202..63485cd65a 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -192,59 +192,64 @@ Are you sure you wish to encrypt your wallet? - + Wallet encrypted - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - - - + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + Wallet encryption failed - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - - + + The supplied passphrases do not match. - + Wallet unlock failed - - - + + + The passphrase entered for the wallet decryption was incorrect. - + Wallet decryption failed - + Wallet passphrase was successfully changed. - - + + Warning: The Caps Lock key is on. @@ -838,7 +843,7 @@ Address: %4 - &Send + S&end @@ -1019,80 +1024,80 @@ Address: %4 - - + + <b>From:</b> - + unknown - - - + + + <b>To:</b> - + (yours, label: - + (yours) - - - - + + + + <b>Credit:</b> - + (%1 matures in %2 more blocks) - + (not accepted) - - - + + + <b>Debit:</b> - + <b>Transaction fee:</b> - + <b>Net amount:</b> - + Message: - + Comment: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index d687c2e2d3..198ca7796a 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -144,8 +144,8 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Para desbloquear el monedero esta operación necesita de su contraseña. - - + + The supplied passphrases do not match. Las contraseñas no coinciden. @@ -160,14 +160,14 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Cambiar contraseña: - - - + + + 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 @@ -203,16 +203,21 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. - + Wallet encrypted Monedero cifrado - - - Warning: The Caps Lock key is on. + + 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. + Aviso: ¡La tecla de bloqueo de mayúsculas está activada! + Decrypt wallet @@ -224,12 +229,12 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Cambiar contraseña - + 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. - + Wallet passphrase was successfully changed. La contraseña de cartera ha sido cambiada con exit. @@ -241,20 +246,20 @@ Are you sure you wish to encrypt your wallet? ¿Seguro que quieres seguir encriptando la cartera? - + Wallet unlock failed Ha fallado el desbloqueo del monedero - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerda que encriptando tu cartera no garantiza mantener a salvo tus bitcoins en caso de tener viruses en el ordenador. - - - - + + + + Wallet encryption failed Ha fallado el cifrado del monedero @@ -552,7 +557,7 @@ Dirección: %4 A fatal error occurred. Bitcoin can no longer continue safely and will quit. - + Ha ocurrido un error crítico. Bitcoin ya no puede continuar con seguridad y se cerrará. @@ -831,7 +836,7 @@ Dirección: %4 - &Send + S&end &Envía @@ -1027,40 +1032,40 @@ Dirección: %4 <b>Fuente:</b> Generado<br> - - + + <b>From:</b> <b>De:</b> - - - + + + <b>To:</b> <b>Para:</b> - + (yours, label: (tuya, etiqueta: - + (yours) (tuya) - + Message: Mensaje: - + Comment: Comentario: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Las monedas generadas deben esperar 120 bloques antes de ser gastadas. Cuando has generado este bloque se emitió a la red para ser agregado en la cadena de bloques. Si falla al incluirse en la cadena, cambiará a "no aceptado" y las monedas no se podrán gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque casi al mismo tiempo que el tuyo. @@ -1070,42 +1075,42 @@ Dirección: %4 %1/no confirmado - + unknown desconocido - - - - + + + + <b>Credit:</b> <b>Crédito:</b> - + (%1 matures in %2 more blocks) (%1 madura en %2 bloques mas) - + (not accepted) (no aceptada) - - - + + + <b>Debit:</b> <b>Débito:</b> - + <b>Transaction fee:</b> <b>Comisión transacción:</b> - + <b>Net amount:</b> <b>Cantidad total:</b> @@ -1488,13 +1493,13 @@ Dirección: %4 Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000) - + Búfer de recepción máximo por conexión, <n>*1000 bytes (predeterminado: 10000) Maximum per-connection send buffer, <n>*1000 bytes (default: 10000) - + Búfer de recepción máximo por conexión, , <n>*1000 bytes (predeterminado: 10000) diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index 43a8c3adf0..9c605c58d3 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -149,10 +149,10 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Introduce contraseña actual - - - - + + + + Wallet encryption failed Falló la codificación de la billetera @@ -162,8 +162,8 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Repite nueva contraseña: - - + + The supplied passphrases do not match. Las contraseñas no coinciden. @@ -178,9 +178,9 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Introduce la nueva contraseña para la billetera.<br/>Por favor utiliza un contraseña <b>de 10 o mas caracteres aleatorios</b>, u <b>ocho o mas palabras</b>. - - - + + + The passphrase entered for the wallet decryption was incorrect. La contraseña introducida para decodificar la billetera es incorrecta. @@ -215,22 +215,27 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Esta operación necesita la contraseña para decodificar la billetara. - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus bitcoins de ser robados por malware que infecte su computador - + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + Wallet unlock failed Ha fallado el desbloqueo de la billetera - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. La codificación de la billetera falló debido a un error interno. Tu billetera no ha sido codificada. - + Wallet decryption failed Ha fallado la decodificación de la billetera @@ -242,19 +247,19 @@ Are you sure you wish to encrypt your wallet? ¿Seguro que quieres seguir codificando la billetera? - + Wallet passphrase was successfully changed. La contraseña de billetera ha sido cambiada con éxito. - - + + Warning: The Caps Lock key is on. Precaucion: Mayúsculas Activadas - + Wallet encrypted Billetera codificada @@ -836,7 +841,7 @@ Dirección: %4 - &Send + S&end &Envía @@ -977,7 +982,7 @@ Dirección: %4 TransactionDesc - + unknown desconocido @@ -1032,58 +1037,58 @@ Dirección: %4 <b>Fuente:</b> Generado<br> - - + + <b>From:</b> <b>De:</b> - - - + + + <b>To:</b> <b>Para:</b> - + (yours, label: (tuya, etiqueta: - - - - + + + + <b>Credit:</b> <b>Crédito:</b> - + <b>Transaction fee:</b> <b>Comisión transacción:</b> - + <b>Net amount:</b> <b>Cantidad total:</b> - + Comment: Comentario: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Las monedas generadas deben esperar 120 bloques antes de ser gastadas. Cuando has generado este bloque se emitió a la red para ser agregado en la cadena de bloques. Si falla al incluirse en la cadena, cambiará a "no aceptado" y las monedas no se podrán gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque casi al mismo tiempo que el tuyo. - + (yours) (tuya) - + (%1 matures in %2 more blocks) (%1 madura en %2 bloques mas) @@ -1093,19 +1098,19 @@ Dirección: %4 %1/no confirmado - + (not accepted) (no aceptada) - - - + + + <b>Debit:</b> <b>Débito:</b> - + Message: Mensaje: diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index 12cc66b346..50b8610f14 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -146,26 +146,26 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt - + Wallet encrypted Tárca kódolva - - - - + + + + Wallet encryption failed Tárca kódolása sikertelen. - - + + The supplied passphrases do not match. A megadott jelszavak nem egyeznek. - + Wallet unlock failed Tárca megnyitása sikertelen @@ -195,13 +195,18 @@ Ez a termék az OpenSSL Project által lett kifejlesztve az OpenSSL Toolkit (htt Írd be a tárca régi és új jelszavát. - + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + Wallet decryption failed Dekódolás sikertelen. - - + + Warning: The Caps Lock key is on. @@ -223,7 +228,7 @@ Biztosan kódolni akarod a tárcát? Írd be az új jelszót a tárcához.<br/>Használj legalább 10<br/>véletlenszerű karaktert</b> vagy <b>legalább nyolc szót</b>. - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Tárca kódolása belső hiba miatt sikertelen. A tárcád nem lett kódolva. @@ -233,19 +238,19 @@ Biztosan kódolni akarod a tárcát? Tárca dekódolása - - - + + + The passphrase entered for the wallet decryption was incorrect. Hibás jelszó. - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin will close now to finish the encryption process. Ne feledd, hogy a tárca titkosítása sem nyújt teljes védelmet az adathalász programok fertőzésével szemben. - + Wallet passphrase was successfully changed. Jelszó megváltoztatva. @@ -826,7 +831,7 @@ Cím: %4 - &Send + S&end &Küldés @@ -1020,80 +1025,80 @@ Cím: %4 <b>Forrás:</b> Generálva<br> - - + + <b>From:</b> <b>Űrlap:</b> - + unknown ismeretlen - - - + + + <b>To:</b> <b>Címzett:</b> - + Comment: Megjegyzés: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. A frissen generált érméket csak 120 blokkal később tudod elkölteni. Ez a blokk nyomban szétküldésre került a hálózatba, amint legeneráltad, hogy hozzáadhassák a blokklánchoz. Ha nem kerül be a láncba, úgy az állapota "elutasítva"-ra módosul, és nem költheted el az érméket. Ez akkor következhet be időnként, ha egy másik csomópont mindössze néhány másodperc különbséggel generált le egy blokkot a tiédhez képest. - + (yours, label: (tiéd, címke: - + (yours) (tiéd) - + (%1 matures in %2 more blocks) (%1, %2 múlva készül el) - - - - + + + + <b>Credit:</b> <b>Jóváírás</b> - + (not accepted) (elutasítva) - - - + + + <b>Debit:</b> <b>Terhelés</b> - + <b>Transaction fee:</b> <b>Tranzakciós díj:</b> - + <b>Net amount:</b> <b>Nettó összeg:</b> - + Message: Üzenet: diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts index c76be020fa..927f3b898f 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -141,10 +141,10 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Inserisci la passphrase - - - - + + + + Wallet encryption failed Cifratura del portamonete fallita @@ -154,15 +154,15 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Ripeti la passphrase - - + + The supplied passphrases do not match. Le passphrase inserite non corrispondono. - - - + + + The passphrase entered for the wallet decryption was incorrect. La passphrase inserita per la decifrazione del portamonete è errata. @@ -210,22 +210,27 @@ Si è sicuri di voler cifrare il portamonete? - + Wallet encrypted Portamonete cifrato - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin verrà ora chiuso per finire il processo di crittazione. Ricorda che criptare il tuo portamonete non può fornire una protezione totale contro furti causati da malware che dovessero infettare il tuo computer. - + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Cifratura del portamonete fallita a causa di un errore interno. Il portamonete non è stato cifrato. - + Wallet unlock failed Sblocco del portamonete fallito @@ -235,7 +240,7 @@ Si è sicuri di voler cifrare il portamonete? Cambia la passphrase - + Wallet decryption failed Decifrazione del portamonete fallita @@ -245,13 +250,13 @@ Si è sicuri di voler cifrare il portamonete? Conferma la cifratura del portamonete - + Wallet passphrase was successfully changed. Passphrase del portamonete modificata con successo. - - + + Warning: The Caps Lock key is on. Attenzione: tasto Blocco maiuscole attivo. @@ -823,16 +828,16 @@ Indirizzo: %4 Confirm the send action Conferma la spedizione + + + S&end + &Spedisci + 123.456 BTC 123,456 BTC - - - &Send - &Spedisci - <b>%1</b> to %2 (%3) @@ -976,7 +981,7 @@ Indirizzo: %4 TransactionDesc - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Bisogna attendere 120 blocchi prima di spendere I bitcoin generati. Quando è stato generato questo blocco, è stato trasmesso alla rete per aggiungerlo alla catena di blocchi. Se non riesce a entrare nella catena, verrà modificato in "non accettato" e non sarà spendibile. Questo può accadere a volte, se un altro nodo genera un blocco entro pochi secondi del tuo. @@ -1026,65 +1031,65 @@ Indirizzo: %4 <b>Fonte:</b> Generato<br> - - + + <b>From:</b> <b>Da:</b> - - - + + + <b>To:</b> <b>Per:</b> - + (yours, label: (vostro, etichetta: - + (yours) (vostro) - - - - + + + + <b>Credit:</b> <b>Credito:</b> - + (%1 matures in %2 more blocks) (%1 matura in altri %2 blocchi) - + (not accepted) (non accettate) - - - + + + <b>Debit:</b> <b>Debito:</b> - + <b>Transaction fee:</b> <b>Tranzakciós díj:</b> - + <b>Net amount:</b> <b>Importo netto:</b> - + Message: Messaggio: @@ -1099,12 +1104,12 @@ Indirizzo: %4 %1 conferme - + unknown sconosciuto - + Comment: Commento: diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index fc24926303..c6a975d33d 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -158,7 +158,7 @@ Are you sure you wish to encrypt your wallet? Er du sikker på at du vil kryptere lommeboken? - + Wallet unlock failed Opplåsing av lommebok feilet @@ -168,7 +168,7 @@ Er du sikker på at du vil kryptere lommeboken? Skriv inn den nye adgangsfrasen for lommeboken.<br/>Vennligst bruk en adgangsfrase med <b>10 eller flere tilfeldige tegn</b>, eller <b>åtte eller flere ord</b>. - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. @@ -178,10 +178,10 @@ Er du sikker på at du vil kryptere lommeboken? Denne operasjonen krever adgangsfrasen til lommeboken for å låse den opp. - - - - + + + + Wallet encryption failed Kryptering av lommebok feilet @@ -211,42 +211,47 @@ Er du sikker på at du vil kryptere lommeboken? Lås opp lommebok - - - + + 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. + + + + + + The passphrase entered for the wallet decryption was incorrect. Adgangsfrasen angitt for dekryptering av lommeboken var feil. - + Wallet passphrase was successfully changed. Adgangsfrase for lommebok endret. - + Wallet encrypted Lommebok kryptert - + Wallet decryption failed Dekryptering av lommebok feilet - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Kryptering av lommebok feilet på grunn av en intern feil. Din lommebok ble ikke kryptert. - - + + The supplied passphrases do not match. De angitte adgangsfrasene er ulike. - - + + Warning: The Caps Lock key is on. Advarsel: Caps lock tasten er på. @@ -884,8 +889,8 @@ Adresse: %4 - &Send - &Send + S&end + @@ -1015,38 +1020,38 @@ Adresse: %4 <b>Kilde:</b> Generert<br> - - + + <b>From:</b> <b>Fra:</b> - - - + + + <b>To:</b> <b>Til:</b> - + (yours, label: (din, merkelapp: - + (yours) (din) - - - - + + + + <b>Credit:</b> <b>Kredit:</b> - + (%1 matures in %2 more blocks) (%1 modnes om %2 flere blokker) @@ -1066,44 +1071,44 @@ Adresse: %4 , har ikke blitt kringkastet uten problemer enda. - + unknown ukjent - + (not accepted) (ikke akseptert) - - - + + + <b>Debit:</b> <b>Debet:</b> - + <b>Transaction fee:</b> <b>Transaksjonsgebyr:</b> - + <b>Net amount:</b> <b>Nettobeløp:</b> - + Message: Melding: - + Comment: Kommentar: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Genererte mynter må vente 120 blokker før de kan brukes. Da du genererte denne blokken ble den kringkastet på nettverket for å bli lagt til i kjeden av blokker. Hvis den ikke kommer med i kjeden vil den endre seg til "ikke akseptert og pengene vil ikke kunne brukes. Dette vil noen ganger skje hvis en annen node genererer en blokk noen sekunder i tid fra din egen. diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index ba04310352..a93bf38a75 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -147,7 +147,7 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Versleutel portemonnee - + Wallet passphrase was successfully changed. Portemonneewachtwoord is met succes gewijzigd. @@ -183,20 +183,25 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d - - - + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + Wallet encryption failed 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. - + Wallet encrypted Portemonnee versleuteld @@ -206,31 +211,31 @@ Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in d Deze operatie vereist uw portemonneewachtwoord om de portemonnee te openen. - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. - - + + The supplied passphrases do not match. De opgegeven wachtwoorden komen niet overeen - - - + + + 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 - - + + Warning: The Caps Lock key is on. Waarschuwing: De Caps-Lock-toets staat aan. @@ -252,7 +257,7 @@ Bent u er zeker van uw dat u uw portemonnee wilt versleutelen? Bevestig versleuteling van de portemonnee - + Wallet unlock failed Portemonnee openen mislukt @@ -830,7 +835,7 @@ Adres: %4 - &Send + S&end &Verstuur @@ -1021,25 +1026,25 @@ Adres: %4 <b>Bron:</b>Gegenereerd<br> - - + + <b>From:</b> <b>Van:</b> - - - + + + <b>To:</b> <b>Aan:</b> - + (yours, label: (Uw adres, label: - + (yours) (uw) @@ -1054,57 +1059,57 @@ Adres: %4 , is nog niet met succes uitgezonden - + unknown onbekend - - - - + + + + <b>Credit:</b> <b>Bij:</b> - + (%1 matures in %2 more blocks) (%1 komt beschikbaar na %2 blokken) - + (not accepted) (niet geaccepteerd) - - - + + + <b>Debit:</b> <b>Af:</b> - + <b>Transaction fee:</b> <b>Transactiekosten:</b> - + <b>Net amount:</b> <b>Netto bedrag:</b> - + Message: Bericht: - + Comment: Opmerking: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Gegeneerde munten moeten 120 blokken wachten voor ze kunnen worden uitgegeven. Uw net gegenereerde blok is uitgezonden aan het netwerk om te worden toegevoegd aan de blokkenketen. Als het niet wordt geaccepteerd in de keten, zal het blok als "ongeldig" worden aangemerkt en kan het niet worden uitgegeven. Dit kan soms gebeuren als een andere node net iets sneller een blok heeft gegenereerd; een paar seconden voor het uwe. diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index 568de45ca0..f73a7184b6 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -140,18 +140,18 @@ This product includes software developed by the OpenSSL Project for use in the O TextoDoRótulo - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. A criptografia da carteira falhou devido a um erro interno. Sua carteira não estava criptografada. - + Wallet unlock failed A abertura da carteira falhou - - + + The supplied passphrases do not match. A frase de segurança fornecida não confere. @@ -161,7 +161,7 @@ This product includes software developed by the OpenSSL Project for use in the O Esta operação precisa de sua frase de segurança para desbloquear a carteira. - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. O Bitcoin irá fechar agora para finalizar o processo de encriptação. Lembre-se de que encriptar sua carteira não protege totalmente suas bitcoins de serem roubadas por malwares que tenham infectado o seu computador. @@ -181,14 +181,14 @@ This product includes software developed by the OpenSSL Project for use in the O Digite a nova frase de seguraça da sua carteira. <br/> Por favor, use uma frase de <b>10 ou mais caracteres aleatórios,</b> ou <b>oito ou mais palavras.</b> - + Wallet decryption failed A descriptografia da carteira falhou - - - + + + The passphrase entered for the wallet decryption was incorrect. A frase de segurança digitada para a descriptografia da carteira estava incorreta. @@ -215,18 +215,23 @@ Are you sure you wish to encrypt your wallet? - + Wallet encrypted Carteira criptografada - + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + Wallet passphrase was successfully changed. A frase de segurança da carteira foi alterada com êxito. - - + + Warning: The Caps Lock key is on. @@ -241,10 +246,10 @@ Are you sure you wish to encrypt your wallet? Desbloquear carteira - - - - + + + + Wallet encryption failed A criptografia da carteira falhou @@ -836,8 +841,8 @@ Endereço: %4 - &Send - &Send + S&end + @@ -967,7 +972,7 @@ Endereço: %4 TransactionDesc - + unknown unknown @@ -1012,60 +1017,60 @@ Endereço: %4 <b>Source:</b> Generated<br> - - + + <b>From:</b> <b>From:</b> - - - + + + <b>To:</b> <b>To:</b> - + (yours, label: (yours, label: - + (yours) (yours) - - - - + + + + <b>Credit:</b> <b>Credit:</b> - + (%1 matures in %2 more blocks) (%1 matures in %2 more blocks) - + (not accepted) (not accepted) - - - + + + <b>Debit:</b> <b>Debit:</b> - + <b>Transaction fee:</b> <b>Transaction fee:</b> - + <b>Net amount:</b> <b>Net amount:</b> @@ -1080,17 +1085,17 @@ Endereço: %4 %1 confirmations - + Message: Message: - + Comment: Comment: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts index 7b0f5436de..97210a2ae5 100644 --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -141,10 +141,10 @@ This product includes software developed by the OpenSSL Project for use in the O TextLabel - - - - + + + + Wallet encryption failed Не удалось зашифровать бумажник @@ -154,19 +154,19 @@ This product includes software developed by the OpenSSL Project for use in the O Сменить пароль - + Wallet decryption failed Расшифрование бумажника не удалось - + Wallet unlock failed Разблокировка бумажника не удалась - - - + + + The passphrase entered for the wallet decryption was incorrect. Указанный пароль не подходит. @@ -186,12 +186,12 @@ This product includes software developed by the OpenSSL Project for use in the O Разблокировать бумажник - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши биткоины от кражи с помощью инфицирования вашего компьютера вредоносным ПО. - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Шифрование бумажника не удалось из-за внутренней ошибки. Ваш бумажник не был зашифрован. @@ -202,12 +202,12 @@ This product includes software developed by the OpenSSL Project for use in the O - + Wallet encrypted Бумажник зашифрован - + Wallet passphrase was successfully changed. Пароль бумажника успешно изменён. @@ -244,14 +244,19 @@ 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. + + + + + The supplied passphrases do not match. Введённые пароли не совпадают. - - + + Warning: The Caps Lock key is on. Внимание: Caps Lock включен. @@ -839,7 +844,7 @@ Address: %4 - &Send + S&end &Отправить @@ -1020,43 +1025,43 @@ Address: %4 <b>Источник:</b> [сгенерированно]<br> - - + + <b>From:</b> <b>Отправитель:</b> - + unknown неизвестно - - - + + + <b>To:</b> <b>Получатель:</b> - + (yours, label: (Ваш, метка: - + (yours) (ваш) - - - - + + + + <b>Credit:</b> <b>Кредит:</b> - + (%1 matures in %2 more blocks) (%1 станет доступно через %2 блоков) @@ -1076,39 +1081,39 @@ Address: %4 , ещё не было успешно разослано - + (not accepted) (не принято) - - - + + + <b>Debit:</b> <b>Дебет:</b> - + <b>Transaction fee:</b> <b>Комиссия:</b> - + <b>Net amount:</b> <b>Общая сумма:</b> - + Comment: Комментарий: - + Message: Сообщение: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Сгенерированные монеты должны подождать 120 блоков прежде, чем они смогут быть отправлены. Когда Вы сгенерировали этот блок он был отправлен в сеть, чтобы он был добавлен к цепочке блоков. Если данная процедура не удастся, статус изменится на «не подтверждено» и монеты будут непередаваемыми. Такое может случайно происходить в случае, если другой узел сгенерирует блок на несколько секунд раньше. diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts index f317ff46cd..ce5abe032b 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -136,18 +136,18 @@ This product includes software developed by the OpenSSL Project for use in the O Дешифрувати гаманець - - + + The supplied passphrases do not match. Введені паролі не співпадають. - + Wallet unlock failed Не вдалося розблокувати гаманець - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам’ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від кражі, у випадку якщо ваш комп’ютер буде інфіковано шкідливими програмами. @@ -203,26 +203,31 @@ This product includes software developed by the OpenSSL Project for use in the O - - - + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + Wallet encryption failed Не вдалося зашифрувати гаманець - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Виникла помилка під час шифрування гаманця. Ваш гаманець не було зашифровано. - - - + + + The passphrase entered for the wallet decryption was incorrect. Введений пароль є невірним. - + Wallet decryption failed Не вдалося розшифрувати гаманець @@ -235,18 +240,18 @@ Are you sure you wish to encrypt your wallet? - + Wallet encrypted Гаманець зашифровано - + Wallet passphrase was successfully changed. Пароль було успішно змінено. - - + + Warning: The Caps Lock key is on. Увага: Ввімкнено Caps Lock @@ -859,7 +864,7 @@ Address: %4 - &Send + S&end &Відправити @@ -1020,57 +1025,57 @@ Address: %4 <b>Джерело:</b> згенеровано<br> - - + + <b>From:</b> <b>Відправник:</b> - + unknown невідомий - - - + + + <b>To:</b> <b>Одержувач:</b> - + (yours) (ваша) - + (%1 matures in %2 more blocks) (%1 «дозріє» через %2 блоків) - - - + + + <b>Debit:</b> <b>Дебет:</b> - + <b>Net amount:</b> <b>Загальна сума:</b> - + Message: Повідомлення: - + Comment: Коментар: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Після генерації монет, потрібно зачекати 120 блоків, перш ніж їх можна буде використати. Коли ви згенерували цей блок, його було відправлено в мережу для того, щоб він був доданий до ланцюжка блоків. Якщо ця процедура не вдасться, статус буде змінено на «не підтверджено» і ви не зможете потратити згенеровані монету. Таке може статись, якщо хтось інший згенерував блок на декілька секунд раніше. @@ -1090,25 +1095,25 @@ Address: %4 %1/не підтверджено - + (yours, label: (Ваша, мітка: - - - - + + + + <b>Credit:</b> <b>Кредит:</b> - + (not accepted) (не прийнято) - + <b>Transaction fee:</b> <b>Комісія за переказ:</b> diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index cf440de916..e8e8e2e2db 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -161,7 +161,7 @@ This product includes software developed by the OpenSSL Project for use in the O 输入钱包的新口令。<br/>使用的口令请至少包含<b>10个以上随机字符</>,或者是<b>8个以上的单词</b>。 - + Wallet decryption failed 钱包解密失败。 @@ -182,38 +182,43 @@ This product includes software developed by the OpenSSL Project for use in the O - + Wallet encrypted 钱包已加密 - - - + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + Wallet encryption failed 钱包加密失败 - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. 由于一个本地错误,加密钱包操作已经失败。您的钱包没有被加密。 - - + + The supplied passphrases do not match. 口令不匹配。 - + Wallet unlock failed 钱包解锁失败 - - - + + + The passphrase entered for the wallet decryption was incorrect. 用于解密钱包的口令不正确。 @@ -240,18 +245,18 @@ Are you sure you wish to encrypt your wallet? 确定要加密钱包吗? - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. 将关闭软件以完成加密过程。 请您谨记:钱包加密并不是万能的,电脑中毒,您的比特币还是有可能丢失。 - + Wallet passphrase was successfully changed. 钱包口令修改成功 - - + + Warning: The Caps Lock key is on. 警告:大写锁定键CapsLock开启 @@ -834,7 +839,7 @@ Address: %4 - &Send + S&end &发送 @@ -970,7 +975,7 @@ Address: %4 TransactionDesc - + <b>Net amount:</b> <b>网络金额:</b> @@ -980,19 +985,19 @@ Address: %4 <b>日期:</b> - + unknown 未知 - + (yours, label: (您的, 标签: - - - + + + <b>To:</b> <b>到:</b> @@ -1027,26 +1032,26 @@ Address: %4 <b>来源:</b> 生成<br> - - + + <b>From:</b> <b>从:</b> - + (yours) (您的) - - - - + + + + <b>Credit:</b> <b>到帐:</b> - + (%1 matures in %2 more blocks) (%1 成熟于 %2 以上数据块) @@ -1071,34 +1076,34 @@ Address: %4 %1 确认项 - + (not accepted) (未接受) - - - + + + <b>Debit:</b> 支出 - + <b>Transaction fee:</b> 交易费 - + Message: 消息: - + Comment: 备注 - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. 新生产的比特币必须等待120个数据块之后才能被使用. 当您生产出此数据块,它将被广播至比特币网络并添加至数据链. 如果添加到数据链失败, 它的状态将变成"不被接受",生产的比特币将不能使用. 在您生产新数据块的几秒钟内, 如果其它节点也生产出同样的数据块,有可能会发生这种情况. diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index 14d4eba51e..d448b72d9c 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -166,12 +166,12 @@ This product includes software developed by the OpenSSL Project for use in the O 輸入錢包的新密碼.<br/>請用<b>10個以上的字元</b>, 或是<b>8個以上的單字</b>. - + Wallet encryption failed due to an internal error. Your wallet was not encrypted. 錢包加密因程式內部有誤而失敗. 你的錢包還是沒有加密. - + Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. 位元幣現在要關閉以完成加密程序. 請記住, 加密錢包無法完全防止入侵電腦的惡意程式偷取你的位元幣. @@ -182,12 +182,12 @@ This product includes software developed by the OpenSSL Project for use in the O - + Wallet encrypted 錢包已加密 - + Wallet decryption failed 錢包解密失敗 @@ -197,7 +197,7 @@ This product includes software developed by the OpenSSL Project for use in the O 這個動作需要用你的錢包密碼來解密 - + Wallet passphrase was successfully changed. 錢包密碼變更成功. @@ -208,33 +208,38 @@ This product includes software developed by the OpenSSL Project for use in the O - - - + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + Wallet encryption failed 錢包加密失敗 - - + + The supplied passphrases do not match. 提供的密碼不符. - + Wallet unlock failed 錢包解鎖失敗 - - - + + + The passphrase entered for the wallet decryption was incorrect. 用來解密錢包的密碼輸入錯誤. - - + + Warning: The Caps Lock key is on. 警告: 鍵盤輸入鎖定為大寫字母中. @@ -821,16 +826,16 @@ Address: %4 Confirm the send action 確認付款動作 + + + S&end + 付出 + 123.456 BTC 123.456 BTC - - - &Send - 付出 - and @@ -1019,43 +1024,43 @@ Address: %4 <b>來源:</b> 生產所得<br> - - + + <b>From:</b> <b>來自:</b> - - - + + + <b>To:</b> <b>目的:</b> - + (yours, label: (你的, 標記為: - + (yours) (你的) - - - - + + + + <b>Credit:</b> <b>入帳:</b> - + (%1 matures in %2 more blocks) (%1 將在 %2 個區塊產出後熟成) - + (not accepted) (不被接受) @@ -1065,39 +1070,39 @@ Address: %4 在 %1 前未定 - + unknown 未知 - - - + + + <b>Debit:</b> <b>出帳:</b> - + <b>Transaction fee:</b> <b>交易手續費:</b> - + <b>Net amount:</b> <b>淨額:</b> - + Message: 訊息: - + Comment: 附註: - + Generated coins must wait 120 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, it will change to "not accepted" and not be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. 生產出來的錢要再等 120 個區塊產出之後, 才能夠花用. 當你產出區塊時, 它會被公布到網路上, 以被串連至區塊鎖鏈. 如果串連失敗了, 它的狀態就會變成"不被接受", 且不能被花用. 當你產出區塊的幾秒鐘內, 其他節點也產出了區塊的話, 有時候就會發生這種情形. -- cgit v1.2.3