diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-03-17 18:23:34 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-03-17 18:23:34 (GMT) |
commit | b8d6b9483febcb2cd76e685e23754fc346e9ef52 (patch) | |
tree | 8ad6da26cea5f4de0c2f8d99462bb2c5140850a1 /Swift/QtUI/EventViewer | |
parent | 2feadc01a56269094e6c533ca23b4357b65ab2a9 (diff) | |
download | swift-b8d6b9483febcb2cd76e685e23754fc346e9ef52.zip swift-b8d6b9483febcb2cd76e685e23754fc346e9ef52.tar.bz2 |
Fixed some more strings.
Diffstat (limited to 'Swift/QtUI/EventViewer')
-rw-r--r-- | Swift/QtUI/EventViewer/QtEvent.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/QtUI/EventViewer/QtEvent.cpp b/Swift/QtUI/EventViewer/QtEvent.cpp index 05080d8..e7ea473 100644 --- a/Swift/QtUI/EventViewer/QtEvent.cpp +++ b/Swift/QtUI/EventViewer/QtEvent.cpp @@ -60,10 +60,10 @@ QString QtEvent::text() { std::string reason = subscriptionRequestEvent->getReason(); QString message; if (reason.empty()) { - message = QString("%1 would like to add you to their roster.").arg(subscriptionRequestEvent->getJID().toBare().toString().c_str()); + message = QString(QObject::tr("%1 would like to add you to their contact list.")).arg(subscriptionRequestEvent->getJID().toBare().toString().c_str()); } else { - message = QString("%1 would like to add you to their roster, saying '%2'").arg(subscriptionRequestEvent->getJID().toBare().toString().c_str()).arg(reason.c_str()); + message = QString(QObject::tr("%1 would like to add you to their contact list, saying '%2'")).arg(subscriptionRequestEvent->getJID().toBare().toString().c_str()).arg(reason.c_str()); } return message; } |