mirror of
https://github.com/django/django.git
synced 2025-09-27 12:39:17 +00:00
Added a missing ASCII 32 in a GIS form field error message. Thanks Alex Gaynor for catching it.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10650 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
5e2d38465a
commit
03047d4037
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ class GeometryField(forms.Field):
|
||||||
'no_geom' : _(u'No geometry value provided.'),
|
'no_geom' : _(u'No geometry value provided.'),
|
||||||
'invalid_geom' : _(u'Invalid geometry value.'),
|
'invalid_geom' : _(u'Invalid geometry value.'),
|
||||||
'invalid_geom_type' : _(u'Invalid geometry type.'),
|
'invalid_geom_type' : _(u'Invalid geometry type.'),
|
||||||
'transform_error' : _(u'An error occurred when transforming the geometry'
|
'transform_error' : _(u'An error occurred when transforming the geometry '
|
||||||
'to the SRID of the geometry form field.'),
|
'to the SRID of the geometry form field.'),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue