diff options
author | Kess Vargavind <vargavind@gmail.com> | 2009-04-22 07:42:01 +0200 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-04-22 08:33:59 +0200 |
commit | cb1b0bed954d1b1370cf65bdf348cc4434feab53 (patch) | |
tree | 115bf818e724b122f1611a1bdadcb9a545edf532 /src/commandhandler.cpp | |
parent | 3e92baec2045d139a2a815f38e8bda010c707764 (diff) | |
download | mana-cb1b0bed954d1b1370cf65bdf348cc4434feab53.tar.gz mana-cb1b0bed954d1b1370cf65bdf348cc4434feab53.tar.bz2 mana-cb1b0bed954d1b1370cf65bdf348cc4434feab53.tar.xz mana-cb1b0bed954d1b1370cf65bdf348cc4434feab53.zip |
Some string fixes
Diffstat (limited to 'src/commandhandler.cpp')
-rw-r--r-- | src/commandhandler.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commandhandler.cpp b/src/commandhandler.cpp index ea0094c3..48da510f 100644 --- a/src/commandhandler.cpp +++ b/src/commandhandler.cpp @@ -140,7 +140,7 @@ void CommandHandler::handleHelp(const std::string &args, ChatTab *tab) if (args == "") { tab->chatLog(_("-- Help --")); - tab->chatLog(_("/help > Display this help.")); + tab->chatLog(_("/help > Display this help")); tab->chatLog(_("/where > Display map name")); tab->chatLog(_("/who > Display number of online users")); @@ -333,14 +333,14 @@ void CommandHandler::handleMsg(const std::string &args, ChatTab *tab) chatWindow->whisper(recvnick, msg, true); } else - tab->chatLog(_("Cannont send empty whispers!"), BY_SERVER); + tab->chatLog(_("Cannot send empty whispers!"), BY_SERVER); } void CommandHandler::handleQuery(const std::string &args, ChatTab *tab) { if (chatWindow->addWhisperTab(args, true)) return; - tab->chatLog(strprintf(_("Cannont create a whisper tab for nick '%s'!" + tab->chatLog(strprintf(_("Cannot create a whisper tab for nick '%s'! " "It either already exists, or is you."), args.c_str()), BY_SERVER); } |