summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMateusz Piekos <mateuszpiekos@gmail.com>2012-08-07 18:04:42 (GMT)
committerMateusz Piekos <mateuszpiekos@gmail.com>2012-08-07 18:04:42 (GMT)
commited00df1501e2da74b0287999d4d1c7185005e3f6 (patch)
tree3a2f28d1c39fa4c1cd1df686539113553e71e514 /Swift/QtUI/QtChatView.cpp
parenta7a2f6124fd733926a0effe486cffee03bf9fde0 (diff)
downloadswift-contrib-ed00df1501e2da74b0287999d4d1c7185005e3f6.zip
swift-contrib-ed00df1501e2da74b0287999d4d1c7185005e3f6.tar.bz2
Changed texts informing about whiteboard session states
Diffstat (limited to 'Swift/QtUI/QtChatView.cpp')
-rw-r--r--Swift/QtUI/QtChatView.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/QtUI/QtChatView.cpp b/Swift/QtUI/QtChatView.cpp
index 375a1ad..2f9a6e7 100644
--- a/Swift/QtUI/QtChatView.cpp
+++ b/Swift/QtUI/QtChatView.cpp
@@ -368,9 +368,9 @@ void QtChatView::setWhiteboardSessionStatus(QString id, const ChatWindow::Whiteb
newInnerHTML = tr("Started whiteboard chat") + "<br/>" +
QtChatWindow::buildChatWindowButton(tr("Show whiteboard"), QtChatWindow::ButtonWhiteboardShowWindow, id);
} else if (state == ChatWindow::WhiteboardCanceled) {
- newInnerHTML = tr("Whiteboard session has been canceled");
+ newInnerHTML = tr("Whiteboard chat has been canceled");
} else if (state == ChatWindow::WhiteboardRejected) {
- newInnerHTML = tr("Whiteboard session request has been rejected");
+ newInnerHTML = tr("Whiteboard chat request has been rejected");
}
divElement.setInnerXml(newInnerHTML);
}