diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-03-30 05:33:53 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-03-30 05:33:53 (GMT) |
commit | 33de0c6eeb58fd4a6459a3e019b441a169a6f3e1 (patch) | |
tree | cf75f2dc0cc860cbf6b1cbb14860525489bd818f /Swift/Controllers | |
parent | 64dda2f5aa13e6bad1a5364275b7d790be54ae3a (diff) | |
download | swift-33de0c6eeb58fd4a6459a3e019b441a169a6f3e1.zip swift-33de0c6eeb58fd4a6459a3e019b441a169a6f3e1.tar.bz2 |
Added another missing string.
Diffstat (limited to 'Swift/Controllers')
-rw-r--r-- | Swift/Controllers/ProfileController.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Swift/Controllers/ProfileController.cpp b/Swift/Controllers/ProfileController.cpp index 65443e6..101e283 100644 --- a/Swift/Controllers/ProfileController.cpp +++ b/Swift/Controllers/ProfileController.cpp @@ -12,6 +12,7 @@ #include <Swift/Controllers/UIEvents/UIEventStream.h> #include <Swift/Controllers/UIInterfaces/ProfileWindowFactory.h> #include <Swiften/VCards/VCardManager.h> +#include <Swift/Controllers/Intl.h> namespace Swift { @@ -58,7 +59,7 @@ void ProfileController::handleSetVCardResponse(ErrorPayload::ref error) { pendingSetVCardRequest.reset(); updateDialogStatus(); if (error) { - profileWindow->setError("There was an error publishing your profile data"); + profileWindow->setError(QT_TRANSLATE_NOOP("", "There was an error publishing your profile data")); } else { profileWindow->setError(""); |