Skip to content

Commit

Permalink
Merge pull request #6562 from JosJuice/translate-qos
Browse files Browse the repository at this point in the history
Translate the netplay chat info message about QoS
  • Loading branch information
lioncash committed Mar 29, 2018
2 parents 53b3da7 + b065f86 commit 8185b5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/Core/NetPlayClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -640,9 +640,9 @@ void NetPlayClient::ThreadFunc()
qos_session = Common::QoSSession(m_server);

if (qos_session.Successful())
m_dialog->AppendChat("Quality of Service (QoS) was successfully enabled.");
m_dialog->AppendChat(GetStringT("Quality of Service (QoS) was successfully enabled."));
else
m_dialog->AppendChat("Quality of Service (QoS) couldn't be enabled.");
m_dialog->AppendChat(GetStringT("Quality of Service (QoS) couldn't be enabled."));
}

while (m_do_loop.IsSet())
Expand Down

0 comments on commit 8185b5f

Please sign in to comment.