Fixed error message to correctly say that online user names needs to

be at least 3 characters long - though at this stage we need to
wait for the server to be updated as well, since it will now reject
a shorter user name.
This commit is contained in:
hiker 2014-08-23 09:56:30 +10:00
parent 5b633f0487
commit fbc438b998

View File

@ -224,7 +224,7 @@ void RegisterScreen::doRegister()
}
else if (username.size() < 3 || username.size() > 30)
{
m_info_widget->setText(_("Online username has to be between 4 and 30 characters long!"), false);
m_info_widget->setText(_("Online username has to be between 3 and 30 characters long!"), false);
}
else if (password.size() < 8 || password.size() > 30)
{