-rw-r--r-- | core/pim/today/today.cpp | 4 |
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 | |||
@@ -106,9 +106,9 @@ void Today::setOwnerField() { | |||
106 | if (QFile::exists(file)) { | 106 | if (QFile::exists(file)) { |
107 | Contact cont = Contact::readVCard(file)[0]; | 107 | Contact cont = Contact::readVCard(file)[0]; |
108 | QString returnString = cont.fullName(); | 108 | QString returnString = cont.fullName(); |
109 | OwnerField->setText( tr ("<b>Owned by " + returnString + "</b>")); | 109 | OwnerField->setText( "<b>" +tr ("Owned by ") + returnString + "</b>"); |
110 | } else { | 110 | } else { |
111 | OwnerField->setText( tr ("<b>Please fill out the business card </b>")); | 111 | OwnerField->setText( "<b>" + tr ("Please fill out the business card")+" </b>"); |
112 | } | 112 | } |
113 | } | 113 | } |
114 | 114 | ||