i'm making a form in django and i would like to be able to change the language of the errors to spanish, for example, if i enter a wrong date, instead of "Enter a valid date." that says "Ingrese una fecha valida" but when i make the modifications, it's still the same, is there something i'm doing wrong? PD: i'm noob in python
SETTING.PY
LANGUAGE_CODE = 'es'
TIME_ZONE = 'America/Argentina/Buenos_Aires'
USE_I18N = True
USE_L10N = True
USE_TZ = True
I would really appreciate the help