- a user report indicated there is confusion about address error
messages. He/she thought it refers to the sender address, however it
refers to the recipient address. This makes it more clear
"MainWindow","Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever.").arg(toAddress),10000)
"MainWindow","Error: The version of the recipient address%1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever.").arg(toAddress),10000)
elifstatus=='ripetooshort':
self.statusBar().showMessage(_translate(
"MainWindow","Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance.").arg(toAddress),10000)
"MainWindow","Error: Some data encoded in the recipient address %1 is too short. There might be something wrong with the software of your acquaintance.").arg(toAddress),10000)
elifstatus=='ripetoolong':
self.statusBar().showMessage(_translate(
"MainWindow","Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance.").arg(toAddress),10000)
"MainWindow","Error: Some data encoded in the recipient address %1 is too long. There might be something wrong with the software of your acquaintance.").arg(toAddress),10000)
elifstatus=='varintmalformed':
self.statusBar().showMessage(_translate(
"MainWindow","Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance.").arg(toAddress),10000)
"MainWindow","Error: Some data encoded in the recipient address %1 is malformed. There might be something wrong with the software of your acquaintance.").arg(toAddress),10000)
else:
self.statusBar().showMessage(_translate(
"MainWindow","Error: Something is wrong with the address %1.").arg(toAddress),10000)
"MainWindow","Error: Something is wrong with the recipient address %1.").arg(toAddress),10000)
eliffromAddress=='':
self.statusBar().showMessage(_translate(
"MainWindow","Error: You must specify a From address. If you don\'t have one, go to the \'Your Identities\' tab."),10000)