3👍
✅
If you want to change all of them, you should override the field’s default messages somewhere in the application initialization:
serializers.CharField.default_error_messages['blank'] = 'This field may not be blank'
For example, the blank message can be found here
- [Django]-Crispy-forms InlineRadios don't show my model state
- [Django]-Assigning a proxy model instance to foreign key
- [Django]-Django DecimalField returns "None" instead of empty value
Source:stackexchange.com