diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-18 21:52:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-18 22:06:50 +0300 |
commit | 7272851afd9e3a8fcdb531900a8e5c43af417a4b (patch) | |
tree | 4c39553287cf3f6edc1d5ca620f3c4e780d69df6 /src/net/ea/playerhandler.cpp | |
parent | e21479ccc48ed8383a6ab72f45c43e12e8dffa69 (diff) | |
download | plus-7272851afd9e3a8fcdb531900a8e5c43af417a4b.tar.gz plus-7272851afd9e3a8fcdb531900a8e5c43af417a4b.tar.bz2 plus-7272851afd9e3a8fcdb531900a8e5c43af417a4b.tar.xz plus-7272851afd9e3a8fcdb531900a8e5c43af417a4b.zip |
Add parameter for button name in okdialog.
Diffstat (limited to 'src/net/ea/playerhandler.cpp')
-rw-r--r-- | src/net/ea/playerhandler.cpp | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/net/ea/playerhandler.cpp b/src/net/ea/playerhandler.cpp index f7da2d321..66324eb6b 100644 --- a/src/net/ea/playerhandler.cpp +++ b/src/net/ea/playerhandler.cpp @@ -273,7 +273,10 @@ void PlayerHandler::processPlayerStatUpdate1(Net::MessageIn &msg) // TRANSLATORS: weight message _("You are carrying more than " "half your weight. You are " - "unable to regain health."), DialogType::OK, + "unable to regain health."), + // TRANSLATORS: ok dialog button + _("OK"), + DialogType::OK, false, true, nullptr, 260); weightNotice->addActionListener( &weightListener); @@ -286,7 +289,10 @@ void PlayerHandler::processPlayerStatUpdate1(Net::MessageIn &msg) // TRANSLATORS: weight message _("You are carrying less than " "half your weight. You " - "can regain health."), DialogType::OK, + "can regain health."), + // TRANSLATORS: ok dialog button + _("OK"), + DialogType::OK, false, true, nullptr, 260); weightNotice->addActionListener( &weightListener); @@ -368,7 +374,10 @@ void PlayerHandler::processPlayerStatUpdate1(Net::MessageIn &msg) { // TRANSLATORS: message header deathNotice = new OkDialog(_("Message"), - DeadDB::getRandomString(), DialogType::OK, + DeadDB::getRandomString(), + // TRANSLATORS: ok dialog button + _("OK"), + DialogType::OK, false, true, nullptr, 260); deathNotice->addActionListener(&deathListener); if (localPlayer->getCurrentAction() != BeingAction::DEAD) |