Skip to content

Commit

Permalink
Fixed #2540 -- Added one more i18n string to admin/views/doc.py. Than…
Browse files Browse the repository at this point in the history
…ks, dummy@habmalnefrage.de

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3605 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Aug 18, 2006
1 parent d4a2fbb commit 8b8f452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/contrib/admin/views/doc.py
Expand Up @@ -226,7 +226,7 @@ def model_detail(request, app_label, model_name):

return render_to_response('admin_doc/model_detail.html', {
'name': '%s.%s' % (opts.app_label, opts.object_name),
'summary': "Fields on %s objects" % opts.object_name,
'summary': _("Fields on %s objects") % opts.object_name,
'description': model.__doc__,
'fields': fields,
}, context_instance=RequestContext(request))
Expand Down

0 comments on commit 8b8f452

Please sign in to comment.