More precise error message for online unsername (2 & 3 from #3599)

This commit is contained in:
Lois Doyenard 2022-01-25 10:04:44 +01:00
parent 96c0d167bf
commit b66e0d0d0d

View File

@ -367,7 +367,7 @@ void RegisterScreen::doRegister()
}
else if (namecheck)
{
m_info_widget->setText(_("Online username can only contain alphanumeric characters, periods, dashes and underscores!"), false);
m_info_widget->setText(_("Online username can only contain alphanumeric (ASCII) characters, periods, dashes and underscores!"), false);
}
else if (username.size() < 3 || username.size() > 30)
{