Skip to content

Commit

Permalink
Fixed #30001 -- Marked UUIDField.description for translation.
Browse files Browse the repository at this point in the history
  • Loading branch information
nixphix authored and timgraham committed Nov 30, 2018
1 parent b07273a commit 0d724ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/db/models/fields/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 0d724ce

Please sign in to comment.