diff options
author | Sky <git@bunnies.cc> | 2013-12-23 15:46:01 +0000 |
---|---|---|
committer | Sky <git@bunnies.cc> | 2013-12-23 15:48:26 +0000 |
commit | 027aafc3c1fc5e78c91ee439cd38562387f7ed9f (patch) | |
tree | 46213f92e72e0a78161a702bcb90ae8265f12d21 /logic/auth/flows/AuthenticateTask.cpp | |
parent | 86284196dead29b223b2d4ae1850f84dd9690f9b (diff) | |
download | MultiMC-027aafc3c1fc5e78c91ee439cd38562387f7ed9f.tar MultiMC-027aafc3c1fc5e78c91ee439cd38562387f7ed9f.tar.gz MultiMC-027aafc3c1fc5e78c91ee439cd38562387f7ed9f.tar.lz MultiMC-027aafc3c1fc5e78c91ee439cd38562387f7ed9f.tar.xz MultiMC-027aafc3c1fc5e78c91ee439cd38562387f7ed9f.zip |
Tidy status messages a bit
Diffstat (limited to 'logic/auth/flows/AuthenticateTask.cpp')
-rw-r--r-- | logic/auth/flows/AuthenticateTask.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/logic/auth/flows/AuthenticateTask.cpp b/logic/auth/flows/AuthenticateTask.cpp index f60be35d..6548c4e9 100644 --- a/logic/auth/flows/AuthenticateTask.cpp +++ b/logic/auth/flows/AuthenticateTask.cpp @@ -194,9 +194,9 @@ QString AuthenticateTask::getStateMessage(const YggdrasilTask::State state) cons switch (state) { case STATE_SENDING_REQUEST: - return tr("Authenticating: Sending request."); + return tr("Authenticating: Sending request..."); case STATE_PROCESSING_RESPONSE: - return tr("Authenticating: Processing response."); + return tr("Authenticating: Processing response..."); default: return YggdrasilTask::getStateMessage(state); } |