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/gui/widgets/tabs/setup_theme.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/gui/widgets/tabs/setup_theme.cpp')
-rw-r--r-- | src/gui/widgets/tabs/setup_theme.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/gui/widgets/tabs/setup_theme.cpp b/src/gui/widgets/tabs/setup_theme.cpp index b719537f7..c74a8bade 100644 --- a/src/gui/widgets/tabs/setup_theme.cpp +++ b/src/gui/widgets/tabs/setup_theme.cpp @@ -306,7 +306,10 @@ void Setup_Theme::action(const ActionEvent &event) else if (eventId == ACTION_INFO) { // TRANSLATORS: theme info dialog header - new OkDialog(_("Theme info"), mThemeInfo, DialogType::OK, + new OkDialog(_("Theme info"), mThemeInfo, + // TRANSLATORS: ok dialog button + _("OK"), + DialogType::OK, false, true, nullptr, 600); } } @@ -334,7 +337,10 @@ void Setup_Theme::apply() { // TRANSLATORS: theme message dialog new OkDialog(_("Theme Changed"), _("Restart your client for " - "the change to take effect."), DialogType::OK, + "the change to take effect."), + // TRANSLATORS: ok dialog button + _("OK"), + DialogType::OK, true, true, nullptr, 260); } |