diff options
| author | Percy Perez-Pinedo | 2009-01-02 23:44:30 -0800 |
|---|---|---|
| committer | Percy Perez-Pinedo | 2009-01-02 23:44:30 -0800 |
| commit | 5387dbaecb4cd339279dad1b970e15231b9b5deb (patch) | |
| tree | c252100cc215285bf2f275d2c95019ee30824707 /debug_toolbar | |
| parent | 77c0f4d0b1bb7392b5893cc2fc055ec7605c4fed (diff) | |
| download | django-debug-toolbar-5387dbaecb4cd339279dad1b970e15231b9b5deb.tar.bz2 | |
added trans to request_vars.html
Diffstat (limited to 'debug_toolbar')
| -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 %} |
