Commit 8cff95e9 authored by Claude Paroz's avatar Claude Paroz
Browse files

Used a more translator-friendly format in admin sites.py

parent b4a11f27
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -454,7 +454,7 @@ class AdminSite(object):
        # Sort the models alphabetically within each app.
        app_dict['models'].sort(key=lambda x: x['name'])
        context = dict(self.each_context(),
            title=_('%s administration') % app_name,
            title=_('%(app)s administration') % {'app': app_name},
            app_list=[app_dict],
            app_label=app_label,
        )