1
1
{% load i18n %}
2
2
3
- < h4 > {% trans "View information" %}</ h4 >
3
+ < h4 > {% translate "View information" %}</ h4 >
4
4
< table >
5
5
< thead >
6
6
< 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 >
11
11
</ tr >
12
12
</ thead >
13
13
< tbody >
@@ -21,29 +21,29 @@ <h4>{% trans "View information" %}</h4>
21
21
</ table >
22
22
23
23
{% if cookies.list or cookies.raw %}
24
- < h4 > {% trans "Cookies" %}</ h4 >
24
+ < h4 > {% translate "Cookies" %}</ h4 >
25
25
{% include 'debug_toolbar/panels/request_variables.html' with variables=cookies %}
26
26
{% else %}
27
- < h4 > {% trans "No cookies" %}</ h4 >
27
+ < h4 > {% translate "No cookies" %}</ h4 >
28
28
{% endif %}
29
29
30
30
{% if session.list or session.raw %}
31
- < h4 > {% trans "Session data" %}</ h4 >
31
+ < h4 > {% translate "Session data" %}</ h4 >
32
32
{% include 'debug_toolbar/panels/request_variables.html' with variables=session %}
33
33
{% else %}
34
- < h4 > {% trans "No session data" %}</ h4 >
34
+ < h4 > {% translate "No session data" %}</ h4 >
35
35
{% endif %}
36
36
37
37
{% if get.list or get.raw %}
38
- < h4 > {% trans "GET data" %}</ h4 >
38
+ < h4 > {% translate "GET data" %}</ h4 >
39
39
{% include 'debug_toolbar/panels/request_variables.html' with variables=get %}
40
40
{% else %}
41
- < h4 > {% trans "No GET data" %}</ h4 >
41
+ < h4 > {% translate "No GET data" %}</ h4 >
42
42
{% endif %}
43
43
44
44
{% if post.list or post.raw %}
45
- < h4 > {% trans "POST data" %}</ h4 >
45
+ < h4 > {% translate "POST data" %}</ h4 >
46
46
{% include 'debug_toolbar/panels/request_variables.html' with variables=post %}
47
47
{% else %}
48
- < h4 > {% trans "No POST data" %}</ h4 >
48
+ < h4 > {% translate "No POST data" %}</ h4 >
49
49
{% endif %}
0 commit comments