diff options
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/headers.html | 2 | ||||
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/request_vars.html | 24 |
2 files changed, 13 insertions, 13 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/headers.html b/debug_toolbar/templates/debug_toolbar/panels/headers.html index 00b28e2..0a1578d 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/headers.html +++ b/debug_toolbar/templates/debug_toolbar/panels/headers.html @@ -4,7 +4,7 @@ <thead> <tr> <th>{% trans "Key" %}</th> - <th>{% trans Value %}</th> + <th>{% trans "Value" %}</th> </tr> </thead> <tbody> diff --git a/debug_toolbar/templates/debug_toolbar/panels/request_vars.html b/debug_toolbar/templates/debug_toolbar/panels/request_vars.html index 0885711..751e1da 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/request_vars.html +++ b/debug_toolbar/templates/debug_toolbar/panels/request_vars.html @@ -8,8 +8,8 @@ </colgroup> <thead> <tr> - <th>Key</th> - <th>Value</th> + <th>{% trans "Key" %}</th> + <th>{% trans "Value" %}</th> </tr> </thead> <tbody> @@ -22,7 +22,7 @@ </tbody> </table> {% else %} - <p>None</p> + <p>{% trans "None" %}</p> {% endif %} <h3>SESSION Variables</h3> {% if session %} @@ -33,8 +33,8 @@ </colgroup> <thead> <tr> - <th>Key</th> - <th>Value</th> + <th>{% trans "Key" %}</th> + <th>{% trans "Value" %}</th> </tr> </thead> <tbody> @@ -47,15 +47,15 @@ </tbody> </table> {% else %} - <p>None</p> + <p>{% trans "None" %}</p> {% endif %} <h3>GET Variables</h3> {% if get %} <table> <thead> <tr> - <th>Key</th> - <th>Value</th> + <th>{% trans "Key" %}</th> + <th>{% trans "Value" %}</th> </tr> </thead> <tbody> @@ -68,15 +68,15 @@ </tbody> </table> {% else %} - <p>None</p> + <p>{% trans "None" %}</p> {% endif %} <h3>POST Variables</h3> {% if post %} <table> <thead> <tr> - <th>Key</th> - <th>Value</th> + <th>{% trans "Key" %}</th> + <th>{% trans "Value" %}</th> </tr> </thead> <tbody> @@ -89,5 +89,5 @@ </tbody> </table> {% else %} - <p>None</p> + <p>{% trans "None" %}</p> {% endif %} |
