Fixed grammar: 'Waiting on' -> 'Waiting for'
This commit is contained in:
parent
ce1c9ca26a
commit
346582dcb5
|
@ -820,7 +820,7 @@ class MyForm(QtGui.QMainWindow):
|
|||
|
||||
if status == 'awaitingpubkey':
|
||||
statusText = _translate(
|
||||
"MainWindow", "Waiting on their encryption key. Will request it again soon.")
|
||||
"MainWindow", "Waiting for their encryption key. Will request it again soon.")
|
||||
elif status == 'doingpowforpubkey':
|
||||
statusText = _translate(
|
||||
"MainWindow", "Encryption key request queued.")
|
||||
|
@ -828,7 +828,7 @@ class MyForm(QtGui.QMainWindow):
|
|||
statusText = _translate(
|
||||
"MainWindow", "Queued.")
|
||||
elif status == 'msgsent':
|
||||
statusText = _translate("MainWindow", "Message sent. Waiting on acknowledgement. Sent at %1").arg(
|
||||
statusText = _translate("MainWindow", "Message sent. Waiting for acknowledgement. Sent at %1").arg(
|
||||
unicode(strftime(shared.config.get('bitmessagesettings', 'timeformat'), localtime(lastactiontime)),'utf-8'))
|
||||
elif status == 'msgsentnoackexpected':
|
||||
statusText = _translate("MainWindow", "Message sent. Sent at %1").arg(
|
||||
|
|
|
@ -833,7 +833,7 @@ class singleWorker(threading.Thread):
|
|||
strftime(shared.config.get('bitmessagesettings', 'timeformat'), localtime(int(time.time()))), 'utf-8')))))
|
||||
else:
|
||||
# not sending to a chan or one of my addresses
|
||||
shared.UISignalQueue.put(('updateSentItemStatusByAckdata', (ackdata, tr.translateText("MainWindow", "Message sent. Waiting on acknowledgement. Sent on %1").arg(unicode(
|
||||
shared.UISignalQueue.put(('updateSentItemStatusByAckdata', (ackdata, tr.translateText("MainWindow", "Message sent. Waiting for acknowledgement. Sent on %1").arg(unicode(
|
||||
strftime(shared.config.get('bitmessagesettings', 'timeformat'), localtime(int(time.time()))), 'utf-8')))))
|
||||
print 'Broadcasting inv for my msg(within sendmsg function):', inventoryHash.encode('hex')
|
||||
shared.broadcastToSendDataQueues((
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../bitmessageqt/__init__.py" line="632"/>
|
||||
<source>Waiting on their encryption key. Will request it again soon.</source>
|
||||
<source>Waiting for their encryption key. Will request it again soon.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -121,7 +121,7 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../bitmessageqt/__init__.py" line="641"/>
|
||||
<source>Message sent. Waiting on acknowledgement. Sent at %1</source>
|
||||
<source>Message sent. Waiting for acknowledgement. Sent at %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
|
Loading…
Reference in New Issue
Block a user