11{% load i18n %}
22
3- < h4 > {% trans "View information" %}</ h4 >
3+ < h4 > {% translate "View information" %}</ h4 >
44< table >
55 < thead >
66 < tr >
7- < th > {% trans "View function" %}</ th >
8- < th > {% trans "Arguments" %}</ th >
9- < th > {% trans "Keyword arguments" %}</ th >
10- < th > {% trans "URL name" %}</ th >
7+ < th > {% translate "View function" %}</ th >
8+ < th > {% translate "Arguments" %}</ th >
9+ < th > {% translate "Keyword arguments" %}</ th >
10+ < th > {% translate "URL name" %}</ th >
1111 </ tr >
1212 </ thead >
1313 < tbody >
@@ -21,29 +21,29 @@ <h4>{% trans "View information" %}</h4>
2121</ table >
2222
2323{% if cookies.list or cookies.raw %}
24- < h4 > {% trans "Cookies" %}</ h4 >
24+ < h4 > {% translate "Cookies" %}</ h4 >
2525 {% include 'debug_toolbar/panels/request_variables.html' with variables=cookies %}
2626{% else %}
27- < h4 > {% trans "No cookies" %}</ h4 >
27+ < h4 > {% translate "No cookies" %}</ h4 >
2828{% endif %}
2929
3030{% if session.list or session.raw %}
31- < h4 > {% trans "Session data" %}</ h4 >
31+ < h4 > {% translate "Session data" %}</ h4 >
3232 {% include 'debug_toolbar/panels/request_variables.html' with variables=session %}
3333{% else %}
34- < h4 > {% trans "No session data" %}</ h4 >
34+ < h4 > {% translate "No session data" %}</ h4 >
3535{% endif %}
3636
3737{% if get.list or get.raw %}
38- < h4 > {% trans "GET data" %}</ h4 >
38+ < h4 > {% translate "GET data" %}</ h4 >
3939 {% include 'debug_toolbar/panels/request_variables.html' with variables=get %}
4040{% else %}
41- < h4 > {% trans "No GET data" %}</ h4 >
41+ < h4 > {% translate "No GET data" %}</ h4 >
4242{% endif %}
4343
4444{% if post.list or post.raw %}
45- < h4 > {% trans "POST data" %}</ h4 >
45+ < h4 > {% translate "POST data" %}</ h4 >
4646 {% include 'debug_toolbar/panels/request_variables.html' with variables=post %}
4747{% else %}
48- < h4 > {% trans "No POST data" %}</ h4 >
48+ < h4 > {% translate "No POST data" %}</ h4 >
4949{% endif %}
0 commit comments