mirror of
https://github.com/django/django.git
synced 2024-12-01 15:42:04 +01:00
Fixed some minor translation-related issues
This commit is contained in:
parent
b3bccce1a0
commit
b7cf44dde8
@ -267,6 +267,7 @@ def model_detail(request, app_label, model_name):
|
|||||||
return render_to_response('admin_doc/model_detail.html', {
|
return render_to_response('admin_doc/model_detail.html', {
|
||||||
'root_path': urlresolvers.reverse('admin:index'),
|
'root_path': urlresolvers.reverse('admin:index'),
|
||||||
'name': '%s.%s' % (opts.app_label, opts.object_name),
|
'name': '%s.%s' % (opts.app_label, opts.object_name),
|
||||||
|
# Translators: %s is an object type name
|
||||||
'summary': _("Attributes on %s objects") % opts.object_name,
|
'summary': _("Attributes on %s objects") % opts.object_name,
|
||||||
'description': model.__doc__,
|
'description': model.__doc__,
|
||||||
'fields': fields,
|
'fields': fields,
|
||||||
|
@ -124,7 +124,7 @@ def _detect_image_library():
|
|||||||
import _imaging as PIL_imaging
|
import _imaging as PIL_imaging
|
||||||
except ImportError as err:
|
except ImportError as err:
|
||||||
raise ImproperlyConfigured(
|
raise ImproperlyConfigured(
|
||||||
_("The '_imaging' module for the PIL could not be " +
|
_("The '_imaging' module for the PIL could not be "
|
||||||
"imported: %s" % err)
|
"imported: %s" % err)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user