diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-05-03 12:35:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-05-03 12:51:43 +0300 |
commit | 9510979d65738fb03b2c48425fa59984c2a4b938 (patch) | |
tree | d546c5e932da966d4bddcebb5ae9a0f6f4820881 /src/playerrelations.cpp | |
parent | a7c723b681ddefdcaa84cb9b16681c65818d7110 (diff) | |
download | plus-9510979d65738fb03b2c48425fa59984c2a4b938.tar.gz plus-9510979d65738fb03b2c48425fa59984c2a4b938.tar.bz2 plus-9510979d65738fb03b2c48425fa59984c2a4b938.tar.xz plus-9510979d65738fb03b2c48425fa59984c2a4b938.zip |
add comments for translators.
Diffstat (limited to 'src/playerrelations.cpp')
-rw-r--r-- | src/playerrelations.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/playerrelations.cpp b/src/playerrelations.cpp index 7a24a4b95..6cb8b6c63 100644 --- a/src/playerrelations.cpp +++ b/src/playerrelations.cpp @@ -461,6 +461,7 @@ public: PIS_nothing() : PlayerIgnoreStrategy() { + // TRANSLATORS: ignore/unignore action mDescription = _("Completely ignore"); mShortName = PLAYER_IGNORE_STRATEGY_NOP; } @@ -477,6 +478,7 @@ public: PIS_dotdotdot() : PlayerIgnoreStrategy() { + // TRANSLATORS: ignore/unignore action mDescription = _("Print '...'"); mShortName = "dotdotdot"; } @@ -499,6 +501,7 @@ public: PIS_blinkname() : PlayerIgnoreStrategy() { + // TRANSLATORS: ignore/unignore action mDescription = _("Blink name"); mShortName = "blinkname"; } @@ -544,9 +547,11 @@ PlayerRelationsManager::getPlayerIgnoreStrategies() { // not initialised yet? mIgnoreStrategies.push_back(new PIS_emote(FIRST_IGNORE_EMOTE, + // TRANSLATORS: ignore strategi _("Floating '...' bubble"), PLAYER_IGNORE_STRATEGY_EMOTE0)); mIgnoreStrategies.push_back(new PIS_emote(FIRST_IGNORE_EMOTE + 1, + // TRANSLATORS: ignore strategi _("Floating bubble"), "emote1")); mIgnoreStrategies.push_back(new PIS_nothing); |