Skip to content

Commit

Permalink
Fix spelling mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchellCash committed Apr 3, 2015
1 parent 0d3672e commit b8837fe
Show file tree
Hide file tree
Showing 60 changed files with 166 additions and 166 deletions.
4 changes: 2 additions & 2 deletions src/addrman.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ class CAddrInfo : public CAddress
// where knowledge about this address first came from
CNetAddr source;

// last succesfull connection by us
// last successfull 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)
Expand Down
8 changes: 4 additions & 4 deletions src/base58.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ inline std::string EncodeBase58(const std::vector<unsigned char>& 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<unsigned char>& vchRet)
{
CAutoBN_CTX pctx;
Expand Down Expand Up @@ -121,7 +121,7 @@ inline bool DecodeBase58(const char* psz, std::vector<unsigned char>& 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<unsigned char>& vchRet)
{
return DecodeBase58(str.c_str(), vchRet);
Expand All @@ -141,7 +141,7 @@ inline std::string EncodeBase58Check(const std::vector<unsigned char>& 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<unsigned char>& vchRet)
{
if (!DecodeBase58(psz, vchRet))
Expand All @@ -162,7 +162,7 @@ inline bool DecodeBase58Check(const char* psz, std::vector<unsigned char>& 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<unsigned char>& vchRet)
{
return DecodeBase58Check(str.c_str(), vchRet);
Expand Down
2 changes: 1 addition & 1 deletion src/bitcoinrpc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3830,7 +3830,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;
Expand Down
2 changes: 1 addition & 1 deletion src/net.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1501,7 +1501,7 @@ void ThreadOpenAddedConnections2(void* parg)
}
}

// if succesful, this moves the passed grant to the constructed node
// if successful, this moves the passed grant to the constructed node
bool OpenNetworkConnection(const CAddress& addrConnect, CSemaphoreGrant *grantOutbound, const char *strDest, bool fOneShot)
{
//
Expand Down
2 changes: 1 addition & 1 deletion src/qt/askpassphrasedialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,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
Expand Down
2 changes: 1 addition & 1 deletion src/qt/bitcoin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,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. Paycoin 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. Paycoin can no longer continue safely and will quit.") + QString("\n\n") + QString::fromStdString(strMiscWarning));
exit(1);
}

Expand Down
2 changes: 1 addition & 1 deletion src/qt/bitcoinstrings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ QT_TRANSLATE_NOOP("bitcoin-core", ""
"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", "An error occurred while setting up the RPC port %i for listening: %s"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"You must set rpcpassword=<password> in the configuration file:\n"
"%s\n"
Expand Down
2 changes: 1 addition & 1 deletion src/qt/guiutil.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace GUIUtil
void setupAddressWidget(QLineEdit *widget, QWidget *parent);
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
bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out);
bool parseBitcoinURI(QString uri, SendCoinsRecipient *out);
Expand Down
6 changes: 3 additions & 3 deletions src/qt/locale/bitcoin_ar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ Are you sure you wish to encrypt your wallet?</source>
</message>
<message>
<location filename="../askpassphrasedialog.cpp" line="166"/>
<source>Wallet passphrase was succesfully changed.</source>
<source>Wallet passphrase was successfully changed.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -694,7 +694,7 @@ Address: %4
</message>
<message>
<location filename="../bitcoin.cpp" line="128"/>
<source>A fatal error occured. Paycoin can no longer continue safely and will quit.</source>
<source>A fatal error occurred. Paycoin can no longer continue safely and will quit.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -3016,7 +3016,7 @@ If the file does not exist, create it with owner-readable-only file permissions.
</message>
<message>
<location filename="../bitcoinstrings.cpp" line="113"/>
<source>An error occured while setting up the RPC port %i for listening: %s</source>
<source>An error occurred while setting up the RPC port %i for listening: %s</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down
6 changes: 3 additions & 3 deletions src/qt/locale/bitcoin_ca-AD.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ Are you sure you wish to encrypt your wallet?</source>
</message>
<message>
<location filename="../askpassphrasedialog.cpp" line="166"/>
<source>Wallet passphrase was succesfully changed.</source>
<source>Wallet passphrase was successfully changed.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -676,7 +676,7 @@ Address: %4
</message>
<message>
<location filename="../bitcoin.cpp" line="128"/>
<source>A fatal error occured. Paycoin can no longer continue safely and will quit.</source>
<source>A fatal error occurred. Paycoin can no longer continue safely and will quit.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -2988,7 +2988,7 @@ If the file does not exist, create it with owner-readable-only file permissions.
</message>
<message>
<location filename="../bitcoinstrings.cpp" line="113"/>
<source>An error occured while setting up the RPC port %i for listening: %s</source>
<source>An error occurred while setting up the RPC port %i for listening: %s</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down
6 changes: 3 additions & 3 deletions src/qt/locale/bitcoin_ca_ES.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ Are you sure you wish to encrypt your wallet?</source>
</message>
<message>
<location filename="../askpassphrasedialog.cpp" line="166"/>
<source>Wallet passphrase was succesfully changed.</source>
<source>Wallet passphrase was successfully changed.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -676,7 +676,7 @@ Address: %4
</message>
<message>
<location filename="../bitcoin.cpp" line="128"/>
<source>A fatal error occured. Paycoin can no longer continue safely and will quit.</source>
<source>A fatal error occurred. Paycoin can no longer continue safely and will quit.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -2988,7 +2988,7 @@ If the file does not exist, create it with owner-readable-only file permissions.
</message>
<message>
<location filename="../bitcoinstrings.cpp" line="113"/>
<source>An error occured while setting up the RPC port %i for listening: %s</source>
<source>An error occurred while setting up the RPC port %i for listening: %s</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down
6 changes: 3 additions & 3 deletions src/qt/locale/bitcoin_cs-CZ.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ Are you sure you wish to encrypt your wallet?</source>
</message>
<message>
<location filename="../askpassphrasedialog.cpp" line="166"/>
<source>Wallet passphrase was succesfully changed.</source>
<source>Wallet passphrase was successfully changed.</source>
<translation>Heslo k peněžence bylo v pořádku změněno.</translation>
</message>
</context>
Expand Down Expand Up @@ -680,7 +680,7 @@ Adresa: %4
</message>
<message>
<location filename="../bitcoin.cpp" line="128"/>
<source>A fatal error occured. Paycoin can no longer continue safely and will quit.</source>
<source>A fatal error occurred. Paycoin can no longer continue safely and will quit.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -2992,7 +2992,7 @@ If the file does not exist, create it with owner-readable-only file permissions.
</message>
<message>
<location filename="../bitcoinstrings.cpp" line="113"/>
<source>An error occured while setting up the RPC port %i for listening: %s</source>
<source>An error occurred while setting up the RPC port %i for listening: %s</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down
6 changes: 3 additions & 3 deletions src/qt/locale/bitcoin_cs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ Are you sure you wish to encrypt your wallet?</source>
</message>
<message>
<location filename="../askpassphrasedialog.cpp" line="166"/>
<source>Wallet passphrase was succesfully changed.</source>
<source>Wallet passphrase was successfully changed.</source>
<translation>Heslo k peněžence bylo v pořádku změněno.</translation>
</message>
</context>
Expand Down Expand Up @@ -680,7 +680,7 @@ Adresa: %4
</message>
<message>
<location filename="../bitcoin.cpp" line="128"/>
<source>A fatal error occured. Paycoin can no longer continue safely and will quit.</source>
<source>A fatal error occurred. Paycoin can no longer continue safely and will quit.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -2992,7 +2992,7 @@ If the file does not exist, create it with owner-readable-only file permissions.
</message>
<message>
<location filename="../bitcoinstrings.cpp" line="113"/>
<source>An error occured while setting up the RPC port %i for listening: %s</source>
<source>An error occurred while setting up the RPC port %i for listening: %s</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down
6 changes: 3 additions & 3 deletions src/qt/locale/bitcoin_da.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ Are you sure you wish to encrypt your wallet?</source>
</message>
<message>
<location filename="../askpassphrasedialog.cpp" line="166"/>
<source>Wallet passphrase was succesfully changed.</source>
<source>Wallet passphrase was successfully changed.</source>
<translation>Tegnebogskodeord blev ændret.</translation>
</message>
</context>
Expand Down Expand Up @@ -674,7 +674,7 @@ Adresse: %4
</message>
<message>
<location filename="../bitcoin.cpp" line="128"/>
<source>A fatal error occured. Paycoin can no longer continue safely and will quit.</source>
<source>A fatal error occurred. Paycoin can no longer continue safely and will quit.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -3011,7 +3011,7 @@ If the file does not exist, create it with owner-readable-only file permissions.
</message>
<message>
<location filename="../bitcoinstrings.cpp" line="113"/>
<source>An error occured while setting up the RPC port %i for listening: %s</source>
<source>An error occurred while setting up the RPC port %i for listening: %s</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down
6 changes: 3 additions & 3 deletions src/qt/locale/bitcoin_de.ts
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ Sind Sie sich sicher, dass Sie Ihre Wallet verschlüsseln möchten?</translation
</message>
<message>
<location filename="../askpassphrasedialog.cpp" line="166"/>
<source>Wallet passphrase was succesfully changed.</source>
<source>Wallet passphrase was successfully changed.</source>
<translation>Die Passphrase der Brieftasche wurde erfolgreich geändert.</translation>
</message>
</context>
Expand Down Expand Up @@ -677,7 +677,7 @@ Adresse: %4</translation>
</message>
<message>
<location filename="../bitcoin.cpp" line="128"/>
<source>A fatal error occured. Paycoin can no longer continue safely and will quit.</source>
<source>A fatal error occurred. Paycoin can no longer continue safely and will quit.</source>
<translation>Ein fataler Fehler trat auf. Paycoin kann nicht mehr sicher fortfahren und wird sich beenden. </translation>
</message>
</context>
Expand Down Expand Up @@ -2994,7 +2994,7 @@ If the file does not exist, create it with owner-readable-only file permissions.
</message>
<message>
<location filename="../bitcoinstrings.cpp" line="113"/>
<source>An error occured while setting up the RPC port %i for listening: %s</source>
<source>An error occurred while setting up the RPC port %i for listening: %s</source>
<translation>Fehler beim setzen des RPC-Ports %i um %s abzuhören. </translation>
</message>
<message>
Expand Down
6 changes: 3 additions & 3 deletions src/qt/locale/bitcoin_el-GR.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ Are you sure you wish to encrypt your wallet?</source>
</message>
<message>
<location filename="../askpassphrasedialog.cpp" line="166"/>
<source>Wallet passphrase was succesfully changed.</source>
<source>Wallet passphrase was successfully changed.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -670,7 +670,7 @@ Address: %4
</message>
<message>
<location filename="../bitcoin.cpp" line="128"/>
<source>A fatal error occured. Paycoin can no longer continue safely and will quit.</source>
<source>A fatal error occurred. Paycoin can no longer continue safely and will quit.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -2980,7 +2980,7 @@ If the file does not exist, create it with owner-readable-only file permissions.
</message>
<message>
<location filename="../bitcoinstrings.cpp" line="113"/>
<source>An error occured while setting up the RPC port %i for listening: %s</source>
<source>An error occurred while setting up the RPC port %i for listening: %s</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down
6 changes: 3 additions & 3 deletions src/qt/locale/bitcoin_el_GR.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ Are you sure you wish to encrypt your wallet?</source>
</message>
<message>
<location filename="../askpassphrasedialog.cpp" line="166"/>
<source>Wallet passphrase was succesfully changed.</source>
<source>Wallet passphrase was successfully changed.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -670,7 +670,7 @@ Address: %4
</message>
<message>
<location filename="../bitcoin.cpp" line="128"/>
<source>A fatal error occured. Paycoin can no longer continue safely and will quit.</source>
<source>A fatal error occurred. Paycoin can no longer continue safely and will quit.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -2980,7 +2980,7 @@ If the file does not exist, create it with owner-readable-only file permissions.
</message>
<message>
<location filename="../bitcoinstrings.cpp" line="113"/>
<source>An error occured while setting up the RPC port %i for listening: %s</source>
<source>An error occurred while setting up the RPC port %i for listening: %s</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down
6 changes: 3 additions & 3 deletions src/qt/locale/bitcoin_en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ Are you sure you wish to encrypt your wallet?</source>
</message>
<message>
<location filename="../askpassphrasedialog.cpp" line="166"/>
<source>Wallet passphrase was succesfully changed.</source>
<source>Wallet passphrase was successfully changed.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -670,7 +670,7 @@ Address: %4
</message>
<message>
<location filename="../bitcoin.cpp" line="128"/>
<source>A fatal error occured. Paycoin can no longer continue safely and will quit.</source>
<source>A fatal error occurred. Paycoin can no longer continue safely and will quit.</source>
<translation type="unfinished"></translation>
</message>
</context>
Expand Down Expand Up @@ -2980,7 +2980,7 @@ If the file does not exist, create it with owner-readable-only file permissions.
</message>
<message>
<location filename="../bitcoinstrings.cpp" line="113"/>
<source>An error occured while setting up the RPC port %i for listening: %s</source>
<source>An error occurred while setting up the RPC port %i for listening: %s</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down
Loading

0 comments on commit b8837fe

Please sign in to comment.