diff options
| author | Tobias Markmann <tm@ayena.de> | 2015-10-07 22:00:14 (GMT) |
|---|---|---|
| committer | Tobias Markmann <tm@ayena.de> | 2015-10-07 22:00:14 (GMT) |
| commit | d8946ea19cfc37df6660cebc516e86a93204def0 (patch) | |
| tree | 01d4557fc9ffdccfd8c78852c59109df56a0a07e | |
| parent | df5bfad6f032b17ee0dffe85cdaadc2c20edaae2 (diff) | |
| download | swift-d8946ea19cfc37df6660cebc516e86a93204def0.zip swift-d8946ea19cfc37df6660cebc516e86a93204def0.tar.bz2 | |
Fix wording so text is independent of sender/receiver case
Test-Information:
None.
Change-Id: I4e0cd54c9009bc19fdc10cd1ec2697252bd6f7f7
| -rw-r--r-- | Swift/QtUI/QtWebKitChatView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/QtWebKitChatView.cpp b/Swift/QtUI/QtWebKitChatView.cpp index 8327473..f1278b8 100644 --- a/Swift/QtUI/QtWebKitChatView.cpp +++ b/Swift/QtUI/QtWebKitChatView.cpp @@ -435,19 +435,19 @@ void QtWebKitChatView::setFileTransferStatus(QString id, const ChatWindow::FileT rememberScrolledToBottom(); QWebElement ftElement = findElementWithID(document_, "div", id); if (ftElement.isNull()) { SWIFT_LOG(debug) << "Tried to access FT UI via invalid id! id = " << Q2PSTRING(id) << std::endl; return; } QString newInnerHTML = ""; if (state == ChatWindow::Initialisation) { - newInnerHTML = tr("Preparing to send.") + "<br/>" + + newInnerHTML = tr("Preparing to transfer.") + "<br/>" + buildChatWindowButton(tr("Cancel"), ButtonFileTransferCancel, id); } else if (state == ChatWindow::WaitingForAccept) { newInnerHTML = tr("Waiting for other side to accept the transfer.") + "<br/>" + buildChatWindowButton(tr("Cancel"), ButtonFileTransferCancel, id); } else if (state == ChatWindow::Negotiating) { // replace with text "Negotiaging" + Cancel button newInnerHTML = tr("Negotiating...") + "<br/>" + |
Swift