aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/templates
diff options
context:
space:
mode:
authorPercy Perez-Pinedo2009-08-21 15:03:21 -0700
committerPercy Perez-Pinedo2009-08-21 15:03:21 -0700
commitf986b6d995efac1b7129eb9835d3fcdd20ef6098 (patch)
tree789b9709ef4fe3ad188613a179c8de5c1c22fc2d /debug_toolbar/templates
parent969e8ce4888b4ce19b878f537baaca4c4d9f2013 (diff)
downloaddjango-debug-toolbar-f986b6d995efac1b7129eb9835d3fcdd20ef6098.tar.bz2
added i18n support (Spanish) for request_Vars.html
Diffstat (limited to 'debug_toolbar/templates')
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/request_vars.html14
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/signals.html1
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql.html2
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>