summaryrefslogtreecommitdiff
path: root/src/net/playerhandler.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-02-10 23:08:35 +0100
committerIra Rice <irarice@gmail.com>2009-02-11 08:43:59 -0700
commit1ea7d80aff0961e6f55ee467b8cbe26d146828f8 (patch)
tree4e635e72541c3df3493a2a5871348f02b9f48bfe /src/net/playerhandler.cpp
parent4a41ce55224ad7b54c6b5ea78126d8d314f5ef41 (diff)
downloadmana-client-1ea7d80aff0961e6f55ee467b8cbe26d146828f8.tar.gz
mana-client-1ea7d80aff0961e6f55ee467b8cbe26d146828f8.tar.bz2
mana-client-1ea7d80aff0961e6f55ee467b8cbe26d146828f8.tar.xz
mana-client-1ea7d80aff0961e6f55ee467b8cbe26d146828f8.zip
Don't make log statements translatable
The log is mainly used to aid the developers, hence shouldn't be translated to the user's local language. Also introduces unnecessary work for all translators.
Diffstat (limited to 'src/net/playerhandler.cpp')
-rw-r--r--src/net/playerhandler.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/playerhandler.cpp b/src/net/playerhandler.cpp
index 21c37ea3..9ca3b48a 100644
--- a/src/net/playerhandler.cpp
+++ b/src/net/playerhandler.cpp
@@ -192,9 +192,9 @@ void PlayerHandler::handleMessage(MessageIn *msg)
player_node->mMaxWeight / 2)
{
weightNotice = new OkDialog(_("Message"),
- _("You are carrying more then half "
- "your weight. You are unable to "
- "regain health."));
+ _("You are carrying more then "
+ "half your weight. You are "
+ "unable to regain health."));
weightNotice->addActionListener(
&weightListener);
}
@@ -392,7 +392,7 @@ void PlayerHandler::handleMessage(MessageIn *msg)
BY_SERVER);
break;
default:
- logger->log(_("0x013b: Unhandled message %i"), type);
+ logger->log("0x013b: Unhandled message %i", type);
break;
}
}