diff options
Diffstat (limited to 'debug_toolbar/templates')
3 files changed, 9 insertions, 8 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/request_vars.html b/debug_toolbar/templates/debug_toolbar/panels/request_vars.html index 791a736..c2797dc 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/request_vars.html +++ b/debug_toolbar/templates/debug_toolbar/panels/request_vars.html @@ -9,7 +9,7 @@ </colgroup> <thead> <tr> - <th>{% trans "Key" %}</th> + <th>{% trans "Variable" %}</th> <th>{% trans "Value" %}</th> </tr> </thead> @@ -37,7 +37,7 @@ </colgroup> <thead> <tr> - <th>{% trans "Key" %}</th> + <th>{% trans "Variable" %}</th> <th>{% trans "Value" %}</th> </tr> </thead> @@ -51,7 +51,7 @@ </tbody> </table> {% else %} - <p>{% trans "None" %}</p> + <p>{% trans "No SESSION data" %}</p> {% endif %} </div> @@ -61,7 +61,7 @@ <table> <thead> <tr> - <th>{% trans "Key" %}</th> + <th>{% trans "Variable" %}</th> <th>{% trans "Value" %}</th> </tr> </thead> @@ -75,7 +75,7 @@ </tbody> </table> {% else %} - <p>{% trans "None" %}</p> + <p>{% trans "No GET data" %}</p> {% endif %} </div> @@ -85,7 +85,7 @@ <table> <thead> <tr> - <th>{% trans "Key" %}</th> + <th>{% trans "Variable" %}</th> <th>{% trans "Value" %}</th> </tr> </thead> @@ -99,6 +99,6 @@ </tbody> </table> {% else %} - <p>{% trans "None" %}</p> + <p>{% trans "No POST data" %}</p> {% endif %} </div> diff --git a/debug_toolbar/templates/debug_toolbar/panels/signals.html b/debug_toolbar/templates/debug_toolbar/panels/signals.html index 3936dba..fccf7ff 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/signals.html +++ b/debug_toolbar/templates/debug_toolbar/panels/signals.html @@ -1,3 +1,4 @@ +{% load i18n %} <div class="boxed"> <table> <thead> diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html index 4c100e9..4bb7c9a 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html @@ -28,7 +28,7 @@ <div class="djSQLHideStacktraceDiv" style="display:none;"> <table> <tr> - <th>Line</th> + <th>{% trans "Line" %}</th> <th>Method</th> <th>File</th> </tr> |
