summaryrefslogtreecommitdiff
path: root/src/being.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/being.cpp')
-rw-r--r--src/being.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/being.cpp b/src/being.cpp
index f06de55c7..de5ecc56e 100644
--- a/src/being.cpp
+++ b/src/being.cpp
@@ -268,6 +268,7 @@ void Being::setSubtype(const uint16_t subtype)
if (!ItemDB::exists(id))
{
id = -100;
+ // TRANSLATORS: default race name
setRaceName(_("Human"));
}
else
@@ -467,6 +468,7 @@ void Being::takeDamage(Being *const attacker, const int amount,
return;
gcn::Font *font = nullptr;
+ // TRANSLATORS: hit or miss message in attacks
const std::string damage = amount ? toString(amount) : type == FLEE ?
_("dodge") : _("miss");
const gcn::Color *color;