summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/today.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp
index 6dac6d9..61bd0c4 100644
--- a/core/pim/today/today.cpp
+++ b/core/pim/today/today.cpp
@@ -103,15 +103,15 @@ void Today::channelReceived(const QCString &msg, const QByteArray & data) {
*/
void Today::setOwnerField() {
QString file = Global::applicationFileName("addressbook", "businesscard.vcf");
if (QFile::exists(file)) {
Contact cont = Contact::readVCard(file)[0];
QString returnString = cont.fullName();
- OwnerField->setText( tr ("<b>Owned by " + returnString + "</b>"));
+ OwnerField->setText( "<b>" +tr ("Owned by ") + returnString + "</b>");
} else {
- OwnerField->setText( tr ("<b>Please fill out the business card </b>"));
+ OwnerField->setText( "<b>" + tr ("Please fill out the business card")+" </b>");
}
}
/*
* Set the owner field with a given QString, for example per qcop.
*/