Don't mark a TemplateSyntaxError in flatpages as being translatable.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14127 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
b12c739143
commit
791cc62d4c
|
@ -1,7 +1,6 @@
|
||||||
from django import template
|
from django import template
|
||||||
from django.contrib.flatpages.models import FlatPage
|
|
||||||
from django.utils.translation import ugettext as _
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
from django.contrib.flatpages.models import FlatPage
|
||||||
|
|
||||||
|
|
||||||
register = template.Library()
|
register = template.Library()
|
||||||
|
@ -67,7 +66,7 @@ def get_flatpages(parser, token):
|
||||||
{% get_flatpages '/about/' for someuser as about_pages %}
|
{% get_flatpages '/about/' for someuser as about_pages %}
|
||||||
"""
|
"""
|
||||||
bits = token.split_contents()
|
bits = token.split_contents()
|
||||||
syntax_message = _("%(tag_name)s expects a syntax of %(tag_name)s "
|
syntax_message = ("%(tag_name)s expects a syntax of %(tag_name)s "
|
||||||
"['url_starts_with'] [for user] as context_name" %
|
"['url_starts_with'] [for user] as context_name" %
|
||||||
dict(tag_name=bits[0]))
|
dict(tag_name=bits[0]))
|
||||||
# Must have at 3-6 bits in the tag
|
# Must have at 3-6 bits in the tag
|
||||||
|
|
Loading…
Reference in New Issue