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:
parent
5b633f0487
commit
fbc438b998
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user