diff options
author | Kevin Smith <git@kismith.co.uk> | 2011-10-26 15:36:44 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2011-10-26 15:37:01 (GMT) |
commit | 9bfe9b69b3f8a93bcd67d4566ecae258b1049d78 (patch) | |
tree | 1281edb36b87d817b3136cfd03f85a63cdf847c1 /Swift/Controllers | |
parent | 1320df7e64a1d91d3da912575c823df532c7390c (diff) | |
download | swift-9bfe9b69b3f8a93bcd67d4566ecae258b1049d78.zip swift-9bfe9b69b3f8a93bcd67d4566ecae258b1049d78.tar.bz2 |
Update string to reflect being used for both no and wrong password
Diffstat (limited to 'Swift/Controllers')
-rw-r--r-- | Swift/Controllers/Chat/MUCController.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/Chat/MUCController.cpp b/Swift/Controllers/Chat/MUCController.cpp index cf0d39d..b8aa35c 100644 --- a/Swift/Controllers/Chat/MUCController.cpp +++ b/Swift/Controllers/Chat/MUCController.cpp @@ -212,7 +212,7 @@ void MUCController::handleJoinFailed(boost::shared_ptr<ErrorPayload> error) { break; case ErrorPayload::NotAuthorized: errorMessage += ": "; - errorMessage += QT_TRANSLATE_NOOP("", "A password is needed"); + errorMessage += QT_TRANSLATE_NOOP("", "The correct room password is needed"); break; case ErrorPayload::RegistrationRequired: errorMessage += ": "; |