diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-10-03 18:22:21 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-10-03 18:22:21 -0600 |
commit | 273bd48ce28ab114fc5a840eff4c3baf448b829d (patch) | |
tree | 98ec7ce26431d801cc8dc6d84900f93d2bd81a63 /src | |
parent | 447232f0ad7dd94372424389336b0a53ed332597 (diff) | |
download | mana-273bd48ce28ab114fc5a840eff4c3baf448b829d.tar.gz mana-273bd48ce28ab114fc5a840eff4c3baf448b829d.tar.bz2 mana-273bd48ce28ab114fc5a840eff4c3baf448b829d.tar.xz mana-273bd48ce28ab114fc5a840eff4c3baf448b829d.zip |
Fix the text of an error message
Better grammer and more explanatory.
Diffstat (limited to 'src')
-rw-r--r-- | src/net/tmwserv/loginhandler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/tmwserv/loginhandler.cpp b/src/net/tmwserv/loginhandler.cpp index dfe0e151..613b4128 100644 --- a/src/net/tmwserv/loginhandler.cpp +++ b/src/net/tmwserv/loginhandler.cpp @@ -236,7 +236,8 @@ void LoginHandler::handleLoginResponse(MessageIn &msg) errorMessage = _("Server is full."); break; case LOGIN_INVALID_TIME: - errorMessage = _("Too fast after previous login."); + errorMessage = _("Login attempt too soon after previous " + "attempt."); break; default: errorMessage = _("Unknown error."); |