diff options
Diffstat (limited to 'src/gui/windows/okdialog.cpp')
-rw-r--r-- | src/gui/windows/okdialog.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/windows/okdialog.cpp b/src/gui/windows/okdialog.cpp index bdb41e6a1..549723e14 100644 --- a/src/gui/windows/okdialog.cpp +++ b/src/gui/windows/okdialog.cpp @@ -30,8 +30,6 @@ #include "gui/fonts/font.h" -#include "utils/gettext.h" - #include "debug.h" OkDialog *weightNotice = nullptr; @@ -39,6 +37,7 @@ OkDialog *deathNotice = nullptr; OkDialog::OkDialog(const std::string &restrict title, const std::string &restrict msg, + const std::string &restrict button, const int soundEvent, const bool modal, const bool showCenter, Window *const parent, const int minWidth) : @@ -51,7 +50,7 @@ OkDialog::OkDialog(const std::string &restrict title, mTextBox->setTextWrapped(msg, minWidth); // TRANSLATORS: ok dialog button - Button *const okButton = new Button(this, _("OK"), "ok", this); + Button *const okButton = new Button(this, button, "ok", this); int width = getFont()->getWidth(title); if (width < mTextBox->getMinWidth()) |