diff options
author | Kess Vargavind <vargavind@gmail.com> | 2009-05-21 09:38:06 +0200 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-05-23 21:44:50 +0200 |
commit | ee6aea38c7d3dba0c4b6dab7f22f303dfbc14019 (patch) | |
tree | de48c84dabb09e8307760f0bf90e6479366a6bfa /src/net/tmwserv/playerhandler.cpp | |
parent | cf9caaefeb69cafcf273028d12f074d5d1737bf9 (diff) | |
download | mana-ee6aea38c7d3dba0c4b6dab7f22f303dfbc14019.tar.gz mana-ee6aea38c7d3dba0c4b6dab7f22f303dfbc14019.tar.bz2 mana-ee6aea38c7d3dba0c4b6dab7f22f303dfbc14019.tar.xz mana-ee6aea38c7d3dba0c4b6dab7f22f303dfbc14019.zip |
Fixed a few strings for better translation
Just a few notes that would help us translators immensly:
* Please do not split one sentence into several strings
* Please try to refrain from inserting extra spaces into the strings
(cherry picked from commit 9712489ef67f95d6a5fa1fc3102bb7c4ee6a1f59)
Diffstat (limited to 'src/net/tmwserv/playerhandler.cpp')
-rw-r--r-- | src/net/tmwserv/playerhandler.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/tmwserv/playerhandler.cpp b/src/net/tmwserv/playerhandler.cpp index b697e8a8..931e4294 100644 --- a/src/net/tmwserv/playerhandler.cpp +++ b/src/net/tmwserv/playerhandler.cpp @@ -284,7 +284,7 @@ void PlayerHandler::handleMessage(MessageIn &msg) switch (type) { case 0: - localChatTab->chatLog("Equip arrows first", + localChatTab->chatLog(_("Equip arrows first."), BY_SERVER); break; default: @@ -391,12 +391,12 @@ void PlayerHandler::respawn() // TODO } -void PlayerHandler::ingorePlayer(const std::string &player, bool ignore) +void PlayerHandler::ignorePlayer(const std::string &player, bool ignore) { // TODO } -void PlayerHandler::ingoreAll(bool ignore) +void PlayerHandler::ignoreAll(bool ignore) { // TODO } |