diff options
author | Ira Rice <irarice@gmail.com> | 2009-02-05 14:19:44 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-02-05 14:19:44 -0700 |
commit | f001a53b494e8b357eba6f7c0cad9afe3258dda8 (patch) | |
tree | df9022247ff6a3a26d01c66c0389a9c386b636c2 /src/net/chathandler.cpp | |
parent | 69d6f5fce3ee7ac1888c537e8e222431f8fc45da (diff) | |
download | mana-client-f001a53b494e8b357eba6f7c0cad9afe3258dda8.tar.gz mana-client-f001a53b494e8b357eba6f7c0cad9afe3258dda8.tar.bz2 mana-client-f001a53b494e8b357eba6f7c0cad9afe3258dda8.tar.xz mana-client-f001a53b494e8b357eba6f7c0cad9afe3258dda8.zip |
Exposed some more strings I found to be translatable.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/net/chathandler.cpp')
-rw-r--r-- | src/net/chathandler.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/net/chathandler.cpp b/src/net/chathandler.cpp index bf5a5a37..25877907 100644 --- a/src/net/chathandler.cpp +++ b/src/net/chathandler.cpp @@ -33,6 +33,7 @@ #include "../gui/chat.h" +#include "../utils/gettext.h" #include "../utils/tostring.h" #include "../utils/trim.h" @@ -72,10 +73,10 @@ void ChatHandler::handleMessage(MessageIn *msg) //chatWindow->chatLog("Whisper sent", BY_SERVER); break; case 0x01: - chatWindow->chatLog("Whisper could not be sent, user is offline", BY_SERVER); + chatWindow->chatLog(_("Whisper could not be sent, user is offline"), BY_SERVER); break; case 0x02: - chatWindow->chatLog("Whisper could not be sent, ignored by user", BY_SERVER); + chatWindow->chatLog(_("Whisper could not be sent, ignored by user"), BY_SERVER); break; } break; |