﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
1193	Write {% load i18n %} only once	inerte@…	Adrian Holovaty	"If you use {% trans ""string"" %}, {% load i18n %} must exists on the same template file.

What I want to do is to put {% load i18n %} only once on my ""base"" template and use {% trans ""string"" %} on every ""children"" template, since translations are usually necessary for the whole website.

Error condition:

base.html
{{{
{% load i18n %}
<!DOCTYPE html PUBLIC ""-//W3C//DTD XHTML 1.0 Transitional//EN""
    ""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"">
etc...
}}}

index.html
{{{
{% extends ""base"" %}
{% trans ""hellow world"" %}
}}}

It shows a '''Invalid block tag: 'trans'''' error..."	enhancement	closed	Template system	dev	minor	invalid	i18n, trans		Unreviewed	0	0	0	0	0	0
