mirror of
https://github.com/django/django.git
synced 2025-08-03 02:23:12 +00:00
Fixed #30001 -- Marked UUIDField.description for translation.
This commit is contained in:
parent
b07273a0f7
commit
0d724ce916
1 changed files with 1 additions and 1 deletions
|
@ -2291,7 +2291,7 @@ class UUIDField(Field):
|
|||
default_error_messages = {
|
||||
'invalid': _("'%(value)s' is not a valid UUID."),
|
||||
}
|
||||
description = 'Universally unique identifier'
|
||||
description = _('Universally unique identifier')
|
||||
empty_strings_allowed = False
|
||||
|
||||
def __init__(self, verbose_name=None, **kwargs):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue