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:
Brian Rosner 2009-04-30 20:12:24 +00:00
parent 5e2d38465a
commit 03047d4037
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ class GeometryField(forms.Field):
'no_geom' : _(u'No geometry value provided.'),
'invalid_geom' : _(u'Invalid geometry value.'),
'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.'),
}