diff --git a/contrib/debian/examples/historia.conf b/contrib/debian/examples/historia.conf index c2304d0e4..ff37fbaf3 100644 --- a/contrib/debian/examples/historia.conf +++ b/contrib/debian/examples/historia.conf @@ -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 diff --git a/contrib/spendfrom/spendfrom.py b/contrib/spendfrom/spendfrom.py index 310966317..4b72084af 100755 --- a/contrib/spendfrom/spendfrom.py +++ b/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: @@ -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", diff --git a/src/qt/askpassphrasedialog.cpp b/src/qt/askpassphrasedialog.cpp index 23087d412..5f62e0690 100644 --- a/src/qt/askpassphrasedialog.cpp +++ b/src/qt/askpassphrasedialog.cpp @@ -124,7 +124,7 @@ void AskPassphraseDialog::accept() "" + 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.") + "

" + tr("IMPORTANT: Any previous backups you have made of your wallet file " "should be replaced with the newly generated, encrypted wallet file. " diff --git a/src/qt/locale/historia_en.ts b/src/qt/locale/historia_en.ts index fbf3d5bb1..7662b51e3 100644 --- a/src/qt/locale/historia_en.ts +++ b/src/qt/locale/historia_en.ts @@ -237,8 +237,8 @@ - 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. - 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. + 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. + 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. diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 9ef4540b1..249499d30 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -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" @@ -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" @@ -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"