summaryrefslogtreecommitdiff
path: root/src/gui/widgets/tabs
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-18 21:52:57 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-18 22:06:50 +0300
commit7272851afd9e3a8fcdb531900a8e5c43af417a4b (patch)
tree4c39553287cf3f6edc1d5ca620f3c4e780d69df6 /src/gui/widgets/tabs
parente21479ccc48ed8383a6ab72f45c43e12e8dffa69 (diff)
downloadplus-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')
-rw-r--r--src/gui/widgets/tabs/setup_input.cpp5
-rw-r--r--src/gui/widgets/tabs/setup_theme.cpp10
-rw-r--r--src/gui/widgets/tabs/setup_video.cpp23
3 files changed, 31 insertions, 7 deletions
diff --git a/src/gui/widgets/tabs/setup_input.cpp b/src/gui/widgets/tabs/setup_input.cpp
index 50bdf96ec..b6e245c2b 100644
--- a/src/gui/widgets/tabs/setup_input.cpp
+++ b/src/gui/widgets/tabs/setup_input.cpp
@@ -150,7 +150,10 @@ void Setup_Input::apply()
// TRANSLATORS: input settings error
strprintf(_("Conflict \"%s\" and \"%s\" keys. "
"Resolve them, or gameplay may result in strange behaviour."),
- gettext(str1.c_str()), gettext(str2.c_str())), DialogType::ERROR,
+ gettext(str1.c_str()), gettext(str2.c_str())),
+ // TRANSLATORS: ok dialog button
+ _("OK"),
+ DialogType::ERROR,
true, true, nullptr, 260);
}
keyboard.setEnabled(true);
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);
}
diff --git a/src/gui/widgets/tabs/setup_video.cpp b/src/gui/widgets/tabs/setup_video.cpp
index 116541d2d..41cf19a7f 100644
--- a/src/gui/widgets/tabs/setup_video.cpp
+++ b/src/gui/widgets/tabs/setup_video.cpp
@@ -242,7 +242,11 @@ void Setup_Video::apply()
// TRANSLATORS: video settings warning
new OkDialog(_("Switching to Full Screen"),
// TRANSLATORS: video settings warning
- _("Restart needed for changes to take effect."));
+ _("Restart needed for changes to take effect."),
+ // TRANSLATORS: ok dialog button
+ _("OK"),
+ DialogType::OK,
+ true, true, nullptr, 260);
}
#endif
config.setValue("screen", fullscreen);
@@ -263,7 +267,10 @@ void Setup_Video::apply()
new OkDialog(_("Changing to OpenGL"),
// TRANSLATORS: video settings warning
_("Applying change to OpenGL requires restart."),
- DialogType::OK, true, true, nullptr, 260);
+ // TRANSLATORS: ok dialog button
+ _("OK"),
+ DialogType::OK,
+ true, true, nullptr, 260);
}
mFps = mFpsCheckBox->isSelected() ?
@@ -374,7 +381,11 @@ void Setup_Video::action(const ActionEvent &event)
// TRANSLATORS: video settings warning
_("Restart your client for the change to take effect.")
+ std::string("\n") + _("Some windows may be moved to "
- "fit the lowered resolution."));
+ "fit the lowered resolution."),
+ // TRANSLATORS: ok dialog button
+ _("OK"),
+ DialogType::OK,
+ true, true, nullptr, 260);
}
else
{
@@ -382,7 +393,11 @@ void Setup_Video::action(const ActionEvent &event)
new OkDialog(_("Screen Resolution Changed"),
// TRANSLATORS: video settings warning
_("Restart your client for the change"
- " to take effect."));
+ " to take effect."),
+ // TRANSLATORS: ok dialog button
+ _("OK"),
+ DialogType::OK,
+ true, true, nullptr, 260);
}
}
#else