Merge pull request #6562 from JosJuice/translate-qos

Translate the netplay chat info message about QoS
This commit is contained in:
Mat M 2018-03-29 18:47:29 -04:00 committed by GitHub
commit 8185b5f1fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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())