Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9808 from xvrc/msghandler-label-fix
MsgHandler: Correct question and warning captions
  • Loading branch information
leoetlino committed Jun 13, 2021
2 parents 0a1f58a + 0ad13db commit 38424d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Source/Core/Common/MsgHandler.cpp
Expand Up @@ -55,10 +55,10 @@ bool s_alert_enabled = true;

const char* GetCaption(MsgType style)
{
static const std::string info_caption = s_str_translator(_trans("Information"));
static const std::string warn_caption = s_str_translator(_trans("Question"));
static const std::string ques_caption = s_str_translator(_trans("Warning"));
static const std::string crit_caption = s_str_translator(_trans("Critical"));
static const std::string info_caption = GetStringT("Information");
static const std::string ques_caption = GetStringT("Question");
static const std::string warn_caption = GetStringT("Warning");
static const std::string crit_caption = GetStringT("Critical");

switch (style)
{
Expand Down

0 comments on commit 38424d0

Please sign in to comment.