diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-02-22 23:31:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-02-22 23:31:19 +0300 |
commit | a5ac1930f0efd6da0176ad24f0f1d578a89b4ed0 (patch) | |
tree | 89e050a580716873ecb6dc7d139b6fa11163ad2a /src | |
parent | 3c027533d60765d302bfb3abebe44df97af29838 (diff) | |
download | mv-a5ac1930f0efd6da0176ad24f0f1d578a89b4ed0.tar.gz mv-a5ac1930f0efd6da0176ad24f0f1d578a89b4ed0.tar.bz2 mv-a5ac1930f0efd6da0176ad24f0f1d578a89b4ed0.tar.xz mv-a5ac1930f0efd6da0176ad24f0f1d578a89b4ed0.zip |
Fix "dont" words.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/setup_joystick.cpp | 2 | ||||
-rw-r--r-- | src/localplayer.cpp | 2 | ||||
-rw-r--r-- | src/utils/translation/poparser.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/setup_joystick.cpp b/src/gui/setup_joystick.cpp index 290607be4..a3240282a 100644 --- a/src/gui/setup_joystick.cpp +++ b/src/gui/setup_joystick.cpp @@ -146,7 +146,7 @@ void Setup_Joystick::action(const gcn::ActionEvent &event) { mCalibrateButton->setCaption(_("Stop")); mCalibrateLabel->setCaption( - _("Rotate the stick and dont press buttons")); + _("Rotate the stick and don't press buttons")); joystick->startCalibration(); } } diff --git a/src/localplayer.cpp b/src/localplayer.cpp index 4675f80cf..55df24532 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -2152,7 +2152,7 @@ static const char *pvpAttackStrings[] = N_("(a) attack all players"), N_("(f) attack all except friends"), N_("(b) attack bad relations"), - N_("(d) dont attack players"), + N_("(d) don't attack players"), N_("(?) pvp attack") }; diff --git a/src/utils/translation/poparser.cpp b/src/utils/translation/poparser.cpp index 24d2ee4d4..521774592 100644 --- a/src/utils/translation/poparser.cpp +++ b/src/utils/translation/poparser.cpp @@ -144,7 +144,7 @@ bool PoParser::readMsgId() mLine = ""; return true; } - // stop reading if we dont read msgid before + // stop reading if we don't read msgid before return mMsgId.empty(); } } |