diff options
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/tabs/setup_chat.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/widgets/tabs/setup_chat.cpp b/src/gui/widgets/tabs/setup_chat.cpp index e5acd10e5..121886830 100644 --- a/src/gui/widgets/tabs/setup_chat.cpp +++ b/src/gui/widgets/tabs/setup_chat.cpp @@ -120,6 +120,10 @@ Setup_Chat::Setup_Chat(const Widget2 *const widget) : new SetupItemCheckBox(_("Hide shop messages"), "", "hideShopMessages", this, "hideShopMessagesEvent"); + // TRANSLATORS: settings option + new SetupItemCheckBox(_("Show MVP messages"), "", + "showMVP", this, "showMVPEvent"); + // TRANSLATORS: settings group new SetupItemLabel(_("Tabs"), "", this); @@ -184,8 +188,8 @@ Setup_Chat::Setup_Chat(const Widget2 *const widget) : "globalsFilter", this, "globalsFilterEvent"); // TRANSLATORS: settings option - new SetupItemCheckBox(_("Show MVP messages"), "", - "showMVP", this, "showMVPEvent"); + new SetupItemCheckBox(_("Show emotes button in chat"), "", + "showEmotesButton", this, "showEmotesButtonEvent"); setDimension(gcn::Rectangle(0, 0, 550, 350)); } |