Translate the netplay chat info message about QoS

This commit is contained in:
JosJuice 2018-03-29 22:44:23 +02:00
parent 53b3da7301
commit b065f86270
1 changed files with 2 additions and 2 deletions

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