diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-05-22 15:48:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-05-22 15:48:23 +0300 |
commit | 10e6403739611bdc0ea06cf0ed55a0674f111100 (patch) | |
tree | 7c5c97dbe23b39b84bf23bcf99e565ddac32b838 /src/net | |
parent | 797733823a46e1423334c3c693f0071286bac2a7 (diff) | |
download | plus-10e6403739611bdc0ea06cf0ed55a0674f111100.tar.gz plus-10e6403739611bdc0ea06cf0ed55a0674f111100.tar.bz2 plus-10e6403739611bdc0ea06cf0ed55a0674f111100.tar.xz plus-10e6403739611bdc0ea06cf0ed55a0674f111100.zip |
Some typo fixes and add comments for translators.
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/tmwa/partyhandler.cpp | 4 | ||||
-rw-r--r-- | src/net/tmwa/playerhandler.cpp | 2 | ||||
-rw-r--r-- | src/net/tmwa/tradehandler.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/net/tmwa/partyhandler.cpp b/src/net/tmwa/partyhandler.cpp index 10d2a20f0..aff5f1f4a 100644 --- a/src/net/tmwa/partyhandler.cpp +++ b/src/net/tmwa/partyhandler.cpp @@ -138,7 +138,7 @@ void PartyHandler::handleMessage(Net::MessageIn &msg) if (partyTab && names.find(nick) == names.end()) { partyTab->chatLog(strprintf( - _("%s has join your party."), + _("%s has joined your party."), nick.c_str()), BY_SERVER); } } @@ -189,7 +189,7 @@ void PartyHandler::handleMessage(Net::MessageIn &msg) break; case 3: partyTab->chatLog(strprintf( - _("%s cant joid your party because party is " + _("%s can't joid your party because party is " "full."), nick.c_str()), BY_SERVER); break; default: diff --git a/src/net/tmwa/playerhandler.cpp b/src/net/tmwa/playerhandler.cpp index 4a9926cfd..385c7ca15 100644 --- a/src/net/tmwa/playerhandler.cpp +++ b/src/net/tmwa/playerhandler.cpp @@ -349,7 +349,7 @@ void PlayerHandler::handleMessage(Net::MessageIn &msg) weightNoticeTime = cur_time + 10; weightNotice = new OkDialog(_("Message"), _("You are carrying less than " - "half your weight. You are " + "half your weight. You " "can regain health."), false); weightNotice->addActionListener( &weightListener); diff --git a/src/net/tmwa/tradehandler.cpp b/src/net/tmwa/tradehandler.cpp index cc7ad6e27..19c32bd71 100644 --- a/src/net/tmwa/tradehandler.cpp +++ b/src/net/tmwa/tradehandler.cpp @@ -256,7 +256,7 @@ void TradeHandler::handleMessage(Net::MessageIn &msg) case 3: // Add item failed - non tradable item SERVER_NOTICE(_("Failed adding item. You " - "cant trade this item.")) + "can't trade this item.")) break; default: SERVER_NOTICE(_("Failed adding item for " |