diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-04-10 21:16:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-04-10 21:35:34 +0300 |
commit | dacaf242cd28169a279e08c1d001afb5b7729d33 (patch) | |
tree | 7460b20034cf836740280f7e5ad6cd4625e3029e /src/localplayer.cpp | |
parent | 121db99fb8227c2c1a2ba54801fad3c814ce06c2 (diff) | |
download | plus-dacaf242cd28169a279e08c1d001afb5b7729d33.tar.gz plus-dacaf242cd28169a279e08c1d001afb5b7729d33.tar.bz2 plus-dacaf242cd28169a279e08c1d001afb5b7729d33.tar.xz plus-dacaf242cd28169a279e08c1d001afb5b7729d33.zip |
Add some strings to translations.
Diffstat (limited to 'src/localplayer.cpp')
-rw-r--r-- | src/localplayer.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/localplayer.cpp b/src/localplayer.cpp index 2497e09f9..f422493ea 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -3378,26 +3378,26 @@ void LocalPlayer::setFollow(std::string player) { mPlayerFollowed = player; if (!mPlayerFollowed.empty()) - debugMsg("Follow: " + player); + debugMsg(_("Follow: ") + player); else - debugMsg("Follow canceled"); + debugMsg(_("Follow canceled")); } void LocalPlayer::setImitate(std::string player) { mPlayerImitated = player; if (!mPlayerImitated.empty()) - debugMsg("Imitation: " + player); + debugMsg(_("Imitation: ") + player); else - debugMsg("Imitation canceled"); + debugMsg(_("Imitation canceled")); } void LocalPlayer::cancelFollow() { if (!mPlayerFollowed.empty()) - debugMsg("Follow canceled"); + debugMsg(_("Follow canceled")); if (!mPlayerImitated.empty()) - debugMsg("Imitation canceled"); + debugMsg(_("Imitation canceled")); mPlayerFollowed = ""; mPlayerImitated = ""; } |