You can do it even in Symfony 2.0 easily.
There is no need to reimplement the UserCheckerInterface.
Implement the login form as described here: Using a Traditional Login Form.
$error is actually an instance of AuthenticationException.
If you display it in the template like this:
{% if error %}{{ error.message|trans }}{% endif %}
... then you can customize the messages using the translation component, ex. in your messages.en.yml:
'User account is locked.': 'Your account has been locked by administrator.'
'The presented password is invalid.': 'Invalid password.'
'Bad credentials': 'Invalid username.'
If you do that you get translations for free :)
BTW I've read a case study that suggested that specyfing to the user what exactly went wrong with the login (pass? username?) outweighs the security issues (in terms of UX) and greatly improves the conversion (returning users).