summaryrefslogtreecommitdiff
path: root/src/gui/beingpopup.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-05-03 12:35:22 +0300
committerAndrei Karas <akaras@inbox.ru>2013-05-03 12:51:43 +0300
commita7c723b681ddefdcaa84cb9b16681c65818d7110 (patch)
tree3c7100a90db00c3eacc41977cdb5bbae99e6ca40 /src/gui/beingpopup.cpp
parent04fbf07c41bf78dea11aa9b7098c80f0da3801e3 (diff)
downloadplus-a7c723b681ddefdcaa84cb9b16681c65818d7110.tar.gz
plus-a7c723b681ddefdcaa84cb9b16681c65818d7110.tar.bz2
plus-a7c723b681ddefdcaa84cb9b16681c65818d7110.tar.xz
plus-a7c723b681ddefdcaa84cb9b16681c65818d7110.zip
add comments for translators
Diffstat (limited to 'src/gui/beingpopup.cpp')
-rw-r--r--src/gui/beingpopup.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/beingpopup.cpp b/src/gui/beingpopup.cpp
index 7cd797cb2..63e3e1bef 100644
--- a/src/gui/beingpopup.cpp
+++ b/src/gui/beingpopup.cpp
@@ -124,6 +124,7 @@ void BeingPopup::show(const int x, const int y, Being *const b)
if (!(b->getPartyName().empty()))
{
+ // TRANSLATORS: being popup label
label1->setCaption(strprintf(_("Party: %s"),
b->getPartyName().c_str()));
label1->adjustSize();
@@ -138,6 +139,7 @@ void BeingPopup::show(const int x, const int y, Being *const b)
if (!(b->getGuildName().empty()))
{
+ // TRANSLATORS: being popup label
label2->setCaption(strprintf(_("Guild: %s"),
b->getGuildName().c_str()));
label2->adjustSize();
@@ -151,6 +153,7 @@ void BeingPopup::show(const int x, const int y, Being *const b)
if (b->getPvpRank() > 0)
{
+ // TRANSLATORS: being popup label
label3->setCaption(strprintf(_("Pvp rank: %u"), b->getPvpRank()));
label3->adjustSize();
}
@@ -162,6 +165,7 @@ void BeingPopup::show(const int x, const int y, Being *const b)
if (!b->getComment().empty())
{
+ // TRANSLATORS: being popup label
label4->setCaption(strprintf(_("Comment: %s"),
b->getComment().c_str()));
label4->adjustSize();