Skip to content

Commit

Permalink
Update wrong text
Browse files Browse the repository at this point in the history
  • Loading branch information
marshalljp committed Sep 23, 2018
1 parent a6183d9 commit 4fd3d14
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion contrib/debian/examples/historia.conf
Expand Up @@ -110,7 +110,7 @@
# both prior transactions and several dozen future transactions.
#keypool=100

# Pay an optional transaction fee every time you send historias. Transactions with fees
# Pay an optional transaction fee every time you send HTA. Transactions with fees
# are more likely than free transactions to be included in generated blocks, so may
# be validated sooner.
#paytxfee=0.00
Expand Down
6 changes: 3 additions & 3 deletions contrib/spendfrom/spendfrom.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
# Use the raw transactions API to spend historias received on particular addresses,
# Use the raw transactions API to spend HTAs received on particular addresses,
# and send any change back to that same address.
#
# Example usage:
Expand Down Expand Up @@ -221,9 +221,9 @@ def main():

parser = optparse.OptionParser(usage="%prog [options]")
parser.add_option("--from", dest="fromaddresses", default=None,
help="addresses to get historias from")
help="addresses to get HTA from")
parser.add_option("--to", dest="to", default=None,
help="address to get send historias to")
help="address to get send HTA to")
parser.add_option("--amount", dest="amount", default=None,
help="amount to send")
parser.add_option("--fee", dest="fee", default="0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/qt/askpassphrasedialog.cpp
Expand Up @@ -124,7 +124,7 @@ void AskPassphraseDialog::accept()
"<qt>" +
tr("Historia Core will close now to finish the encryption process. "
"Remember that encrypting your wallet cannot fully protect "
"your historias from being stolen by malware infecting your computer.") +
"your HTA from being stolen by malware infecting your computer.") +
"<br><br><b>" +
tr("IMPORTANT: Any previous backups you have made of your wallet file "
"should be replaced with the newly generated, encrypted wallet file. "
Expand Down
4 changes: 2 additions & 2 deletions src/qt/locale/historia_en.ts
Expand Up @@ -237,8 +237,8 @@
</message>
<message>
<location line="-57"/>
<source>Historia Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your historias from being stolen by malware infecting your computer.</source>
<translation>Historia Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your historias from being stolen by malware infecting your computer.</translation>
<source>Historia Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your HTA from being stolen by malware infecting your computer.</source>
<translation>Historia Core will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your HTA from being stolen by malware infecting your computer.</translation>
</message>
<message>
<location line="+4"/>
Expand Down
6 changes: 3 additions & 3 deletions src/wallet/rpcwallet.cpp
Expand Up @@ -1043,7 +1043,7 @@ UniValue sendmany(const UniValue& params, bool fHelp)
"5. \"comment\" (string, optional) A comment\n"
"6. subtractfeefromamount (string, optional) A json array with addresses.\n"
" The fee will be equally deducted from the amount of each selected address.\n"
" Those recipients will receive less historias than you enter in their corresponding amount field.\n"
" Those recipients will receive less HTA than you enter in their corresponding amount field.\n"
" If no addresses are specified here, the sender pays the fee.\n"
" [\n"
" \"address\" (string) Subtract fee from this address\n"
Expand Down Expand Up @@ -2013,7 +2013,7 @@ UniValue walletpassphrase(const UniValue& params, bool fHelp)
throw runtime_error(
"walletpassphrase \"passphrase\" timeout ( mixingonly )\n"
"\nStores the wallet decryption key in memory for 'timeout' seconds.\n"
"This is needed prior to performing transactions related to private keys such as sending historias\n"
"This is needed prior to performing transactions related to private keys such as sending HTA\n"
"\nArguments:\n"
"1. \"passphrase\" (string, required) The wallet passphrase\n"
"2. timeout (numeric, required) The time to keep the decryption key in seconds.\n"
Expand Down Expand Up @@ -2223,7 +2223,7 @@ UniValue lockunspent(const UniValue& params, bool fHelp)
"lockunspent unlock [{\"txid\":\"txid\",\"vout\":n},...]\n"
"\nUpdates list of temporarily unspendable outputs.\n"
"Temporarily lock (unlock=false) or unlock (unlock=true) specified transaction outputs.\n"
"A locked transaction output will not be chosen by automatic coin selection, when spending historias.\n"
"A locked transaction output will not be chosen by automatic coin selection, when spending HTA.\n"
"Locks are stored in memory only. Nodes start with zero locked outputs, and the locked output list\n"
"is always cleared (by virtue of process exit) when a node stops or fails.\n"
"Also see the listunspent call\n"
Expand Down

0 comments on commit 4fd3d14

Please sign in to comment.