diff options
| author | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-03-29 15:54:43 +0000 |
|---|---|---|
| committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-03-29 15:54:43 +0000 |
| commit | 0c222b9533fa44fe7783e8673656ba1854ab5e02 (patch) | |
| tree | a35165e778afe744c153117440f499c707a06100 | |
| parent | a3747f23be69d607fdaa4fbc757341c4673ecd1f (diff) | |
Fixed #6879 -- Made string in `contrib.flatpages` translatable, thanks ctrochalakis.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7381 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/flatpages/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/flatpages/models.py b/django/contrib/flatpages/models.py index 36327c80c3..b352cbbd1c 100644 --- a/django/contrib/flatpages/models.py +++ b/django/contrib/flatpages/models.py @@ -21,7 +21,7 @@ class FlatPage(models.Model): class Admin: fields = ( (None, {'fields': ('url', 'title', 'content', 'sites')}), - ('Advanced options', {'classes': 'collapse', 'fields': ('enable_comments', 'registration_required', 'template_name')}), + (_('Advanced options'), {'classes': 'collapse', 'fields': ('enable_comments', 'registration_required', 'template_name')}), ) list_filter = ('sites',) search_fields = ('url', 'title') |
